/* Poppins */ @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Allura */ @import url('https://fonts.googleapis.com/css2?family=Allura&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --main-color: #1E1F1F;
}
::-webkit-scrollbar {
    width: 0.7rem;
    height: 0.7rem;
    background-color: white;
}
::-webkit-scrollbar-thumb {
    border: 2px solid white;
    background: linear-gradient(to bottom,transparent, rgba(0,0,0,0.4) , transparent);
    border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.4);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body {
    width: 100svw;
    min-height: 100svh;
    position: relative;
    overflow-x: hidden;
    opacity: 0;
    animation: bodyAnim 0.65s forwards ease-in-out;
}
@keyframes bodyAnim {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
body.menuActive {
    overflow-y: hidden;
}
.text-Allura {
    font-family: "Allura", cursive;
}
.text-Poppins {
    font-family: "Poppins", sans-serif;
}
nav {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999999999;
}
nav::-webkit-scrollbar {
    width: 0;
}
.nav-container {
    padding: 15px 0;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.nav-container .logo img {
    text-decoration: none;
    color: black;
    width: 334px;
    margin-top: 28px;
    object-fit: cover;
    object-position: center;
    transition: 0.3s width;
    user-select: none;
}
.nav-menus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999999999999999999999;
}
.nav-menus:not(.sub-menu)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    background-color: #2C2829 !important;
    width: 100%;
    height: 2px;
    border-radius: 10px;
}
.homepage:not(.sub-menu)::after{
    background-color: white !important;
}
.corporate-navbar::after {
    background-color: #2C2829 !important;
}

