/*
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Extra+Condensed:wght@200;300;400&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:wght@500&display=swap');
*/

@import url('_slider.css');
@import url('_navigation.css');
@import url('_projects.css');

@font-face {
    font-family: 'Fira Sans Extra Condensed'; /* Replace with the actual font name */
    src: url('fonts/FiraSansCondensed-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Fira Sans Extra Condensed'; /* Replace with the actual font name */
    src: url('fonts/FiraSansCondensed-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Fira Sans Extra Condensed'; /* Replace with the actual font name */
    src: url('fonts/FiraSansCondensed-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Mulish'; /* Replace with the actual font name */
    src: url('fonts/Mulish-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat'; /* Replace with the actual font name */
    src: url('fonts/Montserrat-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat'; /* Replace with the actual font name */
    src: url('fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat'; /* Replace with the actual font name */
    src: url('fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat'; /* Replace with the actual font name */
    src: url('fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat'; /* Replace with the actual font name */
    src: url('fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat'; /* Replace with the actual font name */
    src: url('fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}





:root { 
    --body-font: "Montserrat", sans-serif;
    --body-font-alt: "Mulish", sans-serif;

    --condensed-font: "Fira Sans Extra Condensed", sans-serif;

    --edge-padding: 40px;
    --fixed-width: 1200px;

    --project-page-padding: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    font-family: var(--body-font);
    font-weight: 100;
    width: 100%;
    height: 100%;
    color: black;
    margin: 0;
    padding: 0;
    background: white;
    overflow: hidden;
    overscroll-behavior: none;

}



/* Text Styling */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--body-font);
    font-weight: 700;
}
h1 { font-size: 5rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2.5rem; }
h4 { font-size: 2rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }


.body-large, .body-medium, .body-regular, .body-small, .body-tiny {
    font-family: var(--body-font);
    color: black;
    font-weight: 300;
}
.body-large { 
    font-size: 1.5rem;
    line-height: 2rem;
 }
.body-medium { 
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 300;
}
.body-regular { 
    font-size: 1rem;
    line-height: 1.5rem;
 }
.body-small { font-size: 0.875rem; }
.body-tiny { font-size: 0.75rem; }

.content-normal {
    font-weight: 300;
    line-height: 1.6rem;

    @media only screen and (max-width: 580px) { 
        line-height: 1.5rem;
        font-size: 0.875rem;;

    }
}



.plan-lrg {
    font-family: "fino-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    font-size: 8rem;

    letter-spacing: 2.5rem;

    display: none;

    .plan-condense {
        letter-spacing: 1rem;
    }
}

h10 {
    font-family: "fino-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
}

/* END Text Styling */

.off {
    display: none !important;
}
.opacity0 {
    opacity: 0 !important;
}

button {
    border: 0;
    outline: none;
    background: none;
}
.btn-primary {
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 600;
    color: black;
    text-decoration: none;
    letter-spacing: 0.25rem;
    height: 44px;
    line-height: 44px;
    background-color: white;
    padding: 10px 40px;
    cursor: pointer;
    border-radius: 8px;
}



#main {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    /*overflow: hidden;*/
    overscroll-behavior: none;
}




section {
    position: relative;
    height: fit-content;
    min-height: 100%;
    width: 100%;
    display: flex;

    flex-direction: column;

    @media (max-height: 800px) {
        min-height: 860px;
    }

    .header {
        position: absolute;
        top: 125px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        font-family: var(--condensed-font);
        font-weight: 300;
        font-size: 2.5rem;
        letter-spacing: 0.2rem;

        @media only screen and (max-width: 1280px) {	
            top: 105px;
        }
        @media only screen and (max-width: 580px) { 
            font-size: 2rem;
        }
        
    }
    .subheader {
        font-family: var(--condensed-font);
        font-size: 1.5rem;
        font-weight: 400;
        letter-spacing: 0.2rem;
        margin-bottom: calc(var(--edge-padding) / 2);
    }

    .slogan {
        font-size: 1.5rem;
        font-weight: 400;
        margin-bottom: var(--edge-padding);
    }
}



#hero {


    overflow: hidden;
    height: 100vh;
    width: 100vw;

    .video-enter {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;

        & video {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
    }

    .hero-container {
        position: absolute;
        top: 10%;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        padding: 320px;

        .slogan {
            font-family: var(--condensed-font);
            font-size: 4.5vw;
            font-size: 3.5vw;
            font-weight: 200;
            color: white;
            opacity: 1;
        }

        @media only screen and (max-width: 1366px) { 
            padding: 80px;
            top: 10vh;

            .slogan {
                font-size: 3.5rem;
            }
        }

        @media only screen and (max-width: 1024px) { 
            padding: 80px;
            top: 0;

            .slogan {
                font-size: 4rem;
            }
        }

        @media only screen and (max-width: 580px) { 
            align-items: center;
            justify-content: center;
            top: 60px;

            .slogan {
                font-size: 2rem;
                white-space: nowrap;
            }
        }

    }

    .start-wrapper {
        display: flex;
        flex-flow: row nowrap;
        justify-content: center;
        align-items: center;
        position: fixed;
        left: 50%;
        bottom: 5vh;
        transform: translateX(-50%);
        padding-right: 10px;
        opacity: 1;
        z-index: 3;
        transition: all 0.4s cubic-bezier(0.5, 0, 0.75, 0);


        & svg { 
            height: 40px;

            & path {
                fill: white;
            }
        }

        .start-text {
            color: white;
            font-weight: 400;
        }
    }
}



#projects {
    align-items: flex-start;
    margin-bottom: 40px;

    .header {
        color: black;
        z-index: 1;
    }

    .section-wrapper-full {
        z-index: 1;
        margin-top: 260px;
        width: 100% !important;

        @media only screen and (max-width: 580px) { 
            margin-top: 160px;
        }

    }

    @media only screen and (max-width: 580px) { 
        margin-bottom: 20px;
    }
}

#practice {
    justify-content: center;
    align-items: center;
    overflow: hidden;
    
    .header {
        color: white;
    }
    

    .plax-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100% + 70vh);
        transform: translateY(-70vh);
        background: url(../imgs/practice_1.jpg) center center no-repeat;
        background-size: cover;

        &::after {
            content: '';
            display: block;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.65);

        }
    }

    .wrapper {
        width: 100%;
        max-width: var(--fixed-width);
        height: fit-content;
        padding: 0 var(--edge-padding);
        margin-top: 85px;
        z-index: 1;
        color: white !important;

        @media only screen and (max-width: 580px) { 
            margin-top: 175px;
            padding-bottom: 40px;
        }
    }

    & p:nth-of-type(1) {
        margin-bottom: 20px;
    }
}

#leadership {
    flex-direction: column;
    align-items: center;
    padding: var(--edge-padding) 0;


    .wrapper {
        position: relative;
        width: 100%;
        max-width: var(--fixed-width);
        height: fit-content;
        padding: 0 var(--edge-padding);
        display: flex;

        

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

            .wrapper-left {
                width: 38.2%;

                & p:nth-of-type(1) {
                    margin-bottom: 20px;
                }

                @media only screen and (max-width: 768px) { 
                    width: 100%;
                }
    
            }
            .wrapper-right {
                width: 61.8%;
                margin-left: var(--edge-padding);
                background: url('../imgs/bg_leader.jpg') top right no-repeat;
                background-size: cover;

                @media only screen and (max-width: 768px) { 
                    min-height: 400px;
                    width: 100%;
                    margin-left: 0;
                    margin-top: 20px;
              
                }
                
            }
        }
    
        &.btm {
            margin-top: var(--edge-padding);

            @media only screen and (max-width: 580px) { 
                flex-direction: column;
            }
    
            .wrapper-left {
                width: 61.8%;
                margin-right: var(--edge-padding);
    
                background: url('../imgs/bg_team.jpg') top center no-repeat;
                background-size: cover;

                @media only screen and (max-width: 580px) { 
                    width: 100%;
                    margin-right: 0;
                    min-height: 100vw;
                    display: none;
                }
    
            }
            .wrapper-right:last-child {
                width: 38.2%;

                @media only screen and (max-width: 580px) { 
                    width: 100%;
                }
            }
        }
    }

    
}

#services {
    justify-content: center;
    align-items: center;
    overflow: hidden;
    
    .header {
        color: white;
    }

    .plax-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100% + 50vh);
        /*height: 100%;*/
        transform: translateY(-50vh);
        background: url(../imgs/services_alt.jpg) center center no-repeat;
        background-size: cover;

        &::after {
            content: '';
            display: block;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);

        }
    }

    .wrapper {
        width: 100%;
        max-width: var(--fixed-width);
        height: fit-content;
        padding: 0 var(--edge-padding);
        margin-top: 80px;
        z-index: 1;
        color: white !important;

        position: absolute;

        display: grid;
        grid-template-columns: repeat(2, calc(50% - 20px));
        grid-template-rows: repeat(2, max-content);
        gap: 40px;

        @media only screen and (max-width: 580px) { 
            position: relative;
            padding-top: 90px;
            padding-bottom: 40px;
            grid-template-columns: repeat(1, 100%);
            grid-template-rows: repeat(4, max-content);
        }

        .title {
            font-family: var(--condensed-font);
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 10px;
        }
        .body-regular {
            color: white !important;
            font-weight: 200;
        }
    }
}

