*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: sans-serif;
    overflow-x: hidden;
}

html{
    scroll-behavior: smooth;
}

:root{
    --yellow-color:#102131;
    --second-color: #C9A551;
    --bg-color: #F0F1F5;
}

::selection{
    background-color: var(--yellow-color);
    color: var(--bg-color);
}

::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-thumb{
    background-color: #070405;
    border-radius: 30px;
}

::-webkit-scrollbar-track{
    background-color: #F0F1F5;
}

ul{
    list-style: none;
    display: flex;
}

a{
    text-decoration: none;
    color: #ffffff;
}

.container{
    margin: 0 60px;
    padding: 0 60px;
}

.btn{
    background-color: var(--yellow-color);
    color: #030608;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 50px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.btn i{
    font-size: 25px;
}

.btn:hover{
    background-color: var(--second-color);
}

section{
    width: 100%;
    height: auto;
    padding: 45px 0 75px 0;
}

.section_title{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 40px;
    padding-bottom: 5px;
    text-align: center;
    margin-bottom: 70px;
}

.img_fluid{
    max-width: 100%;
    height: auto;
}


/*Header*/
header{
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    z-index: 100;
}

header.active{
    background-color: #102131;
}

.header_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
    font-weight: 700;
    font-size: 32px;
}

.menu{
    display: flex;
    column-gap: 40px;
}

.menu.active{
    transform: translateX(0);
}

.menu li a{
    color: #C9A551;
    font-size: 18px;
    transition: .3s;
}

.menu li a.active,
.menu li a:hover{
    color: #ffffff;
}

.close_icon,
.toggle_icon{
    display: none;
    font-size: 40px;
}

/*@*/
@media screen and (max-width: 992px) {
    .menu{
        position: absolute;
        top: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        background-color: var(--bg-color);
        row-gap: 50px;
        width: 250px;
        height: 100vh;
        z-index: 100;
        transition: .5s cubic-bezier(.165, .84, .44, 1);
    }

    .close_icon{
        display: block;
        z-index: 1000;
        position: absolute;
        top: 30px;
        right: 190px;
        color: var(--yellow-color);
    }

    .toggle_icon{
        display: block;
        position: relative;
        right: 0;
        color:#C9A551;
    }
}

@media screen and (max-width: 768px) {
    .header_container{
        padding: 0;
    }
}


