@charset "UTF-8";
/* 비메오 백그라운드 모드 추가 스타일 */
iframe[src*='vimeo.com'][src*='background=1'] {
    /* 백그라운드 모드 강화 */
    pointer-events: none !important;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#heroMuteToggle {
    position: absolute;
    bottom: 10%;
    right: 10%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#heroMuteToggle i {
    font-size: 20px;
    color: white;
}

#heroMuteToggle:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* CSS 수정 - 전체화면 비디오 유지 */
.m-intro {
    position: relative;
    background: var(--clr-primary);
    margin-bottom: 100px;
}
.m-intro__wrapper {
    width: 100%;
    height: var(--vh-100);
    overflow: hidden;
    /* 오버레이는 동일하게 유지 */
}
.m-intro__wrapper-video {
    position: relative;
    width: 100%;
    height: 100%;
    /*
  clip-path: inset(50% 0 50% 0);
  -webkit-clip-path: inset(50% 0 50% 0);
  transition: clip-path 0.4s cubic-bezier(0.35, 0, 0.35, 1);
  -webkit-transition: -webkit-clip-path 0.4s cubic-bezier(0.35, 0, 0.35, 1);
  */
}
.m-intro__wrapper-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max(100vw, 177.7777777778vh);
    height: max(100%, 56.25vw);
    min-width: 100%;
    min-height: 100%;
    /* 백그라운드 모드에서는 상호작용 차단 */
    pointer-events: none;
    /* 비메오 컨트롤 완전 숨김 */
    border: none;
    outline: none;
}
.m-intro__wrapper-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.m-intro__wrapper-overlay .overlay-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.m-intro__wrapper-overlay .overlay-title > div {
    position: absolute;
    width: 16%;
    color: #fff;
    font-family: var(--font-blacker);
    font-weight: 350;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}
.m-intro__wrapper-overlay .overlay-title .t1,
.m-intro__wrapper-overlay .overlay-title .t2 {
    font-size: clamp(2rem, 1.5625vw, 3rem);
    letter-spacing: 0.15rem;
    text-align: right;
    padding-right: 0.4rem;
    margin-top: -6rem;
}
.m-intro__wrapper-overlay .overlay-title .t1::before,
.m-intro__wrapper-overlay .overlay-title .t2::before {
    position: absolute;
    top: 4.8rem;
    right: 0;
    content: '';
    width: 100%;
    height: 0.1rem;
    background: #fff;
}
.m-intro__wrapper-overlay .overlay-title .t2 {
    text-align: left;
    padding-left: 0.4rem;
}
.m-intro__wrapper-overlay .overlay-title .t2::before {
    left: 0;
    right: auto;
}
.m-intro__wrapper-overlay .overlay-title .t3 {
    width: -moz-fit-content;
    width: fit-content;
    font-size: clamp(4.2rem, 9.375vw, 18rem);
    font-weight: 200;
    letter-spacing: 0.9rem;
    text-align: center;
}
.m-intro__wrapper-overlay .overlay-title .t3 span {
    display: inline-block;
    opacity: 0;
    transform: translateY(3rem);
}
.m-intro__inner {
    width: 100%;
    height: var(--vh-100);
}

@media (max-width: 1024) {
}

.m-hero {
    position: relative;
    width: 100%;
    min-height: 50vh;
    z-index: 3;
}
.m-hero__wrapper {
    width: 100%;
    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.m-hero__videobox {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.m-hero__videobox-video {
    position: relative;
    width: auto;
    height: auto;

    z-index: 1;
    overflow: hidden;
    will-change: transform, width, height;
}
.m-hero__videobox-video::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    padding-top: 134.8%;
}
.m-hero__videobox-video iframe {
    width: max(100vw, 177.7777777778vh);
    height: max(100vh, 56.25vw);
    min-width: 100%;
    min-height: 100%;
    /* 백그라운드 모드에서는 상호작용 차단 */
    pointer-events: none;
    /* 비메오 컨트롤 완전 숨김 */
    border: none;
    outline: none;
}
.m-hero__textbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 10rem 0 20rem;
    color: var(--clr-black);
    text-align: center;
}
.m-hero__textbox .text1 {
    font-family: var(--font-blacker);
    font-size: clamp(4rem, 4.1667vw, 8rem);
    font-weight: 200;
    letter-spacing: 0.4rem;
    line-height: 1.2;
    color: var(--clr-primary);
}
.m-hero__textbox .text2 {
    font-size: clamp(1.8rem, 1.1458vw, 2.2rem);
    margin: 15rem 0 4rem 0;
    font-family: 'S-Core Dream 3';
}
.m-hero__textbox .text3 {
    font-size: clamp(1.4rem, 0.8333vw, 1.6rem);
}
.m-hero__textbox .text4 {
    font-size: clamp(2.5rem, 1.1458vw, 2.2rem);
    font-weight: 500;
    margin-bottom: 3rem;
    font-family: 'S-Core Dream 3';
}

