*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins,sans-serif;
}

a{
    text-decoration: none;
}
ul li{
    list-style: none;
}


/*menu mobile*/
.menu__mobile{
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    padding: 0 2.5%;
    background-color: #1f1d26;
    display: none;
    z-index: 20;
    overflow-y: scroll;
}
.dropdown__menu__mobile{
    display: none;
}
.dropdown__menu__mobile li a{
    font-size: 16px;
    color: #858585;
}
.dropdown__menu__mobile li{
    padding: 10px;
}


.sub__menu__mobile{
    padding: 10px 0;
}

.menu__title__mobile{
    font-size: 16px;
    color: #858585;
}
.menu__title__mobile i{
    float: right;
}
.sub__menu__mobile.show__dropdown .dropdown__menu__mobile{
    display: block;
}
.sub__menu__mobile.rotate__icons i{
    transform: rotate(180deg);
    transition: all linear 0.2s;
}
/*end menu mobile*/


/*header*/
header{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #fff;
    z-index: 3;
}
.header{
    width: 85%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
.menu__bar{
    display: none;
}
.menu__bar i{
    color: #5c5e5c;
    font-size: 25px;
}
.logo{
    width: 15%;
}
.logo img{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.menu{
    width: 80%;
    height: 100%;
}
.navbar{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sub__menu{
    padding: 0 10px;
    position: relative;
}
.sub__menu > a{
    font-size: 14px;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 100px;
}
.header__book__now a{
    padding: 14px 24px;
    background-color: #029e9d;
    border-radius: 10px;
    color: #fff;
    position: relative;
    z-index: 1;
}
.header__book__now a::before{
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    border-radius: 10px;
    left: 0;
    top: 0;
    background-color: #fdc703;
    transition: all ease-in-out 0.5s;
    z-index: -1;
}
.header__book__now a:hover::before{
    width: 100%;
    transition: all ease-in-out 0.5s;
}




.dropdown__menu{
    visibility: hidden;
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 180px;
    z-index: 3;
    opacity: 0;
    transition: all linear 0.4s;
}
.sub__menu:hover .dropdown__menu{
    visibility: visible;
    opacity: 1;
    transition: all linear 0.4s;
}
.dropdown__menu li{
    padding: 15px 10px;
}
.dropdown__menu li a{
    font-size: 14px;
    color: #666666;
    letter-spacing: 1px;
    padding-left: 10px;
}
.dropdown__menu li:not(:first-child){
    border-top: 1px solid #f1f1f1;
}
.dropdown__menu li:hover{
    background-color: #029e9d;
}
.dropdown__menu li:hover a{
    color: #fff;
}


.language{
    position: relative;
}
.choose__language{
    width: max-content;
    display: flex;
    align-items: center;
    height: 45px;
    color: #777777;
    gap: 5px;
    cursor: pointer;
}
.choose__language p{
    font-size: 15px;
    text-transform: uppercase;
}
.choose__language i{
    transition: all linear 0.2s;
}
.list__language{
    opacity: 0;
    position: absolute;
    top: 100%;
    left: -30px;
    background-color: #fff;
    box-shadow: 0 0 29px 0 rgb(102 102 102 / 10%);
    border-radius: 0;
    width: 125px;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    transform-origin: 50% 0;
    transform: scale(.75) translateY(-21px);
    transition: all .2s cubic-bezier(0.165, 0.84, 0.44, 1),opacity .15s ease-out;
    z-index: 1;
}
.index__lg{
    z-index: 101;
}
.list__language li{
    padding: 10px 20px;
    border-bottom: 1px solid #e1e1e1;
}
.list__language li:last-child{
    border: none;
}
.list__language li a{
    color: #777777;
    text-transform: uppercase;
}
.list__language li:hover a{
    color: #b56952;
    transition: all linear 0.3s;
}
.open__language{
    opacity: 1;
    transform: scale(1) translateY(0);
}
.rotate__icon{
    transform: rotate(-180deg);
    transition: all linear 0.2s;
}

/*end header*/


/*banner*/
.banner__des{
    background-image: url('../image/bg1.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 120px 0 160px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.banner__des::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #0000008f;
    z-index: -1;
}
.banner__des__content h1{
    font-family: "playfair display";
    font-size: 58px;
    color: #fff;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 20px;
}
.path__banner__des ul{
    display: flex;
    justify-content: center;
    gap: 20px;
} 
.path__banner__des ul li:first-child a{
    font-size: 16px;
    color: #029e9d;
    font-weight: 400;
}
.path__banner__des ul li{
    position: relative;
}
.path__banner__des ul li a{
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}
.path__banner__des ul li:not(:first-child)::before{
    content: "|";
    position: absolute;
    top: 0;
    left: -12px;
    color: #fff;
}
.bg__shape__des{
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url('../image/shape8.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: rotate(180deg);
    width: 100%;
    height: 122px;
}
/*end banner*/



/*search*/
.search{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-origin: top center;
    transform: scale(0);
    transition: all ease-in-out 0.4s;
    z-index: 10;
}
.main__search{
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.close__search{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-color: #029e9d;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.close__search i{
    color: #fff;
}
.form-search{
    display: flex;
    flex-direction: column;
}
.form-search input{
    width: 100%;
    height: 80px;
    font-size: 48px;
    color: #777777;
    border: none;
    border-bottom: 1px solid #f1f1f1;
    text-align: center;
    outline: none;
    margin-bottom: 30px;
}
.form-search button{
    display: block;
    width: max-content;
    margin: auto;
    padding: 15px 30px;
    background-color: #029e9d;
    font-size: 18px;
    color: #fff;
    border: none;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}
/*end search*/

/*destination detail*/
.main__destination__detail{
    width: 85%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}
.destination__content{
    width: 70%;
}
.side__bar__des{
    width: 28%;
}
.destination__description h1{
    font-family: "playfair display";
    font-size: 46px;
    font-weight: 700;
    color: #17233e;
    line-height: 64px;
    margin-bottom: 10px;
}
.des__location{
    display: flex;
    gap: 10px;
}
.des__location ul{
    display: flex;
    gap: 5px;
}
.des__location ul li i{
    color: #ffbc00;
}
.des__location p,
.des__location span{
    font-size: 16px;
    color: #777777;
}
.des__location p i{
    margin-right: 5px;
}
.des__image{
    margin: 30px 0;
}
.des__image img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
.descript h4{
    font-family: "playfair display";
    font-size: 22px;
    font-weight: 700;
    color: #17233e;
    line-height: 30px;
}
.descript p{
    font-size: 16px;
    color: #777777;
}

.destination__services{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}
.list__des__service{
    width: 48%;
    background-color: #f1f1f1;
    padding: 24px;
    border-radius: 10px;
}
.list__des__service h2{
    font-family: "playfair display";
    font-size: 18px;
    font-weight: 700;
    color: #17233e;
    line-height: 25px;
    margin-bottom: 15px;
}
.list__des__service ul li{
    font-size: 16px;
    color: #777777;
}
.list__des__service ul li i{
    margin-right: 5px;
}

.destination__gallery{
    margin: 30px 0;
}
.destination__gallery h5{
    font-family: "playfair display";
    font-size: 22px;
    font-weight: 700;
    color: #17233e;
    margin-bottom: 15px;
}
.list__destination__gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.list__destination__gallery img{
    width: 48%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.destination__map h5{
    font-family: "playfair display";
    font-size: 22px;
    font-weight: 700;
    color: #17233e;
    margin-bottom: 15px;
}
.destination__map iframe{
    width: 100%;
    border-radius: 10px;
}

.average__review h4{
    font-family: "playfair display";
    font-size: 22px;
    font-weight: 700;
    color: #17233e;
    margin-bottom: 15px;
}
.main__average__review{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.review__box{
    width: 33.333%;
    background-color: #17233e;
    padding: 32px 8px;
    border-radius: 10px;
    text-align: center;
}
.review__box h2{
    font-family: "playfair display";
    font-size: 46px;
    font-weight: 700;
    color: #fff;
}
.review__box h2 span{
    font-family: "playfair display";
    font-size: 46px;
    font-weight: 700;
    color: #fff;
}
.review__box h3{
    font-family: "playfair display";
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 8px 0;
}
.review__box p{
    font-size: 16px;
    color: #fff;
}

.review__progress{
    width: 63%;
}
.progress__item{
    margin-bottom: 10px;
}
.progress__item p{
    font-size: 16px;
    color: #777777;
}
.progress__bar{
    width: 100%;
    height: 16px;
    background-color: #e9ecef;
    border-radius: 10px;
    position: relative;
}
.progress__bar:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #029e9d;
    border-radius: 10px 0 0 10px;
}
.progress__item:nth-child(1) .progress__bar:before{
    width: 40%;
}
.progress__item:nth-child(2) .progress__bar:before{
    width: 30%;
}
.progress__item:nth-child(3) .progress__bar:before{
    width: 60%;
}
.progress__item:nth-child(4) .progress__bar:before{
    width: 20%;
}
.progress__item:nth-child(5) .progress__bar:before{
    width: 45%;
}


.write__review h5{
    font-family: "playfair display";
    font-size: 22px;
    font-weight: 700;
    color: #17233e;
    margin-bottom: 15px;
}
.form-review{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.group__form__review{
    width: 48%;
    margin-bottom: 15px;
}
.txt__comment{
    width: 100%;
}
.group__form__review input{
    width: 100%;
    height: 50px;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    padding-left: 20px;
    font-size: 15px;
    font-weight: 300;
    outline: none;
}
.group__form__review textarea{
    width: 100%;
    resize: vertical;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    padding: 20px;
    font-size: 15px;
    font-weight: 300;
    outline: none;
}
.btn__submit__review{
    position: relative;
    padding: 14px 24px;
    background-color: #029e9d;
    border-radius: 10px;
    font-size: 14px;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}
.btn__submit__review::before{
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #ffbc00;
    z-index: -1;
    transition: all linear 0.5s;
}
.btn__submit__review:hover::before{
    width: 100%;
    transition: all linear 0.5s;
}
/*end destination detail*/

/*side bar*/
.author__news{
    padding: 48px;
    border-radius: 10px;
    box-shadow: 0 0 15px #cccccc37;
    text-align: center;
    border: 1px solid #f1f1f1;
}
.author__news img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    margin: auto;
}
.author__news__img{
    position: relative;
}
.author__news__img::before{
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: 2px dashed #fff;
}
.author__name{
    font-family: "playfair display";
    font-size: 26px;
    font-weight: 700;
    color: #087c82;
    line-height: 36px;
    margin: 10px 0;
    display: block;
} 
.author__news p{
    font-size: 16px;
    color: #777777;
    line-height: 24px;
}
.author__news ul{
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 16px;
}
.author__news ul li{
    width: 40px;
    height: 40px;
    border-radius: 10px;
    text-align: center;
    line-height: 40px;
}
.author__news ul li:nth-child(1){
    background-color: #5e5eb7;
}
.author__news ul li:nth-child(2){
    background-color: #c72026;
}
.author__news ul li:nth-child(3){
    background-color: #29a4dd;
}
.author__news ul li a{
    display: block;
}
.author__news ul li i{
    color: #fff;
}

.categories{
    margin-top: 30px;
}
.categories h4{
    font-family: "playfair display";
    font-size: 22px;
    font-weight: 700;
    color: #17233e;
    line-height: 30px;
    margin-bottom: 16px;
}
.categories ul li{
    background-color: #fff;
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid #f1f1f1;
    margin-bottom: 10px;
}
.categories ul li a{
    font-size: 16px;
    color: #777777;
    display: block;
}
.categories ul li:hover{
    background-color: #029e9d;
}
.categories ul li:hover a{
    color: #fff;
}

.tags h4{
    font-family: "playfair display";
    font-size: 22px;
    font-weight: 700;
    color: #17233e;
    line-height: 30px;
    margin-bottom: 16px;
}
.tags ul{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.tags ul li a{
    padding: 10px 15px;
    border-radius: 10px;
    color: #444;
    font-size: 16px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 0 15px #cccccc37;
    display: block;
    transition: all ease-in-out .5s;
    width: max-content;
}
.tags ul li a:hover{
    background-color: #029e9d;
    color: #fff;
}

.attachment{
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px dashed #f1f1f1;
}
.attachment img{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}
/*end side bar*/


/*explore*/
.explore{
    background-image: url('../image/bg-explore.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 50px 0 100px 0;
    position: relative;
}

.heading__explore{
    text-align: center;
}
.heading__explore h5{
    font-family: "playfair display";
    font-size: 18px;
    font-weight: 700;
    color: #029e9d;
    line-height: 25px;
}
.heading__explore h2{
    font-family: "playfair display";
    font-size: 46px;
    font-weight: 700;
    color: #fdc703;
    line-height: 64px;
    margin: 10px 0;
}
.heading__explore a{
    font-family: "playfair display";
    color: #029e9d;
}
.heading__explore p{
    font-size: 16px;
    color: #777777;
    line-height: 24px;
}

.btn__play{
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #029e9d;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px auto;
    cursor: pointer;
}
.btn__play i{
    font-size: 28px;
    color: #fff;
}
.btn__play::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    border: 2px solid #fdc70380;
    opacity: .3;
    animation: borderAnimation 2s linear infinite;
}
.btn__play::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    border: 2px solid #fdc70380;
    opacity: .3;
    animation: borderAnimation 2s linear 1s infinite;
}
@keyframes borderAnimation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    75% {
        -webkit-transform: scale(1.75);
        transform: scale(1.75);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}
.bg__shape__explore{
    background-image: url('../image/shape6.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
}
.video__explore{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #00000080;
    z-index: 22;
    visibility: hidden;
    opacity: 0;
}
#videoExplore{
    position: absolute;
    width: 80%;
    height: 80%;
    top: 30%;
    left: 10%;
    object-fit: cover;
    z-index: 25;
}
.close__video{
    position: absolute;
    top: 4%;
    right: 10%;
    cursor: pointer;
}
.close__video i{
    font-size: 30px;
    color: #fff;
}
/*end explore*/

/*partners*/
.partners{
    padding: 50px 0;
}
.heading__partners{
    text-align: center;
    margin-bottom: 50px;
}
.heading__partners h5{
    font-family: "playfair display";
    font-size: 22px;
    color: #fdc703;
    font-weight: 700;
    line-height: 30px;
}
.heading__partners h2{
    font-family: "playfair display";
    font-size: 46px;
    color: #17233e;
    font-weight: 700;
    line-height: 55px;
    margin: 10px 0;
}
.heading__partners h2 span{
    font-family: "playfair display";
    color: #029e9d;
}
.heading__partners p{
    font-size: 16px;
    color: #777777;
    line-height: 24px;
}
.main__partners{
    width: 85% !important;
    margin: 0 auto;
}
.list__partners{
    padding: 16px 24px;
}
.list__partners img{
    object-fit: cover;
}
/*end partners*/

/*footer*/
footer{
    background-image: url('../image/bg-footer.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    position: relative;
    background-color: #17233e;
    padding-top: 160px;
    padding-bottom: 30px;
}
.shape__footer{
    background-image: url('../image/shape8.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 124px;
}
.main__footer{
    width: 85%;
    margin: 0 auto;
    position: relative;
}
.main__ins{
    position: relative;
    margin-bottom: 80px;
}
.slide__ins img{
    object-fit: cover;
    border-radius: 10px;
}
.btn__follow{
    position: absolute;
    width: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.btn__follow h5{
    position: relative;
    padding: 12px 0;
    font-family: "playfair display";
    font-size: 16px;
    color: #1a1a1a;
    border-radius: 10px;
    text-align: center;
    font-weight: 400;
    background-color: #fff;
    box-shadow: 0 0 50px #00000080;
}
.btn__follow h5::before{
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    border: 1px solid #fff;
    border-radius: 10px;
}

.footer__content{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer__about,
.newsletter{
    width: 33.33%;
}
.footer__link{
    width: 16.667%;
}
.footer__about p{
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    font-weight: 400;
    margin: 20px 0;
}
.footer__about ul li{
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
}

.footer__link h3,
.newsletter h3{
    font-size: 26px;
    font-family: "playfair display";
    color: #fff;
    font-weight: 700;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 20px;
}
.footer__link h3::before,
.newsletter h3::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #fff;
}
.footer__link ul li a{
    font-size: 16px;
    color: #fff;
}
.footer__link ul li{
    margin-bottom: 20px;
}
.newsletter p{
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    margin-bottom: 20px;
}
.form-sub{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form-sub input{
    width: 60%;
    height: 50px;
    font-size: 15px;
    font-weight: 300;
    color: #777777;
    padding-left: 20px;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    outline: none;
}
.form-sub button{
    width: 38%;
    position: relative;
    background-color: #029e9d;
    border-radius: 10px;
    font-size: 14px;
    color: #fff;
    padding: 14px 24px;
    box-shadow: 0 0 0 4px #ffffff1a;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 1;
}
.form-sub button::before{
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    border-radius: 10px;
    left: 0;
    top: 0;
    background-color: #fdc703;
    transition: all ease-in-out 0.5s;
    z-index: -1;
}
.form-sub button:hover::before{
    width: 100%;
    transition: all ease-in-out 0.5s;
}

.footer__payment{
    margin-top: 50px;
}
.payment__support ul{
    display: flex;
    gap: 5px;
}
.payment__support ul li{
    color: #fff;
    font-size: 16px;
}
.payment__support ul li i{
    font-size: 24px;
}

.copyright{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-radius: 10px;
    background-color: #fbfbfb12;
    margin-top: 30px;
}
.copyright__text p{
    font-size: 16px;
    color: #fff;
}
.social__link ul{
    display: flex;
    gap: 5px;
}
.social__link ul li a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff26;
    display: block;
    text-align: center;
    line-height: 40px;
}
.social__link ul li i{
    color: #fff;
}
.social__link ul li a:hover{
    background-color: #029e9d;
    transition: all linear 0.3s;
}
/*end footer*/


.back-to-top{
    height: 50px;
    width: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    border: none;
    background-color: #029e9d;
    color: #FFF;
    border-radius: 50%;
    transition: all linear 0.3s;
    opacity: 0;
    overflow: hidden;
    z-index: 3;
}

.back-to-top i{
    font-size: 20px;
    -webkit-text-stroke: 0px #fff;
}

.back-to-top:hover{
    cursor: pointer;
}

.btn-active.animate{
    transition: all linear 0.3s;
    opacity: 1;
}


@media only screen and (max-width: 1200px){
    .menu{
        display: none;
    }
    .menu__bar{
        display: block;
    }
    .logo{
        width: 25%;
    }   


    .banner__des__content h1{
        font-size: 44px;
    }
    .destination__description h1,
    .heading__explore h2,
    .heading__partners h2{
        font-size: 36px;
    }

    .destination__content,
    .side__bar__des{
        width: 100%;
    }
    .heading__explore,
    .heading__partners{
        width: 85%;
        margin: 0 auto;
    }



    .footer__about, .newsletter,
    .footer__link{
        width: 48%;
    }
}

@media only screen and (max-width: 767.98px){
    .logo{
        width: 35%;
    }

    .banner__des__content h1{
        font-size: 28px;
    }
    .main__destination__detail{
        width: 95%;
    }
    .destination__description h1, .heading__explore h2, .heading__partners h2{
        font-size: 28px;
    }
    .list__des__service,
    .list__destination__gallery img,
    .review__box,
    .review__progress{
        width: 100%;
        margin-bottom: 20px;
    }
    .group__form__review{
        width: 100%;
    }
    .btn__submit__review{
        width: 100%;
    }


    .main__footer{
        width: 95%;
    }
    .copyright{
        justify-content: center;
        gap: 10px;
    }
    .footer__about, .newsletter, .footer__link{
        width: 100%;
    }
    .payment__support ul{
        justify-content: center;
    }
}

@media only screen and (max-width: 992px){
    #videoExplore{
        width: 100%;
        height: 45%;
        left: 0;
        top: 50% !important;
        transform: translateY(-50%);
    }
    .close__video{
        top: 24%;
        right: 2%;
    }
}