/*hero section*/
.hero{
    background: url(../images/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    padding-top: 180px;
    display: flex;
    justify-content: center;
    height: 100vh;
}

.hero_container{
    margin: 0 !important;
}

.swiper-wrapper{
    margin: 0 60px;
}

.hero_content-item{
    padding-right: 10px;
}

.hero_content-item h1{
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 30px;
}

.hero_content-item p{
    color: white;
    font-size: 15px;
    margin: 25px 0;
    line-height: 1.6;
}

.hero_content-item .btn{
    padding: 15px 40px;
}

.swiper-pagination{
    position: absolute;
    left: 0 !important;
    padding-left: 130px;
    display: flex;
    align-items: center;
}

.swiper-pagination .swiper-pagination-bullet{
    background-color: white;
    opacity: 1;
    width: 13px !important;
    height: 13px !important;
}

.swiper-pagination .swiper-pagination-bullet-active{
    background-color:var(--yellow-color) !important;
    width: 20px !important;
    height: 20px !important;
}


/*@*/
@media screen and (max-width: 992px) {
    .swiper-wrapper{
        margin: 0 30px;
    }
}

@media screen and (max-width: 768px) {
    .swiper-wrapper{
        margin: 0 15px;
    }

    .swiper-pagination{
        left: -100px !important;
    }

    .hero_content-item p{
        line-height: 1.3;
    }

    .hero_content-item h1{
        font-size: 36px;
    }
} 

@media screen and (max-width: 576px) {
    .hero{
        padding-top: 130px;
    }
}


/*offer section*/
.offer{
    padding-top: 90px;
    height: auto;
}

.offer_container{
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}

.offer_item{
    background-color: var(--bg-color);
    padding: 20px;
    display: flex;
    column-gap: 20px;
    align-items: center;
    border-radius: 10px;
    width: 50%;
    height: 220px;
    color:#060f04;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/*form image*/
.offer_imgBox{
    width: 300px;
    height: 170px;
    border-radius: 10%;
    overflow: hidden;
    
}

.offer_content{
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    font-size: 25px;
}

.offer_content .off{
    font-size: 16px;
}

.offer_content .off b{
    font-size: 40px;
}

.offer_item button{
    font-size: 16px;
    white-space: nowrap;
}


/*@*/

@media screen and (max-width: 992px) {
    .offer_item{
        flex-direction: column;
        height: auto;
        text-align: center;
    }

    .offer_imgBox{
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 768px) {
    .offer_container{
        flex-direction: column;
        row-gap: 40px;
        margin: 0 30px;
        padding: 0 30px;
    }

    .offer_item{
        flex-direction: row;
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .offer_container{
        margin: 0 15px;
        padding: 0 10px;
    }
}

@media screen and (max-width: 430px) {
    .offer_container{
        margin: 0 10px;
        padding: 0 10px;
    }

    .offer_item{
        flex-direction: column;
    }
}




/*food section*/
.food_container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
}

.food ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.food ul li{
    cursor: pointer;
    user-select: none;
}

.food ul li.active{
    background-color: #0b0c0b;
    padding: 8px 25px;
    border-radius: 50px;
    color: white;
}

.food_item{
    background-color: var(--bg-color);
    border-radius: 20px;
    margin-bottom: 20px;
    padding-bottom: 40px;
}

.food_imgBox{
    height: 55%;
    background-color: #eeeeee;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.food_imgBox img{
    max-width: 100%;
    max-height: 145px;
    transition: .3s;
}

.food_imgBox:hover img{
    transform: scale(1.1);
}

.food_content{
    padding: 20px;
    margin-bottom: 50px;
    color: rgb(0, 0, 0);
}

.food_content h3{
    font-weight: 600;
    font-size: 20px;
}

.food_content p{
    margin: 10px 0 20px;
    font-size: 14px;
}

.food_footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.food_footer span{
    font-size: 18px;
}

.food_footer .icon{
    background-color: var(--yellow-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: 24px;
}

.food .btn{
    margin: auto;
    margin-top: 30px;
}


/*@*/
@media screen and (max-width: 992px){
    .food_container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px){
    .food_container{
        grid-template-columns: 1fr;
    }
}






/*about section*/
.about{
    background-color: var(--bg-color);
}

.about_container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    color: rgb(0, 0, 0);
    gap: 40px;
}

.about_imgBox{
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_container .section_title{
    text-align: left;
    margin-bottom: 15px;
}

.about_content p{
    margin-bottom: 30px;
}


@media screen and (max-width: 768px){
    .about_container{
        grid-template-columns: 1fr;
    }

    .about_imgBox{
        order: 2;
    }
}

/*book section*/
.book_container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
}

.form_container{
    display: flex;
    flex-direction: column;
    column-gap: 100px;
}

.form_container input{
    outline: none;
    border: 1px solid #999;
    height: 50px;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 0 15px 0 30px;
    font-size: 17px;
}

.select{
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    padding-left: 30px;
    border: 1px solid #999;
    outline: none;
    box-shadow: none;
    border-radius: 10px;
    text-align: left;
    display: flex;
    align-items: center;
    position: relative;
    user-select: none;
    cursor: pointer;
}

.select::after{
    content: '';
    position: absolute;
    left: 95%;
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    transition: .3s;
}

.select.active::after{
    transform: rotate(225deg);
}

.select span{
    font-size: 16px;
}

.select ul{
    left: 0 !important;
    right: 0 !important;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    box-sizing: border-box;
    margin-top: 4px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 100%;
    display: flex;
    flex-direction: column;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: .4s cubic-bezier(.33, .4, .4.64);
}

.select.active ul{
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.select ul li{
    height: 40px;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.select ul li:hover{
    background-color: #f5f5f5;
}

.select ul li:nth-child(1){
    background-color: #f5f5f5;
    font-weight: 700;
    color: #999;
    font-size: 14px;
}

.book_container .btn{
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.map_container{
    margin-left: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.map_container iframe{
    width: 100%;
    height: 330px;
    border-radius: 10px;
}


@media screen and (max-width: 768px){
    .book_container{
        grid-template-columns: 1fr;
        justify-content: center;
    }

    .map_container{
        margin: 0;
        margin-top: 40px;
    }
}




/*Client Section*/
.client_container{
    margin: 0 120px !important;
    user-select: none;
    padding: 0;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
}

.client_item{
    padding-bottom: 100px;
}

.client_content{
    background-color: var(--yellow-color);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 30px;
    color: #ffffff;
}

.client_content p{
    font-size: 15px;
}

.client_content h3{
    font-weight: 600;
    margin: 20px 0 10px;
}

.client_img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--yellow-color);
    position: relative;
}

.client_img img{
    border-radius: 50%;
}

.client_img::before{
    content: '';
    position: absolute;
    top: -13px;
    left: 35px;
    width: 20px;
    height: 20px;
    background-color: var(--yellow-color);
    transform: rotate(45deg);
    z-index: -1;
}

.swiper-button-next{
    right: 50% !important;
}

.swiper-button-prev{
    left: 50% !important;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    position: absolute;
    bottom: -185px;
    right: -200%;
    background-color: var(--yellow-color);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px !important;
    font-weight: 700;
}

.swiper-button-prev::after{
    left: -200%;
}


/*@*/
@media screen and (max-width: 992px){
    .client_container{
        margin: 0 30px !important;
        padding: 0 30px !important;
    }
}

@media screen and (max-width: 768px){
    .client_container{
        margin: 0 15px !important;
        padding: 0 15px !important;
    }
}

@media screen and (max-width: 576px){
    .client_container{
        margin: 0 10px !important;
        padding: 0 10px !important;
    }
}






/*footer*/
.footer{
    background-color: #102131;
    color: #ffffff;
    text-align: center;
    padding-bottom: 40px;
}

.footer_container{
    display: grid;
    align-items: center;
    column-gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #c2c2c2;
    padding-bottom: 50px !important;
}

.footer h3{
    font-family: Helvetica;
    font-size: 28px;
    margin-bottom: 25px;
}

.footer_content ul{
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.footer_content ul li:hover{
    color: var(--yellow-color);
    cursor: pointer;
}

.footer_content ul li i{
    margin-right: 10px;
    font-size: 20px;
}

.footer_detail h3{
    font-size: 40px;
}

.footer_detail .social_link{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    column-gap: 10px;
}

.footer_detail .social_link a{
    background-color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c0b0b;
    font-size: 20px;
}

.footer_detail .social_link a:hover{
    color: var(--yellow-color);
}


.footer_time span{
    margin-bottom: 20px;
    display: block;
}

.footer_info{
    margin-top: 50px;
}

.footer_info p{
    text-align: center;
    color: #ffffff !important;
}


@media screen and (max-width: 992px){
    .food_container{
        margin: 0;
        padding: 0;
        padding-bottom: 50px !important;
    }
}

@media screen and (max-width: 768px){
    .footer_container{
        grid-template-columns: 1fr;
        margin: 0 20px;
        padding: 0 20px;
        row-gap: 30px;
    }
}

/*scroll button top*/
.btnTop{
    position: fixed;
    bottom: 50px;
    right: 30px;
    background-color: var(--yellow-color);
    color: #ffffff;
    padding: 20px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: .8;
    transition: .5s;
}

.btnTop.active{
    display: flex;
}



@media screen and (max-width: 992px){
    .container{
        margin: 0 30px;
        padding: 0 30px;
    }
}

@media screen and (max-width: 768px){
    .container{
        margin: 0 15px;
        padding: 0 15px;
    }
}

@media screen and (max-width: 576px){
    .container{
        margin: 0 10px;
        padding: 0 10px;
    }
}