#contact {
    flex-direction: column;
    align-items: center;
    background: url(../imgs/bg_contact.jpg) bottom center no-repeat;
    background-size: cover;
    margin-top: 40px;

    .wrapper {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        
        height: calc(100% - 235px);

        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;

        @media only screen and (max-width: 580px) { 
            background: url(../imgs/bg_contact.jpg) 30% 80% no-repeat;
        }

        .content {
            position: relative;
            width: 100%;
            max-width: var(--fixed-width);
            padding: 0 var(--edge-padding);
            color: white !important;

            .slogan-sml {
                position: relative;
                color: black !important;
                font-size: 1.25rem;
                font-weight: 500;
                height: 40px;
                text-align: center;

                @media only screen and (max-width: 1280px) {	
                    font-size: 1rem;
                }

                @media only screen and (max-width: 580px) { 
                    line-height: 24px;
                    top: -20px;
                }
            }
            &.top {
                position: relative;
                top: 0;
                text-align: center;

            }   

            &.btm {
                display: flex;
                justify-content: space-between;
                color: white !important;
                margin-bottom: 80px;

                @media only screen and (max-width: 580px) { 
                    flex-direction: column;
                    gap: 20px;
                }
      

                & h6 {
                    color: white !important;
                }
                & div:nth-of-type(3) {
                  
                    & h6 {
                        margin-top: 20px;
                    }
                }
                .body-regular {
                    color: white !important;
         

                    @media only screen and (max-width: 580px) { 
                        font-weight: 500 !important;
                    }
                }

                .wrap-social {
                    margin-top: 10px;
                    width: fit-content;

                    .btn-social {
                        display: inline-block;
                        margin-right: 20px;
                        width: fit-content;
                        
                        & svg {
                            height: 36px;
                            width: 36px;
                            fill: white;
                        }
                    }
                }
            }
        }
    }
}
















