body {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #444;
    overflow-x: hidden;
    position: relative;
}

.hero {
    min-height: 550px;
    height: 97vh;
    position: relative;
    color: #FFF;
}

.hero::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, .8);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero .container{
    z-index: 1;
}

.hero .scroll-effect {
    position: absolute;
    bottom: 40px;
    text-align: center;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero .scroll-effect span {
    display: block;
    border-bottom: 3px solid #EEA04F;
    border-right: 3px solid #EEA04F;
    width: 24px;
    height: 24px;
    transform: rotate(45deg);
    margin-bottom: -10px;
}

.hero .scroll-effect span:first-child {
    animation: scroll-top 1s infinite alternate-reverse cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes scroll-top {
    from {margin-bottom: 0;}
    top {margin-bottom: -10px;}
}

.logo {
    max-width: 208px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
    margin-right: .5rem;
    margin-left: .5rem;
    border-bottom: 3px solid transparent;
    color: #FFF;
}

.navbar.fixed-top {
    transition: background-color 200ms linear;
}

.navbar.fixed-top.scrolled {
    background-color: rgba(0, 0, 0, .75) !important;
}

.navbar-dark .navbar-nav .nav-link.active {
    border-bottom: 3px solid #EEA04F;
}

.navbar-brand {
    position: relative;
    padding: 0;
}

.navbar-brand .logo-alt {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 200ms linear;
}

.scrolled .navbar-brand .logo-alt {
    opacity: 1;
}

.navbar-dark .navbar-toggler{
    border-radius: 0;
    border: 1px solid #9f9f9f;
}

.navbar-toggler span {
    display: block;
    width: 45px;
    height: 6px;
    background: #EEA04F;
    margin: 10px 0;
}

.bg-dark {
    background-color: rgba(0, 0, 0, .8) !important;
}

.bg-light {
    background-color: rgba(232, 232, 232, 0.93) !important; 
}

.bg-image {
    background-position: center center;
    background-size: cover;
}

h1, .h1 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 3.2rem;
}

h2, .h2 {
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

h2::after, .h2::after {
    content: "";
    position: absolute;
    width: 65px;
    bottom: -3px;
    left: 0;
    border-bottom: 3px solid #EEA04F;
}

h3, .h3 {
    text-transform: uppercase;
    font-weight: 700;
    padding: 18px;
    position: relative;
}

h3::after, .h3::after {
    content: "";
    position: absolute;
    width: 65px;
    height: 65px;
    top: 0;
    left: 0;
    border-left: 3px solid #EEA04F;
    border-bottom: 3px solid #EEA04F;
}


h4, .h4 {
    text-transform: uppercase;
    font-size: 1,25rem;
    opacity: 0.6;
}

h5, .h5, h6, .h6 {
    text-transform: uppercase;
}

.text-lg {
    font-size: 130%;
}

.text-dark {
    color: #000 !important;
}

.text-primary {
    color: #EEA04F !important;
}

a {
    color: #EEA04F; 
}

a:hover {
    color: #a86e30;
    text-decoration-style: dashed;
}

.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #a86e30;
    border-color: #a86e30;
}
.btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-primary.dropdown-toggle:focus, .btn-outline-primary.focus, .btn-outline-primary:focus, a:focus  {
    box-shadow: 0 0 0 .2rem rgb(238, 160, 79, .5);
}

.text-light {
    color: #9f9f9f !important;
}

.btn {
    text-transform: uppercase;
    border-radius: 0;
    padding: .7rem 3.6rem;
    color: #FFF;
}

.btn-lg {
    font-size: 1.8rem;
}

.btn-outline-primary {
    border: 6px solid #EEA04F;
}

.btn-outline-primary:hover {
    background-color: #EEA04F;
    border-color: #EEA04F;
}

.card {
    border-radius: 0;
    border: 3px solid #e8e8e8;
    position: relative;
}

.card::after {
    position: absolute;
    content: "";
    top: -3px;
    right: -3px;
    width: 0;
    height: 0;
    opacity: 0;
    border-right: 3px solid #EEA04F;
    border-top: 3px solid #EEA04F; 
    transition: height 200ms linear, width 200ms linear;
    z-index: 0;
}

.card::before {
    position: absolute;
    content: "";
    bottom: -3px;
    left: -3px;
    width: 0;
    height: 0;
    opacity: 0;
    border-left: 3px solid #EEA04F;
    border-bottom: 3px solid #EEA04F; 
    transition: height 200ms linear, width 200ms linear;
    z-index: 0;
}

.card:hover::after, .card:hover::before {
    width: 50%;
    height: 50%;
    opacity: 1;
}

.card > * {
    z-index: 1;
}

.card a {
    align-self: center;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
    color: #EEA04F;
    font-weight: 700;
}

.card a::after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -3px;
    transform: translateX(-50%);
    width: 0;
    border-bottom: 3px solid #EEA04F;
    transition: width 200ms linear;
}

.card:hover a::after {
    width: 100%;
}

.form-control {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    height: calc(3rem + 2px);
    border-radius: 0;
    border-color: #444;
}

.form-control:focus {
    box-shadow: none;
    border-color: #EEA04F;
}

select {
    text-transform: uppercase;
}

.img-project {
    max-width: 100%;
    max-height: 48px;
    filter: grayscale(1);
}

a.anchor {
    display: block;
    position: relative;
    top: -125px;
    visibility: hidden;
}

.form-check {
    min-height: 45px;
    align-items: center;
    display: flex;
}

.form-check .form-check-label {
    padding-left: 24px;
}

.form-check .form-check-input {
    position: absolute;
    display: none;
}

.form-check .form-check-label::before {
    position: absolute;
    top: 10px;
    left: 0;
    display: inline-block;
    width: 28px;
    height: 28px;
    content: '';
    border: 1px solid #444;
    background: #fff;
}

.form-check .form-check-input:checked + .form-check-label::before {
    border: #EEA04F;
    background: #EEA04F;
}

.form-check .form-check-label::after {
    position: absolute;
    display: none;
    content: '';
    top: 12px;
    left: 8px;
    box-sizing: border-box;
    width: 12px;
    height: 18px;
    transform: rotate(45deg);
    border-width: 4px;
    border-style: solid;
    border-color: #fff;
    border-top: 0;
    border-left: 0;
}

.form-check .form-check-input:checked + .form-check-label::after {
    display: block;
}

@media (max-width: 991.98px) {
    .navbar.fixed-top, .navbar.fixed-top.scrolled  {
        background-color: rgba(0, 0, 0, .9) !important;
    }
}

@keyframes move {
    from {transform: translate(100vw,0);}
    to {transform: translate(-100%,0);}
}

@media (max-width: 575.98px) {
    .projects-holder {
        display: inline-flex;
        flex-wrap: nowrap;
        animation: move 24s linear infinite;
    }
    h1, .h1 {
        font-size: 2.4rem;
    }
    h4, .h4 {
        font-size: .9rem;
    }
    body {
        font-size: 1rem;
    }
    .btn-lg {
        font-size: 1.4rem;
    }
}
