*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

@font-face {
    font-family: 'Literata';
    src: url('../font/Literata-Italic-VariableFont_opsz.html\,wght.ttf')  format('truetype'), /* Safari, Android, iOS */
}

a{
    text-decoration: none;
}

ul li{
    list-style: none;
}

body{
    /* overflow-y: scroll;
    overflow-x: hidden; */
    /* width: 100%;
    height: 100%;
    overflow: auto; */
}
.line-2 {
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.close__sidebar{
    position: fixed;
    top: 30px;
    right: 10px;
    opacity: 0;
    z-index: 4;
    transition: all linear 0.4s;
    z-index: -1;
    /* transform: translateY(50px); */
}
.close__sidebar i{
    font-size: 18px;
    color: #fff;
}
.overlay__menu{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #0b0b0b;
    display: none;
    opacity: 0.3;
    z-index: 20;
}


/*mobile sidebar*/
.mobile-sidebar{
    width: 260px;
    height: 100%;
    background-color: #f3f3f3;
    position: fixed;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    transition: all linear 0.4s;
    z-index: 25;
}

.hidden__menu{
    opacity: 1;
    transform: translateX(0) !important;
}


.hidden__list__menu{
    opacity: 1;
    transform: translateX(0);
}

.menu__hotel li a{
    color: #666666d9;
}


/***********************************/
.menu__hotel .sub__menu__mobile{
    /* padding: 8px 20px; */
    border-bottom: 1px solid #dbdbdbd9;
}
.menu__hotel .sub__menu__mobile a{
    padding-left: 20px;
}
.menu__hotel .sub__menu__mobile{
    padding: 8px 0;
}
.menu__hotel .sub__menu__title__mobile{
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
}
.dropdown__menu__mobile{
    display: none;
}
.dropdown__menu__mobile li{
    padding: 8px 20px;
    border-bottom: 1px solid #dbdbdbd9;
}
.dropdown__menu__mobile li:first-child{
    border-top: 1px solid #dbdbdbd9;
}

.sub__menu__mobile.show__menu__child .dropdown__menu__mobile{
    display: block;
}
.sub__menu__mobile.show__menu__child{
    border-bottom: none;
}
.sub__menu__mobile.show__menu__child .sub__menu__title__mobile{
    padding-bottom: 8px;
}
.sub__menu__title__mobile i{
    transition: all linear 0.3s;
}
.rotate__icon{
    transform: rotate(180deg);
    transition: all linear 0.3s;
}
/***********************************/
/*end mobile sidebar*/



.fixed{
    background-color: #fff;
    height: 90px;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    transform: translateY(-100%);
    transition:  all linear 0.3s;
    z-index: 10;
    box-shadow: 1px 1px 10px rgb(0 0 0 / 15%);
}

.fixed .logo img{
    width: 100%;
}

.fixed .nav__bar__fixed li a{
    /* color: rgba(102,102,102,.85); */
    color: #000;
    font-size: 15px;
}

.fixed .nav__bar__fixed li:hover a{
    color: #666666;
}

.fixed .nav__bar__fixed li::after{
    position: absolute;
    content: "";
    width: 5%;
    height: 4px;
    bottom: -3px;
    left: 50%;
    background-color: #132146;
    transform: translateX(-50%);
    transition: all linear 0.3s;
}
.fixed .nav__bar__fixed li:hover::after{
    width: 100%;
    transition: all linear 0.3s;
}
header{
    height: 90px;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 2;
}

.header{
    width: 85%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.logo{
    width: 15%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav__bar{
    width: 80%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid #fff;
}

.nav__bar li{
    position: relative;
}
.nav__bar li::after{
    content: "";
    position: absolute;
    bottom: -4px;
    height: 4px;
    background-color: #fff;
    opacity: 0;
    width: 5%;
    left: 50%;
    transition: all linear 0.3s;
    transform: translateX(-50%);
}


/****************************/
.sub__menu{
    position: relative;
}
.dropdown__menu{
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.6);
}
.nav__bar .dropdown__menu li a{
    color: #ffffff;
}
.nav__bar .dropdown__menu li{
    padding: 10px;
}
.sub__menu:hover .dropdown__menu{
    display: block;
}
.nav__bar .dropdown__menu li::after{
    display: none;
}



.sub__menu__fixed{
    position: relative;
}
.dropdown__menu__fixed{
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.6);
}
.fixed .nav__bar__fixed .dropdown__menu__fixed li a{
    color: #ffffff;
}
.nav__bar__fixed .dropdown__menu__fixed li{
    padding: 10px;
}
.sub__menu__fixed:hover .dropdown__menu__fixed{
    display: block;
}
.nav__bar__fixed .dropdown__menu__fixed li::after{
    display: none;
}


/***********************************/




.language select{
    background-color: transparent;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
}

.language__fixed select{
    color: rgba(102,102,102,.85);
}

.language select option{
    color: #000;
}

.nav__bar li:hover{
    font-weight: bold;
}

.nav__bar li:hover::after{
    width: 100%;
    opacity: 1;
    transition: all linear 0.3s;
}

.nav__bar li a{
    color: #ffffff;
    font-size: 15px;
    width: 100%;
    height: 100%;
}

.show-sidebar{
    display: none;
    z-index: 6;
}




 .banner{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 465px;
    width: 100%;
}




/*footer*/
footer{
    background-color: #8e9b77;
    padding-top: 30px;
    padding-bottom: 10px;
}

.main__footer{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}

.main__footer ul{
    width: 32%;
}

.main__footer ul li{
    color: #f1f1f1;
}

.footer__location{
    line-height: 24px;
}
.footer__location li, .footer__location li a{
    font-size: 15px;
    color: #f1f1f1;
}

.footer__list__hotel li:first-child,
.terms li:first-child{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: none;
}
.footer__list__hotel li,
.terms li{
    padding: 10px 0;
    border-bottom: 1px solid #97a382;
}
.footer__list__hotel li a,
.terms li a{
    color: #f1f1f1;
    font-size: 15px;
}

.end__footer{
    text-align: center;
    font-size: 15px;
    color: #fff;
    margin-top: 30px;
}

/*end footer*/


.back-to-top{
    height: 50px;
    width: 50px;
    position: fixed;
    bottom: 40px;
    right: 5px;
    border: none;
    background-color: #132146;
    color: #FFF;
    border-radius: 50%;
    transition: all linear 0.3s;
    transform: translateY(20px,0);
    opacity: 0;
    overflow: hidden;
    z-index: 3;
}

.back-to-top i{
    font-size: 30px;
    -webkit-text-stroke: 0px #fff;
}

.back-to-top:hover{
    cursor: pointer;
}

.btn-active.animate{
    -webkit-transform: translate(0, -20px);
    transition: all linear 0.3s;
    opacity: 1;
}
/*chat*/
.mess{
    position: fixed;
    bottom: 120px;
    right: 5px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #127ace;
    border: none;
    cursor: pointer;
    transition: all linear 0.2s;
    z-index: 5;
    /* transform: translateY(5px); */
    box-shadow: 0 7px 16px 0 rgb(0 0 0 / 10%);
}

.mess i{
    color: #fff;
    font-size: 25px;
}

.chat{
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 200px;
    right: 10px;
    border-radius: 3px;
    background-color: #f5f5f5;
    z-index: 35;
    opacity: 0;
    display: none;
    transition: all linear 0.6s;
    transform-origin: bottom right;
    transform: translateX(-10px);
}

.hidden{
    display: block;
}

.heading__chat{
    height: 56px;
    background-color: #0f67ad;
    display: flex;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    align-items: center;
}

.left__heading{
    display: flex;
    align-items: center;
    gap: 10px;
}

.left__heading div{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    line-height: 32px;
}

.left__heading i{
    color: #8c8c8c;
}

.left__heading p{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.right__heading{
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #fff;
    color: #175cc4;
    text-align: center;
    cursor: pointer;
}

.content__chat{
    width: 90%;
    background-color: #ebf5fd;
    margin: 10px auto;
    padding: 32px;
}

.content__chat h4{
    font-size: 20px;
    font-weight: normal;
}

.content__chat p{
    font-size: 12px;
    color: #000000;
    margin-top: 16px;
    margin-bottom: 19px;
}

.content__chat label{
    font-size: 14px;
    color: #000000;
    margin-bottom: 5px;
}

.form-chat div{
    display: flex;
    flex-direction: column;
}

.form-chat div input{
    height: 35px;
    background-color: #fff;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    padding-left: 15px;
    border: 1px solid #ddd;
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
    outline: none;
    margin-bottom: 35px;
}

.form-chat div input:hover{
    border-color: #cbced1;
    box-shadow: inset 0 -1.8em 1em 0 rgb(0 0 0 / 0%)
}

.form-chat div button{
    /* height: 35px; */
    background-color: #132146;
    padding: 10px 0;
    color: #fff;
    font-size: 16px;
    outline: none;
    border: 2px solid #1d74f5;
    cursor: pointer;
    text-transform: uppercase;
    opacity: 0.6;
}


/*end chat*/
@media only screen and (max-width: 768.98px) {
    .logo img {
        width: 65%;
    }

    .nav__bar li:first-child {
        display: none;
    }

    .nav__bar li:last-child {
        display: block !important;
    }

    .nav__bar li .fa-bars {
        font-size: 20px;
        color: #fff;
    }

    .nav__bar li::after {
        display: none;
    }

    .fixed .logo img {
        width: 56%;
    }

    .slider__intro .owl-nav {
        display: none;
    }

    .slider__home__gallery .owl-dots {
        display: none;
    }

    .description {
        margin-bottom: 30px;
    }

    .description, .slider__intro {
        width: 100% !important;
    }

    .main__about__us {
        flex-flow: column-reverse;
        gap: 20px;
    }

    .about__us__text {
        width: 100% !important;
    }

    .hotel {
        width: 100%;
    }

    .slider__home__gallery, .gallery__right {
        width: 100% !important;
    }

        .gallery__right h3 {
            width: 100%;
        }

    .main__promotion {
        width: 100%;
    }

    .bg__terms {
        width: 73%;
    }

    .form-offer input {
        width: 100%;
        z-index: 5;
        color: #000;
        margin-bottom: 20px;
    }

    .form-offer button {
        width: 100%;
    }

    .main__footer ul {
        width: 100%;
    }

    .footer__list__hotel {
        margin: 30px 0;
    }
}

@media only screen and (max-width: 820px) {
    .header, .main__intro, .main__about__us, .main__home__gallery {
        width: 95%;
    }

    .logo img {
        width: 67%;
    }

    .fixed .logo img {
        width: 52%;
    }

    .fixed .nav__bar__fixed li a {
        color: #000;
        font-weight: bold;
    }

    .fixed .nav__bar li:last-child i {
        color: #000;
    }

    .slider__intro .owl-nav {
        display: none;
    }

    .about__us__text {
        width: 100%;
        margin-bottom: 20px;
    }

    .main__about__us {
        flex-flow: column-reverse;
    }

    .hotel {
        width: 100%;
    }

    .description h4, .about__us__text h4 {
        font-size: 28px;
    }

    .main__promotion {
        width: 100%;
    }

    .form-offer input {
        width: 100%;
        margin-bottom: 20px;
    }

    .form-offer button {
        width: 100%;
    }

    .bg__terms {
        width: 80%;
        z-index: -1;
    }

    .main__footer ul {
        width: 100%;
    }

    .footer__list__hotel {
        margin: 30px 0;
    }
}

.hotel__des {
    height: auto;
}

.hotel {
    gap: 15px;
}

.image__promotion {
    width: 50%;
}

.content__promotion {
    width: 50%;
}

.slider__home__gallery .owl-nav {
    display: none;
}

.bg__img__share {
    width: 100%;
}

.img__opacity {
    transform: translate(-50%, -50%);
    left: 50%;
    width: 85%;
}

.content__promotion h2 {
    font-size: 28px;
}

.content__promotion {
    padding: 40px 0px 0px 0px;
}

.end__footer {
    margin: 30px auto 0 auto;
    width: 85%;
}




/*room info*/
.room__info {
    padding: 30px 0;
}

.main__room__info {
    width: 85%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
}

.slider__room__intro {
    width: 35% !important;
    padding: 20px 30px 0 0;
}

    .slider__room__intro h5 {
        font-size: 27px;
        font-weight: 600;
        font-family: "Playfair Display";
        margin-bottom: 20px;
        width: 90%;
    }

    .slider__room__intro p {
        font-size: 14px;
        line-height: 22.4px;
        margin-bottom: 16px;
    }

    .slider__room__intro ul li {
        font-size: 14px;
        margin-bottom: 5px;
    }

        .slider__room__intro ul li:nth-child(1) i {
            margin-right: 8px;
        }

        .slider__room__intro ul li:nth-child(2) i {
            margin-right: 6px;
        }

        .slider__room__intro ul li:nth-child(3) i {
            margin-right: 4px;
        }

        .slider__room__intro ul li:nth-child(4) i {
            margin-right: 8px;
        }

        .slider__room__intro ul li:nth-child(5) i {
            margin-right: 4px;
        }

        .slider__room__intro ul li:nth-child(6) i {
            margin-right: 8px;
        }

        .slider__room__intro ul li i {
            font-size: 18px;
        }

.btn-book-room {
    text-align: center;
    margin-top: 19px;
    margin-bottom: 38px;
}

    .btn-book-room a {
        display: inline-block;
        padding: 10px 25px;
        background-color: rgba(68,89,24,.6);
        border-radius: 5px;
        color: #fff;
        font-size: 14px;
        transition: all linear 0.3s;
    }

.btn-more-room {
    font-size: 14px;
    color: #132146;
    text-decoration: underline;
    text-decoration-color: #132146;
    line-height: 22.4px;
    letter-spacing: 0.42px;
    width: 100%;
    text-align: center;
}

.btn-book-room a:hover {
    box-shadow: inset 0 0 0 100px rgb(0 0 0 / 20%);
    transition: all linear 0.3s;
}

.slider__room__intro .owl-nav .owl-prev {
    position: absolute;
    top: 20px;
    right: 8%;
    color: #727272;
    background-color: transparent !important;
    font-size: 25px !important;
    transition: all linear 0.3s;
}

.slider__room__intro .owl-nav .owl-next {
    position: absolute;
    top: 20px;
    right: 4%;
    color: #727272;
    background-color: transparent !important;
    font-size: 25px !important;
    transition: all linear 0.3s;
}

    .slider__room__intro .owl-nav .owl-prev:hover,
    .slider__room__intro .owl-nav .owl-next:hover {
        color: #132146 !important;
        transition: all linear 0.3s;
    }

.slider__image__room {
    width: 65% !important;
}

.list__room__image img {
    width: 100%;
    /* height: auto;*/
    max-height: 500px;
    object-fit: cover;
}

/* .slider__image__room .owl-nav{
            width: 100%;
            justify-content: space-between;
            display: flex;
            position: absolute;
            top: 50%;
        } */

.slider__image__room .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 5%;
    color: #fff !important;
    background-color: transparent !important;
    font-size: 25px !important;
    transition: all linear 0.2s;
}

.slider__image__room .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: 5%;
    color: #fff !important;
    background-color: transparent !important;
    font-size: 25px !important;
    transition: all linear 0.2s;
}



