:root {
    --color-white: #FFF;
    --color-black: #000;
    --color-dark-1: #0C0C0C;
    --color-dark-2: #191919;
    --color-light: #D7D7D7;
    --font-cinzel: 'Cinzel', serif;
    --font-harmattan: 'Harmattan', sans-serif;
}

body {
    position: relative;
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-cinzel);
    font-size: 15px;
    font-weight: 400;
}

* {
    box-sizing: border-box;
    touch-action: manipulation;
}


/* --------------------------------------General-------------------------------------- */

/* Sections */
section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

section.full {
    min-height: 100vh;
}

section.start {
    justify-content: start;
}

section.end {
    justify-content: end;
}

/* Special Buttons */
.menu-btn {
    display: flex;
    align-items: center;
    gap: 1.66rem;
    padding: 0;
    height: min-content;
    background-color: transparent;
    outline: none;
    border: none;
    color: inherit;
}

.menu-btn-rows {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.menu-btn-rows div {
    display: block;
    width: 35px;
    height: 1px;
    background-color: var(--color-white);
}

.close-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0;
    width: max-content;
    background-color: transparent;
    outline-style: none;
    border: none;
    color: var(--color-white);
}

.close-menu-x {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 17px;
}

.close-menu-x div {
    display: block;
    width: 28.65px;
    height: 1px;
    background-color: var(--color-white);
}

.close-menu-x div:first-child {
    translate: 0 8px;
    rotate: 29.25deg;
    transform-origin: center;
}

.close-menu-x div:last-child {
    translate: 0 -8px;
    rotate: -29.25deg;
    transform-origin: center;
} 

.language-toggle {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: center;
    width: 140px;
    height: 40px;
    background-color: transparent;
    outline: none;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    text-transform: uppercase;
    color: var(--color-white);
    cursor: pointer;
}

.language-toggle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 50%;
    height: 100%;
    background-color: var(--color-white);
    border-radius: 20px;
}

.language-toggle.en::before {
    left: 50%;
}

.language-toggle span {
    position: relative;
    z-index: 1;
}

.language-toggle.en :last-child {
    color: var(--color-black);
}

.language-toggle :first-child {
    color: var(--color-black);
}

/* Menu */
.menu {
    position: fixed;
    top: 0;
    left: -100%;
    /* left: 0; */
    z-index: 50;
    display: grid;
    grid-template-columns: 15fr 8fr;
    width: 100%;
    height: 100vh;
    background: linear-gradient(105.02deg, #0C0C0C 10.58%, #131313 89.42%);
    overflow: hidden;
    transition: left 0.6s;
}

.menu__links {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 20px auto 20px;
    row-gap: 2.33rem;
    padding: 2.33rem 2.66rem;
    height: 100vh;
}

.menu__links .menu__sm {
    justify-self: end;
    display: none;
}

.menu__links-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.menu__links-header .language-toggle {
    display: none;
}

.menu__links-grid {
    align-self: center;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: center;
    column-gap: 4.33rem;
    padding: 0 2.33rem;
    height: calc(100vh - 9.32rem - 40px);
    overflow: hidden;
}

.menu__links-grid .spacer {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 465px;
    background-color: var(--color-white);
    opacity: 0.5;
}

.menu__links-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.33rem;
    padding: 0.66rem 0 0.66rem 0;
    height: 100%;
    font-size: 1.33em;
    overflow: auto;
}

.menu__links-column::-webkit-scrollbar {
    width: 6px;
}

.menu__links-column::-webkit-scrollbar-track {
    background: var(--color-dark-2);
    border-radius: 3px;
}

.menu__links-column::-webkit-scrollbar-thumb {
    background: #FFFFFFE5;
    border-radius: 3px;
}

.menu__links-column:last-child {
    justify-content: start;
    max-height: 465px;
}

.menu__links-column button {
    display: inline-block;
    padding: 0;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-white);
    text-align: start;
}

.menu__links-column a:hover,
.menu__links-column .selected,
.menu__links-column button:hover {
    text-decoration: underline;
}

.menu__selection-links {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 2.33rem;
}

.menu__selection-links:first-child {
    display: flex;
}

.menu__imgs-cont {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.menu__imgs {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    height: 100%;
}

.menu__imgs img {
    grid-column: 1 / 2;
    grid-row:  1 / 2;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: cover;
    transition: opacity 0.3s;
}

.menu__imgs img:first-child {
    opacity: 1;
}

.menu__imgs-btns {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 45px auto 45px;
    justify-items: end;
    row-gap: 2.33rem;
    padding: 2.33rem;
    height: 100%;

}

.menu__collapse {
    display: block;
    align-self: center;
    padding: 0;
    width: 40px;
    height: 175px;
    background-color: #0C0C0CF2;
    outline: none;
    border: none;
    border-radius: 10px;
    color: var(--color-white);
    font-size: 1.66em;
}

.menu__sm {
    display: flex;
    gap: 1.66rem;
}

.menu__sm a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    aspect-ratio: 1;
    background-color: #0C0C0C40;
    border: 1px solid var(--color-white);
    border-radius: 22.5px;
    font-size: 1.33em;
}

/* Footer */
footer {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: linear-gradient(180deg, #0C0C0C 0%, #131313 100%);
    padding: 7rem 0;
    font-size: 1em;
    line-height: 1.86em;
}

footer img {
    display: block;
    object-fit: contain;
}

footer .logo {
    height: 100px;
}

footer .mexico {
    height: 88px;
}

footer .atlantian {
    display: block;
    width: 112px;
    height: 22px;
    object-fit: contain;
}

footer div {
    display: flex;
    flex-direction: column;
    gap: 0.66rem;
}

/* Boutique */
.boutique-cont {
    background: url('../assets/img/about-boutique.webp') center center no-repeat;
    background-size: cover;
}

.boutique {
    display: grid;
    grid-template-columns: 50fr 87fr 50fr;
    column-gap: 1rem;
    padding: 2.33rem;
    background: linear-gradient(1.46deg, #0C0C0C 20.74%, rgba(25, 25, 25, 0) 50%, #0C0C0C 79.26%);
    width: 100%;
    height: 100%;
    min-height: inherit;
    text-align: center;
}

.boutique h2 {
    grid-column: 2 / 3;
    align-self: center;
    justify-self: center;
    width: 100%;
    max-width: 550px;
    font-size: 2.33em;
    font-weight: 400;
    line-height: 2em;
}

.boutique a {
    grid-column: 3 / 4;
    align-self: end;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.33rem;
    padding: 0 1.33rem 0 2rem;
    height: 40px;
    background-color: #000000B0;
    border: 1px solid var(--color-white);
    border-radius: 32.5px;
    text-transform: uppercase;
    font-size: 1em;
}

/* Dog Friendly */
.dog__banner {
    display: block;
    width: 100%;
    background: url('../assets/img/dog-friendly.webp') center center no-repeat;
    background-size: cover;
}

.dog__banner div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 7rem 2.33rem;
    width: 100%;
    background: linear-gradient(1.46deg, #0C0C0C 1.24%, rgba(25, 25, 25, 0) 50%, #0C0C0C 98.76%);
    text-align: center;
}

.dog__banner img {
    display: block;
    width: 140px;
    object-fit: contain;
}

.dog__banner h2 {
    margin: 4.66rem 0 2.33rem 0;
    font-size: 4em;
    font-weight: 400;
    line-height: 1.33em;
}

.dog__banner h3 {
    font-size: 2em;
    font-weight: 400;
}

.dog__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4.66rem 4.66rem 0 4.66rem;
    width: 100%;
    background: linear-gradient(180deg, #0C0C0C 0%, #131313 50%, #0C0C0C 100%);
    text-align: center;
}

.dog__info p {
    display: block;
    width: 100%;
    max-width: 490px;
    font-family: var(--font-harmattan);
    font-size: 1.55em;
    line-height: 1.33em;
}

.dog__info a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 7.4rem 0;
    font-size: 20px;
}

.dog__info a span {
    font-size: 30px;
}

.dog__info div {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-white);
    opacity: 0.5;
}

/* Loader */
.loader__modal {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    padding: 0 0 2rem 0;
    width: 100%;
    height: 100vh;
    background-color: #0016240C;
}

.loader__cont {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 200px;
    overflow: hidden;
    background: transparent;
}
.loader__cont span {
    position: absolute;
    left: 54px;
    bottom: 2rem;
    color: #A8A9A8;
    text-align: center;
    font-size: 1.1em;
}

.loader {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
}
.loader div {
    box-sizing: content-box;
    position: absolute;
    border-width: 4px;
    border-style: solid;
    opacity: 1;
    border-radius: 50%;
    animation: loader-animation 1.1363636363636365s cubic-bezier(0,0.2,0.8,1) infinite;
}
.loader div:nth-child(1) {
    border-color: #A8A9A8;
    animation-delay: 0s;
}
.loader div:nth-child(2) {
    border-color: #0D0D13;
    animation-delay: -0.5681818181818182s;
}

#loader-text {
    animation: loader-text 1.1363636363636365s ease-in-out infinite alternate;
}



/* ----------------------------------------Home---------------------------------------- */

.home__hero-standard {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(180deg, #0C0C0C 0%, #191919 50%, #0C0C0C 100%);
}

.home__hero-standard h3 {
    margin-top: 7rem;
    text-align: center;
    text-transform: uppercase;
    font-size: 2.33em;
    font-weight: 400;
    line-height: 2em;
}

/* Hero */
.home__hero {
    display: grid;
    grid-template-columns: 105px 1fr 105px;
    grid-template-rows: 105px auto min-content;
    width: 100%;
    height: 100vh;
    font-size: 0.8em;
}

.home__hero-nav {
    grid-column: 1 / 4;
    display: flex;
    justify-content: space-between;
    padding: 35px;
    width: 100%;
    height: 100%;
}

.home__hero-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3.33rem;
    height: 100%;
    border: 1px solid var(--color-white);
    border-radius: 17.5px;
    text-transform: uppercase;
}

.home__hero > span {
    display: block;
    width: max-content;
    align-self: start;
    justify-self: center;
    text-transform: uppercase;
    rotate: -90deg;
    translate: 0 6rem;
}

