:root {
    --sea-deep: #1A1917;
    --sea-light: #8A8072;

    --sand: #F2ECE1;
    --sand-deep: #E4DBC9;

    --terracotta: #2F4A3C;
    --terracotta-dark: #1F3327;

    --ink: #201F1C;
    --ink-soft: #6B655C;

    --white: #FFFFFF;

    --border: rgba(26, 25, 23, .12);
    --shadow: 0 18px 45px rgba(26, 25, 23, .16);
    --radius: 16px;
    --transition: .3s ease;
    --font-title: 'Fraunces', serif;
    --font-body: 'Jost', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--sand);
    line-height: 1.7;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-title);
}

p { color: var(--ink-soft); }

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.section-space { padding: 100px 0; }

.soft-section { background: var(--sand-deep); }

.section-heading { margin-bottom: 42px; }

.section-label,
.card-label {
    display: inline-block;
    color: var(--terracotta);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.lead-text {
    color: var(--ink);
    font-size: 18px;
}


/* BUTTONS */

.site-btn,
.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 13px 24px;
    border: 1px solid var(--terracotta);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.site-btn {
    color: var(--white);
    background: var(--terracotta);
}

.site-btn:hover {
    color: var(--white);
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
}

.outline-btn {
    color: var(--sea-deep);
    border-color: var(--sea-deep);
    background: transparent;
}

.outline-btn:hover {
    color: var(--white);
    background: var(--terracotta);
    border-color: var(--terracotta);
}

.small-btn {
    min-width: 125px;
    padding: 10px 18px;
}


/* NAVBAR */

.main-navbar {
    padding: 16px 0;
    transition: var(--transition);
}

.main-navbar:not(.scrolled) {
    background: rgba(26, 25, 23, .38);
}

.main-navbar:not(.scrolled) .nav-link,
.main-navbar:not(.scrolled) .nav-link:hover,
.main-navbar:not(.scrolled) .nav-link.active {
    color: var(--white) !important;
}

.main-navbar.scrolled {
    background: var(--sand);
    box-shadow: 0 8px 30px rgba(38, 36, 32, .1);
}

.navbar-brand img {
    width: 150px;
    height: 78px;
    object-fit: contain;
}

.navbar-nav {
    gap: 10px;
}

.nav-link {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 12px !important;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--terracotta) !important;
}

.main-navbar.scrolled .nav-link {
    color: var(--ink);
}

.main-navbar:not(.scrolled) .nav-link {
    color: var(--white);
}

.main-navbar:not(.scrolled) .nav-link.active,
.main-navbar.scrolled .nav-link.active {
    color: #d6a62e !important;
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.main-navbar.scrolled .navbar-toggler-icon {
    filter: none;
}


.language-item {
    display: flex;
    align-items: center;
}

.language-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 3px;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: var(--transition);
}

.language-link img {
    width: 21px;
    height: 21px;
    object-fit: cover;
    border-radius: 50%;
}

.language-link:hover{
    border-color: var(--terracotta);
}

.main-navbar:not(.scrolled) .nav-link.active {
    color: #d6a62e !important;
}

/* HERO */

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 700px;
}

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(38, 36, 32, .58);
}

.hero-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-container .row {
    width: 100%;
}

.hero-content {
    padding-top: 70px;
}