.slider__image__room:hover .owl-nav .owl-prev {
    left: 4%;
    transition: all linear 0.2s;
    color: #727272 !important;
}

.slider__image__room:hover .owl-nav .owl-next {
    right: 4%;
    transition: all linear 0.2s;
    color: #727272 !important;
}
/*end room info*/

/*banner*/
.bg__banner__room {
    height: 100%;
}

    .bg__banner__room,
    .bg__banner__room .owl-stage-outer,
    .bg__banner__room .owl-stage,
    .bg__banner__room .owl-item,
    .bg__banner__room .owl-item .item {
        height: 100%;
    }

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bg__banner__room .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
}


.banner__room .bg__banner__room .owl-dots .owl-dot span {
    background-color: transparent;
    border: 1px solid #fff;
    width: 14px;
    height: 14px;
}

.banner__room .bg__banner__room .owl-dots .owl-dot:hover span {
    background-color: transparent;
}

.banner__room .bg__banner__room .owl-dots .owl-dot.active span {
    background-color: #f3bf51;
    border-color: #f3bf51;
}

/* .banner__room .bg__banner__room .owl-nav{
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.banner__room .bg__banner__room .owl-nav i{
    color: #fff;
    font-size: 25px;
    padding: 0 40px;
    transition: all linear 0.2s;
} */
.banner__room .bg__banner__room .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 4%;
    color: #fff;
    transition: all linear 0.2s;
    font-size: 24px !important;
}