/* ---------------------

Small desktop screens 

------------------------ */
@media only screen and (max-width: 1280px) {	

}

@media only screen and (max-width: 1280px) {	

    h1 { font-size: 3.5rem; }
    h6 { font-size: 1.125rem; }

    .body-large, .body-medium, .body-regular, .body-small, .body-tiny {
        font-family: var(--body-font);
        color: black;
        font-weight: 300;
    }
    .body-large { 
        font-size: 1.5rem;
        line-height: 2rem;
     }
    .body-medium { 
        font-size: 1.125rem;
        line-height: 1.5rem;
        font-weight: 300;
    }
    .body-regular { 
        font-size: 0.875rem;
        line-height: 1.25rem;
     }
    .body-small { font-size: 0.875rem; }
    .body-tiny { font-size: 0.75rem; }

}


/* ---------------------

Tablet Landscape

------------------------ */
@media only screen and (max-width: 1024px) {


}


/* ---------------------

Small tablets / tablets portrait

------------------------ */
@media only screen and (max-width: 960px) {


}


/* ---------------------

Smartphones

------------------------ */
@media only screen and (max-width: 768px) { 




}


@media only screen and (max-width: 580px) { 
    h1 { font-size: 2rem; }
    h6 { font-size: 1.125rem; }

    .body-large, .body-medium, .body-regular, .body-small, .body-tiny {
        font-family: var(--body-font);
        color: black;
        font-weight: 300;
    }
    .body-large { 
        font-size: 1rem;
        line-height: 1.25rem;
     }
    .body-medium { 
        font-size: 1.125rem;
        line-height: 1.5rem;
        font-weight: 300;
    }
    .body-regular { 
        font-size: 0.875rem;
        line-height: 1.25rem;
     }
    .body-small { font-size: 0.875rem; }
    .body-tiny { font-size: 0.75rem; }
}