@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');


/* VARIABLE CSS================================================================================- */
/*-============================================================================================- */
:root{

    /* COLORS=---------------- */
    --primary-color: #123154;
    --accent-color: #B4E1F2;
    --text-color-w: #F5F5F5;
    --text-color-b: #06151D;
    --body-color: #F5F5F5;
    /* ======================= */


    /* FONT & TYPOGRAPHY====== */
    --body-font: 'Montserrat', sans-serif;

    --big-font-size: 4rem;
    --h1-font-size: 2.986rem;
    --h2-font-size: 2.488rem;
    --h3-font-size: 2.074rem;
    --h4-font-size: 1.728rem;
    --normal-font-size: 1rem;
    --small-font-size: .75em;

    --icon-size: 2rem;
    --icon-size-small: 1rem;

    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    /* ======================= */


    /* MARGINS & PADDING ===== */
    --mar-sml: .5rem;
    --mar-1: 1rem;
    --mar-2: 1.5rem;
    --mar-3: 2rem;
    --mar-4: 3rem;
    --mar-5: 4rem;
    /* ======================= */


    /* MISC=================== */
    --z-fixed: 15;
    --border-radius: .25rem;
    --header-height: 3rem;
    /* ======================= */

}
/*-============================================================================================- */

/* HTML BASE===================================================================================- */
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html{
    scroll-behavior: smooth;
}

body{ 
    font-family: var(--body-font);
    background-color: var(--body-color);
}

h1{
    font-size: var(--h1-font-size);
}

h2{
    font-size: var(--h2-font-size);
}

h3{
    font-size: var(--h3-font-size);
}

h4{
    font-size: var(--h4-font-size);
}