.home__hero .left {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.home__hero .right {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.home__hero-bkg {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

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

.home__hero-dog {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    justify-self: end;
    display: block;
    width: 70px;
    aspect-ratio: 1 / 1;
    /* background-color: orange; */
}

.home__hero-dog img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: left bottom;
    scale: 1.17;
}

.home__hero p {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
    align-self: end;
    justify-self: end;
    padding-right: 2.33rem;
    text-transform: uppercase;
}

.home__hero-title {
    grid-column: 1 / 4;
    grid-row: 2 / 3;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2.33rem;
    overflow: hidden;
}

.home__hero-title img {
    display: block;
    margin: 0 auto;
    height: 115px;
    object-fit: contain;
}

.home__hero-title h1 {
    padding: 0 2.33rem;
    width: max-content;
    text-transform: uppercase;
    font-size: 13.7vw;
    font-weight: 400;
}

/* Rooms */
.home__rooms {
    display: grid;
    grid-template-columns: 70px 1fr 70px;
    grid-template-rows: auto 2px;
    row-gap: 7rem;
    align-items: center;
    justify-items: center;
    margin: 9.33rem 0;
    width: 100%;
}

.home__rooms button {
    padding: 0;
    background: transparent;
    outline: none;
    border: none;
    font-size: 4em;
    color: var(--color-white);
}

.home__rooms-swiper {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.home__rooms-swiper .swiper {
    width: 100%;
}

.home__rooms-swiper .swiper-slide {
    width: 100%;
}

.home__rooms-slide {
    display: grid;
    grid-template-columns: 38fr 35fr;
    justify-items: center;
    align-items: center;
    column-gap: 4.66rem;
    padding: 0 2.33rem;
    width: 100%;
}

.home__rooms-slide img {
    display: block;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 14 / 23;
    border-radius: 15px;
    object-fit: cover;
}


.home__rooms-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0 1.33rem;
    width: max-content;
    height: 40px;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    font-size: 1em;
}

.home__rooms-slide > a {
    display: none;
}

.home__rooms-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 380px;
}

.home__rooms-desc h4 {
    font-size: 4.66em;
    font-weight: 400;
}

.home__rooms-desc p {
    margin: 2.33rem 0 7rem 0;
    font-family: var(--font-harmattan);
    font-size: 1.55rem;
    line-height: 1.33em;
}

.home__rooms-pagination {
    grid-column: 1 / 4;
    grid-row: 2 / 3;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 1.66rem;
    width: 100%;
    max-width: 450px;
}

.home__rooms-pagination div {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    opacity: 0.25;
    transition: opacity 0.2s;
}

.home__rooms-pagination div.selected {
    opacity: 1;
}

/* Restaurant */
.home__restaurant {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto 35px auto 140px;
}

.home__restaurant-banner {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: block;
    height: 100vh;
    background: url('../assets/img/index-restaurant.webp') center center no-repeat;
    background-size: cover;
}

.home__restaurant-banner > div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.33rem;
    width: 100%;
    height: 100%;
    background: linear-gradient(1.46deg, #0C0C0C 5%, rgba(25, 25, 25, 0) 50%, #0C0C0C 95%);
}

.home__restaurant-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 930px;
}

.home__restaurant-title span {
    font-size: 2.6em;
}

.home__restaurant-title span:last-child {
    margin-left: auto;
}

.home__restaurant-title h2 {
    text-align: center;
    font-size: 5.33em;
    font-weight: 400;
}

.home__restaurant-cards {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2.33rem;
    padding: 0 4rem;
}

.home__restaurant-card {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 4 / 5;
    background-size: cover;
    border: 1px solid #FFFFFF80;
    border-radius: 15px;
    overflow: hidden;
}

.home__restaurant-card:first-child {
    background: url('../assets/img/index-yo.webp') center center no-repeat;
}

.home__restaurant-card:last-child {
    background: url('../assets/img/index-kasoku.webp') center center no-repeat;
}

.home__restaurant-card div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.75) 0%, rgba(12, 12, 12, 0.5) 100%);
    text-align: center;
}

.home__restaurant-card h3 {
    margin-top: auto;
    font-size: 4.66em;
    font-weight: 400;
    line-height: 1.36em;
}

.home__restaurant-card p {
    margin-bottom: auto;
    font-family: var(--font-harmattan);
    font-size: 1.7em;
}

.home__restaurant-card .reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.33rem;
    padding: 0 2.66rem;
    height: 65px;
    background-color: #000000B0;
    border: 1px solid var(--color-white);
    border-radius: 32.5px;
    text-transform: uppercase;
    font-size: 1.33em;
}

.home__restaurant-card a:last-child {
    margin: 3.5rem 0;
    text-transform: uppercase;
    font-size: 1em;
}

.home__restaurant-spacer {
    grid-column: 1 / 2;
    grid-row: 3 / 5;
    display: flex;
    align-items: end;
    padding: 0 4.66rem;
    background: linear-gradient(1.46deg, #0C0C0C 1.24%, #191919 50%, #0C0C0C 98.76%);
    width: 100%;
    height: 100%;
}

.home__restaurant-spacer div {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-white);
    opacity: 0.5;
}

/* Experience */
.home__experience {
    padding: 9.33rem 2.33rem;
    background: linear-gradient(170.19deg, #0C0C0C 7.37%, #191919 50%, #0C0C0C 92.63%);
}

.home__experience h3 {
    font-size: 2.66em;
    font-weight: 400;
    line-height: 2em;
}

.home__experience h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 4em;
    font-weight: 400;
}

.home__exp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1rem;
    margin-top: 4.66rem;
    width: 100%;
}

.home__exp-card {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 33 / 50;
    border-radius: 15px;
    overflow: hidden;
}

.home__exp-card:nth-child(1) {
    background: url('../assets/img/vacation-packages.webp') center center no-repeat;
    background-size: cover;
}

.home__exp-card:nth-child(2) {
    background: url('../assets/img/events.webp') center center no-repeat;
    background-size: cover;
}

.home__exp-card:nth-child(3) {
    background: url('../assets/img/travel-agencies.webp') center center no-repeat;
    background-size: cover;
}

.home__exp-card div {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 45px auto 45px;
    padding: 4.66rem 1rem;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0) 0%, rgba(12, 12, 12, 0.5) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.home__exp-card h4 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    align-self: center;
    justify-self: center;
    font-size: 2.6em;
    font-weight: 400;
    text-align: center;
}

.home__exp-card a {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    justify-self: center;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 1.8rem;
    padding: 5px 0.6rem 5px 1.33rem;
    background-color: #0C0C0CE5;
    border-radius: 10px;
}

.home__exp-card a span {
    align-self: center;
    font-family: var(--font-harmattan);
    font-size: 1.17em;
}

/* Amenities */
.home__amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 200px auto 10rem;
    column-gap: 4.66rem;
    width: 100%;
}

.home__amenities-banner {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    display: block;
    width: 100%;
    min-height: 100vh;
    background: url('../assets/img/index-time-with-us.webp') center center no-repeat;
    background-size: cover;
}

.home__amenities-banner div {
    display: block;
    padding-top: 28vh;
    width: 100%;
    height: 100%;
    min-height: inherit;
    background: linear-gradient(1.46deg, #0C0C0C 1.24%, rgba(25, 25, 25, 0) 50%, #0C0C0C 98.76%);
}

.home__amenities-banner h2 {
    padding: 0 2.33rem;
    text-align: center;
    font-size: 2.66em;
    font-weight: 400;
}

.home__amenities a.amenities {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
    position: relative;
    display: block;
    margin-left: 4.66rem;
    width: calc(100% - 4.66rem);
    max-width: 770px;
    aspect-ratio: 11 / 8;
    background: url('../assets/img/index-amenities.webp') center center no-repeat;
    background-size: cover;
    outline: 1px solid #FFFFFF80;
    border-radius: 15px;
    overflow: hidden;
}

.home__amenities a.amenities > div {
    display: flex;
    padding: 0 2.4rem;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0C0C0C 0%, rgba(12, 12, 12, 0) 100%);
}

.home__amenities a.amenities .text-crop {
    display: block;
    width: 100%;
    overflow: hidden;
}

.home__amenities a.map {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
    justify-self: end;
    position: relative;
    display: block;
    margin-right: 4.66rem;
    width: calc(100% - 4.66rem);
    max-width: 770px;
    aspect-ratio: 11 / 8;
    background: url('../assets/img/index-map.webp') center center no-repeat;
    background-size: cover;
    outline: 1px solid #FFFFFF80;
    border-radius: 15px;
    overflow: hidden;
}

.home__amenities a.map > div {
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 0 2.4rem;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0) 0%, #0C0C0C 100%);
}

.home__amenities a span {
    display: block;
    width: max-content;
    font-size: 5.8vw;
    font-weight: 400;
    line-height: 1.35em;
}

