@font-face {
    font-family: Gilmer;
    src: url('../fonts/gilmer/Gilmer Light.ttf') format('truetype');
    font-weight: 200;
}
@font-face {
    font-family: Gilmer;
    src: url('../fonts/gilmer/Gilmer Regular.ttf') format('truetype');
    font-weight: 300;
}
@font-face {
    font-family: Gilmer;
    src: url('../fonts/gilmer/Gilmer Medium.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: Gilmer;
    src: url('../fonts/gilmer/Gilmer Bold.ttf') format('truetype');
    font-weight: 500;
}
@font-face {
    font-family: Gilmer;
    src: url('../fonts/gilmer/Gilmer Heavy.ttf') format('truetype');
    font-weight: 600;
}


* {
    box-sizing: border-box;
    font-family: Gilmer, sans-serif;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

.main {
    background-color: #292D32;
}


.container {
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
    padding-left: 20px;
}

@media screen and (min-width: 576px) {
    .container {
        max-width: 540px;
        overflow: hidden;
    }
}

@media screen and (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media screen and (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media screen and (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.hero {
    position: relative;
    overflow-x: clip;
    height: max-content;
}

img.hero-bg {
    width: 2300px;
    position: absolute;
    top: -580px;
    right: -150px;
    z-index: 1;
}
img.hero-mobile {
    position: absolute;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    img.hero-bg {
        display: none;
    }

    img.hero-mobile {
        width: 1400px;
        top: -180px;
        right: -520px;
    }
}

@media screen and (min-width: 768px) {
    img.hero-bg {
        display: block;
        width: 1600px;
        top: -180px;
        right: -340px;
    }

    img.hero-mobile {
        display: none;
    }
}

@media screen and (min-width: 890px) {
    img.hero-bg {
        width: 1700px;
        top: -180px;
        right: -300px;
    }
}

@media screen and (min-width: 992px) {
    img.hero-bg {
        width: 1800px;
        top: -320px;
        right: -150px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1360px) {
    img.hero-bg {
        width: 1800px;
        top: -320px;
        right: -150px;
    }
}

@media screen and (min-width: 1360px) and (max-width: 1560px) {
    img.hero-bg {
        width: 2000px;
        top: -520px;
        right: -150px;
    }
}

@media screen and (min-width: 1560px) and (max-width: 1880px) {
    img.hero-bg {
        width: 2300px;
        top: -700px;
        right: -150px;
    }
}

@media screen and (min-width: 1880px) and (max-width: 2180px) {
    img.hero-bg {
        width: 2600px;
        top: -750px;
        right: -130px;
    }
}

@media screen and (min-width: 2180px) and (max-width: 2480px) {
    img.hero-bg {
        width: 2900px;
        top: -950px;
        right: -100px;
    }
}

@media screen and (min-width: 2480px) and (max-width: 2800px) {
    img.hero-bg {
        width: 3200px;
        top: -1150px;
        right: -130px;
    }
}


.hero .container {
    position: relative;
    z-index: 20;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 36px;
    position: relative;
}

.logo-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

img.nav-logo {
    width: 43px;
    margin-right: 12px;
}

.logo-text {
    font-family: Gilmer, sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 1.4rem;
}

.menu-icon {
    color: #fff;
    font-size: 1.4rem;
}

@media screen and (min-width: 992px) {
    .menu-icon {
        display: none;
    }
}

.nav-links {
    display: flex;
    /*align-items: center;*/
    justify-content: space-between;
}

.nav-link {
    font-size: 15px;
    font-weight: 400;
    margin-right: 53px;
    color: #fff;
}

@media screen and (max-width: 992px) {
    .logo-text {
        font-size: 1rem;
    }

    .nav-links {
        position: absolute;
        background-color: #fff;
        border-radius: 8px;
        padding: 12px;
        display: flex;
        flex-direction: column;
        min-width: 120px;
        top: 40px;
        right: 0px;
    }

    .nav-link {
        margin-bottom: 4px;
        margin-right: 0;
        color: #343434;
        font-weight: 300;
        font-size: 14px;
        text-align: start;
        padding: 6px;
    }

    .nav-link:last-child {
        margin-bottom: 0;
    }

    .nav-link:hover {
        background-color: #ddd;
        border-radius: 4px;
    }

    .nav-links {
        display: none;
    }

    .nav-links.show {
        display: block;
    }
}

.hero-content {
    display: flex;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 40px;
}

.hero-text {
    width: 55%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
}

@media screen and (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    line-height: 30px;
}

@media screen and (max-width: 992px) {
    .hero-img {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .hero-content {
        flex-direction: column-reverse;
        align-items: start;
    }

    .hero-text {
        margin-top: 100px;
        width: 100%;
    }

    .hero-img {
        /*display: none;*/
    }
}

.btn {
    border: none;
    border-radius: 5px;
}

.btn-primary {
    background-color: #FADB49;
    color: #3B3866;
}

.hero-btn {
    font-size: 14px;
    padding: 12px 24px;
}

.hero-img {
    height: 300px;
    margin: auto;
}


.section {
    padding: 55px 0;
}

.section-title {
    font-weight: 600;
    color: #fff;
    font-size: 28px;
    margin-bottom: 24px;
    z-index: 10;
    position: relative;
}

.centred {
    text-align: center;
}

.what-do {
    position: relative;
    margin-top: 300px;
    overflow-x: clip;
}

@media screen and (min-width: 576px) and (max-width: 768px) {
    .what-do {
        margin-top: 150px;
    }
}

/*@media screen and (min-width: 1200px) and (max-width: 1300px) {*/
/*    .what-do {*/
/*        margin-top: 150px;*/
/*    }*/
/*}*/

@media screen and (min-width: 1500px) and (max-width: 1900px) {
    .what-do {
        margin-top: 150px;
    }
}

img.floating-donut {
    position: absolute;
    top: 12px;
    right: 40px;
    width: 320px;
    z-index: 1;
}
@media screen and (max-width: 768px) {
    img.floating-donut {
       display: none;
    }
}

@media screen and (min-width: 768px) {
    img.floating-donut {
        right: -80px;
    }
}

.doings {
    margin-bottom: 40px;
    border-radius: 12px;
    background-color: #fff;
    display: flex;
    z-index: 10;
    position: relative;
}

.doings.alternate .doings-image {
    border-radius: 0 12px 12px 0;
}


.doings-image {
    width: 385px;
    border-radius: 12px 0 0 12px;
}

.doings-content {
    margin: auto 80px auto 32px;
}

.doings-title {
    color: #3B3866;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
}

.doings-text {
    color: #343434;
    font-weight: 300;
}

@media screen and (max-width: 992px) {
    .doings-content {
        margin: 32px 80px 32px 32px;
    }

    .doings-image {
        width: 300px;
        object-fit: cover;
    }
}

@media screen and (max-width: 768px) {
    .doings {
        flex-direction: column;
    }

    .doings.alternate {
        flex-direction: column-reverse;
    }

    .doings-image, .doings.alternate .doings-image {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 12px 12px 0 0;
    }

    .doings-content {
        margin: 32px;
    }

}

.section.features {
    position: relative;
    overflow: clip;
}

img.features-bg {
    position: absolute;
    width: 2500px;
    top: -600px;
    right: -320px;
    z-index: 1;
}


@media screen and (max-width: 992px) {
    img.features-bg {
        right: -600px;
        top: -700px;
    }
}

@media screen and (min-width: 1880px) and (max-width: 2180px) {
    img.features-bg {
        width: 2800px;
        top: -750px;
        right: -330px;
    }
}

@media screen and (min-width: 2180px) and (max-width: 2480px) {
    img.features-bg {
        width: 3200px;
        top: -950px;
        right: -330px;
    }
}

@media screen and (min-width: 2480px) and (max-width: 2800px) {
    img.features-bg {
        width: 3600px;
        top: -1150px;
        right: -330px;
    }
}


.feature-content {
    z-index: 10;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 180px;
}

@media screen and (max-width: 768px) {
    .feature-content {
        margin-bottom: 0;
    }
}

.feature-img {
    width: 400px;
}

@media screen and (max-width: 992px) {
    .feature-img {
        display: none;
    }
}

.feature-text {
    margin-left: 40px;
}

.feature-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

@media screen and (max-width: 576px) {
    .feature-icons {
        flex-direction: column;
        align-items: start;
    }

    .featured-icon {
        margin-bottom: 20px;
    }

    .feature-text {
        margin-left: 0;
    }
}

@media screen and (max-width: 768px) {
    img.features-bg {
        display: none;
    }

    .section.features {
        background: linear-gradient(134.95deg, #F8E483 -8.68%, #FBC135 67.46%);
    }
}

img.feature-icon {
    width: 50px;
}

.icon-text {
    color: #3B3866;
}

.text-p {
    color: #343434;
    font-weight: 300;
    margin-bottom: 24px;
}

.section.focus {
    position: relative;
    overflow-x: clip;
}

img.floating-donut2 {
    position: absolute;
    width: 380px;
    bottom: 20px;
    right: -40px;
    z-index: 1;
}

.section-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

img.section-img {
    width: 400px;
    border-radius: 12px;
    margin-left: 90px;
}

@media screen and (max-width: 992px) {
    img.section-img {
        display: none;
    }

    img.floating-donut2 {
        display: none;
    }
}

.section-text {
    margin-top: 16px;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 200;
}

.section-info {
    margin-bottom: 24px;
}

.section-points {
    position: relative;
}

.section-point {
    margin-bottom: 16px;
    position: relative;
}

.section-point::before {
    width: 14px;
    height: 14px;
    background-color: #FCBA1D;
    display: inline-block;
    position: absolute;
    content: '';
    top: -4px;
    left: -8px;
    z-index: -1;
}

.section.mission {
    position: relative;
    overflow: clip;
    background-color: #292D32;
    padding-bottom: 200px;
}

img.mission-bg {
    position: absolute;
    width: 2380px;
    top: -500px;
    right: -250px;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .section.mission {
        background: linear-gradient(125.08deg, #F3D686 11.93%, #A95A2C 98.25%);
        padding-bottom: 50px;
    }

    img.mission-bg {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    img.mission-bg {
        width: 2600px;
        top: -240px;
        right: -650px;
    }
}

@media screen and (min-width: 1880px) and (max-width: 2180px) {
    img.mission-bg {
        width: 2800px;
        top: -750px;
        right: -330px;
    }
}

@media screen and (min-width: 2180px) and (max-width: 2480px) {
    img.mission-bg {
        width: 3200px;
        top: -950px;
        right: -330px;
    }
}

@media screen and (min-width: 2480px) and (max-width: 2800px) {
    img.mission-bg {
        width: 3600px;
        top: -1150px;
        right: -330px;
    }
}


.culture-grid {
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    align-items: start;
}

.culture-card {
    background: #FFEDDD;
    opacity: 0.8;
    border-radius: 12px;
    z-index: 12;
    padding: 20px;
}

@media screen and (max-width: 992px) {
    .culture-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .culture-card.team {
        margin-top: 30px;
    }
}

.culture-card.mission, .culture-card.vision {
    margin-top: 30px;
}

.culture-card-title {
    color: #3B3866;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}

.card-subtitle {
    font-size: 1rem;
    margin-top: 8px;
    text-align: center;
    font-weight: 500;
}

.mission .card-text {
    margin-top: 28px;
}

.card-text {
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
}

.section.why-us {
    position: relative;
    overflow: clip;
}

img.line1bg {
    position: absolute;
    width: 1150px;
    bottom: -500px;
    left: -500px;
}

img.line2bg {
    position: absolute;
    width: 1300px;
    top: -500px;
    right: -1000px;
    z-index: 1;
}

.why-us-content {
    position: relative;
    z-index: 10;
}

.section-subtitle {
    font-size: 22px;
    color: #fff;
    text-align: center;
    font-weight: 400;
    margin-bottom: 36px;
}

.why-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
}

@media screen and (max-width: 992px) {
    .why-content {
        grid-template-columns: repeat(1, 1fr);
    }
}

.content-single {
    display: flex;
    align-items: start;
    margin-bottom: 24px;
}

img.content-icon {
    width: 36px;
    margin-right: 8px;
}

.text-title {
    font-weight: 400;
    color: #fff;
    font-size: 22px;
}

.text-body {
    color: #fff;
    font-weight: 200;
    margin-top: 4px;
}

.section.footer {
    background-color: #FADB49;
    padding: 40px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 120px;
}

.slogan {
    color: #363636;
    font-size: 28px;
    font-weight: 500;
    grid-area: 1 / 1 / 2 / 2;
}

.footer-group {
    display: flex;
}

.footer-group.contact {
    grid-area: 1 / 2 / 2 / 4;
}

.footer-group.social {
    grid-area: 1 / 4 / 2 / 5;
}

.footer-section.address {
    margin-right: 100px;
}

@media screen and (max-width: 768px) {
    .footer-section.address {
        margin-right: 30px;
    }
}

@media screen and (max-width: 992px) {
    .slogan {
        font-size: 40px;
    }

    .footer-top {
        display: block;
        flex-direction: column;
    }

    .slogan, .footer-group.contact {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 992px) {
    .footer-section.address {
        margin-right: 60px;
    }
}

.footer-section-title {
    font-weight: 500;
    font-size: 22px;
    color: #3B3866;
    margin-bottom: 18px;
}

.footer-section-head {
    font-size: 16px;
    margin-bottom: 4px;
}

.footer-section-text {
    font-weight: 200;
    font-size: 14px;
}

.footer-section-head.mail-head {
    margin-top: 8px;
}

.footer-social-icons {
    font-size: 20px;
}

.footer-social-icons .uil {
    margin-right: 16px;
}

.footer-bottom {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom-copy {
    font-weight: 200;
}

.bottom-terms {
    font-weight: 200;
}


@media screen and (max-width: 992px) {
    .footer-bottom {
        display: block;
    }

    .bottom-copy {
        margin-bottom: 20px;
    }
}







/*About Us*/

img.about-hero-bg {
    width: 2300px;
    position: absolute;
    top: -580px;
    right: -150px;
    z-index: 1;
}
img.about-hero-mobile {
    position: absolute;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    img.about-hero-bg {
        display: none;
    }

    img.about-hero-mobile {
        width: 1200px;
        top: -180px;
        left: -400px;
    }
}

@media screen and (min-width: 768px) {
    img.about-hero-bg {
        display: block;
        width: 1600px;
        top: -180px;
        right: -340px;
    }

    img.about-hero-mobile {
        display: none;
    }
}

@media screen and (min-width: 890px) {
    img.about-hero-bg {
        width: 1700px;
        top: -180px;
        right: -300px;
    }
}

@media screen and (min-width: 992px) {
    img.about-hero-bg {
        width: 1800px;
        top: -320px;
        right: -150px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1360px) {
    img.about-hero-bg {
        width: 1800px;
        top: -320px;
        right: -150px;
    }
}

@media screen and (min-width: 1360px) and (max-width: 1560px) {
    img.about-hero-bg {
        width: 2000px;
        top: -420px;
        right: -150px;
    }
}

@media screen and (min-width: 1560px) and (max-width: 1880px) {
    img.about-hero-bg {
        width: 2300px;
        top: -590px;
        right: -150px;
    }
}

@media screen and (min-width: 1880px) and (max-width: 2180px) {
    img.about-hero-bg {
        width: 2600px;
        top: -750px;
        right: -130px;
    }
}

@media screen and (min-width: 2180px) and (max-width: 2480px) {
    img.about-hero-bg {
        width: 2900px;
        top: -950px;
        right: -100px;
    }
}

@media screen and (min-width: 2480px) and (max-width: 2800px) {
    img.about-hero-bg {
        width: 3200px;
        top: -1150px;
        right: -130px;
    }
}



.about-hero {
    position: relative;
    overflow-x: clip;
    height: max-content;
}

.about-hero .container {
    position: relative;
    z-index: 20;
}

.about-what-do {
    position: relative;
    margin-top: 300px;
    overflow-x: clip;
}

@media screen and (max-width: 768px) {
    .about-what-do {
        margin-top: 150px;
    }
}

.about-doings {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.about-doings-image {
    width: 354px;
    height: 354px;
    object-fit: cover;
    border-radius: 12px;
    margin-right: 32px;
}

.about-doings.alternate .about-doings-image {
    margin-right: 0;
    margin-left: 32px;
}

.about-doings-content {
    background-color: #5E5E5E;
    height: 354px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 32px;
}

.about-doings-content .doings-text, .doings-title {
    color: #fff;
}

@media screen and (max-width: 768px) {
    .about-doings {
        flex-direction: column;
    }

    .about-doings-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0;
        border-radius: 12px 12px 0 0;
    }

    .about-doings.alternate {
        flex-direction: column-reverse;
    }
    .about-doings.alternate .about-doings-image {
        margin-left: 0;
    }

    .about-doings-content {
        border-radius: 0 0 12px 12px;
    }
}






/*Contact Us*/

img.contact-hero-bg {
    width: 2300px;
    position: absolute;
    top: -580px;
    right: -150px;
    z-index: 1;
}
img.contact-hero-mobile {
    position: absolute;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    img.contact-hero-bg {
        display: none;
    }

    img.contact-hero-mobile {
        width: 1200px;
        top: -180px;
        left: -200px;
    }

}

@media screen and (min-width: 768px) {
    img.contact-hero-bg {
        display: block;
        width: 1600px;
        top: -200px;
        right: -340px;
    }

    img.contact-hero-mobile {
        display: none;
    }
}

@media screen and (min-width: 890px) {
    img.contact-hero-bg {
        width: 1700px;
        top: -220px;
        right: -300px;
    }
}

@media screen and (min-width: 992px) {
    img.contact-hero-bg {
        width: 1800px;
        top: -320px;
        right: -150px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1360px) {
    img.contact-hero-bg {
        width: 1800px;
        top: -320px;
        right: -150px;
    }
}

@media screen and (min-width: 1360px) and (max-width: 1560px) {
    img.contact-hero-bg {
        width: 2000px;
        top: -420px;
        right: -150px;
    }
}

@media screen and (min-width: 1560px) and (max-width: 1880px) {
    img.contact-hero-bg {
        width: 2300px;
        top: -590px;
        right: -150px;
    }
}

@media screen and (min-width: 1880px) and (max-width: 2180px) {
    img.contact-hero-bg {
        width: 2600px;
        top: -750px;
        right: -130px;
    }
}

@media screen and (min-width: 2180px) and (max-width: 2480px) {
    img.contact-hero-bg {
        width: 2900px;
        top: -950px;
        right: -100px;
    }
}

@media screen and (min-width: 2480px) and (max-width: 2800px) {
    img.contact-hero-bg {
        width: 3200px;
        top: -1150px;
        right: -130px;
    }
}



.contact-hero {
    position: relative;
    overflow-x: clip;
    height: max-content;
}

.contact-hero .container {
    position: relative;
    z-index: 20;
}

.section.contact-form {
    position: relative;
    margin-top: 350px;
    overflow: clip;
}

@media screen and (max-width: 992px) {
    .section.contact-form {
        margin-top: 200px;
    }
}

.section-content {
    display: flex;
    align-items: center;
    height: max-content;
}

.content-card {
    padding: 40px;
    background-color: rgba(217, 217, 217, .4);
    /*opacity: .4;*/
    border-radius: 24px;
    margin-right: 24px;
}

.content-title {
    font-size: 24px;
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
}

.content-card form {

}

input.contact-input {
    height: 40px;
    width: 100%;
    border-radius: 4px;
    margin-bottom: 16px;
    background-color: #ECECEC;
    padding: 12px 16px;
    border: none;
}

textarea.contact-input {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 16px;
    background-color: #ECECEC;
    padding: 12px 16px;
    border: none;
}

button.contact-btn {
    font-size: 14px;
    padding: 11px;
    width: 100%;
}


img.contact-img {
    width: 400px;
    height: 490px;
    object-fit: cover;
    border-radius: 24px;
}

@media screen and (max-width: 992px) {
    img.contact-img {
        display: none;
    }

    .content-card {
        padding: 20px;
        margin-right: 0;
    }

    .contact-form img.line1bg, img.line2bg {
        display: none;
    }
}

















