@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&family=Saira:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai:wght@300&display=swap');
:root {
    --font-family: 'Saira','IBM Plex Sans Thai' ;
    --main-color: #154e73;
    --light-main-color: rgba(21,78,115,0.1);
    --second-color: #CBAF87;
    --hover-color: #F0ECE3;
    --body-color: #2a2928 ;
    --black: #090501 ;
    --white: #fff ;
    --light: #F8F0E5 ;
}
::-moz-selection {
    background-color: var(--main-color);
    color: var(--light);
}


::selection {
    background-color: var(--main-color);
    color: var(--light);
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--body-color);
    line-height: 1.5;
    overflow-x: hidden;
    background: var(--white);
    /*background-image: url("../images/icon/bg_body.png");*/
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: inherit;
    cursor: pointer;
    transition: all 0.5s;
}

button, input {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    appearance: inherit;
    list-style: none;
    font-size: inherit;
    letter-spacing: initial;
    outline: none;
    font-family: inherit;
}

h1, h2, h3, h4 {
    padding: 0;
    margin: 0;
}

h1{
    color: var(--main-color);
    font-size: 36px;
    font-weight: inherit;
    line-height: revert;
}
h2{
    color: var(--black);
    font-size: 32px;
    font-weight: inherit;
}
h4{
    font-size: 16px;
    color: var(--second-color);
}
figure {
    margin: 0;
}
.section_header {
    position: absolute;
    z-index: 3;
    width: 100%;
    padding: 50px 0;
    color: var(--white);
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.5s;
}

.box_weather {
    display: inline-block;
    float: left;
}



.box_language {
    text-transform: uppercase;
    float: right;
    display: inline-block;
}

.box_language img {
    height: 15px;
    vertical-align: middle;
    margin-right: 3px;
}

.box_language a {
    padding: 0 10px;
    border-right: 1px solid #fff6;
}

.box_language a:nth-last-child(1) {
    padding-right: 0;
    border-right: none;
}

.main_menu {
    display: inline-block;
    width: 100%;
    background: var(--main-color);
    margin-top: 15px;
    padding: 0 0 0 25px;

}

.main_menu ul {
    margin: 0;
    padding: 0;
}

.main_menu li {
    list-style: none;
    float: left;
    line-height: 50px;
}

.main_menu a {
    padding: 0 15px;
}

.main_menu li:nth-child(1) a{
    padding: 0 15px 0 0;
}

.main_menu .col-xs-3 {
    text-align: center;
    position: relative!important;
}

.main_menu .col-xs-3 a {
    padding: 0;
}

.btn_booknow {
    width: 100%;
    line-height: 50px;
    border-radius: 0;
    border: none;
    text-transform: uppercase;
    background: var(--second-color);
    color: var(--white);
    padding: 0;
    transition: all .5s;
}

.overlay_slideshow {
    background: #00000066;
    position: absolute;
    width: 100%;
    height: 100%;
}

.dropdown-menu {
    background-color: var(--white);
}

.dropdown-menu li {
    line-height: normal;
    width: 100%;
    text-align: left;
}

.dropdown-menu > li > a {
    color: var(--main-color);
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    background-color: var(--main-color);
}

.section_slideshow {
    position: relative;
}

.text_logo {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 50px;
    margin: auto;
    text-align: center;
    width: 100%;
    z-index: 2;
}