.home__amenities-bkg {
    grid-column: 1 / 3;
    grid-row: 3 / 5;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(11.52deg, #0C0C0C 8.47%, #191919 50%, #0C0C0C 91.53%);
}

/* Contact */
.home__contact-cont {
    background: url('../assets/img/index-contact.webp') center center no-repeat;
    background-size: cover;
}

.home__contact {
    display: grid;
    grid-template-columns: max-content auto;
    grid-template-rows: min-content auto min-content;
    column-gap: 6.5rem;
    row-gap: 6.66rem;
    padding: 7rem 4.66rem 7rem 6.5rem;
    width: 100%;
    background: linear-gradient(1.46deg, #0C0C0C 1.24%, rgba(25, 25, 25, 0) 50%, #0C0C0C 98.76%);
}

.home__contact h2 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    text-align: center;
    font-size: 4.66em;
    font-weight: 400;
    line-height: 1.34em;
}

.home__contact-links {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home__contact-links a.circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 105px;
    aspect-ratio: 1;
    background: #0C0C0C40;
    border: 1px solid var(--color-white);
    border-radius: 52.5px;
    font-size: 2.2em;
}

.home__contact-links div {
    display: flex;
    gap: 2.33rem;
    margin: 3rem 0;
}

.home__contact-links div a {
    font-size: 2.2em;
}

.home__contact-form {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    justify-self: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3.33rem;
    width: 100%;
    max-width: 650px;
    background-color: #0C0C0C40;
    border-radius: 15px;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.home__contact-form input,
.home__contact-form textarea {
    display: block;
    padding: 0 1.66rem;
    width: 100%;
    height: 70px;
    background-color: #0C0C0CB0;
    outline: none;
    border: none;
    border-radius: 15px;
    color: var(--color-white);
    font-family: inherit;
}

.home__contact-form input::placeholder,
.home__contact-form textarea::placeholder {
    color: var(--color-white);
}

.home__contact-form textarea {
    padding: 1.66rem;
    height: 140px;
    resize: none;
}

.home__contact-form button {
    display: block;
    margin: 2.33rem 0 0 auto;
    padding: 0;
    width: 175px;
    height: 40px;
    background-color: transparent;
    outline: none;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    color: var(--color-white);
}

.home__contact-location {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    justify-self: center;
    display: grid;
    grid-template-columns: auto 25px;
    grid-template-rows: auto 25px;
}

.home__contact-location div {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.33rem 4.66rem 3.33rem 4.66rem;
    background-color: #0C0C0C80;
    border-radius: 15px;
    text-align: center;
    font-size: 1.16em;
}

.home__contact-location a {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    align-self: end;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 175px;
    height: 40px;
    background-color: #0C0C0C40;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}



/* ----------------------------------------About--------------------------------------- */

/* Header */
.about__header {
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    padding: 2.33rem;
    height: 208px;
    background: linear-gradient(180deg, #191919 0%, #0C0C0C 100%);
}

.about__header-links {
    display: flex;
    gap: 1.33rem;
    text-transform: uppercase;
    font-size: 0.8em;
}

.about__header-links a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.about__header-links p {
    text-decoration: underline;
    cursor: default;
}

/* Banner */
.about__banner {
    background: url('../assets/img/about-banner.webp') center center no-repeat;
    background-size: cover;
}

.about__banner div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6.5rem 2.33rem;
    width: 100%;
    background: linear-gradient(1.46deg, #0C0C0C 1.24%, rgba(25, 25, 25, 0) 50%, #0C0C0C 98.76%);
    text-align: center;
}

.about__banner span {
    font-family: 1.66em;
}

.about__banner h1 {
    margin: 2rem 0 2.66rem 0;
    font-size: 5.33em;
    font-weight: 400;
    line-height: 1em;
}

.about__banner h3 {
    font-size: 2.33em;
    font-weight: 400;
}

/* Hospitality */
.about__hospitality {
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 14rem 9.33rem 14rem 4.66rem;
    column-gap: 7rem;
    width: 100%;
    background: linear-gradient(180deg, #0C0C0C 0%, #191919 50%, #0C0C0C 100%);
}

.about__hospitality img {
    display: block;
    height: 450px;
    border-radius: 15px;
    object-fit: cover;
}

.about__hospitality > div {
    align-self: start;
    justify-self: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    translate: 0 70px;
}

.about__hospitality-title {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 4rem;
    line-height: 1.33em;
}

.about__hospitality-title div {
    display: block;
    margin-top: 10px;
    width: 100%;
    height: 1px;
    background-color: var(--color-white);
}

.about__hospitality-tags {
    display: grid;
    grid-template-columns: 8fr 9fr 11fr;
    column-gap: 1rem;
    margin: 2.33rem 0 4.66rem 0;
    width: 100%;
}

.about__hospitality-tags span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    background-color: var(--color-light);
    border-radius: 10px;
    color: var(--color-black);
    text-transform: uppercase;
    font-size: 1.2em;
}

.about__hospitality p {
    font-family: var(--font-harmattan);
    font-size: 1.55em;
}

/* Agenda */
.about__agenda-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 9.3rem 0 4.66rem 0;
    width: 100%;
    background: linear-gradient(180deg, #131313 0%, #0C0C0C 100%);
    text-align: center;
}

.about__agenda-title h4 {
    font-size: 2.66em;
    font-weight: 400;
    line-height: 2em;
}

.about__agenda-title h2 {
    margin-bottom: 7rem;
    font-size: 5.33em;
    font-weight: 400;
    line-height: 1em;
}

.about__agenda-title p {
    display: block;
    width: 100%;
    max-width: 500px;
    font-family: var(--font-harmattan);
    font-size: 1.55em;
    line-height: 1.33em;
}

.about__agenda-initiatives {
    display: block;
    width: 100%;
    background: url('../assets/img/about-agenda.webp') center center no-repeat;
    background-size: cover;
}

.about__agenda-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(auto, 350px));
    justify-content: center;
    column-gap: 3rem;
    row-gap: 4.66rem;
    padding: 4.66rem;
    width: 100%;
    background: linear-gradient(360deg, #0C0C0C 8.1%, rgba(25, 25, 25, 0) 50%, #0C0C0C 91.96%);
}

.about__agenda-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.33rem;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #0C0C0C40;
    /* border: 2px solid;
    border-image-source: linear-gradient(135deg, #FFFFFF 0%, rgba(12, 12, 12, 0) 50%, #FFFFFF 100%); */
    border-radius: 15px;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.about__agenda-frame div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    aspect-ratio: 1;
    border: 1px solid var(--color-white);
    border-radius: 35px;
}

.about__agenda-frame i {
    font-size: 2.33em;
}

.about__agenda-frame span {
    display: block;
    width: 100%;
    max-width: 200px;
    text-align: center;
    font-size: 1.2em;
    line-height: 1.66em;
}

.about__agenda-footer {
    display: flex;
    flex-direction: column;
    gap: 9.33rem;
    width: 100%;
    padding: 4.66rem 4.66rem 0 4.66rem;
    background-color: #0C0C0C;
    text-align: center;
    font-size: 1.33em;
    line-height: 2em;
}

.about__agenda-footer div {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-white);
    opacity: 0.5;
}

/* Eco-Friendly */
.about__eco-friendly {
    padding: 9.33rem 4.66rem 0 4.66rem;
    background: linear-gradient(180deg, #0C0C0C 0%, #191919 50%, #0C0C0C 100%);
}

.about__eco-friendly h2 {
    text-align: center;
    font-size: 4em;
    font-weight: 400;
    line-height: 1.33em;
}

.about__eco-friendly p {
    margin: 7rem auto;
    max-width: 680px;
    text-align: center;
    font-family: var(--font-harmattan);
    font-size: 1.55em;
    line-height: 1.33em;
}

.about__eco-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4.66rem;
    margin: 0 auto;
    width: 100%;
    max-width: 1300px;
}

.about__eco-imgs img {
    display: block;
    width: 100%;
    aspect-ratio: 107 / 70;
    object-fit: cover;
}

.about__eco-tags {
    display: flex;
    flex-direction: column;
    gap: 1.33rem;
    margin: 9.33rem auto 0 auto;
    width: 100%;
    max-width: 1300px;
}

.about__eco-tag {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: 45px;
    background-color: var(--color-light);
    border-radius: 10px;
    color: var(--color-black);
    font-size: 1.2em;
}

.about__eco-tag:last-child {
    margin: 0 auto;
    padding: 0 4.66rem;
    width: max-content;
}

.about__eco-tag div {
    display: block;
    width: 1px;
    height: 20px;
    background-color: var(--color-black);
}

/* Nature */
.about__nature {
    padding: 2.33rem 9.33rem 7rem 9.33rem;
    background: linear-gradient(180deg, #0C0C0C 0%, #191919 50%, #0C0C0C 100%);
}

.about__nature-title {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    font-size: 4rem;
    line-height: 1.33em;
}

.about__nature-title div {
    display: block;
    margin-top: 10px;
    width: 100%;
    height: 1px;
    background-color: var(--color-white);
}

.about__nature-title span {
    flex-shrink: 0;
    display: block;
    width: max-content;
}

.about__nature-grid {
    display: grid;
    grid-template-columns: 37fr 49fr;
    column-gap: 9.33rem;
    margin-top: 7rem;
    width: 100%;
}

.about__nature-grid p {
    font-family: var(--font-harmattan);
    font-size: 1.5em;
    line-height: 1.33em;
}

.about__nature-grid video {
    display: block;
    margin-top: 2.33rem;
    width: 100%;
    aspect-ratio: 13 / 10;
    border-radius: 15px;
    object-fit: cover;
}



/* ----------------------------------------Rooms---------------------------------------- */

.rooms__header {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    align-items: center;
    row-gap: 7rem;
    padding: 2.33rem 2.33rem 3rem 2.33rem;
    width: 100%;
    background: linear-gradient(180deg, #191919 0%, #0C0C0C 100%);
}

.rooms__header .menu-btn {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.rooms__home-links {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    justify-self: end;
    display: flex;
    gap: 1.33rem;
    text-transform: uppercase;
    font-size: 0.8em;
}

.rooms__home-links a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rooms__home-links p {
    text-decoration: underline;
    cursor: default;
}

.rooms__header h1 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    text-align: center;
    font-size: 2.66em;
    font-weight: 400;
}

.rooms__header-link {
    grid-row: 2 / 3;
    display: flex;
    align-items: center;
    gap: 1.33rem;
    font-size: 1.33em;
}

.rooms__header-link i {
    font-size: 2em;
}

.rooms__header-link.left {
    grid-column: 1 / 2;
}

.rooms__header-link.right {
    grid-column: 3 / 4;
    justify-self: end;
    text-align: right;
}

/* Overview */
.rooms__overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 494px 50px auto auto;
    column-gap: 7rem;
}

.rooms__overview h3 {
    font-size: 2em;
    font-weight: 400;
    line-height: 1.33em;
}

.rooms__overview-bkg {
    grid-column: 1 / 3;
    grid-row: 3 / 5;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0C0C0C 0%, #191919 50%, #0C0C0C 100%);
}

.rooms__swiper-cont {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    width: 100%;
    height: 100%;
}

.rooms__swiper-cont button {
    padding: 0;
    background-color: transparent;
    outline: none;
    border: none;
}

.rooms__swiper-cont button i {
    color: var(--color-white);
    font-size: 4em;
    text-shadow: 2px 2px 8px #00000080;
}

.rooms__swiper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
}

.rooms__swiper .swiper {
    width: 100%;
    height: 100%;
}

.rooms__swiper .swiper-slide {
    display: block;
    width: 100%;
    height: 100%;
}

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

.rooms__info {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
    justify-self: center;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-left: 4.66rem;
    padding: 7rem 4.66rem 4.66rem 7rem;
    width: calc(100% - 4.66rem);
    max-width: 590px;
    background-color: #13131380;
    border-radius: 15px;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.rooms__info p {
    margin: 4.66rem 0 7rem 0;
    font-family: var(--font-harmattan);
    font-size: 1.5em;
    line-height: 1.33em;
}

.rooms__info a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0 4.33rem;
    height: 50px;
    border: 1px solid var(--color-white);
    border-radius: 25px;
    text-transform: uppercase;
    font-size: 1.33em;
}

.rooms__features {
    grid-column: 2 / 3;
    grid-row: 3 / 5;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4.66rem;
    padding: 7rem 7rem 9.33rem 0;
}

.room__features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
    row-gap: 4.66rem;
    width: 100%;
    max-width: 540px;
}