.main-slide-wrap {
    width: 100%;
    margin: 0 auto;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.main-slide-wrap .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.main-slide-wrap .swiper-slide {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.main-slide-wrap .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-slide-wrap .swiper-slide img.mo-img {
    display: none;
}

.main-slide-wrap .swiper-shero-prev {
    position: absolute;
    bottom: 10%;
    left: 35%;
    z-index: 300;
    cursor: pointer;
    transition: all 0.7s;
}

.main-slide-wrap .swiper-shero-next {
    position: absolute;
    bottom: 10%;
    right: 35%;
    z-index: 300;
    cursor: pointer;
    transition: all 0.7s;
}

.main-slide-wrap .arrow {
    display: inline-block;
    width: 80px;
    height: 1px;
    background: #fff;
    position: relative;
}
.main-slide-wrap .arrow.left::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 4px;
    width: 20px;
    height: 20px;
    border-top: 1px solid #fff;
    transform: rotate(-45deg);
}
.main-slide-wrap .arrow.right::after {
    content: '';
    position: absolute;
    top: -9px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

.main-slide-wrap > div .page-num {
    position: absolute;
    color: #fff;
    font-family: var(--font-lato);
    font-size: clamp(1.2rem, 1.5625vw, 1.6rem);
    font-weight: 300;
    line-height: 1;
}

.main-slide-wrap > div.swiper-shero-prev .page-num {
    left: 35px;
    top: 0px;
}

.main-slide-wrap > div.swiper-shero-next .page-num {
    right: 30px;
    bottom: -10px;
}

.m-logo {
    width: 250px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 15rem;
}

@media all and (max-width: 1024px) {
    .m-intro {
        margin-bottom: 50px;
        background: none;
        background-image: url(/html/img/main_vdo.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .m-hero__textbox .text1 {
        display: none;
    }

    .m-hero__textbox .text3 {
        font-size: 11px;
        line-height: 15px;
    }

    .m-logo {
        display: block;
        background-size: contain;
        background-repeat: no-repeat;
        width: 160px;
        height: 30px;
        margin: 0 auto;
        padding-top: 0px;
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .main-slide-wrap {
        width: 100%;
        height: 350px;
        position: relative;
        overflow: hidden;
    }

    .main-slide-wrap .swiper-wrapper {
        width: 100%;
        height: 100%;
    }

    .main-slide-wrap .swiper-slide {
        width: 100%;
        height: 100%;
        background-position: center center;
        background-size: cover;
    }

    .main-slide-wrap .swiper-slide img.pc-img {
        display: none;
    }

    .main-slide-wrap .swiper-slide img.mo-img {
        display: block;
    }

    .main-slide-wrap .swiper-shero-prev {
        position: absolute;
        bottom: 10%;
        left: 10px;
        z-index: 300;
        cursor: pointer;
        transition: all 0.7s;
    }

    .main-slide-wrap .swiper-shero-next {
        position: absolute;
        bottom: 10%;
        right: 10px;
        z-index: 300;
        cursor: pointer;
        transition: all 0.7s;
    }

    .main-slide-wrap .arrow {
        display: inline-block;
        width: 80px;
        height: 1px;
        background: #fff;
        position: relative;
    }
    .main-slide-wrap .arrow.left::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 4px;
        width: 20px;
        height: 20px;
        border-top: 1px solid #fff;
        transform: rotate(-45deg);
    }
    .main-slide-wrap .arrow.right::after {
        content: '';
        position: absolute;
        top: -9px;
        right: 4px;
        width: 20px;
        height: 20px;
        border-right: 1px solid #fff;
        transform: rotate(45deg);
    }

    .main-slide-wrap > div .page-num {
        position: absolute;
        color: #fff;
        font-family: var(--font-lato);
        font-size: clamp(1.2rem, 1.5625vw, 1.6rem);
        font-weight: 300;
        line-height: 1;
    }

    .main-slide-wrap > div.swiper-shero-prev .page-num {
        left: 35px;
        top: 0px;
    }

    .main-slide-wrap > div.swiper-shero-next .page-num {
        right: 30px;
        bottom: -10px;
    }

    .m-intro__wrapper {
        height: 320px;
    }
    .m-intro__inner {
        height: 100%;
    }
    .m-intro__wrapper-overlay {
        display: none;
    }

    .m-hero__textbox .text4 {
        font-size: clamp(1.2rem, 1.1458vw, 2.2rem);
    }

    .m-hero {
        min-height: var(--vh-100);
    }
    .m-hero__videobox-video {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9;
        position: relative !important;
        transform: none !important;
    }

    #heroMuteToggle {
        bottom: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
    }

    #heroMuteToggle i {
        font-size: 15px;
        color: white;
    }
}

.m-special {
    position: relative;
}
.m-special__wrapper {
    width: 100%;
    height: var(--vh-100);
}

.mo-special-wrapper {
    display: none;
}

.mo-special-tit {
    display: none;
}

.mo-special-btn {
    display: none;
}

@media all and (max-width: 768px) {
    .m-special__wrapper {
        display: none;
    }

    .mo-special-wrapper {
        display: block;
        width: 100%;
        height: 210px;
    }

    .mo-special-wrapper .swiper-slide div {
        width: 100%;
        height: 100%;
        background-size: cover;
        position: relative;
        background-position: center;
    }

    .mo-special-wrapper .swiper-slide div::before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background-color: rgba(0, 0, 0, 0.2);
        z-index: 1;
    }

    .mo-special-wrapper .swiper-slide div span {
        z-index: 2;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        text-align: center;
        font-family: var(--font-lato);
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px;
        display: inline-block;
    }

    .mo-special-tit {
        display: block;
        padding: 40px 0 40px 0;
    }

    .mo-special-tit h5 {
        font-family: 'S-Core Dream 3';
        color: #4a4a4a;
        text-align: center;
        font-size: 14px;
        font-weight: 300;
        line-height: 20px;
        margin-bottom: 5px;
    }

    .mo-special-tit p {
        color: #4a4a4a;
        text-align: center;
        font-family: 'Pretendard-Regular';
        font-size: 11px;
        font-style: normal;
        font-weight: 400;
        line-height: 15px; /* 185.714% */
        letter-spacing: -0.7px;
    }

    .mo-special-btn {
        width: 100%;
        height: 40px;
        position: relative;
        display: block;
    }

    .mo-special-btn .swiper-shero-prev {
        position: absolute;
        bottom: 10%;
        left: 10px;
        z-index: 300;
        cursor: pointer;
        transition: all 0.7s;
    }

    .mo-special-btn .swiper-shero-next {
        position: absolute;
        bottom: 10%;
        right: 10px;
        z-index: 300;
        cursor: pointer;
        transition: all 0.7s;
    }

    .mo-special-btn .arrow {
        display: inline-block;
        width: 80px;
        height: 1px;
        background: #4a4a4a;
        position: relative;
    }
    .mo-special-btn .arrow.left::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 4px;
        width: 20px;
        height: 20px;
        border-top: 1px solid #4a4a4a;
        transform: rotate(-45deg);
    }
    .mo-special-btn .arrow.right::after {
        content: '';
        position: absolute;
        top: -9px;
        right: 4px;
        width: 20px;
        height: 20px;
        border-right: 1px solid #4a4a4a;
        transform: rotate(45deg);
    }
}

