/*==================================================
                ABOUT HERO
==================================================*/

.about-hero{
    width:100%;
    padding-top:88px;
}


/*====================================
            HERO IMAGE
====================================*/

.about-hero-image{

    width:100%;
    height:70vh;

    position: relative;

    overflow:hidden;

}

.about-hero-image img{

    width:100%;
    height:100%;

    display: block;

    object-fit:cover;
    object-position:center;

}

/*==================================================
                DARK OVERLAY
==================================================*/

.about-hero-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    z-index: 1;

}


/*==================================================
                ABOUT US TITLE
==================================================*/

.about-hero-title {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    z-index: 2;

    margin: 0;

    width: 100%;

    text-align: center;

    /*font-family: var(--primary-font);*/
    font-family:var(--heading-font);

    font-size: 16px;

    font-weight: 400;

    line-height: 1.2;

    color: #ffffff;

    letter-spacing: 1px;

}



/*====================================
            DESCRIPTION
====================================*/

.about-hero-content{

    width:min(92%, 1100px);

    margin:0 auto;

    padding:24px 0 70px;

    text-align:center;

}

.about-hero-content p{

    font-family:var(--body-font);

    font-size:16px;

    font-weight:400;

    line-height:1.8;

    color:var(--primary);

    margin:0;

}

/*==================================================
                RESPONSIVE
==================================================*/


/*------------------------------
        991px
------------------------------*/

@media(max-width:991px){

    .about-hero{

        padding-top:80px;

    }

    .about-hero-image{

        height:50vh;

    }

    .about-hero-title {

        font-size: 16px;

    }

    .about-hero-content{

        padding:25px 0 60px;

    }

}


/*------------------------------
        576px
------------------------------*/

@media(max-width:576px){

    .about-hero{

        padding-top:72px;

    }

    .about-hero-image{

        height:50vh;

    }

    .about-hero-title {

        font-size: 16px;

        letter-spacing: 0.8px;

    }

    .about-hero-content{

        width:88%;

        padding:24px 0 50px;

    }

    .about-hero-content p{

        font-size:16px;

        line-height:1.8;

    }

}








/*==================================================
            ABOUT INTRO SECTION
==================================================*/

.about-intro {

    width: 100%;

    display: grid;

    grid-template-columns: 50% 50%;

    align-items: stretch;

    background: #2D2D2D;

}


/*====================================
            IMAGE
====================================*/

.about-intro-image {

    width: 100%;
    height: 720px;

    overflow: hidden;

}

.about-intro-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease,
        filter 0.7s ease;

}


/* IMAGE HOVER */

.about-intro-image:hover img {

    transform: scale(1.05);

    filter: brightness(0.92);

}


/*====================================
            CONTENT
====================================*/

.about-intro-content {

    padding: 100px 8% 100px 40px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


/* TITLE */

.about-intro-content h2 {

   
    font-family: var(--body-font);

    font-size: 20px;

    font-weight: 700;

    line-height: 1.3;

    color: var(--white);

    margin: 0 0 10px;

}


/* DESCRIPTION */

.about-intro-content p {

    font-family: var(--body-font);

    font-size: 16px;

    font-weight: 400;

    line-height: 1.7;

    color: var(--white);

    margin: 0 0 15px;

}

.about-intro-content p:last-child {

    margin-bottom: 0;

}


/*==================================================
                TABLET
==================================================*/

/*==================================================
                TABLET
==================================================*/

@media (max-width: 991px) {

    .about-intro {
        display: flex;
        flex-direction: column;
    }

    /* IMAGE */

    .about-intro-image {
        width: 100%;
        height: 600px;
    }

    /* CONTENT */

    .about-intro-content {
        width: 100%;
        padding: 60px 6%;
        display: block;
    }

    .about-intro-content h2 {
        font-size: 24px;
        line-height: 1.35;
        margin-bottom: 22px;
        text-align: left;
    }

    .about-intro-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
        text-align: left;
    }

}
/*==================================================
                MOBILE
==================================================*/

@media (max-width: 576px) {

    .about-intro {

        display: flex;

        flex-direction: column;

    }


    /* IMAGE FIRST */

    .about-intro-image {

        width: 100%;

        height: 500px;

    }


    /* CONTENT BELOW IMAGE */

    .about-intro-content {

        width: 100%;

        padding: 45px 30px 55px;

        display: block;

    }


    .about-intro-content h2 {

        font-size: 22px;

        line-height: 1.35;

        margin-bottom: 20px;

        text-align: left;

    }


    .about-intro-content p {

        font-size: 16px;

        line-height: 1.7;

        text-align: left;

        margin-bottom: 22px;

    }

}



