main {
    height: max-content;
    position: relative;
    display: flex;
    
    margin-top: 75px;

    .main {
        width: 100%;
        position: relative;
    }
}

.about-hero {
    position: relative;
    height: 70vw;
    
    & img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

.who-we-are {
    position: relative;
    background-color: #111;
    padding: 1rem 0 1rem 0;

    z-index: 1;

    .wwa-cont {
        width: 95%;
        margin: 0 auto;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;

        .wwa-content {
            & h3 {
                color: white;
            }
        
            & p {
                color: white;
                font-size: .75rem;
            }
        }

        .wwa_imgModel {
            aspect-ratio: 1/1;
            height: 200px;
            object-fit: cover;
            border-radius: 2rem;
            opacity: 1;

            box-shadow: 0 3px 7px 3px #111;
        }
    }

    .wwa_imgBg {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;

        opacity: .35;

        z-index: -2;
    }

    &::before {
        content: '';
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(16px);
        background-color: rgba(218, 165, 32, 0.178);
        background-blend-mode: soft-light;

        z-index: -1;
    }
}

.our-services {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0 2rem 0;

    overflow: hidden;
    position: relative;
    z-index: 1;

    .os_cont {
        width: 95%;
        margin: 0 auto;
        .os__content {
            padding: 10px;
            & h3 {
                width: 100%;
                text-align: center;
            }

            & p {
                font-size: .8rem;
            }

            & img {
                display: none;
            }
        }

        .os__services {

            display: grid;
            grid-template-columns: 1fr 1fr;

            .service {
                padding: 10px;
                & h4 {
                    font-size: 1.1rem;
                }
                & p {
                    font-size: .8rem;
                }
            }
        }
    }

    .os_bgImg {
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
        
        width: 100%;
        height: 100%;

        opacity: .15;

        z-index: -2;
    } 

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;

        backdrop-filter: blur(3px);

        z-index: -1;
    } 
}

.mission-approach {
    padding: 2rem 0 2rem 0;

    overflow: hidden;
    position: relative;
    z-index: 1;

    #ma-cont {
        width: 95%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        height: fit-content;

        .ma-inner {
            width: 100%;

            .ma-summary {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;

                & h3 {
                    width: 100%;
                    text-align: center;
                    color: white;
                    font-size: 1.2rem;
                }

                & p {
                    color: white;
                    font-size: .8rem;
                    text-align: center;
                }
            }

            .m-a {
                display: none;
            }

            .values {
                /* border: 1px solid red; */
                height: fit-content;

                display: grid;
                grid-template-columns: 1fr 1fr 1fr;
                gap: 10px;

                .value {
                    padding: 10px;
                    box-shadow: 0 0 4px 1px #111;
                    border-radius: 10px;

                    overflow: hidden;
                    position: relative;
                    z-index: 1;

                    & h4, p {
                        color: white;
                    }

                    & h4 {
                        font-size: 1rem;
                        font-weight: 600;
                    }

                    & p  {
                        font-size: clamp(.8rem, 1.8vw, 1rem);
                    }

                    &::before {
                        content:'';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
    
                        backdrop-filter: blur(3px);
    
                        z-index: -1;
                    }
                }

                .value:nth-child(1){
                    /* border: 1px solid red; */
                    grid-column: 1/4;
                    box-shadow: none;
                    padding: 0;

                    text-align: center;

                    & h3 {
                        color: white;
                        font-size: 1.2rem;
                    }
                }
            }

            .ma-imgModel {
                display: none;
            }
        }
    }

    .ma_sum-img {
        position: absolute;
        top: 0;
        left: -80%;
        width: 250%;
        height: 100%;
        z-index: -2
    }

    &::after {
        position: absolute;
        top: 0;
        left: -80%;
        width: 250%;
        height: 100%;

        background-color: #111111ac;
        background-blend-mode: soft-light;
        backdrop-filter: blur(1px);

        content:'';
        z-index: -1;
    }
}

@media(min-width:425px){

    .about-hero {
        height: 35vw;
    }

    .mission-approach {
        padding: 10vw 0 10vw 0;
        #ma-cont {
            .ma-inner {
                .m-a {
                    & h5 {
                        font-size: 1rem;
                    }

                    & p {
                        font-size: clamp(.8rem, 4vw, 1.2rem);
                    }
                }
            }
        }
    }
}

