/* ============== GOOGLE FONTS ============== */
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&family=Tinos:wght@400;700&display=swap');

/* ============== FLATICON CDN ============== */
@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-thin-straight/css/uicons-thin-straight.css');

@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-bold-rounded/css/uicons-bold-rounded.css');

@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-solid-rounded/css/uicons-solid-rounded.css');

@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-thin-straight/css/uicons-thin-straight.css');

@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-thin-rounded/css/uicons-thin-rounded.css');

@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-thin-straight/css/uicons-thin-straight.css');

@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-thin-straight/css/uicons-thin-straight.css');

@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-thin-straight/css/uicons-thin-straight.css');

@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-thin-straight/css/uicons-thin-straight.css');

@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-thin-straight/css/uicons-thin-straight.css');

@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-thin-straight/css/uicons-thin-straight.css');

/* ============== VARIABLES CSS =========== */
:root{

    --header-height: 3.5rem;

    /* ============ COLORS =========== */
    --header-color: #011b2f;
    --after-color: #002a45;
    --title-color: #003f66;
    --button-color: #ce9d2a;
    --icon-color: #ffd35b;
    --body-color: #fff;
    --card-color: #dfdfdf;

    /* ============ FONT AND TYPOGRAPHY =========== */
    --title-font: "Tinos", serif;
    --body-font: "Lexend Deca", sans-serif;
    --biggest-font-size: 3rem;
    --big-font-size: 2.5rem;
    --h1-font-size : 2rem;
    --h2-font-size : 1.75rem;
    --h3-font-size : 1.25rem;
    --normal-font-size : 1rem;
    --small-font-size: .938rem;
    --smallest-font-size: .813rem;

    /* ============ FONT WEIGHT =========== */
    --font-bold: 700;
    --font-semi: 600;
    --font-medium: 500;
    --font-regular: 400;
    --font-light: 300;

    /* ============ Z INDEX =========== */
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 1024px) {
    :root{
    --biggest-font-size: 4rem;
    --big-font-size: 2.75rem;
    --h1-font-size : 2.25rem;
    --h2-font-size : 2rem;
    --h3-font-size : 1.5rem;
    --normal-font-size : 1rem;
    --small-font-size: .938rem;
    --smallest-font-size: .875rem;
    }
}