/*==================================================
                TEAM SECTION
==================================================*/

.team-section {

    width: 100%;

    padding: 40px 0 100px;

    background: #ffffff;

}


/*==================================================
                CONTAINER
==================================================*/

.team-container {

    width: min(92%, 1200px);

    margin: 0 auto;

}


/*==================================================
                HEADING
==================================================*/

.team-heading {

    width: 100%;

    margin-bottom: 45px;

    text-align: left;

}

.team-heading h2 {

    font-family:var(--heading-font);

    font-size: 20px;

    font-weight: 400;

    line-height: 1.3;

    color: var(--primary);

    margin: 0 0 12px;

}

.team-heading p {

    max-width: 850px;

    font-family: var(--body-font);

    font-size: 16px;

    font-weight: 400;

    line-height: 1.7;

    color: var(--primary);

    margin: 0;

}


/*==================================================
                TEAM GRID
==================================================*/

.team-grid {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    column-gap: 18px;

    row-gap: 45px;

}


/*==================================================
                TEAM CARD
==================================================*/

.team-card {

    min-width: 0;

}


/*
First 3 cards
*/

.team-card:nth-child(1),
.team-card:nth-child(2),
.team-card:nth-child(3) {

    grid-column: span 2;

}


/*
Last 2 cards
*/

.team-card:nth-child(4) {

    grid-column: 2 / span 2;

}

.team-card:nth-child(5) {

    grid-column: 4 / span 2;

}


/*==================================================
                IMAGE
==================================================*/

.team-image {

    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #eee;

}


.team-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;

}


/*==================================================
                IMAGE HOVER
==================================================*/

.team-card:hover .team-image img {

    transform: scale(1.06);
    filter: brightness(0.92);

}


/*==================================================
                CONTENT
==================================================*/

.team-content {

    padding-top: 10px;

    text-align: left;

}


.team-content h3 {

    font-family:var(--heading-font);

    font-size: 16px;

    font-weight: 400;

    line-height: 1.4;

    color: var(--primary);

    margin: 0 0 5px;

}


.team-content p {

    font-family: var(--body-font);

    font-size: 14px;

    font-weight: 400;

    line-height: 1.55;

    color: var(--primary);

    margin: 0;

}


/*==================================================
                TABLET
==================================================*/

@media (max-width: 991px) {

    .team-section {

        padding: 70px 0 80px;

    }

    .team-container {

        width: 90%;

    }

    .team-heading {

        margin-bottom: 35px;

    }

    .team-heading h2 {

        font-size: 25px;

    }

    .team-heading p {

        font-size: 15px;

    }


    .team-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 35px 18px;

    }


    /* Reset desktop positioning */

    .team-card:nth-child(1),
    .team-card:nth-child(2),
    .team-card:nth-child(3),
    .team-card:nth-child(4),
    .team-card:nth-child(5) {

        grid-column: auto;

    }

}


/*==================================================
                MOBILE
==================================================*/

@media (max-width: 576px) {

    .team-section {

        padding: 55px 0 65px;

    }

    .team-container {

        width: 88%;

    }


    .team-heading {

        margin-bottom: 30px;

    }


    .team-heading h2 {

        font-size: 22px;

        margin-bottom: 10px;

    }


    .team-heading p {

        font-size: 14px;

        line-height: 1.65;

    }


    /* One card per row */

    .team-grid {

        display: grid;

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .team-card:nth-child(1),
    .team-card:nth-child(2),
    .team-card:nth-child(3),
    .team-card:nth-child(4),
    .team-card:nth-child(5) {

        grid-column: auto;

    }


    .team-image {

        aspect-ratio: 1 / 1;

    }


    .team-content {

        padding-top: 9px;

    }


    .team-content h3 {

        font-size: 15px;

        margin-bottom: 5px;

    }


    .team-content p {

        font-size: 14px;

        line-height: 1.55;

    }

}




/*=========== SERVICES===================*/
/*==================================================
        ABOUT STORY / SLIDE SECTIONS
==================================================*/

.about-story {
    width: 100%;
    position: relative;
}


/*==================================================
        INDIVIDUAL SECTION
==================================================*/

.about-story-section {

    width: 100%;
    min-height: 100vh;

    display: grid;
    grid-template-columns: 50% 50%;

    align-items: center;

    position: sticky;
    top: 0;

    overflow: hidden;
}


/*==================================================
        SECTION BACKGROUND + STACKING
==================================================*/

.story-section-1 {
    z-index: 1;
    background-color: #FFF8E8;
}

.story-section-2 {
    z-index: 2;
    background-color: #FFFFFF;
}

.story-section-3 {
    z-index: 3;
    background-color: #FFF8E8;
}

.story-section-4 {
    z-index: 4;
    background-color: #FFFFFF;
}

.story-section-5 {
    z-index: 5;
    background-color: #FFF8E8;
}

.story-section-6 {
    z-index: 6;
    background-color: #FFFFFF;
}


/*==================================================
        IMAGE WRAPPER
==================================================*/

.about-story-image {

    width: 80%;
    height: 75vh;

    overflow: hidden;

    justify-self: center;
    align-self: center;
}


/*==================================================
        IMAGE
==================================================*/

.about-story-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}