@media(min-width:768px){

    .who-we-are {

        .wwa-cont {
            height: 50vw;
            width: 90%;
            gap: 2rem;
            align-items: center;

            flex-direction: row;

            .wwa-content {
                width: 60%;

                & h3 {
                    font-size: 1rem;
                }

                & p {
                    font-size: .8rem;
                    font-weight: 200;
                }
            }

            .wwa_imgModel {
                width: 35%;
                height: 80%;
                border-radius: 8rem;
                opacity: 1;

                box-shadow: 0 3px 7px 3px #111;
            }
        }
    }

    .our-services {
        .os_cont {
            .os__content {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
                align-items: center;
                margin-bottom: 2rem;

                & h3 {
                    grid-column: 1/3;
                }

                & p {
                    height: fit-content;
                }

                .serviceImg {
                    display: inline-block;
                    height: fit-content;

                    & img {
                        display: block;
                        top: 0;
                        width: 100%;
                        height: 200px;

                        border-top-right-radius: 1rem;
                        border-bottom-right-radius: 1rem;

                        /* box-shadow: 2px 2px 5px #111; */
                    }
                }
            }
            .os__services {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 1rem;

                .service {
                    box-shadow: 0 0 10px 2px #e1d169;
                    border-top-left-radius: 5px;
                    border-bottom-right-radius: 5px;
                }
            }
        }
    }

    .mission-approach {
        #ma-cont {
            width: 90%;
        }
        #ma-cont .ma-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 2rem;

            .ma-summary {
                display: none;
            }

            .m-a {
                display: grid;
                box-shadow: 0 0 3px 1px #111;
                border-radius: 13px;
                padding: 1rem;

                overflow: hidden;

                position: relative;
                z-index: 1;

                & h4 {
                    color: white;
                    font-size: 1.2rem;
                    font-weight: 600;
                }

                & p {
                    color: white;
                    font-size: 1rem;
                }

                &::before {
                    content:'';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;

                    backdrop-filter: blur(3px);

                    z-index: -1;
                }
            }

            .values {
                gap: 1.5rem;
                grid-column: 1/3;

                .value {
                    & h4 {
                        font-size: 1.2;
                    }

                    & p {
                        font-size: 1rem;
                    }
                }
            
            }
        }
    }
}

@media(min-width:1024px){

    .who-we-are {
        .wwa-cont {
            height: 35vw;
            width: 90%;
            gap: 2rem;
            align-items: center;

            .wwa-content {
                width: 60%;

                & h3 {
                    font-size: 1.2rem;
                }

                & p {
                    font-size: .9rem;
                    font-weight: 200;
                }
            }

            .wwa_imgModel {
                width: 35%;
                height: 80%;
                border-radius: 8rem;
                opacity: 1;

                box-shadow: 0 3px 7px 3px #111;
            }
        }
    }

    .our-services {
        padding: 3rem 0 3rem 0;
        .os_cont {
            width: 90%;
            .os__content {
                & p {
                    font-size: 1rem;
                }
            }
            .os__services {
                gap: 2rem;

                .service {
                    & h4 {
                        font-size: 1.2rem;
                    }

                    & p {
                        font-size: 1rem;
                    }
                }
            }
        }
    }

    .mission-approach #ma-cont .ma-inner {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
        row-gap: 3rem;

        .ma-imgModel {
            display: block;
            /* border: 1px solid red; */
            grid-column: 3/4;
            grid-row: 1/3;

            position: relative;

            display: flex;
            align-items: center;
            justify-content: center;

            & img {
                position: absolute;
                aspect-ratio: 1/2;
                height: 115%;
            }
        }
    }
}

@media(min-width:1440px){
    .who-we-are {
        padding: 5rem 0 5rem 0;

        .wwa-cont {
            width: 90%;
            gap: 5rem;

            .wwa-content {

                & h3 {
                    font-size: 2.8rem;
                }

                & p {
                    font-size: 1.1rem;
                    font-weight: 300;
                }
            }

            .wwa_imgModel {
                height: 80%;
            }
        }
    }

    .our-services {
        padding: 5rem 0 5rem 0;
        .os_cont {
            width: 80%;

            .os__content {
                & h3 {
                    color:#111;
                    font-size: 2.8rem;
                    font-weight: 600;
                }
                & p {
                    font-size: 1.1rem;
                }

                .serviceImg {
                    & img {
                        height: 300px;
                    }
                }
            }
            .os__services {
                gap: 2rem;

                .service {
                    & h4 {
                        font-size: 1.4rem;
                    }

                    & p {
                        font-size: 1.1rem;
                    }
                }
            }
        }
    }

    .mission-approach {
        padding: 8rem 0 8rem 0;
        #ma-cont .ma-inner {
            width: 80%;
            margin: 0 auto;
            padding: 3rem 0 3rem 0;

            .ma-imgModel {

                & img {
                    height: 125%;
                }
            }
        }
    }
}