@font-face {
    font-family: 'Inter Medium';
    src: url('../font/Inter-Medium.woff2') format('woff2'),
    url('../font/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter SemiBold';
    src: url('../font/Inter-SemiBold.woff2') format('woff2'),
    url('../font/Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter Light';
    src: url('../font/Inter-Light.woff2') format('woff2'),
    url('../font/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Bodoni MT Poster';
    src: url('../font/BodoniMTPosterCompressed.woff2') format('woff2'),
    url('../font/BodoniMTPosterCompressed.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: '../font/EucrosiaUPC';
    src: url('../font/EucrosiaUPC.woff2') format('woff2'),
    url('../font/EucrosiaUPC.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



:root {
    --pimary-color: #313131;
    --secondary-color: #ff0000;
    --inter-light: 'Inter Light', 'sans-serif';
    --inter-medium: 'Inter Medium', 'sans-serif';
    --inter-semibold: 'Inter SemiBold', 'sans-serif';
    --inter-bodoni: 'Bodoni MT Poster', 'sans-serif';
    --inter-eucrosia: 'EucrosiaUPC', 'sans-serif';

}
html {
    scroll-behavior: smooth;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--inter-light);
    font-size: 16px;
    color: #313131;
    line-height: 1.7;
    overflow-x: hidden;
    background: #f6f3e9;
}

input, select, button, a, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    cursor: pointer;
    outline: none;
    transition: all 0.25s;
}

input {
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    appearance: inherit;
    list-style: none;
}
::selection {
    background: #242424;
    color: #ffffff;
}

strong, b {
    font-family: var(--inter-semibold);
}

select option {
    color: black !important;
}
h1{
    font-family: var(--inter-bodoni);
    margin: 0;
    font-size: 56px;
    text-transform: uppercase;
    line-height: normal;
    letter-spacing: 2px;
    font-weight: inherit;
}
h2{
    font-family: var(--inter-eucrosia);
    margin: 0;
    font-size: 24px;
    text-transform: none;
    line-height: normal;
    font-weight: inherit;
}
h4{
    font-family: var(--inter-semibold);
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.container{
    width: 820px;
    padding: 0;
    position: relative;
}
.section_header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    background: #313131;
    height: 70px;
}
.scroll_menu {
    box-shadow: rgba(0, 0, 0, 0.09) 0 0 10px;
    z-index: 1;
}
.brand_logo{
    position: absolute;
    left: 0;
    top: 0;
    height: 70px;
    transition: all 0.25s;
}
.brand_logo img{
    height: 100%;
    width: auto;
    display: block;
    padding: 20px 0;
    transition: all 0.25s;
}
.hamberger_menu {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    transition: all 0.5s;
    top: 0;
    bottom: auto;
    height: 70px;
    margin: auto;
}
.hamberger_menu:before{
    content: none;
    background: var(--pimary-color);
    width: calc(100px + 15px);
    height: calc(30px + 15px);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50px;
}
.button_container {
    position: relative;
    height: 18px;
    width: 30px;
    margin: auto;
    cursor: pointer;
    transition: all 1s;
    z-index: 15;
    right: auto;
    left: 0;
    /*top: 15px;*/
    /*bottom: 0;*/
}
.button_container:before{
    content: 'Menu';
    color: #ffffff;
    position: absolute;
    left: -55px;
    top: 0;
    bottom: 0;
    text-transform: uppercase;
    font-size: 14px;
    line-height: normal;
    font-family: var(--inter-semibold);
}
.button_container:hover {
    opacity: 1;
}

.button_container.active .top {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
    transform: translateY(8px) translateX(0) rotate(45deg);
    background: #fff;
    width: 100%;
}

.button_container.active .middle {
    opacity: 0;
    background: #fff;
}

.button_container.active .bottom {
    -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
    transform: translateY(-8px) translateX(0) rotate(-45deg);
    background: #fff;
}

.button_container span {
    background: #ffffff;
    border: none;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    transition: all .35s ease;
    cursor: pointer;
}

.button_container span:nth-of-type(1) {
    width: 100%;
}

.button_container span:nth-of-type(2) {
    top: 8px;
}

.button_container span:nth-of-type(3) {
    top: 16px;
    width: 60%;
}
.button_container:hover span:nth-of-type(3), .button_container.active span:nth-of-type(3){
    width: 100%;
}

.overlay {
    position: fixed;
    /*background-image: url('../images/icon/bg.jpg');*/
    background: #000000c7;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    transition: all 0.5s;
    display: grid;
    z-index: 2;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    grid-template-columns: 2fr 2fr;
}

.overlay.open li {
    -webkit-animation: fadeInUp .9s ease forwards;
    animation: fadeInUp .9s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .40s;
    animation-delay: .40s;
}

.overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s;
}

.overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
}

.overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: .60s;
    animation-delay: .60s;
}

.overlay.open li:nth-of-type(7) {
    -webkit-animation-delay: .65s;
    animation-delay: .65s;
}

.overlay.open li:nth-of-type(8) {
    -webkit-animation-delay: .70s;
    animation-delay: .70s;
}

.overlay.open li:nth-of-type(9) {
    -webkit-animation-delay: .75s;
    animation-delay: .75s;
}

.overlay.open li:nth-of-type(10) {
    -webkit-animation-delay: .80s;
    animation-delay: .80s;
}

.overlay.open li:nth-of-type(11) {
    -webkit-animation-delay: .85s;
    animation-delay: .85s;
}

.overlay nav {
    position: relative;
    /* -webkit-transform: translateY(-50%); */
    /* transform: translateY(-50%); */
    text-align: left;
    padding: 0 50px;
    margin-top: 75px;
}

.overlay ul {
    list-style: none;
    margin: 100px auto 0;
    position: relative;
    height: 100%;
    color: #ffffff;
    text-align: left;
    padding: 0 30px;
    z-index: 60;
    font-size: 16px;
}

.overlay ul li {
    /*display: block;*/
    position: relative;
    padding: 8px 0;
    opacity: 0;
    width: 100%;
    line-height: initial;
}

.overlay ul li a {
    display: block;
    position: relative;
    color: #ffffff;
    text-decoration: none;
    /*overflow: hidden;*/
    opacity: 1;
    text-transform: uppercase;
    transition: all 0.25s;
}

.overlay ul li a.active,
.overlay ul li a:hover,
.nav_mobile .overlay-menu .active {
    color: #fcdf69;
    opacity: 1;
}

.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
    width: 100%;
}