.rooms__features-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.33rem;
    text-align: center;
}

.rooms__features-item div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    aspect-ratio: 1;
    border: 1px solid var(--color-white);
    border-radius: 35px;
    font-size: 2.33em;
}

.rooms__features-item span {
    font-size: 1.33em;
}

.rooms__check {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
    justify-self: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12rem 0;
    padding: 0 3.33rem;
    height: 65px;
    background-color: var(--color-white);
    border-radius: 32.5px;
    color: var(--color-black);
    text-transform: uppercase;
    font-size: 1.66em;
}



/* -------------------------------------Restaurant------------------------------------- */

.restaurant {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto 32.5px 32.5px auto;
    justify-items: center;
}

.restaurant__reserve {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 0 3.2rem;
    width: max-content;
    height: 65px;
    background-color: var(--color-white);
    border-radius: 32.5px;
    color: var(--color-black);
    text-transform: uppercase;
    font-size: 1.66em;
}

/* Hero */
.restaurant__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.restaurant__header a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8em;
}

.restaurant__hero-cont {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: url('../assets/img/restaurant.webp') center center no-repeat;
    background-size: cover;
}

.restaurant__hero-cont.boutique-landing {
    background: url('../assets/img/about-boutique.webp') center center no-repeat;
}

.restaurant__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 2.33rem 2.33rem 11.66rem 2.33rem;
    background: linear-gradient(1.46deg, #0C0C0C 1.24%, rgba(25, 25, 25, 0) 50%, #0C0C0C 98.76%);
}

.restaurant__hero .language-toggle {
    margin-left: auto;
}

.restaurant__hero h1 {
    margin: 13.66rem 0 7rem 0;
    padding: 0 2.33rem;
    text-align: center;
    font-size: 5.33em;
    font-weight: 400;
    line-height: 1.33em;
}

.restaurant__hero .logo {
    display: block;
    width: 170px;
    aspect-ratio: 1;
    object-fit: contain;
}

.restaurant__desc {
    position: relative;
    display: block;
    margin-top: 9.33rem;
    padding: 7rem 7rem 9.33rem 7rem;
    width: 100%;
    max-width: 600px;
    background-color: #13131380;
    border-radius: 15px;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.restaurant__desc p {
    font-family: var(--font-harmattan);
    font-size: 1.5em;
    line-height: 1.33em;
}

.restaurant__desc li {
    font-family: var(--font-harmattan);
    font-size: 1.5em;
    line-height: 1.4em;
}

.restaurant__desc div {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    width: 140px;
    height: 140px;
    background-color: #13131380;
    border-radius: 70px;
    translate: -50% 50%;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.restaurant__desc img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Info */
.restaurant__info {
    grid-column: 1 / 2;
    grid-row: 3 / 5;
    padding: 11.33rem 4.66rem 0 4.66rem;
    background: linear-gradient(180deg, #0C0C0C 0%, #191919 50%, #0C0C0C 100%);
}

.restaurant__info > p {
    margin: 7rem 0;
    text-align: center;
    font-size: 1.33em;
    line-height: 2em;
}

.restaurant__info .spacer {
    display: block;
    margin-top: 9.33rem;
    width: 100%;
    height: 1px;
    background-color: var(--color-white);
    opacity: 0.5;
}

.restaurant__swiper {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.restaurant__swiper .swiper {
    width: 100%;
}

.restaurant__swiper .swiper-slide {
    display: flex;
    width: 560px;
    height: auto;
}

.restaurant__card-cont {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    background: url('../assets/img/yo-card.webp') center center no-repeat;
    background-size: cover;
    border: 1px solid #FFFFFF80;
    border-radius: 15px;
    overflow: hidden;
}

.restaurant__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30% 2.33rem 2.33rem 2.33rem;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.75) 0%, rgba(12, 12, 12, 0.5) 100%);
}

.restaurant__card h3 {
    font-size: 4.66em;
    font-weight: 400;
    line-height: 1.34em;
}

.restaurant__card p {
    text-align: center;
    font-family: var(--font-harmattan);
    font-size: 1.55em;
}

.restaurant__card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding: 0 2rem 0 3.33rem;
    width: 100%;
    height: 65px;
    background-color: #000000C0;
    border: 1px solid var(--color-white);
    border-radius: 32.5px;
    text-transform: uppercase;
    font-size: 1.33em;
}

.restaurant__card-img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    border: 1px solid #FFFFFF80;
    border-radius: 15px;
    overflow: hidden;
}

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



/* -------------------------------------Experiences------------------------------------ */

/* Hero */
.exp__hero {
    gap: 10rem;
    padding: 2.33rem 2.33rem 9.4rem 2.33rem;
    background: linear-gradient(180deg, #0C0C0C 0%, #191919 50%, #0C0C0C 100%);
}

.exp__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.exp__header a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8em;
}

/* Packages */
.exp__packages {
    display: grid;
    grid-template-columns: min-content 1fr;
    column-gap: 7rem;
    row-gap: 10.8rem;
    padding-left: 4.66rem;
    width: 100%;
}

.exp__packages-info {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.exp__packages-info h2 {
    margin-bottom: 2.33rem;
    font-size: 4em;
    font-weight: 400;
    line-height: 1.33em;
}

.exp__packages-info p {
    font-family: var(--font-harmattan);
    font-size: 1.5em;
    line-height: 1.33em;
}

.exp__packages-btns {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    justify-self: end;
    display: flex;
    gap: 4.66rem;
}

.exp__packages-btns button {
    padding: 0;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-white);
    font-size: 2.66em;
}

.exp__packages-swiper {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    position: relative;
    display: block;
    padding-top: 2.33rem;
    width: 100%;
    overflow: hidden;
}

.exp__packages-swiper .swiper {
    width: 100%;
    height: 490px;
}

.exp__packages-swiper .swiper-slide {
    width: auto;
    height: 100%;
}

.exp__packages-slide {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 55fr 50fr;
    width: 350px;
    height: 100%;
    background-color: var(--color-light);
    border-radius: 15px;
    overflow: hidden;
    cursor: default;
    user-select: none;
}

.exp__packages-img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.exp__packages-img img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp__packages-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2.2rem;
    width: 100%;
    height: 100%;
    color: var(--color-black)
}

.exp__packages-slide h4 {
    font-size: 2em;
    font-weight: 400;
    line-height: 1.33em;
}

.exp__packages-slide p {
    margin: 1.33rem 0 2rem 0;
    font-size: 1em;
    line-height: 1.33em;
}

.exp__packages-slide a {
    text-decoration: underline;
    font-size: 0.8em;
    font-weight: 700;
    cursor: pointer;
}

/* Packages Modal */
.exp__modal-cont {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 40px auto 40px;
    padding: 3.33rem;
    width: 100%;
    height: 100vh;
    background-color: #00000080;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.3s;
    pointer-events: none;
}

.exp__modal-cont button {
    justify-self: end;
    position: absolute;
    top: -20px;
    right: -15px;
    display: block;
    padding: 0;
    width: 40px;
    aspect-ratio: 1;
    background-color: var(--color-white);
    outline: none;
    border: none;
    border-radius: 20px;
    color: var(--color-black);
    font-size: 1.75em;
}

.exp__modal-cont.appear {
    opacity: 1;
    pointer-events: all;
}

.exp__modal {
    grid-row: 2 / 3;
    align-self: center;
    justify-self: center;
    position: relative;
    display: block;
    flex-direction: column;
    padding: 2rem;
    width: 100%;
    max-width: 600px;
    height: 400px;
    background-color: #0016240C;
    border: 1px solid #FFFFFF80;
    border-radius: 15px;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.exp__modal > div {
    display: flex;
    flex-direction: column;
    padding-right: 0.6rem;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.exp__modal > div::-webkit-scrollbar {
    width: 6px;
}

.exp__modal > div::-webkit-scrollbar-track {
    background: var(--color-dark-2);
    border-radius: 3px;
}

.exp__modal > div::-webkit-scrollbar-thumb {
    background: #FFFFFFE5;
    border-radius: 3px;
}

#package-info {
    margin: 1.33rem 0 2.66rem 0;
}

.exp__modal h4 {
    font-size: 1.5em;
    font-weight: 400;
}

.exp__modal p {
    display: block;
    font-family: var(--font-harmattan);
    font-size: 1.4em;
    line-height: 1.33em;
}

.exp__modal ul {
    margin: 0.5rem;
    font-family: var(--font-harmattan);
    font-size: 1.4em;
    line-height: 1.33em;
}

.exp__modal-links {
    display: flex;
    gap: 1.33rem;
    margin-left: auto;
}

.exp__modal-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    aspect-ratio: 1;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    font-size: 1.2em;
}

/* Events */
.exp__events-banner {
    background: url('../assets/img/exp-events-banner.webp') center center no-repeat;
    background-size: cover;
}

.exp__events-banner div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 11.66rem 2.33rem;
    width: 100%;
    background: linear-gradient(1.46deg, #0C0C0C 1.24%, rgba(25, 25, 25, 0) 50%, #0C0C0C 98.76%);
    text-align: center;
}

.exp__events-banner h2 {
    font-size: 4em;
    font-weight: 400;
    line-height: 1.33em;
}

.exp__events-banner h3 {
    margin-bottom: 5.66rem;
    font-size: 2.66em;
    font-weight: 400;
    line-height: 1.35em;
}

.exp__events-banner p {
    font-size: 2em;
}

/* Events */
.exp__events {
    gap: 11.66rem;
    padding: 9.33rem 4.66rem;
    background: linear-gradient(180deg, #0C0C0C 0%, #191919 50%, #0C0C0C 100%);
}

.exp__events > span {
    display: block;
    width: 100%;
    max-width: 650px;
    text-align: center;
    font-size: 1.33em;
    line-height: 1.75em;
}

.exp__events-item {
    display: grid;
    grid-template-columns: 50fr 71fr;
    column-gap: 9.33rem;
    margin: 0 auto;
    padding-left: 7rem;
    width: 100%;
    max-width: 1250px;
}

.exp__events-item div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4.66rem;
}