/* ============ UTILITIES ======= */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body{
    background-color: var(--body-color);
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    overflow-x: hidden;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============ BASE =========== */
.main{
    overflow: hidden;
}

.section{
    padding-block: 3rem 1rem;
    width: 100%;
}

.container{
    max-width: 1024px;
    margin-inline: 1.5rem;
}

.flex{
    display: flex;
    flex-direction: column;
}

.grid{
    display: grid;
    gap: 1.5rem;
}

/* ============ HEADER ========== */

.header{
    width: 100%;
    background-color: var(--header-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    transition: .5s;
    color: var(--icon-color);
}

.nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav-logo{
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-size: var(--h3-font-size);
    font-weight: var(--font-light);
    font-family: var(--title-font);
}

.nav-logo i{
    padding-top: .5rem;
    font-size: var(--h3-font-size);
}

.nav-toggle{
    font-size: var(--h2-font-size);
    padding-top: 0.5rem;
}

@media screen and (max-width: 1024px) {
    .nav-menu{
        width: 75%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: -100%;
        background-color: var(--header-color);
        padding: 8rem 4rem;
        transition: .5s;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
}

/* show-menu */
.show-menu{
    left: 0;
}

.nav-list{
    row-gap: 2rem;
    font-size: var(--h3-font-size);
}

.nav-link{
    color: var(--body-color);
    font-weight: var(--font-semi);
    transition: .5s;
}

.nav-link:hover{
    color: var(--icon-color);
}

.nav-choose{
    display: flex;
    align-items: center;
    column-gap: 2rem;
}

.nav-choose a{
    font-size: var(--h2-font-size);
}

.nav-close{
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.nav-close:hover,
.nav-toggle:hover{
    cursor: pointer;
}

/* ================ HOME =============== */
.home{
    width: 100%;
    min-height: 135vh;
    position: relative;
}

.home-1{
    width: 100%;
    height: 80%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(img/home-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-1::after{
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--after-color);
    opacity: .5;
}

.home-container{
    position: absolute;
    z-index: var(--z-tooltip);
    top: 25%;
    color: var(--body-color);
    row-gap: .5rem;
}

.home-container h2{
    font-size: var(--h3-font-size);
    font-family: var(--title-font);
}

.home-container h1{
    font-family: var(--title-font);
    font-size: var(--biggest-font-size);
}

.home-container span{
    color: var(--button-color);
}

.home-container p{
    font-weight: var(--font-light);
    font-size: var(--small-font-size);
}

.home-btns{
    display: flex;
    align-items: center;
    column-gap: 1rem;
    margin-top: .5rem;
}

.home-btn_1,
.home-btn_2{
    padding: 1rem 2rem;
}

.home-btn_1{
    color: var(--body-color);
    font-weight: var(--font-semi);
    background-color: var(--button-color);
}

.home-btn_2{
    color: var(--button-color);
    font-weight: var(--font-semi);
    background-color: var(--body-color);
}

.home-2{
    width: 100%;
    z-index: var(--z-tooltip);
    position: absolute;
    bottom: 2rem;
    left: 0;
    background-color: var(--body-color);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.home-container-2{
    align-items: center;
    row-gap: 1rem;
    padding: 1rem;
}

.home-box{
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.icon{
    font-size: var(--big-font-size);
    color: var(--button-color);
}

.box-content{
    row-gap: .5rem;
}

.box-content h3{
    font-family: var(--title-font);
    font-size: var(--h2-font-size);
    color: var(--button-color);
}

.box-content p{
    font-weight: var(--font-light);
}

.box-btn{
    color: var(--button-color);
    display: flex;
    align-items: center;
    column-gap: .5rem;
}

/* ================= ABOUT ============= */
.about-container{
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
}

.about-1{
    width: 100%;
    height: 450px;
    position: relative;
}

.about-1_img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-1_content{
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--button-color);
    color: var(--body-color);
    padding: 1rem;
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.about-1_content i{
    font-size: var(--h2-font-size);
}

.about-info h3{
    font-family: var(--title-font);
}

.about-2{
    row-gap: 2rem;
}

.about-desc{
    align-items: self-start;
    row-gap: .5rem;
}

.about-desc h3{
    font-family: var(--title-font);
    color: var(--header-color);
    font-size: var(--h3-font-size);
}

.about-desc h1{
    color: var(--header-color);
    font-family: var(--title-font);
    font-size: var(--big-font-size);
}

.about-desc span{
    color: var(--button-color);
}

.about-desc p{
    color: var(--header-color);
    font-weight: var(--font-light);
    margin-bottom: 1rem;
}

.about-2_img{
    width: 100%;
    height: 300px;
    position: relative;
}

.about-2_img::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--after-color);
    top: 0;
    left: 0;
    opacity: .7;
}

/* =========== BANNER ========= */
.banner{
    background-color: var(--after-color);
    color: var(--icon-color);
    font-family: var(--title-font);
}

.banner-container{
    align-items: center;
    row-gap: 2rem;
}

.banner-title{
    color: var(--body-color);
    font-size: var(--h1-font-size);
}

.banner-title span{
    color: var(--icon-color);
}

.banner-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.banner-data{
    align-items: center;
}

.banner-data h1{
    font-size: var(--big-font-size);
}

.banner-data p{
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
}

/* ================= SERVICES ============== */
.services{
    display: block;
}

.services-container{
    align-items: center;
    row-gap: 2rem;
}

.services-title{
    align-items: center;
    text-align: center;
    row-gap: .5rem;
}

.services-title h3,
.services-title h1{
    font-family: var(--title-font);
    color: var(--header-color);
}

.services-title h3{
    font-size: var(--h3-font-size);
}

.services-title h1{
    font-size: var(--big-font-size);
}

.services-title span{
    color: var(--button-color);
}

.services-title p{
    color: var(--header-color);
    font-weight: var(--font-light);
}

.services-grid{
    grid-template-columns: repeat(1,1fr);
    row-gap: 3rem;
}

.services-data{
    width: 100%;
    height: 300px;
    background-color: var(--card-color);
    position: relative;
}

.services-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -2rem;
    left: 2rem;
    background-color: var(--button-color);
    color: var(--body-color);
    padding: .8rem 1rem;
    font-size: 2rem;
}

.services-info{
    position: relative;
    bottom: -2rem;
    left: 0;
    padding: 1.5rem;
    row-gap: .5rem;
    color: var(--button-color);
}

.services-info h1{
    font-family: var(--title-font);
    font-size: var(--h1-font-size);
}

.services-info p{
    font-size: var(--small-font-size);
    color: var(--header-color);
}

.services-data_btn{
    display: flex;
    align-items: center;
    column-gap: .5rem;
    color: var(--button-color);
    font-weight: var(--font-semi);
}

.services-data_btn i{
    transition: .5s;
    font-size: var(--h3-font-size);
}

.services-data_btn i:hover{
    transform: translateX(.25rem);
}

.services-btn{
    display: inline-flex;
}

/* ================ PROCCESS ============== */
.proccess{
    background-image: url(img/process-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.proccess::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--after-color);
    opacity: .7;
}

.proccess-container{
    position: relative;
    z-index: var(--z-tooltip);
    row-gap: 2rem;
}

.pro-1{
    row-gap: 2rem;
}

.pro-title{
    row-gap: .5rem;
    color: var(--body-color);
}

.pro-title h3,
.pro-title h1{
    font-family: var(--title-font);
}

.pro-title h3{
    font-size: var(--h3-font-size);
}

.pro-title h1{
    font-size: var(--h1-font-size);
}

.pro-title span{
    color: var(--icon-color);
}

.pro-title p{
    font-weight: var(--font-light);
    font-size: var(--small-font-size);
}

.pro-grid{
    grid-template-columns: repeat(1, 1fr);
}

.pro-data{
    display: flex;
    align-items: self-start;
    column-gap: 1rem;
    color: var(--body-color);
}

.pro-number{
    padding: 1rem;
    border: 1px solid var(--icon-color);
    margin-top: .5rem;
}

.pro-info h2{
    font-family: var(--title-font);
    font-size: var(--h2-font-size);
}

.pro-info p{
    font-weight: var(--font-light);
    font-size: var(--small-font-size);
}

.pro-2{
    width: 100%;
    height: 400px;
    position: relative;
}

.pro-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
}

.pro-2_desc{
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 1rem;
    background-color: var(--body-color);
    color: var(--header-color);
    padding: 1rem;
}

.pro-2_desc i{
    color: var(--button-color);
    font-size: var(--h2-font-size);
}

.pro-2_desc p{
    font-size: var(--smallest-font-size);
    padding-left: 1rem;
}

/* =============== TEAM ============== */
.team{
    padding-bottom: 2rem;
}

.team-container{
    row-gap: 2rem;
    align-items: center;
}

.team-title{
    align-items: center;
    text-align: center;
    row-gap: .5rem;
    color: var(--header-color);
}

.team-title h3,
.team-title h1,
.book-container h3,
.book-container h1,
.contact-desc h3,
.contact-desc h1{
    font-family: var(--title-font);
}

.team-title h3,
.book-container h3,
.contact-desc h3{
    font-size: var(--h3-font-size);
}

.team-title h1,
.book-container h1,
.contact-desc h1{
    font-size: var(--h1-font-size);
}

.team-title span,
.book-container span{
    color: var(--button-color);
}

.team-title p,
.book-container p{
    font-weight: var(--font-light);
    font-size: var(--small-font-size);
}

.team-grid{
    grid-template-columns: repeat(1, 1fr);
}

.team-data{
    width: 100%;
    height: 375px;
}

.team-data img{
    object-position: top;
}

/* =============== BOOK ============= */
.book{
    background-image: url(img/banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
    position: relative;
}

.book::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--after-color);
    opacity: .6;
}

.book-container{
    position: relative;
    z-index: var(--z-tooltip);
    color: var(--body-color);
    align-items: center;
    text-align: center;
}

.book-container a{
    margin-top: 1rem;
}

/* =================== CONTACT ============ */
.contact{
    background-image: url(img/contact-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.contact::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--button-color);
    opacity: .9;
}

.contact-container{
    position: relative;
    z-index: var(--z-tooltip);
    row-gap: 2rem;
}

.contact-form{
    row-gap: .5rem;
}

.contact-input{
    background: var(--button-color);
    border: 1px solid var(--body-color);
    padding: 1rem;
}

.contact-input::placeholder{
    color: var(--header-color);
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
}

.input_div{
    display: flex;
    align-items: center;
    column-gap: .5rem;
}

.input_div input{
    width: 50%;
}

.contact-btn{
    padding: 1rem;
    border: 1px solid var(--body-color);
    color: var(--body-color);
    background: var(--button-color);
}

.contact-desc{
    row-gap: 2rem;
    color: var(--body-color);
}

.contact-desc span{
    color: var(--header-color);
}

.contact-desc p{
    font-weight: var(--font-light);
}

.contact-grid{
    grid-template-columns: repeat(1,1fr);
    align-items: center;
    justify-content: center;
}

.contact-data{
    display: flex;
    align-items: self-start;
    column-gap: 1.5rem;
}

.contact-data i{
    font-size: var(--h1-font-size);
}

.contact-data h4{
    font-family: var(--title-font);
    font-size: var(--h2-font-size);
}

/* =============== FOOTER ========== */
.footer{
    background-color: var(--after-color);
    color: var(--body-color);
}

.footer-grid{
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
}

.footer-data{
    width: 100%;
    row-gap: 1rem;
}

.footer-logo{
    display: flex;
    align-items: center;
    color: var(--icon-color);
    column-gap: .5rem;
    font-size: var(--h2-font-size);
    font-family: var(--title-font);
}

.footer-text{
    font-weight: var(--font-light);
    font-size: var(--small-font-size);
}

.footer-data h3{
    font-family: var(--title-font);
    font-size: var(--h2-font-size);
}

.footer-list{
    row-gap: .5rem;
}

.footer-link{
    color: var(--body-color);
    font-weight: var(--font-semi);
}

.footer-input_div{
    display: flex;
    align-items: center;
}

.footer-input{
    padding: 1.2rem;
    background-color: transparent;
    border: 1px solid var(--body-color);
}

.footer-input::placeholder{
    color: gray;
    font-family: var(--body-font);
}

.footer-social{
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
    font-size: var(--h3-font-size);
}

.footer-social_link{
    color: var(--icon-color);
    font-weight: var(--font-light);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--body-color);
    border-radius: 50%;
}

/* =================== BREAKPOINTS ================ */


/* ========================= FOR 344-345 ==============================*/
@media screen and (min-width: 344px) and (max-width: 345px) {
    .home-container{
        top: 10%;
    }

    .home-container h1{
        font-size: var(--biggest-font-size);
    }

    .home-btns{
        column-gap: .5rem;
    }

    .home-btn_1,
    .home-btn_2{
        font-size: var(--smallest-font-size);
        padding: 1rem;
    }

    .home-2{
        bottom: 5rem;
    }

    .banner-title{
        text-align: center;
    }

    .services-container{
        row-gap: 4rem;
    }

    .services-grid{
        row-gap: 3rem;
    }

    .services-data{
        height: 350px;
    }
}

/* ========================= FOR 360-375 =================== */

@media screen and (min-width: 360px) and (max-width: 376px) {
    .home{
        min-height: 165vh;
    }

    .home-container{
        top: 10%;
    }

    .home-container h1{
        font-size: var(--biggest-font-size);
    }

    .home-btns{
        column-gap: .5rem;
    }

    .home-btn_1,
    .home-btn_2{
        font-size: var(--smallest-font-size);
        padding: 1rem;
    }

    .home-2{
        bottom: 2rem;
    }

    .banner-title{
        text-align: center;
    }

    .services-container{
        row-gap: 4rem;
    }

    .services-grid{
        row-gap: 3rem;
    }

    .services-data{
        height: 350px;
    }
}

/* ========================= FOR 390-391 ==============================*/
@media screen and (min-width: 390px) and (max-width: 391px) {
    .home-container{
        top: 10%;
    }

    .home-container h1{
        font-size: var(--biggest-font-size);
    }

    .home-btns{
        column-gap: .5rem;
    }

    .home-btn_1,
    .home-btn_2{
        font-size: var(--smallest-font-size);
        padding: 1rem;
    }

    .home-2{
        bottom: 5rem;
    }

    .banner-title{
        text-align: center;
    }

    .services-container{
        row-gap: 4rem;
    }

    .services-grid{
        row-gap: 3rem;
    }

    .services-data{
        height: 350px;
    }
}

/* ========================= FOR 392-431 ==============================*/
@media screen and (min-width: 392px) and (max-width: 431px) {

    .home{
        min-height: 120vh;
    }

    .home-container{
        top: 10%;
    }

    .home-btn_1,
    .home-btn_2{
        font-size: var(--normal-font-size);
        padding: 1rem;
    }

    .banner-title{
        text-align: center;
    }
}

/* ========================= FOR 768-1024 ==============================*/

@media screen and (min-width: 768px) and (max-width: 770px) {
    .home{
        min-height: 85vh;
    }

    .home-1{
        height: 60%;
    }

    .home-2{
        width: 90%;
        bottom: 10rem;
    }

    .home-container-2{
        flex-direction: row;
        column-gap: 1rem;
    }

    .about{
        padding-top: 0;
    }

    .banner-grid{
        grid-template-columns: repeat(4, 1fr);
    }

    .services-grid{
        grid-template-columns: repeat(1, 400px);
    }

    .book{
        display: flex;
        align-items: center;
    }

    .contact-grid,
    .footer-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 820px) and (max-width: 1023px) {
    .home{
        min-height: 75vh;
    }

    .home-2{
        width: 90%;
        bottom: 10rem;
    }

    .home-container-2{
        flex-direction: row;
        column-gap: 1rem;
    }

    .banner-grid{
        grid-template-columns: repeat(4, 1fr);
    }

    .services-grid{
        grid-template-columns: repeat(1, 400px);
    }

    .book{
        display: flex;
        align-items: center;
    }

    .contact-grid,
    .footer-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width:1024px) {

    .container{
        max-width: 1496px;
        margin-inline: 2.5rem;
    }

    .nav{
        height: calc(var(--header-height) + 1.5rem);
    }

    .nav-list{
        flex-direction: row;
        align-items: center;
        column-gap: 2rem;
        font-size: 1.25rem;
    }

    .nav-close,
    .nav-toggle{
        display: none;
    }

    .home-2{
        width: 60%;
        bottom: 10rem;
    }

    .home-container{
        padding-right: 30rem;
    }

    .home-container-2{
        flex-direction: row;
        column-gap: 1rem;
    }

    .home-box{
        width: 50%;
    }

    .about-container{
        grid-template-columns: repeat(2, 1fr);
    }

    .about-1{
        height: 100%;
    }

    .banner-grid{
        grid-template-columns: repeat(4, 1fr);
    }

    .services-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .proccess{
        padding-block: 4rem;
    }

    .proccess-container{
        flex-direction: row;
        column-gap: 2rem;
    }

    .pro-1,
    .pro-2{
        width: 50%;
    }

    .pro-2{
        height: -webkit-fill-available;
    }

    .pro-img{
        height: 100%;
    }

    .pro-2_desc{
        bottom: -1rem;
    }

    .team-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .book{
        display: flex;
        align-items: center;
    }

    .book-container{
        padding-inline:20rem;
    }

    .contact-container{
        flex-direction: row;
        column-gap: 2rem;
        align-items: center;
    }

    .contact-form_div,
    .contact-desc{
        width: 50%;
    }

    .contact-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid{
        grid-template-columns: repeat(4, 1fr);
    }
}



































