:root {
    --primary-color: #F26522;
}

* {
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1360px !important;
    /* min-width: 1360px !important; */
}

.container-sm {
    max-width: 1080px;
    /* min-width: 1080px; */
}

@media (max-width: 1600px) {
    .container {
        max-width: 1300px !important;
    }

    .container-sm {
        max-width: 900px;
    }
}

@media (max-width: 1300px) {
    .container {
        max-width: 1100px !important;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
}


h1 {
    font-size: 62px !important;
    font-weight: 600 !important;
}

h2 {
    font-size: 16px !important;
    letter-spacing: 3px;
    font-weight: 600 !important;
    color: var(--primary-color);
}

h3 {
    font-size: 46px !important;
    font-weight: 600 !important;
}

@media (max-width: 1400px) {
    h1 {
        font-size: 52px !important;
    }

    h3 {
        font-size: 38px !important;
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 40px !important;
    }

    h3 {
        font-size: 24px !important;
    }
}

.hero-section {
    background-image: url('../images/hero.jpg');
    background-attachment: fixed;
}

nav ul {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: rgba(255, 255, 255, 1);
}

.tracking-3px {
    letter-spacing: 3px;
}

.btn-primary {
    background-image: linear-gradient(var(--primary-color), var(--primary-color));
    background-size: 0px;
    background-repeat: no-repeat;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
}

.btn-primary:hover {
    background-size: 100%;
}

.font-merriweather {
    font-family: 'Merriweather', serif;
}

@media (min-width: 768px) {
    .leading-12 {
        line-height: 40px !important;
    }
}

@media (min-width: 1024px) {
    .leading-12 {
        line-height: 48px !important;
    }
}

.text-primary-number {
    color: var(--primary-color);
    font-size: 2.5em;
    padding: 1em 0;
}

#what-we-do-section>div {
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url('../images/hero.jpg');
    background-size: auto, cover;
    background-attachment: fixed;
}