.exp__events-item h4 {
    font-size: 3.33em;
    font-weight: 400;
    line-height: 1.4em;
}

.exp__events-item p {
    font-family: var(--font-harmattan);
    font-size: 1.5em;
    line-height: 1.33em;
}

.exp__events-item img {
    display: block;
    width: 100%;
    aspect-ratio: 5 / 6;
    border-radius: 15px;
    object-fit: cover;
}

.exp__events-host {
    display: block;
    padding: 3px;
    width: 100%;
    max-width: 1000px;
    background: linear-gradient(107.24deg, #FFFFFF 0%, #000000 100%);
    border-radius: 15px;
}

.exp__events-host div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 7rem 4.66rem;
    width: 100%;
    background-color: var(--color-dark-2);
    border-radius: 12px;
    text-align: center;
}

.exp__events-host h3 {
    font-size: 4em;
    font-weight: 400;
    line-height: 1.33em;
}

.exp__events-host p {
    margin: 3.5rem 0 5.8rem 0;
}

.exp__events-host a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3.33rem;
    height: 65px;
    background-color: var(--color-white);
    border-radius: 32.5px;
    color: var(--color-black);
}

/* Partner */
.exp__partner {
    background: linear-gradient(180deg, #0C0C0C 0%, #191919 50%, #0C0C0C 100%);
}

.exp__partner .spacer {
    display: block;
    margin: 0 auto;
    width: calc(100% - 9.33rem);
    height: 1px;
    background-color: var(--color-white);
    opacity: 0.5;
}

.exp__partner h3 {
    margin: 8rem 0 1.33rem 0;
    text-align: center;
    font-size: 2em;
    font-weight: 400;
}

.exp__partner h2 {
    text-align: center;
    font-size: 4em;
    font-weight: 400;
}

.exp__partner-columns {
    display: grid;
    grid-template-columns: 17fr 20fr;
    grid-template-rows: min-content;
    column-gap: 7rem;
    margin: 7rem 0 9.33rem 0;
    width: 100%;
}

.exp__partner-columns img {
    justify-self: start;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp__partner-img {
    justify-self: start;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 545px;
}

.exp__partner-img img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0 15px 15px 0;
    object-fit: cover;
}

.exp__partner-info {
    justify-self: center;
    display: flex;
    flex-direction: column;
    gap: 4.66rem;
    width: 100%;
    max-width: 525px;
    font-size: 1.33em;
    line-height: 1.75em;
}

.exp__partner-info ul {
    font-family: var(--font-harmattan);
    font-size: 1.2em;
}

.exp__partner-info a {
    text-decoration: underline;
}


/* -----------------------------------Start Planning----------------------------------- */

.planning {
    justify-content: start;
    gap: 5rem;
    padding: 2.33rem;
    background-color: var(--color-dark-2);
}

/* Header */
.planning__header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
}

.planning__header-links {
    display: flex;
    gap: 1.33rem;
    text-transform: uppercase;
    font-size: 0.8em;
}

.planning__header-links a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.planning__header-links p {
    text-decoration: underline;
    cursor: default;
}

/* Columns */
.planning__columns {
    display: grid;
    grid-template-columns: 19fr 20fr;
    column-gap: 8rem;
    width: 100%;
}

.planning__info {
    justify-self: center;
    display: flex;
    flex-direction: column;
    margin-top: 5.5rem;
    padding-left: 4.66rem;
    width: 100%;
    max-width: calc(500px + 4.66rem);
}

.planning__info h1 {
    font-size: 4em;
    font-weight: 400;
    line-height: 1.42em;
}

.planning__info div {
    display: block;
    margin: 1.66rem 0 4.66rem 0;
    width: 50%;
    height: 1px;
    background-color: var(--color-white);
    opacity: 0.5;
}

.planning__info p {
    font-size: 1.33em;
    line-height: 1.9em;
}

.planning__columns form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 3.33rem;
    background-color: #0C0C0C80;
    border-radius: 50px 15px 50px 15px;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.planning__columns input,
.planning__columns select,
.planning__columns textarea {
    display: block;
    padding: 0 1.66rem;
    width: 100%;
    height: 70px;
    background-color: var(--color-light);
    outline: none;
    border: none;
    border-radius: 15px;
    color: var(--color-black);
    font-size: 1rem;
}

.planning__columns textarea {
    padding: 1.66rem;
    height: 140px;
    resize: none;
}

.planning__columns input::placeholder,
.planning__columns textarea::placeholder {
    color: var(--color-black);
}

.planning__columns button {
    display: block;
    margin: 2.33rem 0 0 auto;
    width: 175px;
    height: 40px;
    background-color: transparent;
    outline: none;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    color: var(--color-white);
    text-transform: uppercase;
}



/* --------------------------------Amenities & Activities------------------------------ */

.amenities__spacer {
    display: block;
    margin: 0 auto;
    width: calc(100% - 9.33rem);
    height: 1px;
    background-color: var(--color-white);
    opacity: 0.5;
}

section.amenities {
    padding: 2.33rem 2.33rem 9.33rem 2.33rem;
    background: linear-gradient(180deg, #0C0C0C 0%, #191919 50%, #0C0C0C 100%);
}

.amenities h1 {
    margin: 10.66rem 0 4.66rem 0;
    text-align: center;
    font-size: 4em;
    font-weight: 400;
    line-height: 1.33em;
}

.amenities__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.amenities__header a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8em;
}

.amenities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3rem;
    row-gap: 4.33rem;
    margin: 0 auto;
    padding: 0 2.33rem;
    width: 100%;
    max-width: 1400px;
}

.amenities__grid-item {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 15px;
    background: center center no-repeat;
    background-size: cover;
    overflow: hidden;
}

.amenities__grid-item:nth-child(1) {
    background-image: url('../assets/img/spa-3.webp');
}

.amenities__grid-item:nth-child(2) {
    background-image: url('../assets/img/gym-1.webp');
}

.amenities__grid-item:nth-child(3) {
    background-image: url('../assets/img/amenities-archery.webp');
}

.amenities__grid-item:nth-child(4) {
    background-image: url('../assets/img/amenities-padel.webp');
}

.amenities__grid-item:nth-child(5) {
    background-image: url('../assets/img/amenities-pool.webp');
}

.amenities__grid-item:nth-child(6) {
    background-image: url('../assets/img/amenities-temazcal.webp');
}

.amenities__item-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0C0C0C80;
    width: 100%;
    height: 100%;
    transition: backdrop-filter 0.3s linear, -webkit-backdrop-filter 0.3s linear;
}

.amenities__item-info h4 {
    text-align: center;
    font-size: 2.33em;
    font-weight: 400;
}

.amenities__item-info div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 100%;
    max-width: 245px;
    max-height: 0;
    overflow: hidden;
    text-align: center;
    transition: max-height 0.5s linear;
}

.amenities__item-info .line {
    flex-shrink: 0;
    display: block;
    margin: 1rem 0 1.66rem 0;
    width: 1px;
    height: 1px;
    background-color: var(--color-white);
    opacity: 0.5;
    transition: width 0.35s;
}

.amenities__item-info p {
    font-size: 1em;
    line-height: 1.75em;
}

.amenities__item-info button {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 1rem;
    padding: 3px 0;
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid #FFFFFF80;
    font-size: 1.1em;
    color: var(--color-white);
}

.amenities__item-info:hover {
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.amenities__item-info:hover .line {
    width: 245px;
}

.amenities__item-info:hover div {
    max-height: 190px;
}

/* Map */
.amenities__map {
    gap: 4.66rem;
    padding: 7rem 7rem 2.33rem 7rem;
    background: linear-gradient(180deg, #0C0C0C 0%, #191919 50%, #0C0C0C 100%);
}

.amenities__map h2 {
    font-size: 4em;
    font-weight: 400;
    line-height: 1.33em;
}

.amenities__map img {
    display: block;
    width: 100%;
    border-radius: 15px;
    object-fit: contain;
}

/* Galleries */
.amenities__gallery-cont {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    grid-template-rows: 35px auto;
    align-items: center;
    justify-items: center;
    column-gap: 2.33rem;
    row-gap: 2rem;
    padding: 2.33rem;
    width: 100%;
    height: 100vh;
    background-color: #0C0C0C40;
    opacity: 0;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    pointer-events: none;
    transition: opacity 0.3s;
}

.amenities__gallery-cont #close-gallery {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    justify-self: end;
    display: block;
    padding: 0;
    width: 35px;
    height: 100%;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-white);
    font-size: 2em;
    translate: 15px -15px;
}

.amenities__gallery-btn {
    grid-row: 2 / 3;
    display: block;
    padding: 0;
    width: 100%;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-white);
    font-size: 3.33em;
}

.amenities__gallery-swipers {
    grid-row: 2 / 3;
}

.amenities__gallery-swipers {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.amenities__gallery-swipers .swiper {
    /* display: none; */
    width: 100%;
    height: 100%;
}

.amenities__gallery-swipers .swiper-slide {
    width: 100%;
    height: 100%;
}

.amenities__gallery-swipers img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}



/* ----------------------------------------Blog---------------------------------------- */

.blog {
    justify-content: start;
    padding: 2.33rem 2.33rem 1.33rem 2.33rem;
    background: linear-gradient(180deg, #0C0C0C 0%, #191919 50%, #0C0C0C 100%);
}

.blog h1 {
    margin: 3.33rem 0 4.66rem 0;
    text-align: center;
    font-size: 4em;
    font-weight: 400;
    line-height: 1.33em;
}

/* Header */
.blog__header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
}

.blog__header-links {
    display: flex;
    gap: 1.33rem;
    text-transform: uppercase;
    font-size: 0.8em;
}

.blog__header-links a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog__header-links p {
    text-decoration: underline;
    cursor: default;
}

/* Swiper */
.blog__swiper {
    position: relative;
    display: block;
    padding: 0 0.66rem;
    width: 100%;
    overflow: hidden;
}

.blog__swiper .swiper {
    width: 100%;
    height: 420px;
}

.blog__swiper .swiper-slide {
    width: auto;
    height: 100%;
}

.blog__swiper-item {
    display: grid;
    grid-template-columns: 375px;
    grid-template-rows: 175px auto;
    height: 100%;
    background-color: var(--color-light);
    border-radius: 15px;
    overflow: hidden;
}

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