.brand_logo {
    margin-bottom: 50px;
}
.brand_logo img{
    height: 70px;
}
.box_menuicon img {
    filter: brightness(0) invert(1);
    height: 25px;
}
.box_menuicon{
    position: absolute;
    bottom: 50px;
    width: 100%;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    z-index: 1;
}
.box_menuicon .menu_offers{
    float: left;
    display: inline-block;
}
.box_menuicon .menu_gallery{
    float: right;
    display: inline-block;
}
.box_menuicon p{
    margin: 0;
}
.box_menuicon a{
    display: inline-block;
    position: relative;
    z-index: 5;
}
.box_size{
    width: 100%;
    height: 500px;
    background-size: cover !important;
    position: relative;
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    object-fit: cover;
    transition: all 0.5s;
}
.box_details{
    padding: 0 0 0 50px;
    border-left: 3px solid var(--second-color);
    background: var(--white);
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.box_details:after{
    content: '';
    background: var(--white);
    width: 50px;
    height: 100%;
    position: absolute;
    right: -50px;
}
.btn_readmore{
    text-transform: uppercase;
    background: var(--second-color);
    padding: 15px 30px;
    color: var(--white);
    border: none;
    margin-top: 25px;
    transition: all 0.5s;
    display: inline-block;
}
.btn_readmore:hover{
    background: var(--main-color);
}
.box_details p{
    margin-bottom: 0;
}
.section_description{
    position: relative;
}
.section_description:before{
    content: '';
    background-image: url("../images/icon/icon_logo_left.png");
    width: 233px;
    height: 367px;
    position: absolute;
    left: 30px;
    top: 0;
    opacity: .9;
}
.box_size img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.section_description .col-xs-6:nth-last-child(1){
    position: absolute!important;
    right: 0;
}
.slide_photoindex .owl-nav{
    display: none;
}
.slide_photoindex .owl-dots{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
}
.owl-carousel{
    height: 100%;
}
.owl-theme .owl-dots .owl-dot span{
    background: none;
    border: 1px solid var(--main-color);
    margin: 0 5px;
}
.owl-theme .owl-dots .owl-dot.active span{
    background: var(--main-color);
}
.box_detailsaccommodations{
    border-left: none;
    background: var(--main-color);
    text-align: left;
    padding: 0 50px 0 0;
}
.box_detailsaccommodations:before{
    content: '';
    background: var(--main-color);
    width: 50px;
    height: 100%;
    position: absolute;
    left: -50px;
    z-index: 2;
}
.box_detailsaccommodations hr{
    border-top: 3px solid var(--second-color);
    width: 50px;
    margin: 20px 0;
}
.box_detailsaccommodations p{
    margin: 0;
}
.slide_accommodation .owl-dots{
    display: none;
    margin-top: 25px;
}
.owl-theme .owl-nav{
    position: absolute;
    top: 0;
    bottom: 0;
    height: 40px;
    margin: auto;
    width: 100%;
}
.owl-theme .owl-nav [class*=owl-]{
    margin: 0;
    background: #000;
    width: 40px;
    height: 40px;
    border-radius: 0;
    padding: 0;
    font-size: 20px;
    line-height: 40px;
    transition: all 0.5s;
}
.owl-theme .owl-nav [class*=owl-]:hover{
    background: var(--second-color);
}
.owl-prev{
    position: absolute;
    left: -40px;
}
.owl-next{
    position: absolute;
    right: -40px;
}
.section_offers{
    text-align: center;
    padding: 50px 0;
    position: relative;
}
.box_offers img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    float: left;
}
.details_offers{
    background: var(--second-color);
    padding: 40px 30px 30px;
    text-align: center;
    display: inline-block;
    width: 100%;
    color: var(--white);
    position: relative;
}
.details_offers h2{
    color: var(--main-color);
}
.details_offers p{
    margin: 0;
}
.details_offers .btn_readmore{
    background: var(--main-color);
}
.details_offers .btn_readmore:hover, .slide_accommodation .btn_readmore:hover{
    background: var(--white);
    color: var(--second-color);
}
.details_offers:before{
    content: '';
    background-image: url("../images/icon/giftbox.png");
    width: 20px;
    height: 20px;
    background-size: contain;
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3;
    filter: brightness(0) invert(1);
}
.details_offers:after{
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -25px;
    z-index: 2;
    background: var(--main-color);
}
.slide_offers{
    margin-top: 50px;
}
.section_offers:after{
    content: '';
    width: 100%;
    height: 50%;
    background: var(--main-color);
    position: absolute;
    bottom: 0;
    left: 0;
}
.slide_offers .owl-nav{
    display: none;
}
.section_facilities{
    padding: 50px 0;
    position: relative;
    text-align: center;
}
.section_facilities .box_details{
    border-left: none;
    border-right: 3px solid var(--second-color);
    padding: 0 50px 0 0;
    text-align: left;
}
.section_facilities .box_details:before{
    content: '';
    background: var(--white);
    width: 50px;
    height: 100%;
    left: -50px;
    top: 0;
    position: absolute;
    z-index: 2;
}
.section_facilities .box_details:after{
    content: none;
}
.section_facilities .box_details h2{
    color: var(--main-color);
}
.section_facilities .col-xs-6:nth-last-child(1){
    float: right;
}
.section_facilities:after{
    content: '';
    background-image: url("../images/icon/icon_logo_right.png");
    width: 233px;
    height: 367px;
    position: absolute;
    top: 0;
    right: 30px;
    opacity: 0.7;
}
.slide_facilities{
    margin-top: 50px;
}
.slide_facilities .owl-nav{
    display: none;
}
.slide_facilities .owl-dots .owl-dot{
    display: block;
}
.slide_facilities .owl-dots .owl-dot span{
    margin: 5px 0;
}
.slide_facilities .owl-dots{
    position: absolute;
    right: -40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 0;
    bottom: 0;
}
.section_footer{
    text-align: center;
}
.section_footer .box_footer{
    background: var(--main-color);
    padding: 50px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section_footer hr{
    border-top: 3px solid var(--second-color);
    width: 100px;
}
.box_map{
    background: var(--second-color)!important;
}
.box_map iframe{
    width: 100%;
    height: 100%;
}
.section_footer{
    position: relative;
    padding-top: 350px;
}
.section_footer:before{
    content: '';
    background-image: url("../images/icon/paralax.webp");
    height: calc(100% - 50px);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: bottom;
    z-index: -1;
    background-size: cover;
    background-attachment: fixed;
}
.section_coppyright{
    padding: 25px 0;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 14px;
}
.section_footer .col-xs-6{
    position: relative!important;
}
.section_footer .col-xs-6:nth-child(1):after{
    content: '';
    background-image: url("../images/icon/icon_logo_right.png");
    width: 233px;
    height: 367px;
    position: absolute;
    top: 0;
    right: 15px;
    filter: brightness(0) invert(1);
    opacity: 0.03;
}
.scroll_menu{
    position: fixed;
    padding: 0!important;
    z-index: 7;
    background: var(--main-color);
    height: 50px;
    box-shadow: rgba(0, 0, 0, 0.09) 0 0 10px;
}
.scroll_menu .box_weather, .scroll_menu .box_language{
    display: none;
}
.scroll_menu .main_menu{
    margin: 0;
}
/*.scroll_menu .container{*/
/*    width: 100%;*/
/*    padding: 0!important;*/
/*}*/
.box_reservation h1{
    font-size: 30px;
    color: var(--white);
}
.box_social i{
    background: var(--second-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    transition: all 0.5s;
}
.box_social a{
    display: inline-block;
}
.box_social a:hover i{
    background: var(--white);
    color: var(--second-color);
}
.box_footer p{
    margin-bottom: 0;
}
.box_social{
    margin-top: 15px;
    display: inline-block;
    position: relative;
    z-index: 2;
}
.container{
    padding: 0;
}
.btn_booknowmobile{
    display: none;
}
.button_container {
    position: relative;
    top: 17px;
    left: 0;
    height: 15px;
    width: 30px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.5s ease;
}
.button_container:before{
    content: 'Menu';
    position: relative;
    left: 39px;
    top: -4px;
}
.menu_mobile .active:before{
    content: 'Close';
}
.button_container:hover {
    opacity: 1;
}
.button_container.active .top {
    -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: var(--white) !important;
}
.button_container.active .middle {
    opacity: 0;
    background: var(--white);
}
.button_container.active .bottom {
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: var(--white) !important;
}
.button_container span {
    background: var(--white);
    border: none;
    height: 1px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
}
.button_container span:nth-of-type(2) {
    top: 7px;
}
.button_container span:nth-of-type(3) {
    top: 14px;
}

.overlay_menu {
    position: fixed;
    background: var(--second-color);
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    overflow: hidden;
    z-index: 9;
}
.overlay_menu.open {
    opacity: 1;
    visibility: visible;
    width: 100%;
}
.overlay_menu.open li {
    -webkit-animation: fadeInUp .5s ease forwards;
    animation: fadeInUp .5s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}
.overlay_menu.open li:nth-of-type(2) {
    -webkit-animation-delay: .40s;
    animation-delay: .40s;
}
.overlay_menu.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}
.overlay_menu.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s;
}
.overlay_menu.open li:nth-of-type(5) {
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
}
.overlay_menu.open li:nth-of-type(6) {
    -webkit-animation-delay: .60s;
    animation-delay: .60s;
}
.overlay_menu.open li:nth-of-type(7) {
    -webkit-animation-delay: .65s;
    animation-delay: .65s;
}
.overlay_menu.open li:nth-of-type(8) {
    -webkit-animation-delay: .70s;
    animation-delay: .70s;
}
.overlay_menu.open li:nth-of-type(9) {
    -webkit-animation-delay: .75s;
    animation-delay: .75s;
}
.overlay_menu.open li:nth-of-type(10) {
    -webkit-animation-delay: .80s;
    animation-delay: .80s;
}