.banner__room .bg__banner__room .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: 4%;
    color: #fff;
    transition: all linear 0.2s;
    font-size: 24px !important;
}

.banner__room:hover .bg__banner__room .owl-nav .owl-prev {
    left: 3.5%;
    transition: all linear 0.2s;
}

.banner__room:hover .bg__banner__room .owl-nav .owl-next {
    right: 3.5%;
    transition: all linear 0.2s;
}

.banner__room .bg__banner__room .owl-nav button:hover {
    background-color: transparent;
}

.banner__room:hover .bg__banner__room .owl-nav i {
    color: #727272;
    transition: all linear 0.3s;
}
/* .banner__room:hover .bg__banner__room .owl-nav i{
    padding: 0 30px;
    transition: all linear 0.2ss;
} */
/*end banner*/


/*start breadCumb */

.path__bcumb {
    width: 85%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px auto 21px;
}

    .path__bcumb a {
        color: #334862;
        font-size: 14px;
    }

    .path__bcumb i {
        font-size: 9px;
    }

    .path__bcumb span {
        font-size: 14px;
    }

/*End breadCumb */

.line-2 {
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

:root {
    --secondary-font: 'Gilda Display', serif;
    --normal-font: 'Barlow', sans-serif;
    --primary-color: #132146;
    --text-color: #222;
    --text-color-2: #666666;
    --b-color: #f8f5f0;
}

.container__news-item-pages-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 0;
}
/* paging */
.container__nws-item-pages-wrap {
    display: flex;
    justify-content: center;
}