.blog__item-info {
    display: flex;
    flex-direction: column;
    padding: 2.33rem 2.33rem 1.66rem 2.33rem;
    width: 100%;
    height: 100%;
    color: var(--color-black);
}

.blog__item-info h3 {
    display: block;
    width: 100%;
    text-overflow: ellipsis;
    font-size: 2.33em;
    font-weight: 400;
    line-height: 1.35em;
    overflow: hidden;
    white-space: nowrap;    
}

.blog__item-info p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin: 1.33rem 0 2.5rem 0;
    height: calc(2 * 1.3em);
    text-overflow: ellipsis;
    font-size: 1em;
    line-height: 1.3em;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blog__item-info div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog__item-info a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.66rem;
    width: 140px;
    height: 40px;
    background-color: var(--color-white);
    border-radius: 20px;
    text-transform: uppercase;
}

.blog__swiper-scroll {
    display: block;
    margin: 4.33rem 0 2.66rem 0;
    width: calc(100% - 1.32rem);
    height: 3px;
    background-color: #D7D7D740;
    border-radius: 1.5px;
    overflow: hidden;
}

.blog__swiper-scroll div {
    position: relative;
    left: 0;
    display: block;
    width: 50%;
    height: 100%;
    background-color: var(--color-light);
    border-radius: 1.5px;
    transition: left 0.3s;
}

.blog__swiper-btns {
    display: flex;
    justify-content: center;
    gap: 4.66rem;
}

.blog__swiper-btns button {
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-white);
    font-size: 1.66em;
}



/* --------------------------------------Thank You------------------------------------- */

.thanks {
    background: linear-gradient(180deg, #0C0C0C 0%, #191919 50%, #0C0C0C 100%);
}

.thanks h1 {
    margin-top: 8.3rem;
    padding: 0 2.33rem;
    text-align: center;
    font-size: 3.33em;
    font-weight: 400;
    line-height: 1.34em;
}

.thanks__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.33rem 2.33rem 0 2.33rem;
    width: 100%;
}

.thanks__header a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8em;
}

.thanks__grid {
    display: grid;
    grid-template-columns: 52fr 83fr 52fr;
    grid-template-rows: auto 15px 35px;
    column-gap: 7rem;
    padding: 4.66rem;
    width: 100%;
    height: 100%;
}

.thanks__grid p {
    font-size: 1.33rem;
    line-height: 1.75rem;
}

.thanks__grid > p {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding: 2.33rem 0 0 2.33rem;
}

.thanks__grid img {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    justify-self: center;
    width: 100%;
    max-width: 450px;
}

.thanks__links {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
    display: flex;
    gap: 1.66rem;
}

.thanks__links a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    aspect-ratio: 1;
    border: 1px solid var(--color-white);
    border-radius: 25px;
    font-size: 1.33rem;
}

.thanks__column {
    display: flex;
    flex-direction: column;
    gap: 7.7rem;
}

.thanks__column a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    width: min(257px, 100%);
    min-height: 55px;
    background-color: var(--color-white);
    border-radius: 27.5px;
    color: var(--color-black);
    text-align: center;
    text-transform: uppercase;
    font-size: 1.2em;
}



/* ----------------------------------Informative View---------------------------------- */

.info {
    background: linear-gradient(180deg, #0C0C0C 0%, #191919 50%, #0C0C0C 100%);
}

.info__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.33rem;
    width: 100%;
}

.info__header a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8em;
}

.info__content {
    display: flex;
    flex-direction: column;
    padding: 2.33rem 2.33rem 2.33rem 2.33rem;
    width: 100%;
    max-width: 800px;
}

.info__content h1 {
    margin-bottom: 3.66rem;
    font-size: 3em;
    font-weight: 400;
}

.info__content h2 {
    margin-bottom: 1.66rem;
    font-size: 1.8em;
    font-weight: 400;
}

.info__content h3 {
    margin: 1.66rem 0 3.66rem 0;
    font-size: 1.66em;
    font-weight: 400;
}

.info__content p {
    margin-bottom: 0.8rem;
    font-family: var(--font-harmattan);
    font-size: 1.17em;
    line-height: 1.25em;
}

.info__content ul,
.info__content ol {
    margin-bottom: 0.8rem;
    font-family: var(--font-harmattan);
    font-size: 1.17em;
    line-height: 1.33em;
}

.info__content li {
    margin: 7px 0;
}

.info__content li li {
    font-size: 17px;
}

.info__content a {
    text-decoration: underline;
}



/* --------------------------------------Specials-------------------------------------- */

.hidden {
    display: none;
}

.appear {
    opacity: 1;
    pointer-events: all;
}

.grecaptcha-badge {
    display: none;
}



/* -------------------------------------Responsive------------------------------------ */

@media screen and (max-width: 1200px) {
    /* General */
    .menu__links,
    .menu__imgs-btns {
        padding: 1.66rem;
    }

    .menu__links-grid {
        align-items: start;
        padding: 0 1.66rem;
        column-gap: 1.8rem;
    }

    .menu__links-column {
        justify-content: start;
    }

    .boutique h2 {
        font-size: 2em;
    }

    .dog__banner h2 {
        font-size: 3.33em;
    }

    .dog__info {
        padding: 4.66rem 2.33rem 0 2.33rem;
    }

    /* Home */
    .home__rooms-desc h4 {
        font-size: 4em;
    }

    .home__restaurant-card {
        aspect-ratio: 2 / 3;
    }

    .home__restaurant-card div {
        padding: 0 2rem;
    }

    .home__restaurant-card h3 {
        font-size: 3.33em;
    }

    .home__restaurant-card .reserve {
        gap: 1rem;
        padding: 0 2rem;
        font-size: 1.17em;
    }

    .home__restaurant-card a:last-child {
        margin: 2.33rem 0;
    }

    .home__exp-card div {
        grid-template-rows: 55px auto 55px;
        padding: 3rem 1rem;
    }

    .home__exp-card a span {
        align-self: center;
    }

    .home__amenities {
        column-gap: 3.33rem;
    }

    .home__amenities a.map {
        margin-right: 3.33rem;
        width: calc(100% - 3.33rem);
    }

    .home__amenities a.amenities {
        margin-left: 3.33rem;
        width: calc(100% - 3.33rem);
    }

    .home__contact {
        grid-template-columns: 14fr 15fr;
        column-gap: 4rem;
        padding: 7rem 2.33rem 7rem 3.5rem;
    }

    .home__contact-links h2 {
        font-size: 3.33em;
    }

    .home__contact-links a.circle {
        width: 80px;
        font-size: 1.9em;
    }

    .home__contact-form {
        padding: 3.33rem 2.33rem;
    }

    /* About */
    .about__hospitality {
        grid-template-columns: 5fr 7fr;
        column-gap: 4.66rem;
        padding: 14rem 3.33rem 14rem 3.33rem;
    }

    .about__hospitality img {
        align-self: start;
        width: 100%;
        height: unset;
    }

    .about__hospitality p {
        font-size: 1.3em;
    }

    .about__hospitality-title {
        font-size: 3.33rem;
    }

    .about__hospitality-tags span {
        font-size: 1.1em;
    }

    .about__agenda-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 4.66rem 3.33rem;
    }

    .about__agenda-frame {
        gap: 1.66rem;
    }

    .about__agenda-frame span {
        font-size: 1.1em;
    }

    .about__eco-friendly {
        padding: 9.33rem 2.33rem 0 2.33rem;
    }

    .about__eco-friendly h2 {
        font-size: 3.33em;
    }

    .about__agenda-footer {
        padding: 4.66rem 2.33rem 0 2.33rem;
    }

    .about__nature {
        padding: 2.33rem 4.66rem 7rem 4.66rem;
    }

    .about__nature-title {
        font-size: 3.33em;
    }

    .about__nature-grid {
        column-gap: 7rem;
    }

    /* Rooms */
    .rooms__header {
        padding: 2.33rem 1.66rem 2.66rem 1.66rem;
    }

    .rooms__header-link {
        gap: 1.33rem;
        font-size: 1em;
    }

    .rooms__overview {
        column-gap: 4.66rem;
    }

    .rooms__info {
        padding: 4.66rem 3.33rem 4.66rem 3.33rem;
    }

    .rooms__info a {
        padding: 0 2.66rem;
    }

    .rooms__features {
        padding: 7rem 6rem 7rem 0;
    }

    /* Restaurant */
    .restaurant__hero h1 {
        font-size: 4em;
    }

    .restaurant__swiper .swiper-slide {
        width: 450px;
    }

    /* Experiences */
    .exp__packages {
        padding-left: 1.66rem;
    }

    .exp__events-item {
        grid-template-columns: 7fr 5fr;
        padding-left: 0;
    }

    .exp__events-item h4 {
        font-size: 3em;
    }

    .exp__partner .spacer {
        width: calc(100% - 6.66rem);
    }

    .exp__partner-info {
        padding-right: 2.33rem;
    }

    /* Start Planning */
    .planning__info {
        margin-top: 3.33rem;
        padding-left: 2.33rem;
    }

    .planning__info h1 {
        font-size: 2.66em;
    }

    .planning__columns {
        column-gap: 4rem;
    }

    /* Amenities */
    .amenities__grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Thank You */
    .thanks__grid {
        column-gap: 4.66em;
        padding: 4.66rem 3.33rem;
    }

    .thanks__grid > p {
        padding: 0;
    }

    .thanks__grid p {
        font-size: 1.17em;
    }
}