/*==================================================
        IMAGE HOVER
==================================================*/

.about-story-image:hover img {

    transform: scale(1.05);

    filter: brightness(0.92);
}


/*==================================================
        CONTENT
==================================================*/

.about-story-content {

    width: 100%;

    padding: 60px 10%;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    justify-content: center;
}


/*==================================================
        RIGHT SIDE CONTENT
        SECTION 1 & 3
==================================================*/

.story-section-1 .about-story-content,
.story-section-3 .about-story-content {

    padding-left: 5%;
    padding-right: 12%;
}


/*==================================================
        LEFT SIDE CONTENT
        SECTION 2 & 4
==================================================*/

.story-section-2 .about-story-content,
.story-section-4 .about-story-content {

    padding-left: 12%;
    padding-right: 5%;
}

.story-section-5 .about-story-content {
    padding-left: 5%;
    padding-right: 12%;
}

.story-section-6 .about-story-content {
    padding-left: 12%;
    padding-right: 5%;
}

/*==================================================
        TITLE
==================================================*/

.about-story-content h2 {

    font-family:var(--heading-font);

    font-size: 28px;
    font-weight: 400;

    line-height: 1.3;

    color: var(--primary);

    margin: 0 0 28px;
}


/*==================================================
        DESCRIPTION
==================================================*/

.about-story-content p {

    font-family: var(--body-font);

    font-size: 16px;
    font-weight: 400;

    line-height: 1.7;

    color: var(--primary);

    margin: 0 0 24px;
}


.about-story-content p:last-child {

    margin-bottom: 0;
}


/*==================================================
        TABLET
==================================================*/

@media (max-width: 991px) {

    .about-story-section {

        min-height: 100vh;

        grid-template-columns: 50% 50%;
    }


    .about-story-image {

        width: 82%;
        height: 70vh;
    }


    .about-story-content {

        padding: 50px 7% !important;
    }


    .about-story-content h2 {

        font-size: 24px;

        margin-bottom: 22px;
    }


    .about-story-content p {

        font-size: 15px;

        line-height: 1.7;

        margin-bottom: 20px;
    }

}


/*==================================================
        MOBILE
==================================================*/

@media (max-width: 576px) {

    /* REMOVE SLIDE / STICKY EFFECT */

    .about-story-section {

        min-height: auto;

        display: flex;

        flex-direction: column;

        position: relative;

        top: auto;

        overflow: visible;
    }


    /*==========================================
            IMAGE FIRST
    ==========================================*/

    .about-story-image {

        width: 88%;

        height: 55vh;

        margin: 40px auto 0;

        order: 1;

        flex-shrink: 0;
    }


    /*==========================================
            CONTENT BELOW IMAGE
    ==========================================*/

    .about-story-content {

        width: 100%;

        min-height: auto;

        padding: 45px 25px 60px !important;

        display: block;

        order: 2;

        box-sizing: border-box;
    }


    /*==========================================
            TITLE
    ==========================================*/

    .about-story-content h2 {

        font-size: 20px;

        line-height: 1.35;

        text-align: left;

        margin: 0 0 20px;
    }


    /*==========================================
            DESCRIPTION
    ==========================================*/

    .about-story-content p {

        font-size: 16px;

        line-height: 1.7;

        text-align: left;

        margin: 0 0 22px;
    }

}


/*=======CONTACT=======*/

/*==================================================
        CONTACT SECTION
==================================================*/

.about-contact {

    width: 100%;

    padding: 100px 6%;

    box-sizing: border-box;

    background: #FCF9EF;

}


/*==================================================
        INNER CONTAINER
==================================================*/

.about-contact-inner {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 55% 45%;

    align-items: center;

}


/*==================================================
        IMAGE
==================================================*/

.about-contact-image {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}