.m-booking {
    position: relative;
    overflow: hidden;
}
.m-booking__wrapper {
    position: relative;
    width: 100%;
    height: var(--vh-100);
}
.m-booking__inner {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
}
.m-booking__desktop {
    display: block;
}
.m-booking__mobile {
    display: none;
}
.m-booking__col-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.m-booking__col-1 {
    flex: 1 0 50%;
    display: flex;
    flex-direction: column;
    row-gap: 30rem;
}
.m-booking__col-1 .bi1 {
    width: 16.25vw;
    margin-left: 13.02%;
}
.m-booking__col-1 .bi2 {
    width: 22.86vw;
}
.m-booking__col-1 .bi3 {
    width: 20.83vw;
    margin-left: 13.02%;
}
.m-booking__col-2 {
    flex: 1 0 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 17.8rem;
}
.m-booking__col-2 .bi1 {
    width: 24.43vw;
}
.m-booking__col-2 .bi2 {
    width: 18.13vw;
    margin-right: 25.83%;
}
.m-booking__col-2 .bi3 {
    width: 15.52vw;
}
.m-booking__col-3 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.m-booking__col-3 .heading-txt1 {
    color: var(--clr-primary);
    text-align: center;
    font-family: var(--font-arita);
    font-size: clamp(2.2rem, 2.8125vw, 5.4rem);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.27rem;
}
.m-booking__col-3 .heading-txt2 {
    margin-top: 1rem;
    color: var(--clr-primary);
    text-align: center;
    font-family: var(--font-blacker);
    font-size: clamp(3.8rem, 6.25vw, 12rem);
    font-weight: 200;
    line-height: 1;
    white-space: nowrap;
}
.m-booking__col-3 .txt {
    margin-top: 4rem;
    text-align: center;
    font-size: clamp(1.4rem, 0.8333vw, 1.6rem);
    color: var(--clr-black);
}
.m-booking__col-3 .btn-book {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}
.m-booking__col-3 .btn-book a {
    position: relative;
    padding: 0 3rem;
}
.m-booking__col-3 .btn-book a::before {
    position: absolute;
    left: 50%;
    top: 50%;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--clr-primary);
    transform: translate(-50%, -50%);
    transition: all 0.4s;
}
.m-booking__col-3 .btn-book a:hover::before {
    width: calc(100% + 2.8rem);
}
.m-booking__col-3 .btn-book a span {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-family: var(--font-blacker);
    font-size: clamp(2.6rem, 1.5625vw, 3rem);
    font-weight: 200;
    line-height: 1;
    color: var(--clr-primary);
    background: var(--clr-background);
    padding: 0 1.8rem;
}