@media screen and (max-width: 900px) {
    /* General */
    footer {
        flex-wrap: wrap;
        column-gap: 2rem;
        row-gap: 4rem;
        padding: 3.33rem 14vw;
    }

    .boutique {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.66rem;
    }

    /* Home */
    .home__hero-standard h3 {
        font-size: 2em;
    }

    .home__rooms {
        row-gap: 3.33rem;
    }

    .home__rooms-slide {
        grid-template-columns: 1fr;
    }

    .home__rooms-slide {
        row-gap: 2.33rem;
    }

    .home__rooms-slide > a {
        justify-self: end;
        display: flex;
    }

    .home__rooms-desc {
        max-width: 420px;
    }

    .home__rooms-desc a {
        display: none;
    }

    .home__rooms-desc p {
        margin: 2.33rem 0 2.33rem 0;
    }

    .home__rooms-slide img {
        max-width: 420px;
        aspect-ratio: 8 / 11;
    }

    .home__restaurant-title h2 {
        font-size: 4.66em;
    }

    .home__restaurant-cards {
        padding: 0 2.33rem;
    }

    .home__restaurant-card div {
        padding: 1.33rem;
    }

    .home__exp-card div {
        grid-template-rows: auto 55px;
        padding: 1rem 1rem 3rem 1rem;
    }

    .home__exp-card h4 {
        grid-row: 1 / 2;
    }

    .home__exp-card a {
        grid-row: 2 / 3;
        column-gap: 1.2rem;
        font-size: 13px;
    }

    .home__amenities {
        column-gap: 1.66rem;
    }

    .home__amenities a.amenities {
        margin-left: 1.66rem;
        width: calc(100% - 1.66rem);
    }

    .home__amenities a.map {
        margin-right: 1.66rem;
        width: calc(100% - 1.66rem);
    }

    .home__contact {
        grid-template-columns: min-content 1fr;
    }

    /* About */
    .about__banner h1 {
        font-size: 4.66em;
    }

    .about__hospitality {
        grid-template-columns: 210px 1fr;
        padding: 10rem 3.33rem 14rem 3.33rem;
    }

    .about__agenda-title h4 {
        font-size: 2.33em;
    }

    .about__agenda-title h2 {
        font-size: 4em;
    }

    .about__agenda-grid {
        column-gap: 2.66rem;
        padding: 4.66rem 2.66rem;
    }

    .about__eco-tags {
        margin: 7rem auto 0 auto;
    }

    .about__eco-tag {
        flex-direction: column;
        gap: 1.33rem;
        height: unset;
        background-color: transparent;
        border-radius: 0;
    }

    .about__eco-tag span {
        display: flex;
        align-items: center;
        padding: 0 2.33rem;
        height: 45px;
        background-color: var(--color-light);
        border-radius: 10px;
    }

    .about__eco-tag div {
        display: none;
    }

    .about__eco-tag:last-child {
        padding: 0;
        width: 100%;
    }

    /* Rooms */
    .rooms__header {
        grid-template-columns: 1fr 1fr;
        row-gap: 0;
    }

    .rooms__home-links {
        grid-column: 2 / 3;
    }

    .rooms__header h1 {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        margin: 6rem 0 3.33rem 0
    }

    .rooms__header-link {
        grid-row: 3 / 4;
    }

    .rooms__header-link.right {
        grid-column: 2 / 3;
    }

    .rooms__overview {
        grid-template-columns: 1fr;
        grid-template-rows: 494px 50px repeat(3, auto);
    }

    .rooms__overview-bkg {
        grid-column: 1 / 2;
        grid-row: 3 / 7;
    }

    .rooms__swiper-cont {
        grid-column: 1 / 2;
    }

    .rooms__info {
        grid-column: 1 / 2;
        grid-row: 2 / 4;
        margin: 0 3.33rem 4.66rem 3.33rem;
        width: calc(100% - 6.66rem);
    }

    .rooms__features {
        grid-column: 1 / 2;
        grid-row: 4 / 6;
        justify-self: center;
        padding: 0;
    }

    .rooms__overview h3 {
        text-align: center;
    }

    .rooms__check {
        grid-row: 6 / 7;
        margin: 9.33rem 0;
    }

    /* Restaurant */
    .restaurant__hero h1 {
        font-size: 3.66em;
    }

    .restaurant__desc {
        padding: 6rem 4.66rem 9.33rem 4.66rem;
        max-width: 500px;
    }

    .restaurant__info {
        padding: 11.33rem 3.33rem 0 3.33rem;
    }

    .restaurant__card {
        padding: 4.66rem 2.33rem 2.33rem 2.33rem;
    }

    /* Experiences */
    .exp__packages {
        column-gap: 6.33rem;
        padding: 0;
    }

    .exp__packages-info h2 {
        font-size: 3em;
    }

    .exp__events {
        padding: 9.33rem 3.33rem;
    }

    .exp__events > span {
        max-width: 450px;
        font-size: 1.17em;
    }

    .exp__events-item {
        column-gap: 7rem;
    }

    .exp__events-host h3 {
        font-size: 3.33rem;
    }

    .exp__partner-columns {
        grid-template-columns: 1fr;
        row-gap: 5.33rem;
    }

    .exp__partner-info {
        padding-right: 0;
    }

    .exp__partner-img {
        grid-row: 2 / 3;
        justify-self: end;
        max-width: 450px;
    }

    .exp__partner-img img {
        border-radius: 15px 0 0 15px;
    }

    /* Start Planning */
    .planning__columns {
        grid-template-columns: 1fr;
        row-gap: 4.66rem;
    }

    .planning__info {
        max-width: 470px;
    }

    /* Amenities */
    .amenities h1,
    .amenities__map h2 {
        font-size: 3.33em;
    }

    .amenities__map {
        padding: 7rem 4.66rem 2.33rem 4.66rem;
    }

    .amenities__spacer {
        width: calc(100% - 6.66rem);
    }

    /* Blog & Press */
    .blog__swiper {
        margin-top: auto;
    }

    .blog__swiper-btns {
        margin-bottom: auto;
    }

    .blog h1 {
        font-size: 3em;
    }

    /* Thank You */
    .thanks__grid {
        grid-template-columns: 5fr 8fr;
        grid-template-rows: auto 15px 35px auto;
    }

    .thanks__column {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
        flex-direction: row;
        align-items: end;
        justify-content: space-between;
        margin-top: 3.33rem;
    }

    .thanks__column p {
        max-width: 300px;
    }
}

@media screen and (max-width: 760px) {
    /* General */
    .close-menu {
        gap: 1rem;
    }

    .menu {
        grid-template-columns: 1fr;
        grid-template-rows: 100vh;
    }

    .menu__links {
        grid-template-rows: 40px auto 45px;
    }

    .menu__links .menu__sm {
        display: flex;
    }

    .menu__links-header .language-toggle {
        display: grid;
    }

    .menu__links-grid {
        padding: 0 1rem;
        height: calc(100vh - 9.32rem - 85px);
    }

    .menu__links-grid .spacer {
        max-height: unset;
    }

    .menu__links-column {
        gap: 1.66rem;
        font-size: 1em;
    }

    .menu__imgs-btns {
        display: none;
    }

    footer {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 3rem;
        padding: 3.33rem 2.33rem;
    }

    footer div:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    footer .logo {
        height: 70px;
    }
    
    footer .mexico {
        height: 60px;
    }

    .boutique {
        padding: 9.33rem 2.33rem;
    }

    .dog__banner img {
        width: 120px;
    }

    .dog__banner h2 {
        font-size: 2.8em;
    }

    .dog__banner h3 {
        font-size: 1.7em;
    }

    .dog__info p {
        font-size: 1.25em;
    }

    .dog__info a {
        font-size: 1.07em;
    }

    .dog__info a span {
        font-size: 40px;
    }

    /* Home */
    .home__hero {
        grid-template-columns: 75px 1fr 75px;
        grid-template-rows: 85px auto min-content;
    }

    .home__hero-nav {
        align-items: center;
        padding: 25px;
    }

    .home__hero-nav a {
        padding: 0 2rem;
    }

    .home__hero-standard h3 {
        padding: 0 1.66rem;
        font-size: 1.66em;
    }

    .home__rooms {
        grid-template-columns: 40px 1fr 40px;
    }

    .home__rooms button {
        font-size: 2em;
    }

    .home__rooms-slide {
        padding: 0 1.66rem;
    }

    .home__rooms-desc h4 {
        font-size: 2.66em;
    }

    .home__rooms-desc p {
        font-size: 1.3em;
    }

    .home__rooms-pagination {
        padding: 0 2.66rem;
    }

    .home__restaurant {
        grid-template-rows: auto 80px auto 140px;
    }

    .home__restaurant-banner > div {
        padding: 0 1.66rem;
    }

    .home__restaurant-title h2 {
        font-size: 2.66em;
    }

    .home__restaurant-title span {
        font-size: 1.6em;
    }

    .home__restaurant-cards {
        grid-template-columns: 1fr;
        row-gap: 3.33rem;
        padding: 0 1.66rem;
    }

    .home__restaurant-card {
        max-width: 300px;
    }

    .home__restaurant-card h3 {
        font-size: 2.66em;
    }

    .home__restaurant-card p {
        font-size: 1.4em;
    }

    .home__restaurant-card .reserve {
        padding: 0 1.33rem;
        height: 50px;
        font-size: 0.95em;
    }

    .home__restaurant-spacer {
        padding: 0 2.33rem;
    }

    .home__experience h3  {
        font-size: 1.8em;
        margin-bottom: 1rem;
    }

    .home__experience h2 {
        font-size: 3em;
    }

    .home__exp-cards {
        grid-template-columns: 1fr;
        row-gap: 4rem;
    }

    .home__exp-card {
        max-width: 350px;
    }

    .home__amenities {
        grid-template-columns: 100%;
        grid-template-rows: auto 70px auto 2.33rem auto 7rem;
    }

    .home__amenities-banner,
    .home__amenities a.map,
    .home__amenities a.amenities,
    .home__amenities-bkg {
        grid-column: 1 / 2;
    }

    .home__amenities-bkg {
        grid-row: 3 / 7;
    }

    .home__amenities a.amenities {
        grid-row: 2 / 4;
        justify-self: center;
        margin: 0;
        width: 80%;
    }

    .home__amenities a.map {
        grid-row: 5 / 6;
        justify-self: center;
        margin: 0;
        width: 80%;
    }

    .home__amenities a span {
        font-size: 10.5vw;
    }

    .home__contact {
        grid-template-columns: 1fr;
        grid-template-rows: unset;
        row-gap: 0;
        padding: 7rem 1.66rem 7rem 1.66rem;
    }

    .home__contact h2 {
        margin-bottom: 5.2rem;
        font-size: 3.33em;
    }

    .home__contact-form {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        padding: 3.33rem 1.66rem;
    }

    .home__contact-links {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        flex-direction: row;
        justify-content: center;
        gap: 2.5rem;
    }

    .home__contact-links div {
        flex-direction: column;
    }

    .home__contact-links a.circle {
        width: 60px;
        font-size: 1.5em;
    }

    .home__contact-location {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }

    .home__contact-location div {
        padding: 2.33rem 2.33rem 3.33rem 2.33rem;
        font-size: 1.07em;
    }

    /* About */
    .about__banner div {
        padding: 6.5rem 1.66rem;
    }

    .about__banner h1 {
        margin: 2rem 0;
        font-size: 3.33em;
    }

    .about__banner h3 {
        font-size: 1.8em;
    }

    .about__hospitality {
        grid-template-columns: 1fr;
        row-gap: 7rem;
        padding: 14rem 2.66rem 14rem 2.66rem;
    }

    .about__hospitality img {
        grid-row: 2 / 3;
    }

    .about__hospitality > div {
        translate: 0;
    }

    .about__hospitality-title {
        font-size: 2.8rem;
    }

    .about__agenda-title {
        padding: 9.3rem 1.66em 4.66rem 1.66em;
    }

    .about__agenda-title h4 {
        font-size: 2em;
    }

    .about__agenda-title h2 {
        font-size: 3.33em;
    }

    .about__agenda-title p {
        font-size: 1.25em;
    }

    .about__agenda-grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 1rem;
        padding: 4.66rem 1.66rem;
    }

    .about__agenda-frame {
        padding: 0 0.6rem;
    }

    .about__eco-friendly h2 {
        font-size: 2.8em;
    }

    .about__eco-imgs {
        column-gap: 2.33rem;
    }

    .about__eco-tag span {
        display: flex;
        align-items: center;
        padding: 0.8rem 2.33rem;
        height: auto;
        background-color: var(--color-light);
        border-radius: 10px;
        text-align: center;
    }

    .about__nature {
        padding: 2.33rem 2.33rem 7rem 2.33rem;
    }

    .about__nature-title {
        font-size: 2em;
    }

    .about__nature-grid {
        grid-template-columns: 1fr;
    }

    .about__nature-grid video {
        margin-top: 4.66rem;
    }

    /* Restaurant */
    .restaurant__hero h1 {
        padding: 0;
        font-size: 3em;
    }

    .restaurant__info {
        padding: 11.33rem 2.33rem 0 2.33rem;
    }

    .restaurant__swiper .swiper-slide {
        width: 70%;
    }

    .restaurant__card-cont {
        aspect-ratio: 2 / 3;
    }

    .restaurant__reserve {
        height: 60px;
        font-size: 1.33em;
    }

    /* Experiences */
    .exp__hero {
        padding: 2.33rem 1.66rem 9.4rem 1.66rem;
    }

    .exp__packages {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .exp__packages-swiper {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        margin: 1.66rem 0 4rem 0;
    }

    .exp__packages-btns {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        justify-self: center;
    }

    .exp__events-banner h2 {
        font-size: 3.33em;
    }

    .exp__events-banner h3 {
        font-size: 2em;
    }

    .exp__events-banner p {
        font-size: 1.66em;
    }

    .exp__events {
        gap: 9.33rem;
        padding: 9.33rem 2.33rem;
    }

    .exp__events-item {
        grid-template-columns: 1fr;
        row-gap: 4.33rem;
    }

    .exp__events-item img {
        margin-left: auto;
        width: 80%;
    }

    .exp__events-host div {
        padding: 5.33rem 2.33rem;
    }

    .exp__events-host h3 {
        font-size: 2.66rem;
    }

    .exp__events-host a {
        height: 60px;
    }

    .exp__partner h3 {
        font-size: 1.8em;
    }

    .exp__partner h2 {
        font-size: 3em;
    }

    .exp__partner-info {
        padding: 0 1.66rem;
        font-size: 1.07em;
    }

    .exp__partner-img {
        width: 80%;
    }

    .exp__modal-cont {
        padding: 3.33rem 1.66rem;
    }

    /* Start Planning */
    .planning {
        padding: 1.66rem;
    }

    /* Amenities */
    section.amenities {
        padding: 1.66rem 1.66rem 9.33rem 1.66rem;
    }

    .amenities__grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .amenities__grid-item {
        max-width: 400px;
    }

    .amenities__map {
        padding: 7rem 2.33rem 2.33rem 2.33rem;
    }

    .amenities__spacer {
        width: calc(100% - 4.66rem);
    }

    /* Blog & Press */
    .blog {
        padding: 1.66rem 1.66rem 1.33rem 1.66rem;
    }

    .blog h1 {
        font-size: 2.66em;
    }

    .blog__header-links {
        gap: 1rem;
    }

    /* Thank You */
    .thanks__header {
        padding: 2.33rem 1.66rem 0 1.66rem;
    }

    .thanks__grid {
        grid-template-columns: 1fr;
        grid-template-rows: unset;
        padding: 4.66rem 2rem;
    }

    .thanks h1 {
        font-size: 2.4em;
    }

    .thanks__grid img {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        margin-top: 2.66rem;
    }

    .thanks__column {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        flex-direction: column-reverse;
        gap: 4rem;
        margin: 3.33rem 0;
    }

    .thanks__links {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        gap: 1.66rem;
    }
}