.about-contact-image img {

    width: 100%;

    max-width: 600px;

    height: auto;

    display: block;

    object-fit: contain;

    transition: transform 0.6s ease;

}


/*==================================================
        IMAGE HOVER
==================================================*/

.about-contact-image:hover img {

    transform: scale(1.03);

}


/*==================================================
        CONTENT
==================================================*/

.about-contact-content {

    width: 100%;

    padding-left: 70px;

    box-sizing: border-box;

}


/*==================================================
        TITLE
==================================================*/

.about-contact-content h2 {

    font-family: var(--heading-font);

    font-size: 20px;

    font-weight: 400;

    line-height: 1.35;

    color: var(--primary);

    margin: 0 0 25px;

}


/*==================================================
        FORM
==================================================*/

.contact-form {

    width: 100%;

}


/*==================================================
        FORM GROUP
==================================================*/

.form-group {

    width: 100%;

    margin-bottom: 10px;

}


/*==================================================
        INPUT + TEXTAREA
==================================================*/

.contact-form input,
.contact-form textarea {

    width: 100%;

    box-sizing: border-box;

    border: 1px solid #B8B5AE;

    border-radius: 0;

    background: transparent;

    padding: 12px 10px;

    font-family: var(--body-font);

    font-size: 13px;

    font-weight: 400;

    line-height: 1.5;

    color: #222222;

    outline: none;

    appearance: none;

    -webkit-appearance: none;

    transition:
        border-color 0.3s ease,
        background 0.3s ease;

}


/*==================================================
        INPUT HEIGHT
==================================================*/

.contact-form input {

    height: 42px;

}


/*==================================================
        MESSAGE
==================================================*/

.contact-form textarea {

    min-height: 90px;

    resize: vertical;

}


/*==================================================
        PLACEHOLDER
==================================================*/

.contact-form input::placeholder,
.contact-form textarea::placeholder {

    color: #333333;

    opacity: 1;

}


/*==================================================
        FOCUS
==================================================*/

.contact-form input:focus,
.contact-form textarea:focus {

    border-color: #222222;

    background: rgba(255, 255, 255, 0.15);

}


/*==================================================
        HONEYPOT
==================================================*/

.form-honeypot {

    position: absolute;

    left: -9999px;

    width: 1px;

    height: 1px;

    overflow: hidden;

}


/*==================================================
        SUBMIT BUTTON
==================================================*/

.contact-submit {

    display: inline-block;

    margin-top: 2px;

    padding: 7px 0;

    border: none;

    border-bottom: 1px solid #222222;

    border-radius: 0;

    background: transparent;

    font-family: var(--body-font);

    font-size: 13px;

    font-weight: 500;

    line-height: 1.4;

    color: #222222;

    cursor: pointer;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;

}


/*==================================================
        SUBMIT HOVER
==================================================*/

.contact-submit:hover {

    opacity: 0.6;

    transform: translateY(-1px);

}


/*==================================================
        SUBMIT FOCUS
==================================================*/

.contact-submit:focus-visible {

    outline: 1px solid #222222;

    outline-offset: 5px;

}


/*==================================================
        FORM STATUS
==================================================*/

.form-status {

    margin: 15px 0 0;

    font-family: var(--body-font);

    font-size: 13px;

    line-height: 1.5;

    color: var(--primary);

}


/*==================================================
        TABLET
==================================================*/

@media (max-width: 991px) {

    .about-contact {

        padding: 80px 5%;

    }


    .about-contact-inner {

        grid-template-columns: 50% 50%;

        gap: 0;

    }


    .about-contact-content {

        padding-left: 45px;

    }


    .about-contact-content h2 {

        font-size: 20px;

        margin-bottom: 25px;

    }


    .contact-form input {

        height: 42px;

    }


    .contact-form textarea {

        min-height: 90px;

    }

}


/*==================================================
        MOBILE
==================================================*/

@media (max-width: 576px) {

    .about-contact {

        padding: 60px 7%;

    }


    .about-contact-inner {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

    }


    /* IMAGE */

    .about-contact-image {

        width: 100%;

        margin-bottom: 40px;

    }


    .about-contact-image img {

        width: 100%;

        max-width: 100%;

    }


    /* CONTENT */

    .about-contact-content {

        width: 100%;

        padding: 0;

    }


    .about-contact-content h2 {

        font-size: 20px;

        line-height: 1.35;

        margin-bottom: 22px;

        text-align: left;

    }


    .form-group {

        margin-bottom: 10px;

    }


    .contact-form input {

        height: 44px;

        padding: 12px;

        font-size: 13px;

    }


    .contact-form textarea {

        min-height: 110px;

        padding: 12px;

        font-size: 13px;

    }


    .contact-submit {

        margin-top: 3px;

        font-size: 13px;

    }

}