.hero-label {
    display: inline-block;
    margin-bottom: 15px;
    color: #C4B8A3;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hero-content h1,
.hero-content h2 {
    color: var(--white);
    font-size: 62px;
    font-weight: 600;
    line-height: 1.08;
    margin-bottom: 22px;
}

.hero-content p {
    max-width: 600px;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 13px 24px;
    border: 1px solid var(--white);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.hero-book-btn:hover {
    color: var(--white);
    background: var(--terracotta);
    border-color: var(--terracotta);
}


/* HERO OWL */

.hero-carousel .owl-nav {
    position: absolute;
    right: 60px;
    bottom: 55px;
    margin: 0;
}

.hero-carousel.owl-theme .owl-nav button.owl-prev,
.hero-carousel.owl-theme .owl-nav button.owl-next {
    width: 48px;
    height: 48px;
    margin: 4px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    color: var(--white);
    background: transparent;
    font-size: 25px;
    transition: var(--transition);
}

.hero-carousel.owl-theme .owl-nav button.owl-prev:hover,
.hero-carousel.owl-theme .owl-nav button.owl-next:hover {
    color: var(--white);
    background: var(--terracotta);
    border-color: var(--terracotta);
}

.hero-carousel .owl-dots {
    display: none;
}

/* ABOUT */
.about-section {
    background: var(--sand);
}

.about-image {
    overflow: hidden;
    border-radius: var(--radius);
}

.about-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-content {
    padding-left: 25px;
}

.about-content .section-title {
    max-width: 520px;
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 22px;
}

.about-content .lead-text {
    max-width: 530px;
    margin-bottom: 18px;
}

.about-content > p {
    max-width: 540px;
}

.about-line {
    width: 55px;
    height: 1px;
    margin: 28px 0 20px;
    background: var(--terracotta);
}

.about-small-text {
    color: var(--ink-soft);
    font-size: 13px;
    letter-spacing: .02em;
    margin-bottom: 30px;
}

/* ROOMS */

.room-card,
.testimonial-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.room-card:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.room-image {
    height: 320px;
    overflow: hidden;
}

.room-image img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-card:hover .room-image img,
.gallery-item:hover img {
    transform: scale(1.04);
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.room-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: var(--ink-soft);
    font-size: 14px;
    margin-bottom: 24px;
}

.room-info i {
    color: var(--terracotta);
    margin-right: 4px;
}

.room-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.room-actions .site-btn,
.room-actions .outline-btn {
    min-width: 135px;
}


/* FACILITIES */

.facility-card {
    height: 100%;
    padding: 26px 18px;
    text-align: center;
    background: rgba(255, 255, 255, .55);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.facility-card:hover {
    background: var(--white);
    transform: translateY(-4px);
}

.facility-card i {
    display: block;
    color: var(--terracotta);
    font-size: 28px;
    margin-bottom: 12px;
}

.facility-card span {
    font-size: 14px;
    font-weight: 500;
}


/* BOOKING BANNER */

.booking-banner {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    color: var(--white);
    background: url("image/beke (9).jpeg") center center / cover no-repeat;
    overflow: hidden;
}

.booking-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(26, 25, 23, .62);
}

.booking-banner .container {
    position: relative;
    z-index: 2;
}

.booking-banner-content {
    max-width: 820px;
    margin: 0 auto;
}

.booking-banner .section-label {
    color: #C4B8A3;
}

.booking-banner h2 {
    color: var(--white);
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 30px;
}

.light-btn {
    color: var(--sea-deep);
    background: var(--white);
    border-color: var(--white);
}

.light-btn:hover {
    color: var(--white);
    background: var(--terracotta);
    border-color: var(--terracotta);
}

/* GALLERY */

.gallery-section {
    background: var(--sand);
}

.gallery-item {
    display: block;
    height: 330px;
    overflow: hidden;
    border-radius: var(--radius);
}



/* TESTIMONIALS */

.testimonials-section {
    background: var(--sand-deep);
}

.testimonials-description {
    max-width: 470px;
    margin: 0 0 5px auto;
    color: var(--ink-soft);
}


/* CARD */

.testimonial-new {
    position: relative;
    min-height: 390px;
    padding: 42px 40px;
    background: rgba(242, 236, 225, .7);
    border: 1px solid rgba(138, 128, 114, .22);
    border-radius: var(--radius);
    transition: var(--transition);
}

.testimonial-new:hover {
    transform: translateY(-4px);
    background: var(--sand);
    border-color: rgba(138, 128, 114, .4);
}


/* STARS */

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 32px;
}

.testimonial-stars i {
    color: var(--sea-light);
    font-size: 12px;
}


/* QUOTE */

.testimonial-quote {
    position: relative;
}

.testimonial-quote > i {
    position: absolute;
    top: -22px;
    right: 0;
    color: rgba(138, 128, 114, .12);
    font-size: 72px;
}

.testimonial-quote p {
    position: relative;
    z-index: 2;
    color: var(--ink);
    font-family: var(--font-title);
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 42px;
}


/* AUTHOR */

.testimonial-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid rgba(138, 128, 114, .22);
}

.testimonial-footer strong {
    display: block;
    color: var(--ink);
    font-size: 16px;
    font-weight: 600;
}

.testimonial-footer div span {
    display: block;
    margin-top: 2px;
    color: var(--sea-light);
    font-size: 15px;
}