.m-hero__imgbox {
    display: none;
}

.m-map {
    display: none;
}

.mo {
    display: none;
}
.hero-video.pc {
    display: block;
}
.hero-video.mo {
    display: none;
}
@media all and (max-width: 1024px) {
    .hero-video.pc {
        display: none;
    }
    .hero-video.mo {
        display: block;
    }

    .m-booking__wrapper {
        height: auto;
        padding: 10rem 0;
    }
    .m-booking__inner {
        position: relative;
        display: flex;
        flex-direction: column-reverse;
    }
    .m-booking__desktop {
        display: none;
    }
    .m-booking__mobile {
        display: block;
        margin-top: 6rem;
    }
    .m-booking__col-3 {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }
    .m-booking__col-3 .txt {
        margin-top: 2.8rem;
    }
    .m-booking .booking-swiper {
        width: 100%;
        overflow: hidden;
    }
    .m-booking .booking-swiper .swiper-scrollbar {
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 2px;
        z-index: 3;
    }
    .m-booking .booking-swiper .swiper-scrollbar .swiper-scrollbar-drag {
        background: var(--clr-primary);
    }
    .m-booking .booking-swiper .swiper-slide {
        width: 80%;
        height: auto;
        overflow: hidden;
    }
    .m-booking .booking-swiper .swiper-slide img {
        width: 100%;
        height: auto;
        display: block;
    }
    .m-booking .booking-pagination {
        margin-top: 20px;
    }

    .m-hero__textbox {
        padding: 0rem 0 5rem;
        font-size: 14px;
    }

    .m-hero__textbox .text2 {
        margin: 5rem 0 2rem 0;
        font-size: 14px;
    }

    .m-map {
        display: block;
        width: 100%;
        height: auto;
        position: relative;
        background-color: #000;
        text-align: center;
        padding-bottom: 30px;
    }

    .m-map img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        position: relative;
        z-index: 1;
    }

    .m-map a {
        width: 140px;
        height: 30px;
        text-align: center;
        display: inline-block;
        color: #fff;
        font-family: var(--font-lato);
        font-weight: 400;
        line-height: 30px;
        font-size: 13px;
        border: 1px solid #fff;
        z-index: 2;
        margin: 30px 0;
    }

    .m-hero__textbox .text4 {
        margin-bottom: 0rem;
    }

    .m-hero__imgbox {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        padding-bottom: 0;
    }

    .m-hero__imgbox-item {
        position: relative;
    }

    .m-hero__imgbox-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

    .m-hero__imgbox-item span {
        font-size: 13px;
        font-family: var(--font-lato);
        color: #fff;
        text-align: center;
        font-weight: 400;
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 2;
        transform: translate(-50%, -50%);
    }

    .m-hero__imgbox-item a {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        z-index: 3;
        left: 0;
        top: 0;
    }

    .m-hero__imgbox-item:nth-of-type(1),
    .m-hero__imgbox-item:nth-of-type(2) {
        width: 100%;
        height: 150px;
    }

    .m-hero__imgbox-item:nth-of-type(3),
    .m-hero__imgbox-item:nth-of-type(4) {
        width: 50%;
        height: 120px;
    }

    .m-hero__imgbox-item:nth-of-type(5),
    .m-hero__imgbox-item:nth-of-type(6),
    .m-hero__imgbox-item:nth-of-type(7),
    .m-hero__imgbox-item:nth-of-type(8),
    .m-hero__imgbox-item:nth-of-type(9),
    .m-hero__imgbox-item:nth-of-type(10) {
        width: 33.333333%;
        height: 120px;
    }

    .m-hero__imgbox-item img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