@media screen and (max-width: 480px) {
    /* General */
    .menu-btn {
        gap: 1rem;
    }

    .boutique {
        gap: 4.66rem;
    }

    .boutique h2 {
        font-size: 1.66em;
    }

    .boutique a {
        align-self: center;
    }

    .dog__banner div {
        padding: 7rem 2.33rem 4.66rem 2.33rem;
    }

    .dog__banner h2 {
        font-size: 2.2em;
    }

    .dog__banner h3 {
        font-size: 1.4em;
    }

    .dog__info a {
        margin: 4.66rem 0;
    }

    /* About */
    .about__header {
        padding: 1.66rem;
    }

    .about__hospitality {
        padding: 14rem 1.66rem 10rem 1.66rem;
    }

    .about__hospitality-title {
        font-size: 2.33em;
    }

    .about__hospitality-tags span {
        font-size: 0.9em;
    }

    .about__agenda-title h4 {
        font-size: 1.8em;
    }

    .about__agenda-title h2 {
        font-size: 2.66em;
    }

    .about__agenda-grid {
        padding: 4.66rem 1rem;
    }

    .about__agenda-frame {
        padding: 1rem 0.6rem;
        aspect-ratio: unset;
    }

    .about__agenda-frame span {
        font-size: 0.9em;
    }

    .about__agenda-frame div {
        width: 50px;
    }

    .about__agenda-frame i {
        font-size: 1.66em;
    }

    .about__agenda-footer {
        font-size: 1.17em;
    }

    .about__eco-friendly {
        padding: 7rem 2.33rem 0 2.33rem;
    }

    .about__eco-friendly h2 {
        font-size: 2.33em;
    }

    .about__eco-friendly p {
        margin: 4.66rem auto;
    }

    .about__eco-imgs {
        grid-template-columns: 1fr;
        row-gap: 3.33rem;
    }

    .about__nature-title {
        font-size: 1.8em;
    }

    /* Rooms */
    .rooms__header-link {
        gap: 1rem;
    }

    .rooms__info {
        margin: 0 2rem 4.66rem 2rem;
        width: calc(100% - 4rem);
    }

    .rooms__info a {
        font-size: 1.07em;
    }

    .rooms__check {
        height: 60px;
        font-size: 1.3em;
    }

    /* Restaurant */
    .restaurant__hero {
        padding: 1.66rem 1.66rem 11.66rem 1.66rem;
    }

    .restaurant__hero h1 {
        margin: 9.33rem 0 7rem 0;
        font-size: 2em;
    }

    .restaurant__desc {
        padding: 4.66rem 3.33rem 9.33rem 3.33rem;
    }

    .restaurant__info {
        padding: 11.33rem 1.66rem 0 1.66rem;
    }

    .restaurant__card {
        padding: 2.66rem 1rem 2.33rem 1rem;
    }

    .restaurant__card h3 {
        font-size: 2.5em;
    }

    .restaurant__card p {
        font-size: 1.25em;
    }

    .restaurant__card a {
        padding: 0 0.8rem 0 1.2rem;
        height: 55px;
        font-size: 1.17em;
    }

    /* Experiences */
    .exp__hero {
        gap: 7rem;
    }

    .exp__packages-swiper .swiper-slide {
        width: 100%;
    }

    .exp__packages-slide {
        width: 100%;
    }

    .exp__packages-slide p {
        font-size: 0.9em;
    }

    .exp__partner-info a {
        display: block;
        margin: 8px 0;
        width: 320px;
        overflow-wrap: break-word;
        font-size: 13px;
    }

    .exp__events-host div {
        padding: 4.33rem 1.66rem;
    }

    .exp__events-host h3 {
        font-size: 2rem;
    }

    .exp__events-host a {
        font-size: 0.95em;
    }

    .exp__events-item h4 {
        font-size: 2.5em;
    }

    /* Start Planning */
    .planning__info {
        padding-left: 1.66rem;
    }

    .planning__info h1 {
        font-size: 2em;
    }

    .planning__info p {
        font-size: 1.07em;
    }

    .planning__columns form {
        padding: 2.66rem 1.66rem;
    }

    /* Amenities */
    .amenities h1,
    .amenities__map h2 {
        font-size: 2.66em;
    }

    .amenities h1 {
        margin: 8rem 0 4.66rem 0;
    }

    .amenities__grid {
        padding: 0;
    }

    .amenities__gallery-cont {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 35px auto 45px;
    }

    .amenities__gallery-cont #close-gallery {
        grid-column: 2 / 3;
    }

    .amenities__gallery-swipers {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .amenities__gallery-btn {
        grid-row: 3 / 4;
        font-size: 2.5em;
    }

    .amenities__map {
        padding: 7rem 1.66rem 2.33rem 1.66rem;
    }

    /* Blog & Press */
    .blog__swiper .swiper-slide {
        width: 100%;
    }

    .blog__swiper-item {
        grid-template-columns: 100%;
    }

    .blog__item-info a {
        width: 120px;
    }

    /* Informative views */
    .info__content h1 {
        font-size: 2.66em;
    }

    .info__content a {
        display: block;
        width: calc(100% - 4.66rem);
        overflow-wrap: break-word;
    }
}

/* IPhone SE */
@media screen and (max-width: 376px) and (max-height: 668px) {

}



/* -------------------------------------Animations------------------------------------- */



/* Keyframes */
@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
    }
}
@keyframes fade-out {
    0% {
        opacity: 100%;
    }

    100% {
        opacity: 0;
    }
}

@keyframes loader-animation {
    0% {
        top: 96px;
        left: 96px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 78px;
        left: 78px;
        width: 36px;
        height: 36px;
        opacity: 0;
    }
}
@keyframes loader-text {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}