.review-number {
    color: rgba(138, 128, 114, .45);
    font-family: var(--font-title);
    font-size: 25px;
}
/* OWL CAROUSEL */

.owl-theme .owl-nav {
    margin-top: 24px;
}

.owl-theme .owl-nav button.owl-prev,
.owl-theme .owl-nav button.owl-next {
    width: 44px;
    height: 44px;
    margin: 5px;
    color: var(--sea-deep);
    background: transparent;
    border: 1px solid var(--sea-deep);
    border-radius: 50%;
    font-size: 24px;
    transition: var(--transition);
}

.owl-theme .owl-nav button.owl-prev:hover,
.owl-theme .owl-nav button.owl-next:hover {
    color: var(--white);
    background: var(--terracotta);
    border-color: var(--terracotta);
}

.owl-theme .owl-dots {
    display: none;
}


/* FOOTER */

.site-footer {
    padding: 75px 0 0;
    color: rgba(255, 255, 255, .72);
    background: var(--sea-deep);
}

.footer-logo img {
    width: 130px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 18px;
}

.footer-text {
    color: rgba(255, 255, 255, .62);
}

.footer-title {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 11px;
}

.footer-links a,
.footer-contact a,
.footer-bottom a {
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
    color: #C4B8A3;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: #C4B8A3;
    margin-top: 6px;
}