@-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;
    }
}
.overlay-menu .left{
    flex: 1;
    background: #000000c0;
    -webkit-backdrop-filter: saturate(0);
    backdrop-filter: saturate(0);
    transition: all .3s ease;
}
.overlay-menu .right{
    flex: 1;
    background: var(--pimary-color);
    color: #fff;
    overflow: hidden;
    /*overflow-y: auto;*/
    height: 100%;
    text-align: left;
    position: absolute;
    right: 0;
    width: 50%;
}
.fix_body {
    overflow: hidden !important;
}
.section_logo{
    text-align: center;
    margin-top: 70px;
    padding: 50px 0;
}
.section_logo img{
    display: block;
    height: 150px;
    width: auto;
    margin: auto auto 15px;
}
.line_hr{
    margin: 15px 0;
}
.line_hr img{
    width: auto;
    height: 20px;
    display: block;
    margin: auto;
}
.section_group{
    text-align: center;
}
.row_group{
    margin-bottom: 50px;
}
.section_group h2{
    position: relative;
    margin: 0 auto;
    line-height: 50px;
}
.section_group h2:before{
    content: '';
    background-image: url("../images/icon/bg_title.png");
    width: 300px;
    height: 50px;
    background-size: contain;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-repeat: no-repeat;
    background-position: center;
}
.section_group .container{
    display: grid;
    grid-template-columns: 1fr;
}
.logo_hotels{
    margin: 50px 0;
}
.logo_hotels img{
    width: 200px;
    height: auto;
    display: block;
    margin: auto;
}
.images_hotels{
    border-radius: 30px;
    height: 550px;
    overflow: hidden;
    position: relative;
}
.images_hotels img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.images_icon {
    object-fit: cover;
    display: inline-block;
    width: 35px;
    height: 35px;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    background: var(--pimary-color);
    transition: all 0.25s;
    vertical-align: middle;
}
.see_gallery{
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    padding: 15px;
    border-radius: 100%;
}
.details_hotels{
    padding: 30px;
    text-align: left;
}
.details_hotels p{
    margin-top: 0;
}
.collapsible {
    cursor: pointer;
    width: 100%;
    border: none;
    background: none;
    text-align: center;
    outline: none;
    padding: 0;
    margin: 0;
    font-family: var(--inter-semibold);
}
.collapsible i{
    margin-right: 5px;
}
.collapsible.active .fa-caret-down:before {
    content: "\f0d8";
}
.content {
    /*max-height: 0;*/
    /*overflow: hidden;*/
    /*transition: max-height 0.2s ease-out;*/
    font-family: var(--inter-semibold);
}
.content ul{
    padding: 0;
    margin: 30px 0 0;
    display: inline-block;
    width: 100%;
}
.content li{
    list-style: none;
    padding: 10px 0;
    border-top: 1px solid var(--pimary-color);
    float: left;
}
.content li:nth-child(odd){
    width: 130px;
    font-family: var(--inter-light);
}
.content li:nth-child(even){
    width: calc(100% - 130px);
}
.hotels_socialmedia{
    text-align: center;
    width: 350px;
    margin: auto;
    font-family: var(--inter-semibold);
}
.hotels_socialmedia ul{
    margin: 30px 0 0;
}
.hotels_socialmedia li{
    border: none;
    width: 100%!important;
}
.hotels_socialmedia .images_icon{
    width: 30px;
    height: 30px;
    background: var(--pimary-color);
    margin-right: 10px;
}
.btn_social{
    background: none;
    border: 2px solid var(--pimary-color);
    padding: 10px 30px;
    width: 100%;
    text-align: left;
    border-radius: 50px;
    font-family: var(--inter-semibold);
    transition: all 0.25s;
}
.btn_social:hover{
    background: #fcdf69;
    color: var(--pimary-color);
    border-color: #fcdf69;
}
.btn_social:hover .images_icon{
    background: var(--pimary-color);
}
.btn_map{
    text-align: center;
    background: #009f51;
    color: #ffffff;
    border-color: #009f51;
    line-height: 30px;
}
.btn_map:hover{
    background: #018b47;
    border-color: #018b47;
}
.more_photo{
    display: none;
}
.content h4{
    font-family: var(--inter-light);
    letter-spacing: normal;
    text-align: center;
    text-transform: none;
    padding-top: 15px;
    font-size: 20px;
}
.images_map img{
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
}
.images_map img:nth-child(1){
    margin-bottom: 50px;
}
.section_footer{
    padding: 0 0 50px;
}
.more {
    display: none;
}
.new_paragraf{
    margin-top: 15px;
}