.m-room {
    position: relative;
    overflow: hidden;
}
.m-room__wrapper {
    width: 100%;
}
.m-room__wrapper-overlay {
    position: absolute;
    left: 50%;
    top: 15rem;
    width: 100%;
    padding-left: 8.5%;
    z-index: 2;
    color: #fff;
    transform: translateX(-50%);
}
.m-room__wrapper-overlay .tit {
    font-family: var(--font-blacker);
    font-size: clamp(3rem, 2.6042vw, 5rem);
    font-weight: 200;
    line-height: 1;
}
.m-room__wrapper-overlay .desc {
    margin-top: 2rem;
    font-size: clamp(1.3rem, 1.5625vw, 1.6rem);
    font-weight: 300;
}
.m-room__wrapper-image {
    height: 50vh;
    background: url('../images/main/roomview_bg.jpg') center/cover no-repeat;
}
.m-room__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--clr-primary);
}
.m-room__col-1 {
    position: relative;
    width: 100%;
}
.m-room__col-2 {
    position: relative;
    width: 100%;
    padding: 10rem 2rem;
}
@media screen and (min-width: 1281px) {
    .m-room {
        height: var(--vh-100);
    }
    .m-room__wrapper-image {
        height: var(--vh-100);
    }
    .m-room__inner {
        flex-direction: row;
    }
    .m-room__col-1 {
        width: 50%;
    }
    .m-room__col-2 {
        width: 50%;
        display: flex;
        justify-content: center;
    }
}

.room-gallery {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.room-gallery .swiper-wrapper {
    display: flex;
    flex-direction: row;
}
.room-gallery__item {
    height: auto;
    opacity: 1;
    transform: scale(1);
}
.room-gallery__pic {
    position: relative;
}
.room-gallery__info {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: -20px;
    color: #fff;
    font-family: var(--font-blacker);
    font-weight: 200;
}
.room-gallery__info .tit {
    font-size: clamp(2.5rem, 2.6042vw, 5rem);
    font-weight: 200;
    line-height: 1.2;
    letter-spacing: 0.4rem;
    white-space: nowrap;
    text-align: center;
}

.room-gallery__info .tit span {
    font-size: 80px;
    display: inline-block;
    font-family: 'aboreto', sans-serif;
    margin-right: 15px;
    color: #fff;
    font-weight: 400;
}

.room-gallery__info .more {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: clamp(1.6rem, 1.0417vw, 2rem);
    padding-right: 30%;
}
.room-gallery__info .more::before {
    position: absolute;
    right: 0;
    top: 50%;
    content: '';
    width: 28%;
    height: 1px;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@media all and (min-width: 1281px) {
    .room-gallery .swiper-wrapper {
        flex-direction: column !important;
        align-items: center;
        gap: 60px;
        padding: 20rem 0;
    }
    .room-gallery__item {
        width: 100%;
        max-width: 57rem;
        opacity: 0.6;
        transform: scale(0.8);
        transition: all 0.65s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    }
    .room-gallery__item.active {
        opacity: 1;
        transform: scale(1);
    }
    .room-gallery__info {
        margin-top: -40px;
    }
}

@media (max-width: 1000px) {
    .m-room {
        display: none;
    }
    .m-booking {
        display: none;
    }

    .room-gallery__info .tit {
        letter-spacing: 0.1rem;
    }

    .room-gallery__info .tit span {
        font-size: 40px;
        margin-right: 10px;
        letter-spacing: -0.3rem;
    }

    .header.scroll .header__booking a {
        padding-top: clamp(1rem, 1.4583vw, 0rem);
    }
}