.footer-map {
    height: 230px;
    overflow: hidden;
    border-radius: var(--radius);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-bottom {
    margin-top: 55px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
}

.footer-bottom img {
    width: 88px;
    max-height: 30px;
    object-fit: contain;
}

.footer-bottom a {
    color: var(--white);
}

.inner-hero {
    position: relative;
    height: 480px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-hero > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(26, 25, 23, .48);
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}

.inner-hero-content h1 {
    margin: 0;

    color: var(--white);

    font-family: var(--font-title);
    font-size: 58px;
    font-weight: 600;
    line-height: 1.1;
}


/* ROOMS PAGE */

.rooms-page-section {
    background: var(--sand);
}

.room-row {
    margin-bottom: 45px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.room-row:last-child {
    margin-bottom: 0;
}

.room-page-image {
    height: 100%;
    min-height: 460px;
    overflow: hidden;
}

.room-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-row:hover .room-page-image img {
    transform: scale(1.03);
}

.room-page-content {
    height: 100%;
    padding: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-page-content h3 {
    color: var(--ink);
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.room-page-content p {
    margin-bottom: 28px;
}

.room-details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    padding: 20px 0;
    margin-bottom: 28px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.room-details div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
}

.room-details i {
    color: var(--terracotta);
    font-size: 16px;
}

.room-page-content .site-btn {
    align-self: flex-start;
}


/* CONTACT */

.contact-section {
    background: var(--sand);
}

.contact-content {
    height: 100%;
    padding: 25px 20px 25px 0;
}

.contact-content .section-title {
    max-width: 480px;
    font-size: 46px;
    margin-bottom: 16px;
}

.contact-intro {
    font-size: 18px;
    margin-bottom: 38px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: 0;
}

.contact-item > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    color: var(--terracotta);
    border: 1px solid rgba(47, 74, 60, .25);
    border-radius: 50%;
}

.contact-item span {
    display: block;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    color: var(--ink);
    font-size: 15px;
    margin: 0;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--terracotta);
}


/* MAP */

.contact-map {
    height: 100%;
    min-height: 520px;
    overflow: hidden;
    border-radius: var(--radius);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* GALLERY PAGE */

.gallery-page-section {
    background: var(--sand);
}

.gallery-page-item {
    display: block;
    height: 330px;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-page-item:hover img {
    transform: scale(1.04);
}

/*Animations*/
.fadeinleft {
    opacity: 0;
    transform: translateX(200px);
    transition: all 1.3s ease-out;
}
.fadeinright {
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.8s ease-out;
}
.fadeindown {
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease-out;
}
.fadeinup {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1.2s ease-out;
}
.fade-in {
    opacity: 0;
    transition: all 1.3s ease-in;
}
.active-left,
.active,
.active-right,
.active-down,
.active-up {
    opacity: 1;
    transform: translateX(0);
    transform: translateY(0);
}
.fadein {
    opacity: 0;
}

/* RESPONSIVE */

@media (max-width: 991.98px) {

    .section-space {
        padding: 75px 0;
    }

    .section-title,
    .about-content .section-title,
    .contact-content .section-title {
        font-size: 38px;
    }


    /* Navbar */

    .main-navbar {
        padding: 10px 0;
    }

    .navbar-brand img {
        width: 120px;
        height: 62px;
    }

    .main-navbar .container {
        position: relative;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 0;
        width: 50%;
        flex-grow: 0;
        padding: 25px 20px;
        background: var(--sand);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .navbar-nav {
        margin-bottom: 18px;
    }

    .main-navbar .navbar-collapse .nav-link {
        color: var(--ink) !important;
    }

    .navbar-collapse .nav-link.active {
        color: var(--terracotta) !important;
    }


    /* Home Hero */

    .hero-slide {
        min-height: 650px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 48px;
    }

    .hero-carousel .owl-nav {
        right: 25px;
        bottom: 25px;
    }


    /* Inner Hero */

    .inner-hero {
        height: 400px;
    }

    .inner-hero-content h1 {
        font-size: 48px;
    }


    /* About */

    .about-content {
        padding-left: 0;
    }

    .about-image img {
        height: 480px;
    }


    /* Banner */

    .booking-banner {
        min-height: 450px;
    }

    .booking-banner h2 {
        font-size: 38px;
    }


    /* Testimonials */

    .testimonials-description {
        margin: 15px 0 0;
    }

    .testimonial-new {
        min-height: auto;
    }


    /* Rooms Page */

    .room-page-image {
        min-height: 400px;
    }

    .room-page-content {
        padding: 40px;
    }


    /* Contact */

    .contact-content {
        padding: 0;
    }

    .contact-map {
        min-height: 430px;
    }


    /* Gallery Page */

    .gallery-page-item {
        height: 300px;
    }
}



@media (max-width: 575.98px) {

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }


    /* General */

    .section-space {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-title,
    .about-content .section-title,
    .contact-content .section-title {
        font-size: 32px;
    }


    /* Navbar */

    .navbar-brand img {
        width: 105px;
        height: 56px;
    }


    /* Home Hero */

    .hero-section,
    .hero-carousel,
    .hero-carousel .owl-stage-outer,
    .hero-slide {
        width: 100%;
    }

    .hero-slide {
        height: 100svh;
        min-height: 620px;
    }

    .hero-content {
        padding-top: 55px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 39px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-carousel .owl-nav {
        display: none;
    }


    /* Inner Hero */

    .inner-hero {
        height: 340px;
    }

    .inner-hero-content h1 {
        font-size: 40px;
    }


    /* About */

    .about-image {
        margin-bottom: 30px;
    }

    .about-image img {
        height: 330px;
    }

    .about-content {
        padding-left: 0;
    }


    /* Home Rooms */

    .room-card {
        height: auto;
    }

    .room-image {
        height: 250px;
    }

    .room-content {
        padding: 22px 20px 26px;
    }

    .room-content h3 {
        font-size: 26px;
        line-height: 1.2;
    }

    .room-info {
        gap: 10px 14px;
        margin-bottom: 20px;
    }

    .room-actions {
        margin-top: 5px;
    }


    /* Facilities */

    .facility-card {
        padding: 20px 10px;
    }


    /* Banner */

    .booking-banner {
        min-height: 400px;
    }

    .booking-banner h2 {
        font-size: 32px;
    }


    /* Testimonials */

    .testimonial-new {
        padding: 30px 25px;
    }

    .testimonial-quote p {
        font-size: 18px;
    }


    /* Rooms Page */

    .room-page-image {
        height: 280px;
        min-height: 0;
    }

    .room-page-content {
        height: auto;
        padding: 30px 25px;
    }

    .room-page-content h3 {
        font-size: 30px;
        line-height: 1.2;
    }

    .room-details {
        gap: 15px;
    }


    /* Gallery */

    .gallery-item,
    .gallery-page-item {
        height: 280px;
    }

    .gallery-section .owl-nav {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .gallery-section .outline-btn {
        margin-top: 35px;
    }


    /* Contact */

    .contact-map {
        min-height: 380px;
    }


    /* Footer */

    .site-footer {
        padding-top: 55px;
    }

    .footer-bottom {
        margin-top: 40px;
    }


    /* Animations */

    .fadeinup,
    .fadeindown,
    .fadeinleft,
    .fadeinright,
    .fade-in {
        opacity: 1;
        transform: none;
    }
}