/*==================================================
        SMALL MOBILE
==================================================*/

@media (max-width: 380px) {

    .about-contact {

        padding: 50px 6%;

    }


    .about-contact-image {

        margin-bottom: 32px;

    }


    .about-contact-content h2 {

        font-size: 18px;

    }


    .contact-form input,
    .contact-form textarea {

        font-size: 12px;

    }

}



/*==================================================
        CONTACT VIDEO SECTION
==================================================*/

.contact-video-section{

    width:100%;
    height:380px;

    position:relative;

    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

}


/*==================================================
        VIDEO
==================================================*/

.contact-video{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    z-index:1;

}


/*==================================================
        OVERLAY
==================================================*/

.contact-video-overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.48);

    z-index:2;

}


/*==================================================
        CONTENT
==================================================*/

.contact-video-content{

    position:relative;

    z-index:3;

    width:min(90%, 900px);

    text-align:center;

    color:#FFFFFF;

    display:flex;
    flex-direction:column;
    align-items:center;

}


/*==================================================
        TITLE
==================================================*/

.contact-video-content h2{

    font-family:var(--heading-font);

    font-size:16px;

    font-weight:400;

    line-height:1.3;

    margin:0 0 16px;

    color:#FFFFFF;

}


/*==================================================
        DESCRIPTION
==================================================*/

.contact-video-content p{

    width:min(90%, 750px);

    font-family:var(--body-font);

    font-size:16px;

    font-weight:400;

    line-height:1.6;

    margin:0 0 20px;

    color:#FFFFFF;

}


/*==================================================
        EMAIL
==================================================*/

.contact-video-content a{

    font-family:var(--body-font);

    font-size:16px;

    font-weight:400;

    color:#FFFFFF;

    text-decoration:none;

    transition:opacity 0.3s ease;

}


.contact-video-content a:hover{

    opacity:0.65;

}


/*==================================================
        TABLET
==================================================*/

@media(max-width:991px){

    .contact-video-section{

        height:320px;

    }


    .contact-video-content{

        width:88%;

    }


    .contact-video-content h2{

        font-size:22px;

        margin-bottom:14px;

    }


    .contact-video-content p{

        width:90%;

        font-size:15px;

        line-height:1.6;

        margin-bottom:18px;

    }


    .contact-video-content a{

        font-size:15px;

    }

}


/*==================================================
        MOBILE
==================================================*/

@media(max-width:576px){

    .contact-video-section{

        height:300px;

    }


    .contact-video{

        object-position:center;

    }


    .contact-video-overlay{

        background:rgba(0,0,0,0.52);

    }


    .contact-video-content{

        width:88%;

    }


    .contact-video-content h2{

        font-size:20px;

        margin-bottom:12px;

    }


    .contact-video-content p{

        width:100%;

        font-size:14px;

        line-height:1.6;

        margin-bottom:16px;

    }


    .contact-video-content a{

        font-size:14px;

    }

}


/*==================================================
        SMALL MOBILE
==================================================*/

@media(max-width:380px){

    .contact-video-section{

        height:280px;

    }


    .contact-video-content h2{

        font-size:18px;

    }


    .contact-video-content p{

        font-size:13px;

    }


    .contact-video-content a{

        font-size:13px;

    }

}










/*======================= Thank You
=====================================*/

/*==================================================
        THANK YOU PAGE
==================================================*/

.thank-you-page {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 40px 20px;

    box-sizing: border-box;

    background: #FCF9EF;

    text-align: center;

}


.thank-you-content {

    width: min(90%, 600px);

}


.thank-you-content h1 {

    font-family: var(--heading-font);

    font-size: 40px;

    font-weight: 400;

    line-height: 1.2;

    color: var(--primary);

    margin: 0 0 20px;

}


.thank-you-content p {

    font-family: var(--body-font);

    font-size: 16px;

    line-height: 1.7;

    color: var(--primary);

    margin: 0 0 30px;

}


.thank-you-content a {

    display: inline-block;

    font-family: var(--body-font);

    font-size: 14px;

    color: var(--primary);

    text-decoration: none;

    border-bottom: 1px solid var(--primary);

    padding-bottom: 5px;

    transition: opacity 0.3s ease;

}


.thank-you-content a:hover {

    opacity: 0.6;

}


@media (max-width: 576px) {

    .thank-you-content h1 {

        font-size: 30px;

    }


    .thank-you-content p {

        font-size: 14px;

    }

}