.container__news-item-pages-item {
    list-style: none;
    display: inline-block;
}

.container__news-item-pages-link {
    display: inline-block;
    text-decoration: none;
    width: 40px;
    height: 40px;
    color: var(--text-color-2);
    border: 1px solid rgba(102,102,102,0.1);
    text-align: center;
    line-height: 37px;
    border-radius: 50%;
    font-size: 16px;
    font-family: var(--normal-font);
    margin: 0 5px;
}

    .container__news-item-pages-link i {
        font-size: 12px;
    }

    .container__news-item-pages-link:hover,
    .container__news-item-pages-link.active {
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
    }

.container__news-item-pages-item.active .container__news-item-pages-link {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

/* End paging */

/* fix css heading */

.fixed .logo img {
    width: 100%;
    height: auto;
}

.fixed .nav__bar__fixed li a {
    font-size: 15px;
}

/* .fixed .nav__bar__fixed li:hover a {
        color: #666666;
    }
	*/
.fixed .nav__bar__fixed li::after {
    position: absolute;
    content: "";
    width: 5%;
    height: 4px;
    bottom: -3px;
    left: 50%;
    background-color: #132146;
    transform: translateX(-50%);
    transition: all linear 0.3s;
}

.fixed .nav__bar__fixed li:hover::after {
    width: 100%;
    transition: all linear 0.3s;
}

.fixed .nav__bar li:last-child {
    color: #333;
}

.header {
    width: 85%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.logo {
    width: 15%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .logo a {
        height: 100%;
        display: flex;
        align-items: center;
    }

    .logo img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }


.nav__bar li {
    position: relative;
}

    .nav__bar li::after {
        content: "";
        position: absolute;
        bottom: -4px;
        height: 4px;
        background-color: #fff;
        opacity: 0;
        width: 5%;
        left: 50%;
        transition: all linear 0.3s;
        transform: translateX(-50%);
    }

.language select {
    font-size: 15px;
    background-color: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    cursor: pointer;
}

.language__fixed select {
    color: rgba(102,102,102,.85);
}

.language select option {
    color: #000;
}


.nav__bar li:hover::after {
    width: 100%;
    opacity: 1;
    transition: all linear 0.3s;
}

.nav__bar li a {
    color: #ffffff;
    font-size: 15px;
    width: 100%;
    height: 100%;
}

.nav__bar > li:last-child {
    display: none;
    color: white;
    z-index: 6;
}


@media only screen and (max-width: 820px) {
    .nav__bar li {
        display: none;
    }

        .nav__bar li:last-child {
            display: block;
            color: #fff;
        }

        .nav__bar li:nth-last-child(2) {
            display: block;
            color: #fff;
        }

    .nav__bar {
        justify-content: flex-end;
        gap: 30px;
    }

    .header, .main__intro, .main__about__us, .main__home__gallery {
        width: 95%;
    }

    .logo {
        width: 23%;
    }

        .logo img {
            width: 100%;
        }

    .fixed .logo img {
        width: 86%;
    }

    .fixed .nav__bar__fixed li a {
        color: #000;
        font-weight: bold;
    }

    .fixed .nav__bar li:last-child {
        color: black;
    }

    .slider__intro .owl-nav {
        display: none;
    }

    .about__us__text {
        width: 100%;
        margin-bottom: 20px;
    }

    .main__about__us {
        flex-flow: column-reverse;
    }

    .hotel {
        width: 100%;
    }

    .description h4, .about__us__text h4 {
        font-size: 28px;
    }

    .main__promotion {
        width: 100%;
    }

    .form-offer input {
        width: 100%;
        margin-bottom: 20px;
    }

    .form-offer button {
        width: 100%;
    }
}

@media only screen and (max-width: 767.98px) {
    .logo img {
        width: 100%;
        height: auto;
    }

    .fixed .logo {
        width: 44%;
    }

        .fixed .logo img {
            width: 100%;
            height: auto;
        }

    .header {
        border-bottom: 1px solid #fff;
    }

    .nav__bar {
        border-bottom: none;
    }

    .list__hotel {
        width: 100%;
        height: 100%;
        /* padding-bottom: 15px; */
        justify-content: center;
        gap: 15px;
    }

    .hotel__des {
        height: auto;
    }

    .hotel {
        gap: 15px;
    }

    .left__slider__room__home,
    .right__slider__room__home {
        width: 100% !important;
    }

    .owl-theme .owl-nav {
        display: none;
    }

    /*.image__share {
        margin-top: 215px;
    }*/

    .image__promotion {
        width: 100%;
    }

    .content__promotion {
        width: 100%;
    }

    .slider__home__gallery .owl-nav {
        display: none;
    }

    .bg__img__share {
        width: 100%;
    }

    .img__opacity {
        transform: translate(-50%, -50%);
        left: 50%;
        width: 85%;
    }

    .content__promotion h2 {
        font-size: 28px;
    }

    .content__promotion {
        padding: 40px 0px 0px 0px;
    }

    .main__room__info {
        width: 95%;
    }

    .slider__room__intro,
    .slider__image__room {
        width: 100% !important;
    }
}


/*Start  Advertising*/

.Advertising {
    width: 400px;
    height: 400px;
    position: fixed;
    top: 20%;
    left: 38%;
    z-index: 10;
}

.Advertising__title {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background: white;
}

    .Advertising__title p {
        font-weight: 600;
        color: #333;
        font-size: 14px;
    }

    .Advertising__title i {
        cursor: pointer;
    }

.Advertising__image {
    width: 100%;
    height: 100%;
}

    .Advertising__image a {
        width: 100%;
        height: 100%;
    }

        .Advertising__image a img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background: no-repeat;
        }

@media only screen and (max-width: 600px) {
    .Advertising {
        width: 300px;
        height: 300px;
        top: 15%;
        left: 13%;
    }
}

@media only screen and (max-width: 655px) {
    .logo img {
        width: 100%;
        height: auto;
    }
}

@media only screen and (max-width: 280px) {
    .logo {
        width: 50%;
    }

    .mobile-sidebar {
        width: 235px;
    }

    .slider__room__intro,
    .slider__image__room {
        width: 100% !important;
    }

    .slider__room__intro {
        max-height: 600px;
    }
}

.language select option:nth-child(1) {
    display: none;
}
/*End  Advertising*/