.overlay_menu nav {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}
/*.overlay_menu ul {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 0 auto;*/
/*    display: inline-block;*/
/*    position: relative;*/
/*    height: 100%;*/
/*}*/
.overlay_menu ul li {
    display: block;
    height: 25%;
    position: relative;
    padding: 10px 0;
    opacity: 0;
    width: 100%;
}
.overlay_menu ul li a {
    display: block;
    position: relative;
    color: var(--white);
    text-decoration: none;
    overflow: hidden;
    line-height: inherit;
    transition: all 0.5s;
}
.overlay_menu ul li a:hover {
    color: var(--main-color);
}
.overlay_menu ul li a:hover:after, .overlay_menu ul li a:focus:after, .overlay_menu ul li a:active:after {
    width: 100%;
}
.overlay_menu .active:after{
    content: none;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}
.nav_mobile .overlay_menu .active a {
    color: var(--main-color);
}
.menu_mobile{
    display: none;
}
.base_plus_icon{
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    z-index: 55;
    cursor: pointer;
    display: block;
}
.base_plus_icon .plus_icon{
    position: absolute;
    width: 20px;
    height: 40px;
    right: 0;
    top: 0;
    display: block;

}
.base_plus_icon .plus_icon:before,
.base_plus_icon .plus_icon:after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    margin: auto;
    display: block;
    transition: all 0.6s;
}
.base_plus_icon:hover .plus_icon:before,
.base_plus_icon:hover .plus_icon:after{
    background-color: var(--white);
}
.base_plus_icon .plus_icon:before{
    width: 1px;
    height: 20px;
}
.base_plus_icon .plus_icon:after{
    width: 20px;
    height: 1px;
}
.base_plus_icon .plus_icon.active:before{
    display: none;
}
.info {
    display: none;
    padding: 10px 15px 0!important;
}
.info.active {
    display: block;
}
.navbar_fix{
    padding: 80px 50px 0!important;
    display: inline-block;
    width: 100%;
}
.navbar_fix .active{
    color: var(--main-color);
}
.menu_mobile .button_container.active{
    top: -50px;
    left: 0;
}
.scroll_menu .menu_mobile .button_container.active{
    top: 15px;
    left: 50px;
}
.scroll_menu .button_container{
    left: 50px;
}
.scroll_menu .mainmenu_desktop li:nth-child(1) a{
    padding-left: 0;
}
.fix_body{
    overflow: hidden;
}
.info li{
    padding: 5px 0!important;
}
.slide_offers .owl-dots{
    display: none;
    margin-top: 25px;
}
.slide_offers .owl-dots .owl-dot.active span{
    background: var(--white);
}
.slide_offers .owl-dots .owl-dot span{
    border-color: var(--white);
}
#cycle-nav{
    z-index: 2;
}
.section_contentchild{
    padding: 50px 0;
    position: relative;
}
.item_child{
    margin: 25px 0;
    display: inline-block;
    width: 100%;
}
.section_contentchild .item_child:nth-last-child(1){
    margin-bottom: 0;
}
.section_contentchild .box_details{
    border-right: 3px solid var(--second-color);
    border-left: none;
    padding: 0 50px 0 0;
}
.section_contentchild .box_details h2{
    color: var(--main-color);
}
.section_contentchild .box_details:after{
    right: auto;
    left: -50px;
    background: var(--white);
}
.section_contentchild:after {
    content: '';
    background-image: url("../images/icon/icon_logo_right.png");
    width: 233px;
    height: 367px;
    position: absolute;
    top: 0;
    right: 30px;
    opacity: 0.7;
}