.corporate-nav-menu:hover::after{
    background: linear-gradient(to left, #FFFFFF, #CBB779) !important;
}

.menus {
    margin-top: 20px;
}
.hamburgerBtn {
    display: none;
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: black;
    border: 0;
    outline: 0;
    position: relative;
    transition: 0.3s color, 0.3s margin-top;
    cursor: pointer;
}
.hamburgerBtn svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: 0.3s width, 0.3s height;
}
.nav-container.homepage .hamburgerBtn {
    color: white;
}
.nav-menu {
    color: black;
    font-size: 22px;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    background-color: transparent;
    border: 0;
    outline: 0;
    white-space: nowrap;
}
.nav-container.homepage .nav-menus .nav-menu {
    color: white;
}
.nav-menus .nav-menu::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 0;
    opacity: 0;
    background: linear-gradient(to right, #2C2829, #CBB779);
    transition: 0.25s width ease-in-out,0.25s opacity ease-in-out;
    z-index: 99999999999999999999999999999999999999;
    border-radius: 10px;
}
.nav-menus .nav-menu:hover:after,
.nav-menus .nav-menu.active::after {
    width: 98%;
    opacity: 1;
}
.nav-menus.sub-menu .nav-menu.active:hover:after,
.nav-menus.sub-menu .nav-menu.active::after {
    width: 0;
    opacity: 0;
}
.sub-menu {
    background-color: white;
    border-radius: 0 0 15px 15px;
    opacity: 0;
    transition: 0.3s opacity, 0.3s padding, 0.3s height;
    pointer-events: none;
    gap: 0;
    overflow: hidden;
    position: fixed;
    top: 52px;
    left: 50%;
    transform: translateX(-50%);
    /* width: 830px; */
}
.sub-menu.active {
    opacity: 1;
    pointer-events: all;
}
.sub-menu .nav-menu {
    transition: 0.2s color ease-in-out, 0.3s padding;
    padding: 10px;
    font-size: 20px;
    width: 100%;
    text-align: center;
    color: black;
}
.sub-menu.active .nav-menu {
    padding: 20px 30px;
}
.nav-container.homepage .nav-menus .sub-menu .nav-menu {
    color: black;
}
.nav-container .nav-menus .sub-menu .nav-menu:hover {
    color: #4CAF50;
}
.languages {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
}
.languages .language {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 20px;
    cursor: pointer;
    text-transform: uppercase;
}
.nav-container.homepage .languages .language {
    color: white;
}
.languages .language i {
    font-size: 28px;
}
.languages .other-languages {
    padding: 10px;
    pointer-events: none;
    position: absolute;
    top: 30px;
}
.languages .other-languages.active,
.languages .other-languages:hover,
.languages .other-languages:active {
    pointer-events: all;
}
.languages .other-languages.active .other-languages-container,
.languages .other-languages:hover .other-languages-container,
.languages .other-languages:active .other-languages-container {
    opacity: 1;
    transform: translateY(0);
}
.languages .other-languages-container {
    text-align: center;
    list-style-type: none;
    background-color: white;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(-6px);
    transition: 0.3s opacity, 0.3s transform;
    overflow: hidden;
    padding: 0;
}
.languages .other-languages .other-language {
    padding: 18px 25px;
    position: relative;
    cursor: pointer;
    user-select: none;
}
.languages .other-languages .other-language::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 0;
    border-radius: 10px;
    background-color: black;
    transition: 0.3s width;
}
.languages .other-languages .other-language:hover:after,
.languages .other-languages .other-language:active:after,
.languages .other-languages .other-language.active::after {
    width: 30%;
}
.title {
    text-transform: uppercase;
    margin-bottom: 225px;
    position: relative;
    width: fit-content;
    font-weight: 400;
    user-select: none;
    pointer-events: none;
    font-size: 60px;
    /* transform: translateY(-100px); */
}
.contact-title .title{
    margin-bottom: 115px;
}
.title::after {
    content: '';
    position: absolute;
    bottom: -23px;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 100px;
    opacity: 1;
    background: linear-gradient(to right, #CBB779 , #2C2829);
    z-index: 999999;
    border-radius: 10px;
}

.text-side .title {
    transform: translateY(0px);
    margin-bottom: 45px;
    font-size: 48px;
}

.translate-0 {
    transform: translateY(0px);
}

.page-section{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-section-title{
    text-transform: uppercase;
    margin-bottom: 52px;
    position: relative;
    width: fit-content;
    font-weight: 400;
    user-select: none;
    pointer-events: none;
    font-size: 48px;
    margin-top: 72px;
}

.page-section-title::after{
    content: '';
    position: absolute;
    bottom: -23px;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 100px;
    opacity: 1;
    background: linear-gradient(to right, #CBB779 , #2C2829);
    z-index: 999999;
    border-radius: 10px;
}
/* FIXED ICONS */

.fixed-icons {
    width: 100%;
    height: 100svh;
    position: fixed;
    z-index: 999999;
    pointer-events: none;
    user-select: none;
}
.fixed-contact {
    position: absolute;
    bottom: 30px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: 0.2s bottom;
}
.fixed-btn {
    padding: 10px 16px;
    border-radius: 50px 0 0 50px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    pointer-events: all;
    text-decoration: none;
    transform: translateX(155px);
    transition: 0.3s;
}
.fixed-btn img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    object-position: center;
}
.fixed-btn.whatsapp {
    background-color: #4CAF50;
}
.fixed-btn.whatsapp *::selection {
    background-color: #008400;
}
.fixed-btn.phone {
    background-color: #0468CB;
}
.fixed-btn.phone *::selection {
    background-color: #0149C7;
}
.fixed-btn-container {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fixed-btn-container h4 {
    user-select: none;
    margin: 0;
}
.fixed-btn-container p {
    user-select: all;
    margin: 0;
}

/* fixed-icons */

/* RESERVATION */

.mainButton {
    background-color: transparent;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    text-decoration: none;
    padding: 15px 10px;
    width: 270px;
    text-align: center;
    border-radius: 50px;
    font-size: 18px;
    transition: 0.25s;
    user-select: none;
    text-transform: uppercase;
}
.mainMiniButton {
    background-color: transparent;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    transition: 0.25s;
    user-select: none;
    font-size: 16px;
    padding: 6px 28px !important;
    text-transform: capitalize;
}
.mainButton:hover,
.mainMiniButton:hover {
    background-color: var(--main-color);
    color: white;
}
.reservation {
    padding: 50px 80px;
    width: 100%;
    transition: 0.3s padding;
}
.reservation-container {
    width: 100%;
    height: 100%;
    display: flex;
    background-image: url("/img/tools/summer-time-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
}
.reservation-container .text-side-container {
    padding: 70px;
    position: relative;
}
.reservation-container .reservation-img {
    width: 100%;
    aspect-ratio: 2/1;
    user-select: none;
    pointer-events: none;
}
.reservation-container .reservation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}
.reservation-container .text-side {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.reservation-container .text-side .title::after {
    left: 0;
    transform: translateX(0);
}
.reservation-container .text-side p {
    font-size: 20px;
    margin-bottom: 4rem;
}
.reservation-container .mainButton {
    position: absolute;
    bottom: 50px;
}

/* RESERVATION */

/* FOOTER */

footer {
    width: 100%;
    background-color: #F7F7F7;
    border-top: 1px solid #C0C0C0;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 0 100px;
}
.footer-detail {
    border-right: 0px;
    min-width: 500px;
    padding: 15px;
    transition: 0.3s min-width;
}
.footer-detail .logo-side {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    user-select: none;
    pointer-events: none;
}
.footer-detail .logo-side img {
    height: 40px;
    transition: 0.3s height;
}
.footer-detail .logo-side h1 {
    max-width: 260px;
    font-size: 32px;
    margin: 0;
}
.footer-detail article address,
.footer-detail article p {
    margin-bottom: 5px;
    user-select: all;
}
.footer-menu-container {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}
.footer-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    height: 250px;
    width: 100%;
    padding: 40px 80px;
    user-select: none;
    transition: 0.3s padding;
}
.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.footer-link {
    color: var(--main-color);
    text-decoration: none;
    width: 70%;
    height: 24px;
    display: flex;
    justify-content: start;
    align-items: center;
}
.footer-link span {
    position: relative;
    line-height: 1rem;
}
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-left: 0px;
    min-width: 200px;
    padding: 40px 0;
    padding-left: 50px;
    user-select: none;
    transition: 0.25s padding, 0.25s gap;
}
.footer-social .footer-slink {
    color: var(--main-color);
    text-decoration: none;
    transition: 0.25s scale;
    position: relative;
}
.footer-social .footer-slink span {
    position: relative;
}
.footer-social .footer-slink img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    object-position: center;
    margin-right: 1rem;
}

/* FOOTER */

/* IMG SCREEN */

.img-screen {
    width: 100%;
    height: 100svh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #444444cc;
    z-index: 9999999999999999999999;
    pointer-events: none;
    backdrop-filter: blur(0);
    opacity: 0;
    transition: 0.35s opacity, 0.35s backdrop-filter;
}
.img-screen.active {
    opacity: 1;
    backdrop-filter: blur(5px);
    pointer-events: all;
}
.img-screen-container {
    width: 100%;
    height: 100%;
    padding: 50px 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.3s padding;
}
.img-screen-content {
    width: fit-content;
    height: fit-content;
    padding: 0 10px;
}
.img-screen-control {
    position: relative;
    width: 100%;
    height: 100%;
}
.img-screen-controller {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}
.img-screen .img-screen-controller button {
    background-color: transparent;
    border: 0;
    outline: 0;
    color: white;
    transition: 0.25s scale;
    text-shadow: 0 0 5px black;
    scale: 0.5;
    transition: 0.35s scale;
}
.img-screen.active .img-screen-controller button {
    scale: 1;
}
.img-screen .img-screen-controller button:active {
    scale: 0.9;
}
.img-screen .img-side {
    width: 100%;
    height: 100%;
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    pointer-events: none;
    transition: 0.3s padding;
}
.img-screen .img-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-screen .img-container img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    object-fit: contain;
    object-position: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.65);
    scale: 0.5;
    transition: 0.35s scale;
}
.img-screen.active .img-container img {
    scale: 1;
}
.nav-container .nav-menus .nav-menu.hasSub b::after {
    content: "\25be";
    float:right;
    position: absolute;
    top: 18px;
    right: -10px;
    transform: translate(-50%,-50%) rotate(0);
    display: none;
    font-size: 30px;
    transition: 0.35s transform;
}
.nav-container .nav-menus .nav-menu.hasSub.subActive b::after {
    transform: translate(-50%,-50%) rotate(180deg);
}
.cookie-band {
    background: linear-gradient(45deg, #d0d1ce, #DEDFDA,#d0d1ce, #DEDFDA);
    color: black;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000000;
    transition: 0.2s bottom, 0.2s opacity;
}
.cookie-band.accepted-cookies {
    bottom: -80px;
    opacity: 0;
    pointer-events: none;
}
#cookie-space.accepted-cookies {
    display: none;
}
.fixed-contact.accepted-cookies {
    bottom: 30px !important;
}
.cookie-band .cookie-band-container {
    padding: 20px 100px;
    transition: 0.35s padding;
}
.cookie-band .cookie-band-detail {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cookie-band .cookie-band-detail p {
    margin-bottom: 0;
}
/* ANIMATIONS */
@media (hover: hover) {
    .fixed-btn:hover {
        transform: translateX(0);
    }
    .mainButton:active,
    .mainMiniButton:active {
        scale: 0.97;
    }
    .footer-link span::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--main-color);
        border-radius: 10px;
        transition: 0.25s width;
    }
    .footer-link:hover span::after {
        width: 70%;
    }
    .footer-link:active span::after {
        width: 100%;
    }
    .footer-social .footer-slink span:after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: var(--main-color);
        border-radius: 10px;
        transition: 0.25s width;
    }
    .footer-social .footer-slink:hover span:after {
        width: 70%;
    }
    .footer-social .footer-slink:active span:after {
        width: 100%;
    }
}

