@font-face {
    font-family: "Montserrat-Medium";
    src: url("../font/Montserrat-Medium.woff2");
}

@font-face {
    font-family: "Poppins-Medium";
    src: url("../font/Poppins-Medium.woff2");
}

@font-face {
    font-family: "Montserrat-Italic";
    src: url("../font/Montserrat-Italic.woff2");
}

@font-face {
    font-family: "LilitaOne";
    src: url("../font/LilitaOne-Regular.woff2");
}

.idiomas {
    display: flex;
}

.idiomas a div {
    position: relative;
    background-color: var(--yellow);
    display: flex;
    color: var(--white);
    border-radius: .2vw;
    padding: 0.7vw 1vw;
    justify-content: center;
    align-items: center;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
    z-index: 1;
}

.idiomas a div img {
    width: 40px;
}

.idiomas a div::before {
    content: '';
    width: 0;
    height: 2.7em;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    background-image: linear-gradient(to right, var(--brown) 0%, #341e0980 100%);
    transition: .5s ease;
    display: block;
    z-index: -1;
}

.idiomas a div:hover::before {
    width: 100%;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* ---GLOBAL STYLES--- */

* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat-Medium";
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

 :root {
    --brown: #341e09;
    --yellow: #f48b29;
    --white: #fff;
}

body {
    background: var(--gray);
}

img,
svg {
    max-width: 100%;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

a {
    display: inline-block;
    text-decoration: none;
}

a,
button,
i {
    transition: .25s;
    cursor: pointer;
    font-size: 1vw;
}

@media (max-width: 996px) {
    p,
    a,
    button,
    span {
        font-size: 4.5vw;
    }
    i {
        font-size: 5.6vw;
    }
}

.left,
.right {
    border: none;
    background: var(--yellow);
    color: var(--brown);
    font-size: vw;
    border-radius: 100%;
    width: 2vw;
    height: 2vw;
}

.btn-slider:hover {
    background: var(--brown);
    color: var(--white);
}

button:hover {
    background: var(--brown);
    color: var(--white);
}

.tripadvisor>svg {
    width: 1.5vw;
    height: auto;
}

.tripadvisor svg path {
    fill: var(--brown);
}

.tripadvisor svg:hover path {
    fill: var(--white);
}

.tripadvisor>svg>path:first-child {
    transform: none !important;
}

.tripadvisor>svg>path {
    transform-origin: center !important;
}

.tripadvisor>svg>path:nth-child(2) {
    opacity: 1 !important;
}

.tripadvisor>svg>path:last-child {
    transform: none !important;
}

.tripadvisor2 svg {
    width: 36px;
    height: auto;
}

.tripadvisor2 svg path {
    fill: var(--white);
}

.tripadvisor2 svg:hover path {
    fill: var(--yellow);
}

section {
    width: 100%;
}

h1,
h2 {
    line-height: 1;
}

p {
    color: var(--dark-gray);
    font-size: 1vw;
    font-weight: 500;
    margin: 5px 0;
}


/* ---HEADER STYLES--- */

.header_box {
    padding: 0% 6%;
}

.desktop_box {
    position: relative;
    display: grid;
    grid-template-columns: 20% 50% 30%;
}

.desktop_box .bar_box {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

header .bar_box a {
    color: var(--brown);
    position: relative;
    width: fit-content;
    font-size: 1vw;
    font-weight: 600;
}

header .bar_box a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 12px;
    height: 2px;
    transform: translateX(-50%) scale(0);
    border-radius: 3px;
    background: var(--yellow);
    opacity: 0;
    transition: .25s;
}

header .navbar_active,
header .bar_box a:hover {
    color: var(--yellow)!important;
}

header .navbar_active::before,
header .bar_box a:hover::before {
    transform: translateX(-50%) scale(2) !important;
    opacity: 1 !important;
}

.desktop_box .media_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.desktop_box>div>a>img {
    width: 10vw;
}

header .contact_box {
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .contact_box a {
    font-size: 1vw;
}

header .mobile_box {
    display: none;
}

header .mobile_box .media_box {
    background: var(--yellow);
    display: flex;
    justify-content: center;
    align-items: center;
}

header .mobile_box .media_box a {
    width: 55%;
}

header .toggle_box {
    position: fixed;
    top: 30px;
    right: 20px;
    width: 35px;
    z-index: 9999;
}

header .active_menu path {
    transform-origin: left;
    transition: .25s;
}

header .active_menu path:first-child {
    transform: rotate(45deg) translateX(-15px);
}

header .active_menu path:nth-child(2) {
    opacity: 0;
}

header .active_menu path:last-child {
    transform: rotate(-45deg) translateX(-15px);
}

header .overlay_box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #00000030;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: .25s;
    z-index: 20;
}

header .active_menu .overlay_box {
    pointer-events: initial;
    opacity: 1;
}

header .mobile_box .nav_box {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 20px;
    transform: translateX(100%);
    background: var(--yellow);
    z-index: 9998;
    transition: .25s;
}

header .active_menu .nav_box {
    transform: translateX(0);
}

header .nav_box>a {
    width: 75%;
}

header .mobile_box .bar_box {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

header .mobile_box .slide_btn::after {
    background: white;
}

header .mobile_box .slide_btn:hover span {
    color: var(--orange);
}

header .networks_box {
    display: flex;
    justify-content: space-evenly;
    gap: 1vw;
}

header .networks_box i {
    color: var(--brown);
    transition: .25s;
    color: var(--brown);
}

header .networks_box a:hover i {
    color: white
}

.desktop_box>.contact_box>a {
    padding: .7vw 2vw;
    border-radius: .2vw;
    background-color: var(--yellow);
    color: var(--white);
    font-family: inherit;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}

.desktop_box>.contact_box>a::before {
    content: '';
    width: 0;
    height: 5em;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, var(--brown) 0%, #341e0980 100%);
    transition: .5s ease;
    display: block;
    z-index: -1;
}

.desktop_box>.contact_box>a:hover::before {
    width: 100%;
}

@media (max-width: 996px) {
    header .bar_box a {
        font-size: 4.5vw;
    }
    header .navbar_active,
    header .bar_box a:hover {
        color: var(--white)!important;
    }
    header .networks_box {
        padding: 12vh 0 0 0;
    }
    .container-header-info {
        display: flex;
        padding: 3%;
        justify-content: space-between;
        font-size: 18px;
        color: #fff;
        gap: 8px;
    }
    header .mobile_box .media_box a {
        width: 30%;
    }
    header .desktop_box {
        display: none;
    }
    header .mobile_box {
        display: block;
    }
    .idiomas a div {
        padding: 1.6vw 5vw;
    }
    .idiomas a div::before {
        height: 32px;
    }
    .tripadvisor>svg {
        width: 9vw;
    }
}


/* ---FOOTER STYLES--- */

footer {
    background: var(--brown);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.bar_box_footer {
    gap: 16%;
    display: grid;
    margin: 16px 0;
}

footer>.footer_box {
    padding: 8% 12vw;
}

footer a {
    width: fit-content;
    color: var(--white);
    font-size: .9vw;
    font-weight: 500;
}

footer a:hover {
    color: var(--yellow);
}

footer i {
    font-size: 25px;
    transition: none;
}

footer .footer_box {
    z-index: 3;
    display: flex;
    justify-content: space-around;
}

footer .link_box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px 0;
}

footer .networks_box {
    display: flex;
    gap: 10px 20px;
    margin: 20px 0;
}

footer .politics_box {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 1% 0%;
    gap: 20px;
}

footer .politics_box a {
    font-size: .8vw;
}

footer h2,
footer .opening_box h2 {
    font-size: 28px;
    font-weight: 500;
    color: #981f1df0;
    font-family: "Montserrat-Medium";
}

footer .hours_box .row_box {
    display: flex;
    justify-content: space-between;
}

footer .hours_box h2 {
    font-size: 20px;
}

footer .hours_box p {
    color: #4f4d4d;
    font-size: 16px;
    line-height: 2;
}

.credits_box>a {
    color: var(--brown)
}

.fa-circle-dot:before,
.fa-dot-circle:before {
    content: "\f192";
    color: #981f1d;
    font-size: 16px;
}

footer .credits_box {
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    gap: 1vw;
    padding: 1% 0 1% 0;
}

footer .credits_box a {
    font-size: .8vw;
}

footer .credits_box span {
    color: #fff;
    font-weight: 600;
}

footer #wave_02 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-98%);
}

.div-yellow .title1 {
    font-family: "Montserrat-SemiBold";
    font-size: 50px;
}

.div-yellow .title2 {
    font-family: "Montserrat-Light";
    font-size: 50px;
}

.div-yellow .title3 {
    font-family: "Montserrat-SemiBold";
    font-size: 50px;
}

.div-plate div {
    background-color: #fff;
    padding: 12px;
    -webkit-box-shadow: -3px 0px 0px 0px #f89513d1;
    -moz-box-shadow: -3px 0px 0px 0px #f89513d1;
    box-shadow: -3px 0px 0px 0px #f89513d1;
    border-radius: 100%;
}

.container-header-info {
    width: 100%;
    display: flex;
    background-color: var(--yellow);
    padding: 1% 6%;
    flex-direction: row;
    justify-content: space-between;
    font-size: 16px;
    color: #fff;
}

.container-header-info>div>a {
    color: var(--brown);
    padding: 0px 0px 0px 3px;
}

.container-header-info>div>.networks_box>a>i {
    color: var(--brown);
}

.container-header-info>div>.networks_box>a>i:hover {
    color: var(--white);
}

.container-header-info>div>.networks_box>a:hover {
    color: #f89513;
}

.container-header-info>div>a:hover {
    color: var(--white);
}

.nav-bar-r {
    display: flex;
    justify-content: center;
    color: #981f1d;
    flex-direction: column;
    gap: 28px;
}

.nav-bar-r div {
    text-align: center;
}

.nav-bar-r div a,
.nav-bar-r div a {
    font-size: 1vw;
    font-weight: 600;
    color: var(--brown);
}

.nav-bar-r div a:hover {
    color: var(--white);
}

.footer-container {
    display: flex;
    padding: 1% 2%;
    justify-content: space-around;
}

.footer-container>div {
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    gap: 1vw;
    font-size: .9vw;
}

.footer-container>div>p {
    color: var(--yellow);
    font-size: 1.6vw;
    line-height: 2;
    font-family: 'Poppins-Medium';
    font-weight: 600;
}

.footer-container-0 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2% 0;
}

.footer-container-0>div>a>img {
    width: 12vw;
}

.gal-index {
    padding: 6% 18%;
}

.parent {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: .2vw;
}

.div1 {
    grid-area: 1 / 1 / 4 / 3;
    height: 39vh;
}

.div2 {
    grid-area: 1 / 3 / 3 / 5;
}

.div3 {
    grid-area: 1 / 5 / 6 / 8;
}

.div4 {
    grid-area: 1 / 8 / 4 / 11;
}

.div5 {
    grid-area: 4 / 1 / 6 / 3;
}

.div6 {
    grid-area: 3 / 3 / 6 / 5;
}

.div7 {
    grid-area: 4 / 8 / 6 / 11;
}

.parent div img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.parent div {
    position: relative;
    overflow: hidden;
}

.parent div img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

@media (max-width: 996px) {
    .nav-bar-r div a,
    .nav-bar-r div a {
        font-size: 4.5vw;
        font-weight: 600;
        color: var(--brown);
    }
    .idiomas a div::before {
        background-image: linear-gradient(to right, var(--brown) 0%, #341e0980 100%);
    }
    .idiomas a div {
        box-shadow: none;
        background-color: var(--brown);
    }
    .footer-container-0>div>a>img {
        width: 40vw;
    }
    .footer-container>div {
        align-items: center;
        gap: 5vw;
    }
    .footer-container {
        flex-direction: column;
    }
    .header_box {
        padding: 0;
    }
    .footer-logo {
        width: 100%;
    }
    .footer-logo {
        text-align: center;
    }
    .nav_box a img {
        width: 50%;
    }
    .bar_box_footer>a {
        padding: 6px;
    }
    .bar_box_footer {
        display: flex;
        gap: 6%;
        flex-direction: column;
        justify-content: center;
    }
    .container-header-info {
        display: none;
        padding: 2% 0;
        flex-direction: column;
        align-items: center;
    }
    .container-header-info .networks_box {
        font-size: 22px;
    }
    footer .footer_box {
        gap: 50px;
    }
    footer .networks_box {
        margin: 3px 0;
    }
    footer>.footer_box {
        padding: 10%;
    }
    footer {
        padding: 6% 0% 0px 0%;
    }
    footer h2 {
        text-align: center;
        font-size: 36px;
    }
    footer a {
        width: auto;
        font-size: 3.8vw;
    }
    footer span {
        font-size: 3.8vw;
    }
    footer .politics_box a {
        font-size: 3.8vw;
    }
    footer .footer_box {
        flex-direction: column;
    }
    footer .link_box {
        align-items: center;
        gap: 12px;
    }
    footer .link_box a {
        text-align: center;
    }
    footer .networks_box {
        justify-content: center;
        gap: 10px 25px;
    }
    footer .politics_box {
        justify-content: center;
    }
    footer .opening_box {
        text-align: center;
    }
    footer .opening_box h2 {
        font-size: 36px;
    }
    footer .hours_box .row_box {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    footer .hours_box h2 {
        font-size: 16px;
        text-align: center;
    }
    footer .hours_box p {
        font-size: 18px;
    }
    footer .hours_box p:last-child {
        width: 100%;
        line-height: 2;
    }
    footer .credits_box {
        gap: 10px;
    }
    footer .credits_box a {
        font-size: 10px;
    }
    .div1,
    .div2,
    .div5,
    .div4,
    .div7 {
        height: 350px !important;
    }
    .div3 {
        height: 350px;
    }
    .div1 {
        grid-area: 2 / 6 / 5 / 11;
    }
    .div3 {
        grid-area: 1 / 1 / 1 / 11;
    }
    .div2 {
        grid-area: 2 / 1 / 5 / 6;
    }
    .div4 {
        grid-area: 5 / 1 / 6 / 11;
    }
    .div5 {
        grid-area: 3 / 1 / 4 / 6;
    }
    .div6 {
        grid-area: 3 / 6 / 4 / 11;
    }
    .div7 {
        grid-area: 4 / 1 / 6 / 11;
    }
    .gal-index {
        padding: 6% 2%;
    }
    .footer-container>div>p {
        font-size: 8vw;
    }
}


/* ---ANIMATION STYLES--- */

@keyframes mover {
    0% {
        transform: translate(0%, 0%);
    }
    100% {
        transform: translate(1%, -3%);
    }
}

@keyframes mover2 {
    0% {
        transform: translate(0%, -3%);
    }
    100% {
        transform: translate(1%, 0%);
    }
}

@keyframes mover3 {
    0% {
        transform: translate(0%, 0%);
    }
    100% {
        transform: translate(0%, -3%);
    }
}