p{
    font-size: var(--normal-font-size);
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

button{
    border: none;
    background-color: transparent;
}

img{
    /* max-width: 100%; */
    height: auto;
}
/*-============================================================================================- */

/* REUSABLE CSS CLASSES========================================================================- */
.container{
    max-width: 968px;
    margin: 0 2rem;
}

.flex-column{
    display: flex;
    flex-direction: column;
}

.responsive-container{
    display: flex;
    flex-direction: column;
}

.buttons-container{
    display: flex;
    flex-direction: column;
    gap: var(--mar-1);
}

.grid{
    display: grid;
}

.section{
    position: relative;
    padding: 8rem 0;
}

.section-title{
    font-size: var(--h2-font-size);
    font-weight: var(--font-extra-bold);
}

.section-title span{
    color: var(--accent-color);
}

.description{
    font-size: var(--normal-font-size);
    font-weight: var(--font-light);
}

.section-background-image-container{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.section-background-image{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

/* BUTTONS=---------------- */
.button-fill,
.button-outline{
    position: relative;
    height: 64px;
    width: 216px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all .4s ease-in-out;
}

.button-fill p,
.button-outline p{
    font-weight: var(--font-semi-bold);
    z-index: 2;
    transition: all .4s ease-in-out;
}

.button-outline{
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.button-fill:hover p{
    font-weight: var(--font-bold);
}

.button-outline:hover p{
    font-weight: var(--font-bold);
}
/*-============================================================================================- */

/* HEADER & NAVIGATION=========================================================================- */
.header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    padding: 1rem 0;
    width: 100%;
    border-bottom: 2px solid var(--body-color);
}

.navigation{
    padding: 0 2rem;
}

.nav-list{
    display: flex;
    position: relative;
}

.nav-list-item a{
    color: var(--text-color-b);
    font-size: var(--h4-font-size);
    font-weight: var(--font-regular);
}

.nav-list.show-nav{
    right: 0;
}

.nav-toggle-btn{
    color: var(--text-color-b);
}

.nav-toggle-btn.rotate{
    color: var(--text-color-b);
    transform: rotate(0.5turn);
}

.nav-list-item:nth-child(8){
    width: 240px;
    height: 64px;
    background-color: var(--primary-color);
    color: var(--text-color-w);
    display: grid;
    place-items: center;
    margin-top: var(--mar-5);
    border-radius: var(--border-radius);
}

/* ADD BLUR TO HEADER */
.blur-header{
    background-color: #010a0f5a;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 4px 4px 8px 4px #0e141b20;
    transition: all .4s ease-in-out;
}

.nav-list-item .active-link{
    color: var(--primary-color);
    font-weight: var(--font-bold);
}

.nav-list-item:nth-child(8) .nav-button{
    color: var(--text-color-w);
    font-weight: var(--font-bold);
}

/* -================================= MOBILE NAVIGATION CSS ================================- */
@media screen and (max-width: 1023px){

    .header{
        padding: 1rem 0;
    }

    .navigation{
        max-width: 80%;
    }

    .nav-logo img{
        width: 192px;
    }

    .nav-list{
        position: absolute;
        flex-direction: column;
        align-items: flex-end;
        gap: 2rem;
        background-color: var(--body-color);
        padding: 10rem 2rem;
        right: -100%;
        top: 0;
        transition: right .5s;
        width: 100%;
        border-radius: var(--border-radius);
    }

    .nav-toggle-btn{
        position: absolute;
        top: 2rem;
        right: 2rem;
        height: 32px;
        width: 32px;
        display: grid;
        place-items: center;
        transition: .35s;
        z-index: var(--z-fixed);
    }

    .nav-toggle-btn i{
        font-size: var(--icon-size);
    }

}

/* -================================= DESKTOP NAVIGATION CSS ================================- */
@media screen and (min-width: 1023px){

    .buttons-container{
        flex-direction: row;
    }

    .header{
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 2px solid var(--body-color);
    }

    .nav-list-item .active-link{
        color: var(--accent-color);
        font-weight: var(--font-bold);
    }

    .navigation{
        padding: 0;
        width: 90%;
    }

    .nav-logo img{
        width: 200px;
    }

    .nav-toggle-btn{
        display: none;
    }

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

    .nav-list{
        flex-direction: row;
        gap: var(--mar-2);
        align-items: center;
    }

    .nav-list-item a{
        font-size: 13.33px;
        font-weight: var(--font-regular);
        color: var(--text-color-w);
    }

    .nav-list-item:nth-child(8){
        width: 160px;
        height: 48px;
        margin-top: 0;
        margin-left: var(--mar-3);
        border-radius: var(--border-radius);
        background-color: var(--text-color-b);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        color: var(--text-color-w);

    }

}

@media screen and (min-width: 1440px){
    .nav-list-item a{
        font-size: 16px;
    }

    /* .main{
        transform: scale(1.3); 
        transform-origin: top center;
        overflow: hidden; 
    } */

}
/*-============================================================================================- */

/* HOME SECTION ===============================================================================- */
.home{
    color: var(--text-color-w);
}

.home-container{
    padding-top: 8rem;
    align-items: center;
    gap: var(--mar-3);
}

.home-title{
    font-weight: var(--font-light);
}

.home-description{
    font-weight: var(--font-regular);
    text-align: center;
}

.home-buttons-container{
    margin-top: 2rem;
}

.home-button-outline{
    color: var(--text-color-w);
    border: 2px solid var(--text-color-w);
}

.home-button-fill{
    color: var(--text-color-b);
    background-color: var(--accent-color);
}

/*-============================================================================================- */

/* GALLERY SECTIONS ===========================================================================- */
.gallery-container{
    gap: var(--mar-4);
}

.gallery-images-list{
    gap: var(--mar-3);
}

.gallery-images-list > li{
    height: 336px;
    width: 100%;
    position: relative;
}

.gallery-image{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: var(--border-radius);
}
/*-============================================================================================- */

/* WHY CHOOSE US SECTION ======================================================================- */
.why-us{
    background-color: var(--text-color-b);
    color: var(--text-color-w);
    padding-top: 0;
}

.why-us-container{
    gap: var(--mar-4);
}

.why-us-video-container{
    position: relative;
    width: 100%;
    height: 320px;
}

.why-us-video{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.why-us-info-container{
    gap: var(--mar-1);
}

.section-logo{
    height: 48px;
    width: 68px;
}

.section-bar{
    position: absolute;
    z-index: 0;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: var(--body-color);
}
/*-===========================================================================================- */

/* REVIEWS SECTION ===========================================================================- */
.reviews-container{
    gap: var(--mar-5);
    align-items: center;
    overflow: hidden;
}

.transparent-box{
    height: 248px;
    width: 100%;
    content: '';
}

.reviews-swiper-container{
    position: relative;
    height: max-content;
    width: 100%;
    padding: 5rem 2rem;
    background-color: var(--body-color);
    color: var(--text-color-b);
    border-radius: var(--border-radius);
    gap: var(--mar-1);
}

.reviews-accent{
    color: var(--primary-color);
}

.reviews-list-item{
    height: 200px;
}

.client-review{
    font-weight: var(--font-medium);
    color: var(--text-color-b);
}

.reviews-buttons-container{
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    width: 160px;
    bottom: 0;
    right: 0;
    background-color: var(--text-color-b);
}

.reviews-buttons-container button{
    height: 48px;
    width: 48px;
    color: var(--accent-color);
}

.review-next i,
.review-prev i{
    font-size: var(--icon-size);
}
/*-===========================================================================================- */



/* CONTACT SECTION ===========================================================================- */
.contact{
    background-color: var(--primary-color);
    color: var(--text-color-w);
}

.contact-title{
    font-size: var(--h1-font-size);
}
/*-===========================================================================================- */

@media screen and (min-width: 700px){
    .gallery-images-list{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px){

    .container{
        margin-right: auto;
        margin-left: auto;
    }

    .responsive-container{
        flex-direction: row;
        align-items: center;
    }

    .gallery-images-list{
        grid-template-columns: repeat(3, 1fr);
    }

    .section-spacer{
        height: 128px;
        width: 100%;
        background-color: var(--body-color);
    }

    .why-us{
        padding-bottom: 0;
    }

    .section-bar{
        height: 100%;
        width: 35%;
    }

    .why-us-container{
        gap: var(--mar-4);
    }

    .why-us-video-container{
        height: 436px;
    }

    .why-us-info-container{
        padding: 10rem 0 10rem 2rem;
    }
}