/* RESPONSIVE */
@media (max-width: 1440px) {
    .footer-menu-content {
        padding: 40px 30px;
    }
    .footer-detail {
        min-width: 390px;
    }
    .footer-link {
        width: 53%;
    }
}
@media (max-width:1340px) {
    nav {
        width: 100%;
        height: 152px;
        background-color: transparent;
        top: 0;
        left: 0;
        transition: 0.3s background-color, 0.35s height;
        overflow: hidden;
    }
    nav.active {
        background-color: #F5F5F5;
        height: 100svh;
        overflow-y: auto;
    }
    .menuStyle {
        width: 90%;
        position: absolute;
        background-color: white;
        top: 150px;
        left: 50%;
        transform: translate(-50%, 30px);
        border-radius: 15px;
        transition:0.35s transform, 0.3s opacity, 0.3s box-shadow;
        opacity: 0;
        pointer-events: none;
    }
    nav.active .menuStyle {
        opacity: 1;
        transform: translate(-50%,0);
        pointer-events: all;
        box-shadow: 0 5px 15px rgb(0,0,0,0.1);
    }
    .menus {
        margin-top: 0;
    }
    .nav-container {
        align-items: center;
    }
    .nav-container.homepage .nav-menus .nav-menu,
    .nav-container.homepage .languages .language {
        color: black;
    }
    .nav-container .nav-menus .nav-menu.hasSub b::after {
        display: block;
    }
    .nav-container .nav-menus .nav-menu:hover {
        color: #4CAF50;
    }
    .hamburgerBtn {
        display: block;
    }
    .nav-container.homepage .hamburgerBtn {
        color: white;
    }
    nav.active .nav-container .hamburgerBtn {
        color: black;
    }
    .nav-menus {
        flex-direction: column;
        justify-content: left;
        gap: 18px;
        position: relative;
        width: 100%;
    }
    .nav-menus:not(.sub-menu) {
        padding: 10px 15px;
    }
    .nav-menus:not(.sub-menu)::after {
        width: 0;
    }
    .sub-menu {
        position: relative;
        width: 100%;
        height: 0;
        transform: translate(-50%,-50px);
        opacity: 1;
        border-radius: 0;
        padding-left: 5px;
    }
    .nav-menus .nav-menu {
        width: 100%;
        transition: 0.3s color;
        pointer-events: none;
        padding: 0;
        text-align: start;
    }
    nav.active .nav-menus .nav-menu {
        pointer-events: all;
    }
    .sub-menu .nav-menu {
        text-align: left;
        padding: 6px 0;
    }
    .sub-menu.active .nav-menu {
        padding: 6px 0;
    }
    .nav-container .logo img {
        width: 215px;
        margin-top: 4px;
    }
    .languages {
        align-items: start;
        margin: 10px 0 20px 20px;
    }
    .languages .other-languages {
        top: -28px;
        left: 60px;
        font-size: 18px;
    }
    .languages .other-language {
        display: inline-block;
    }
    .nav-menus .nav-menu::after {
        display: none;
    }
    .img-screen-container {
        padding: 50px 10px;
    }
    .img-screen-content {
        padding: 0;
    }
    .img-screen .img-side {
        padding: 0 35px;
    }
    .img-screen.active .img-screen-controller button {
        scale: 0.8;
    }
    #GalleryprevButton {
        transform: translateX(-15px);
    }
    #GallerynextButton {
        transform: translateX(15px);
    }
    .title{
        font-size: 48px;
    }
}
@media (max-width:1150px) {
    .footer-container {
        padding: 0;
        flex-direction: column;
    }
    .footer-detail {
        border-right: 0;
        border-bottom: 1px solid #C0C0C0;
    }
    .footer-detail .logo-side {
        justify-content: center;
    }
    .footer-detail article {
        text-align: center;
    }
    .footer-menu-content {
        width: 100%;
        height: 173px;
        border-bottom: 1px solid #C0C0C0;
        padding: 30px 50px;
        position: relative;
        transition: 0s;
    }
    .footer-link {
        justify-content: center;
    }
    .footer-menu-content::before {
        content: '';
        position: absolute;
        left: 35.2%;
        top: 0;
        transform: translateX(-50%);
        height: 100.2%;
        width: 1px;
        background-color:#C0C0C0;
        opacity: 1;
    }
    .footer-menu-content::after {
        content: '';
        position: absolute;
        right: 34.2%;
        top: 0;
        transform: translateX(50%);
        height: 100.2%;
        width: 1px;
        background-color:#C0C0C0;
        opacity: 1;
    }
    .footer-link {
        width: 33.3%;
        text-align: center;
    }
    .footer-social {
        min-width: 100%;
        flex-direction: row;
        justify-content: center;
        padding-left: 0;
    }
    .footer-detail article address {
        padding: 0 45px;
    }
    .footer-social {
        padding: 20px 0;
    }
    .footer-link span::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .activity-content .title{
        font-size: 50px;
    }
}
@media (max-width: 968px){
    .contact-title .title{
        transform: translateY(0px);
    }
}
@media (max-width: 960px) {
    .reservation-container .reservation-img img {
        border-radius: 0 0 0 0;
    }
    .reservation-container {
        flex-direction: column;
    }
    .reservation-container .text-side .title::after {
        left: 0;
    }
    .reservation-container .text-side p {
        margin-bottom: 2rem;
    }
    .reservation-container .mainButton {
        position: relative;
        bottom: 0;
    }
    .reservation-container .text-side-container {
        display: flex;
        flex-direction: column;
        align-items: start;
        padding: 30px;
    }
}
@media (max-width: 768px) {
    .fixed-contact {
        gap: 0;
    }
    .fixed-btn {
        transform: translateX(148px) scale(0.85);
    }
    .footer-menu-content {
        padding: 16px;
        height: 188px;
    }
    .footer-link {
        height: 35px;
    }
    .reservation {
        padding: 50px 20px;
    }
    .reservation-container .text-side-container {
        padding: 20px 15px;
    }
    .nav-container .logo img {
        width: 215px;
        margin-top: 8px;
    }
    .hamburgerBtn svg {
        width: 40px;
        height: 40px;
    }
    .cookie-band .cookie-band-container {
        padding: 20px 30px;
    }
}
@media (max-width: 720px) {
    .footer-social .footer-slink {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .footer-social .footer-slink img {
        margin-right: 0;
    }
}
@media (max-width: 500px) {
    .cookie-band-detail {
        flex-direction: column;
        gap: 15px;
    }

    .page-section-title{
        font-size: 38px;
    }

    .title {
        font-size: 40px;
    }
    .text-side .title{
        font-size: 40px;
    }
    .header-container .title{
        font-size: 40px;
        padding: 0px 16px;
    }

    .activity-content .title{
        font-size: 42px;
    }
}
@media (max-width:390px) {
    .footer-menu-content::before {
        left: 50%;
    }
    .footer-menu-content::after {
        display: none;
    }
    .footer-menu-content {
        height: 280px;
        padding: 22px;
    }
    .footer-detail .logo-side img {
        height: 10vw;
    }
    .footer-detail .logo-side h1 {
        width: 200px;
        font-size: calc(1rem + 2.2vw);
    }
    .footer-detail {
        min-width: auto;
        width: 100%;
    }
    .footer-link {
        width: 50%;
    }
    .footer-detail article address {
        padding: 0;
    }
    .footer-social {
        padding: 10px 0;
        gap: 10px;
    }
    .footer-social .footer-slink {
        scale: 0.8;
    }
    .mainButton {
        padding: 10px 5px;
        width: 100%;
        font-size: 16px;
    }
    .img-screen .img-side {
        padding: 0;
    }
    .img-screen-controller {
        top: 115%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 95%;
    }
    .footer-detail article {
        font-size: 14px;
    }
}
@media (max-width: 290px) {
    .footer-detail .logo-side h1 {
        width: 100%;
    }
}