.box_imagesoffers:after {
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    left: auto;
    right: 25px;
    margin: auto;
    top: 0;
    bottom: 0;
    z-index: 3;
    background: var(--main-color);
}
.box_imagesoffers:before {
    content: '';
    background-image: url('../images/icon/giftbox.png');
    width: 20px;
    height: 20px;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 40px;
    margin: auto;
    z-index: 4;
    filter: brightness(0) invert(1);
}
.section_contentchildoffers .box_details h4{
    color: var(--white);
}
.section_contentchildoffers .box_details{
    border-right: none;
    background: var(--second-color);
    color: var(--white);
}
.section_contentchildoffers .box_details:after{
    background: var(--second-color);
    /*border-left: 3px solid var(--main-color);*/
    z-index: -1;
}
.section_contentchildoffers .box_details .btn_readmore{
    background: var(--main-color);
}
.section_contentchildoffers .box_details .btn_readmore:hover{
    color: var(--second-color);
    background: var(--white);
}
.section_contentchildoffers .box_details ul{
    margin: 25px 0 0 40px;
    padding: 0;
}
.section_contentchildcontact{
    text-align: center;
}
.form_contact{
    text-align: left;
    width: 600px;
    margin: 25px auto 0;

}
.input_contact{
    border: 1px solid #eee;
    padding: 10px;
    width: 100%;
    background: none;
}
.form_contact textarea{
    height: 150px;
    font-family: inherit;
    font-size: inherit;
}
.form_contact::placeholder{
    color: #888!important;
}
.form_contact .col-xs-12{
    margin-bottom: 15px;
}
.form_contact .col-xs-12:nth-last-child(1), .form_contact .col-xs-12:nth-last-child(2){
    margin-bottom: 0;
}
.form_contact .btn_readmore{
    margin: 0;
    padding: 10px;
    width: 100%;
}
.image_photo{
    width: 100%;
    height: 200px;
    background-size: cover!important;
    background-position: center;
    transform: scale(1);
    transition: all 0.5s;
}
.overlay_gallery:hover .image_photo{
    transform: scale(1.1);
}
.padding_gallery{
    padding: 10px;
}
.row_gallery{
    margin-left: -10px;
    margin-right: -10px;
}
.demo_gallery li{
    width: 25%;
    float: left;
}
.view {
    overflow: hidden;
    position: relative;
    cursor: default;
}

.overlay_gallery:hover .mask {
    opacity: 1;
}

.hm-red-strong .full-bg-img, .hm-red-strong .mask {
    background-color: #00000099;
}

.overlay_gallery .mask {
    opacity: 0;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.view .mask {
    background-attachment: fixed;
}

.view .content, .view .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    cursor: pointer;
}

.overlay_text_top {
    color: var(--white) !important;
    top: 10px;
    position: absolute;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

.text_gallery_hover {
    color: var(--white);
    text-align: center!important;
    opacity:1;
    transition: all 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
    margin: auto;
}

.text_gallery_hover i {
    background: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: auto;
    padding: 10px 0;
    font-size: 20px;
    color: rgb(255 255 255);
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover{
    border-color: var(--main-color);
}
.demo_gallery h2{
    color: var(--main-color);
    font-size: 24px;
    position: relative;
}
.demo_gallery{
    display: inline-block;
    width: 100%;
    margin-bottom: 25px;
}
.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html{
    display: none;
}
.section_gallery .demo_gallery:nth-last-child(1){
    margin: 0;
}
.section_amenities h2{
    color: var(--main-color);
}
.section_amenities ul{
    padding: 0;
    margin: 25px 0;
    display: inline-block;
    width: 100%;
}
.section_amenities li{
    list-style: none;
    padding: 10px;
    width: 25%;
    float: left;
}
.section_amenities img{
    height: 20px;
    vertical-align: sub;
    margin-right: 10px;
}
.section_info .demo_gallery{
    margin: 0;
}
.section_sitemap ul{
    margin-top: 25px;
}
.section_sitemap li{
    list-style: none;
    padding: 5px;
}
.sub_menu{
    margin: 0!important;
}
.sub_menu li{
    list-style: disc;
}
.dropdown-menu li:nth-child(1) a{
    padding: 10px 20px!important;
}
.box_inout {
    z-index: 2;
}
.box_reservation select {
    cursor: pointer;
}