/* Table of Contents:
1. Import Statements
2. Keyframes and Property Animations    
3. Custom Properties
4. Global Styles
5. Typography Styles
6. Heading and Subheadings
7. Form and Inputs
8. Maps Elements
9. Header, Footer and Navbar
10. Section and Container
11. Background and Setting Color
12. Swiper Setting
13. Button and Links
14. Overlay
15. Utility Classes
16. Social and Contact Setting
17. Breadcrumb
18. Spesific Media Queries
19. Card Setting
*/

/* ---------------------------- */
/* Keyframes and Property Animations            */
/* ---------------------------- */
/* Lightweight on-scroll animations */
.scrollanimation {
    opacity: 0;
}

.scrollanimation.is-visible {
    opacity: 1;
    animation-duration: 0.65s;
    animation-fill-mode: both;
}

.scrollanimation.zoomIn.is-visible {
    animation-name: nap-zoom-in;
}

.scrollanimation.fadeInDown.is-visible {
    animation-name: nap-fade-in-down;
}

.scrollanimation.fadeInLeft.is-visible {
    animation-name: nap-fade-in-left;
}

.scrollanimation.fadeInRight.is-visible {
    animation-name: nap-fade-in-right;
}

.scrollanimation.pulse.is-visible {
    animation-name: nap-pulse;
}

@keyframes nap-zoom-in {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes nap-fade-in-down {
    from {
        opacity: 0;
        transform: translate3d(0, -24px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes nap-fade-in-left {
    from {
        opacity: 0;
        transform: translate3d(-28px, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes nap-fade-in-right {
    from {
        opacity: 0;
        transform: translate3d(28px, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes nap-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.025);
    }
}

@media (prefers-reduced-motion: reduce) {
    .scrollanimation,
    .scrollanimation.is-visible {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

/* ---------------------------- */
/*  Custom Properties            */
/* ---------------------------- */
:root {
    /* Napoleon's Rentals brand palette */
    --brand-primary: #015DB4;
    --brand-secondary: #FDCA02;
    --brand-navy: #020F1F;
    --brand-orange: #FD6101;
    --brand-yellow: var(--brand-secondary);
    --brand-green: #41AA37;
    --brand-blue: var(--brand-primary);
    --brand-surface: #F5FAFF;
    --brand-red: #F01D1E;
    --brand-white: #FFFFFF;
    --brand-text-muted: rgba(2, 15, 31, 0.78);
    --brand-border: rgba(2, 15, 31, 0.16);
    --brand-shadow: rgba(2, 15, 31, 0.18);
    --brand-shadow-soft: rgba(2, 15, 31, 0.08);
    --brand-shadow-strong: rgba(2, 15, 31, 0.32);
    --brand-overlay: rgba(2, 15, 31, 0.72);
    --brand-white-65: rgba(255, 255, 255, 0.65);
    --brand-white-92: rgba(255, 255, 255, 0.92);
    --brand-white-94: rgba(255, 255, 255, 0.94);

    /* Semantic aliases used by the existing components */
    --primary: var(--brand-white);
    --text-color: var(--brand-navy);
    --text-color-2: var(--brand-text-muted);
    --background-color: var(--brand-surface);
    --dark-bg: var(--brand-navy);
    --accent-color: var(--brand-blue);
    --accent-color-1: var(--brand-blue);
    --accent-color-2: var(--brand-secondary);
    --accent-color-3: var(--brand-surface);
    --accent-color-4: var(--brand-surface);
    --accent-color-5: var(--brand-white);
    --accent-color-6: var(--brand-red);
    --accent-color-7: var(--brand-surface);
    --accent-color-8: var(--brand-blue);
    --accent-color-9: var(--brand-green);
    --accent-color-10: var(--brand-blue);
    --accent-color-11: var(--brand-red);
    --accent-color-12: var(--brand-surface);
    /* Catalog aliases */
    --nap-navy: var(--brand-navy);
    --nap-blue: var(--brand-blue);
    --nap-red: var(--brand-red);
    --nap-yellow: var(--brand-yellow);

    --font-1: "Poppins", sans-serif;
    --font-2: "Bubblegum Sans", sans-serif;
    --font-3: "Inter", sans-serif;
}


/* ---------------------------- */
/* Global Styles                */
/* ---------------------------- */
body {
    font-family: var(--font-1);
    color: var(--text-color);
    background-color: var(--background-color);
}


/* ---------------------------- */
/* Typography                   */
/* ---------------------------- */
h1 {
    font-size: 68px;
}

h2 {
    font-size: 62px;
}


h3 {
    font-size: 48px;
    font-weight: 500;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 22px;
    font-family: var(--font-2);
}

button,
a {
    font-size: 18px;
    font-family: var(--font-3);
}

p {
    font-size: 16px;
    font-family: var(--font-3);
    color: var(--text-color-2);
}

ul {
    list-style: none;
}

.list-circle {
    list-style: disc var(--accent-color);
}

li {
    font-size: 16px;
}

img {
    object-fit: cover;
}

.text-accent {
    background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-text {
    font-size: 64px;
    font-weight: bolder;
}

.price-text2 {
    font-size: 40px;
    font-weight: bolder;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    font-family: var(--font-3);
}

.testimonial-name {
    font-size: 18px;
    font-family: var(--font-3);
    color: var(--accent-color);
}

.small-text {
    font-size: 12px;
    font-family: var(--font-3);
}

.brush1 {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.brush1::before {
    content: "";
    background: url('../image/Asset1.png') no-repeat center;
    background-size: contain;
    position: absolute;
    width: 110%;
    height: 100%;
    top: 0;
    left: -5%;
    z-index: -1;
    opacity: 0.8;
}

.brush2 {
    position: relative;
    display: inline-block;
    padding-bottom: 25px;
}

.brush2::before {
    content: "";
    background: url('../image/Asset31.png') no-repeat center;
    background-size: contain;
    position: absolute;
    width: 70%;
    height: 100%;
    top: 0;
    left: 10%;
    z-index: -1;
    opacity: 1;
}

/* ---------------------------- */
/* Headings and Subheadings      */
/* ---------------------------- */
.banner-heading {
    font-size: 5.5rem;
}

.sub-heading {
    color: var(--accent-color);
}

.text-color {
    color: var(--text-color);
}

.text-color-2 {
    color: var(--text-color-2);
}

.p-banner {
    color: var(--primary);
}

/* ---------------------------- */
/* Forms and Inputs             */
/* ---------------------------- */
.form-control {
    padding: 15px 24px;
    border: none;
}

.form-label {
    font-size: 24px;
}

.form.contact textarea {
    background-color: transparent;
    border-radius: 20px;
    color: var(--text-color-2);
    border: 1px solid var(--accent-color);
    outline: none;
    font-family: var(--font-3);
}

.form.contact input,
.form.contact select {
    background-color: transparent;
    border-radius: 20px;
    color: var(--text-color-2);
    border: 1px solid var(--accent-color);
    outline: none;
    font-family: var(--font-3);
}

.form.contact input:focus,
.form.contact textarea:focus,
.form.contact select:focus {
    box-shadow: none;
    border: solid 1px var(--accent-color);
    background-color: var(--accent-color);
    color: var(--primary);
}

.form.contact input:autofill,
.form.contact input:autofill:focus {
    color: var(--primary);
    transition: background-color 5000s ease-in-out;
    -webkit-text-fill-color: var(--primary);
    font-family: var(--font-3);
}

.form.contact input::placeholder,
.form.contact textarea::placeholder {
    color: var(--accent-color);
    font-family: var(--font-3);
}

.form.contact .submit_form {
    padding-inline: 2rem;
    padding-block: 1rem;
    text-decoration: none;
    transition: all 0.5s;
    background-color: var(--accent-color);
    color: var(--primary);
    border-radius: 20px;
    border: solid 1px var(--primary);
}

.form.contact .submit_form:hover {
    background-color: transparent;
    color: var(--accent-color);
    border: solid 1px var(--accent-color);
}

/* Contact page form section */
.contact-form-section {
    background-color: var(--brand-surface);
    overflow: hidden;
    position: relative;
}

.contact-form-grid {
    position: relative;
    z-index: 1;
}

.contact-photo-card {
    border-radius: 32px;
    height: 100%;
    min-height: 680px;
    overflow: hidden;
}

.contact-photo-card img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.contact-form-card {
    background-color: var(--brand-white);
    border: 2px solid var(--brand-blue);
    border-radius: 32px;
    height: 100%;
    padding: clamp(1.5rem, 3.5vw, 3rem);
}

.contact-form-card .brush1 {
    color: var(--brand-red);
}

.contact-form-card .form.contact input,
.contact-form-card .form.contact textarea,
.contact-form-card .form.contact select {
    background-color: var(--brand-surface);
    border: 1px solid var(--brand-blue);
    color: var(--brand-navy);
}

.contact-form-card .form.contact input::placeholder,
.contact-form-card .form.contact textarea::placeholder {
    color: var(--brand-blue);
    opacity: 1;
}

.contact-form-card .form.contact input:focus,
.contact-form-card .form.contact textarea:focus,
.contact-form-card .form.contact select:focus {
    background-color: var(--brand-surface);
    border: 2px solid var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(253, 202, 2, 0.32);
    color: var(--brand-navy);
}

.contact-form-card .form.contact input:-webkit-autofill,
.contact-form-card .form.contact input:-webkit-autofill:hover,
.contact-form-card .form.contact input:-webkit-autofill:focus,
.contact-form-card .form.contact textarea:-webkit-autofill,
.contact-form-card .form.contact textarea:-webkit-autofill:hover,
.contact-form-card .form.contact textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px var(--brand-surface) inset !important;
    box-shadow: 0 0 0 1000px var(--brand-surface) inset !important;
    -webkit-text-fill-color: var(--brand-navy) !important;
    caret-color: var(--brand-navy);
}

.contact-form-card .form.contact input:autofill,
.contact-form-card .form.contact textarea:autofill {
    background-color: var(--brand-surface) !important;
    color: var(--brand-navy) !important;
}

.contact-form-card .form.contact .submit_form {
    background-color: var(--brand-yellow);
    border: 1px solid var(--brand-yellow);
    color: var(--brand-navy);
    font-weight: 700;
}

.contact-form-card .form.contact .submit_form:hover,
.contact-form-card .form.contact .submit_form:focus-visible {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    color: var(--brand-white);
}

@media (max-width: 1199px) {
    .contact-photo-card {
        min-height: 480px;
    }
}

@media (max-width: 575px) {
    .contact-form-section {
        padding-block: 3.5rem;
    }

    .contact-photo-card {
        min-height: 380px;
    }

    .contact-form-card {
        border-radius: 24px;
    }
}

.form textarea {
    background-color: transparent;
    border-radius: 20px;
    color: var(--text-color-2);
    border: 1px solid var(--primary);
    outline: none;
    font-family: var(--font-3);
}

.form input,
.form select {
    background-color: transparent;
    border-radius: 20px;
    color: var(--text-color-2);
    border: 1px solid var(--primary);
    outline: none;
    font-family: var(--font-3);
}

.form input.subscribe {
    background-color: var(--text-color);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    box-shadow: none;
    border: solid 1px var(--accent-color-2);
    background-color: var(--primary);
    color: var(--accent-color);
}

.form input:autofill,
.form input:autofill:focus {
    color: var(--text-color-2);
    transition: background-color 5000s ease-in-out;
    -webkit-text-fill-color: var(--text-color-2);
    font-family: var(--font-3);
}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--primary);
    font-family: var(--font-3);
}

.form option {
    background-color: var(--primary);
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="blue" class="bi bi-check-xl" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z"/></svg>');
}

.form input.form-check-input {
    background-color: transparent;
    border: 1px solid gray;
}

.form input.form-check-input:checked {
    border: 1px solid blue;
    color: blue;
}

.form .submit_form {
    padding-inline: 2rem;
    padding-block: 1rem;
    text-decoration: none;
    transition: all 0.5s;
    background-color: transparent;
    color: var(--primary);
    border-radius: 20px;
    border: solid 1px var(--primary);
}


.submit_form:hover {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

/* ---------------------------- */
/* Header, Footer and Navbar       */
/* ---------------------------- */
#header {
    transition: all 0.5s ease;
}

footer.site-footer {
    --footer-wave-height: clamp(160px, 12vw, 220px);
    background-color: var(--brand-blue);
    color: var(--brand-white);
    height: auto;
    margin-top: 0;
    overflow: hidden;
    padding-top: clamp(10rem, 12vw, 13rem);
    position: relative;
}

footer.site-footer::before {
    background: url("../image/footer-wave.png") center bottom / 100% 100% no-repeat;
    content: "";
    height: var(--footer-wave-height);
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
}

.site-footer-inner {
    background: transparent;
    min-height: 0;
    position: relative;
    z-index: 1;
}

.site-footer .r-container {
    gap: clamp(2rem, 4vw, 3rem) !important;
    padding-bottom: 1rem;
}

.site-footer .link {
    overflow-wrap: anywhere;
}

.site-footer h3,
.site-footer .link,
.site-footer .list,
.site-footer .accent-color {
    color: var(--brand-white);
}

.site-footer h3 .accent-color,
.site-footer h5.accent-color {
    color: var(--brand-yellow);
}

.site-footer h3 .accent-color {
    font-weight: 700;
}

.site-footer .footer-info-col {
    display: flex;
    flex-direction: column;
}

.site-footer .footer-info-col > .row {
    order: 2;
}

.site-footer .footer-headline-lower {
    align-items: center;
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.75rem);
    grid-template-columns: minmax(0, 1fr) clamp(145px, 13vw, 190px);
    margin: 0 0 clamp(2.5rem, 4vw, 4rem);
    max-width: 720px;
    order: 1;
}

.site-footer .footer-headline-lower h3 {
    margin: 0;
}

.site-footer .footer-vertical-logo {
    display: block;
    height: auto;
    justify-self: end;
    width: 100%;
}

.site-footer .footer-quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem !important;
    margin: 0;
    max-width: 240px;
}

.site-footer .footer-quick-links .link {
    align-items: center;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    color: var(--brand-white);
    display: flex !important;
    font-weight: 700;
    justify-content: space-between;
    min-height: 44px;
    padding: 0.65rem 1rem;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease,
        box-shadow 0.25s ease, transform 0.25s ease;
}

.site-footer .footer-quick-links .link::after {
    color: var(--brand-yellow);
    content: "→";
    font-size: 1.15rem;
    line-height: 1;
    transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer .footer-quick-links .link:hover,
.site-footer .footer-quick-links .link:focus-visible {
    background-color: var(--brand-yellow);
    border-color: var(--brand-yellow);
    box-shadow: 0 8px 20px rgba(2, 15, 31, 0.2);
    color: var(--brand-navy);
    transform: translateX(4px);
}

.site-footer .footer-quick-links .link:hover::after,
.site-footer .footer-quick-links .link:focus-visible::after {
    color: var(--brand-navy);
    transform: translateX(3px);
}

.site-footer .footer-quick-links .link:focus-visible {
    outline: 3px solid var(--brand-white);
    outline-offset: 3px;
}

.site-footer .contact-item {
    background-color: var(--brand-yellow);
    border-color: var(--brand-yellow);
    color: var(--brand-navy);
}

.site-footer .contact-item i {
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
}

.site-footer .link:hover,
.site-footer .link:focus-visible {
    color: var(--brand-yellow);
}

.site-footer .footer-carousel-card {
    background-color: var(--brand-primary) !important;
    border: 4px solid var(--brand-yellow);
    position: relative;
}

.site-footer .footer-visual-col {
    position: relative;
}

.site-footer .swiperImage {
    padding-bottom: 2rem;
}

.site-footer .swiperImage img {
    aspect-ratio: 3 / 2;
    display: block;
    object-fit: cover;
    width: 100%;
}

.site-footer .swiper-pagination {
    bottom: 0 !important;
    margin: 0;
    position: absolute;
    z-index: 5;
}

.site-footer .swiper-pagination-bullet {
    background-color: var(--brand-white);
    height: 10px;
    opacity: 0.65;
    transition: transform 0.25s ease, opacity 0.25s ease;
    width: 10px;
}

.site-footer .swiper-pagination-bullet-active {
    background-color: var(--brand-yellow);
    opacity: 1;
    transform: scale(1.3);
}

.site-footer .social-item-2 {
    background-color: transparent;
    border-color: var(--brand-white);
    color: var(--brand-white);
}

.site-footer .social-item-2:hover {
    background-color: var(--brand-yellow);
    border-color: var(--brand-yellow);
    color: var(--brand-navy);
}

.site-footer .border-accent-2 {
    border-color: rgba(255, 255, 255, 0.55) !important;
}

@media (min-width: 1200px) {
    .site-footer .r-container > .row:first-of-type > .col-xl-7,
    .site-footer .r-container > .row:first-of-type > .col-xl-5 {
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
    }
}

@media (max-width: 993px) {
    footer.site-footer {
        --footer-wave-height: clamp(145px, 19vw, 185px);
        padding-top: clamp(9rem, 20vw, 11rem);
    }

    .site-footer .footer-headline-lower {
        margin: 0 auto 2.75rem;
        max-width: 700px;
        text-align: center;
    }

    .site-footer .footer-quick-links {
        margin-inline: auto;
        width: min(280px, 100%);
    }

}

@media (max-width: 575px) {
    footer.site-footer {
        --footer-wave-height: clamp(120px, 34vw, 150px);
        padding-top: clamp(8rem, 38vw, 9.5rem);
    }

    footer.site-footer::before {
        height: var(--footer-wave-height);
        left: 0;
        top: 0;
        width: 100%;
    }

    .site-footer .r-container {
        gap: 1.5rem !important;
    }

    .site-footer .footer-carousel-card {
        padding: 1rem !important;
    }

    .site-footer .footer-headline-lower {
        gap: 1.25rem;
        grid-template-columns: 1fr;
        margin: 0 auto 2rem;
    }

    .site-footer .footer-headline-lower h3 {
        grid-row: 2;
        font-size: clamp(1.8rem, 9vw, 2.35rem);
    }

    .site-footer .footer-vertical-logo {
        grid-row: 1;
        justify-self: center;
        width: min(180px, 48vw);
    }

}


.logo-container {
    max-width: 200px;
}

.navbar-nav .nav-link:focus {
    color: var(--accent-color);
    text-align: center;
}

.navbar-nav .nav-link.show {
    color: var(--accent-color);
}

.navbar-expand-xl .navbar-nav .nav-link {
    padding-inline: 1rem;
}

.nav-link {
    font-size: 18px;
    font-family: var(--font-3);
    color: var(--text-color);
    text-align: center;
}

.nav-link:hover {
    color: var(--accent-color);
    text-align: center;
}

.nav-link.active {
    color: var(--primary) !important;
    text-align: center;
    border-radius: 30px;
    background-color: var(--accent-color);
}

.header-contact-link.active {
    background-color: var(--brand-blue);
    color: var(--brand-white);
}

.header-contact-link.active .icon-box-2 {
    background-color: var(--brand-white);
    border: 1px solid var(--brand-blue);
    color: var(--brand-blue);
}

.navbar-toggler {
    border: none;
    color: var(--accent-color-2);
}

.navbar-toggler:focus {
    box-shadow: none;
    background-color: transparent;
    color: var(--accent-color-2);
}

@media (max-width: 1199.98px) {
    #header {
        background-color: rgba(245, 250, 255, 0.97);
        box-shadow: 0 8px 24px var(--brand-shadow-soft);
        backdrop-filter: blur(11px);
        -webkit-backdrop-filter: blur(11px);
    }

    #header .navbar-collapse {
        border-top: 1px solid var(--brand-border);
        margin-top: 0.75rem;
        padding: 0.9rem 1rem 1.25rem;
    }

    #header .navbar-nav {
        align-items: center;
    }

    #header .navbar-collapse > div {
        margin-inline: auto;
        padding-left: 0 !important;
    }

    #header .header-contact-link {
        min-width: 190px;
    }
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    background-color: transparent;
    color: var(--accent-color);
    border: none;
    position: relative;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: white;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    border: none;
}

.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.dropdown-menu {
    border-radius: 0;
    border: none;
    padding: 0;
    width: 200px;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    padding-block: 0.75rem;
    color: var(--text-color);
    font-family: var(--font-1);
    font-size: 0.95rem;
    font-weight: 400;
    padding-inline: 0.75rem;
    text-align: center;
    background-color: var(--background-color);
}

.dropdown-item.active {
    color: var(--primary);
    background-color: var(--accent-color);
}

.dropdown-item:hover {
    background-color: var(--accent-color);
    color: var(--primary);
}

.dropdown-item:focus {
    color: var(--accent-color);
}

/* ---------------------------- */
/* Section and Container       */
/* ---------------------------- */
.section {
    padding: 6em 2em 6em 2em;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.r-container {
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
}


/* ---------------------------- */
/* Background and Setting Color      */
/* ---------------------------- */
.bg-accent-primary {
    background-color: var(--primary);
}

.bg-accent-color {
    background-color: var(--accent-color);
    color: var(--brand-white);
}

.bg-accent-color-1 {
    background-color: var(--accent-color-1);
    color: var(--brand-white);
}

.bg-accent-color-2 {
    background-color: var(--accent-color-2);
    color: var(--brand-navy);
}

.bg-accent-color-2 .accent-color-primary {
    color: var(--brand-navy);
}

.bg-accent-color-3 {
    background-color: var(--accent-color-3);
}

.bg-accent-color-4 {
    background-color: var(--accent-color-4);
}

.bg-accent-color-5 {
    background-color: var(--accent-color-5);
}

.bg-accent-color-6 {
    background-color: var(--accent-color-6);
    color: var(--brand-white);
}

.bg-accent-color-7 {
    background-color: var(--accent-color-7);
}

.bg-accent-color-8 {
    background-color: var(--accent-color-8);
    color: var(--brand-white);
}

.bg-accent-color-9 {
    background-color: var(--accent-color-9);
}

.bg-accent-color-10 {
    background-color: var(--accent-color-10);
    color: var(--brand-white);
}

.bg-accent-color-11 {
    background-color: var(--accent-color-11);
    color: var(--brand-white);
}

.bg-accent-color-6 :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
.bg-accent-color-11 :is(h1, h2, h3, h4, h5, h6, p, a, span, i) {
    color: inherit;
}

.bg-accent-color-12 {
    background-color: var(--accent-color-12);
}

.bg-accent {
    background-color: var(--background-color);

}

.bg-text-color {
    background-color: var(--text-color);
}

.bg-text-color-2 {
    background-color: var(--text-color-2);
}

.bg-accent-color-hover:hover {
    background-color: var(--accent-color);
    color: white;
}

.bg-dark-transparent {
    background-color: #232323b7;
}

.accent-color-primary {
    color: var(--primary);
}

.accent-color {
    color: var(--accent-color);
}

.accent-color-2 {
    color: var(--accent-color-2);
}

.accent-color-3 {
    color: var(--accent-color-3);
}

.accent-color-4 {
    color: var(--accent-color-4);
}

.accent-color-5 {
    color: var(--accent-color-5);
}

.accent-color-6 {
    color: var(--accent-color-6);
}

.accent-color-7 {
    color: var(--accent-color-7);
}

.accent-color-8 {
    color: var(--accent-color-8);
}

.accent-color-9 {
    color: var(--accent-color-9);
}

.accent-color-10 {
    color: var(--accent-color-10);
}

.accent-color-11 {
    color: var(--accent-color-11);
}

.accent-color-12 {
    color: var(--accent-color-12);
}

.bg-background-color {
    color: var(--background-color);
}

.border-accent {
    border-color: var(--text-color-2) !important;
}

.border-accent-2 {
    border-color: var(--accent-color) !important;
}

.border-accent-3 {
    border: 1px solid rgba(207, 171, 130, 0.2);
}

.border-text-color {
    border-color: var(--text-color) !important;
}

.border-bottom-hover:hover {
    border-bottom: 2px solid var(--accent-color);
}

.border-accent-color {
    border: 1px solid var(--accent-color);
}

.custom-border {
    border-width: 15px 0 0 15px;
    border-style: solid;
    border-color: var(--background-color);
    border-radius: 50% 0 50% 0;
}

.custom-border-2 {
    aspect-ratio: 1;
    border-width: 10px;
    border-style: solid;
    border-color: var(--primary);
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    flex: 0 0 76px;
    height: 76px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: -2.5rem;
    min-width: 76px;
    padding: 0;
    position: relative;
    width: 76px;
    z-index: 2;
}

.why-choose-badge {
    width: 92px;
    height: 92px;
    aspect-ratio: 1;
    flex: 0 0 92px;
    box-sizing: border-box;
    padding: 0;
}

.why-choose-badge h4 {
    line-height: 1;
}

.why-choose-grid > .col {
    display: flex;
}

.why-choose-item,
.why-choose-card {
    align-self: stretch;
    box-sizing: border-box;
    max-width: none !important;
    width: 100% !important;
}

.why-choose-item {
    height: 100%;
}

.why-choose-card {
    justify-content: center;
    min-height: 285px;
}

@media (max-width: 1199.98px) {
    .why-choose-grid {
        gap: 2rem;
        margin-inline: auto;
        max-width: 760px;
    }

    .why-choose-grid > .col {
        margin-bottom: 0 !important;
    }

    .why-choose-item {
        margin-inline: auto;
        max-width: 700px;
    }

    .why-choose-card {
        min-height: 220px;
        padding: 4rem clamp(2rem, 8vw, 4rem) 2.5rem !important;
    }
}

@media (max-width: 575px) {
    .why-choose-grid {
        gap: 1.5rem;
    }

    .why-choose-card {
        min-height: 210px;
        padding: 3.75rem 1.35rem 2rem !important;
    }

    .why-choose-badge {
        flex-basis: 78px;
        height: 78px;
        width: 78px;
    }
}

.clipped-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 73%, 82% 73%, 82% 100%, 0 100%, 0% 80%, 0% 20%)
}

.outline {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--accent-color);
}

.text-gray {
    color: grey !important;
}

/* ---------------------------- */
/* Swiper Setting              */
/* ---------------------------- */
.marquee-container {
    overflow: hidden;
    /* white-space: nowrap; */
    width: 100%;
    display: flex;
    flex-direction: row;
    --gap: 1rem;
    --speed: 20;
    /* gap: var(--gap); */
}

.marquee {
    animation: marquee calc(500s / var(--speed)) infinite linear;
}

.reverse .marquee {
    animation-direction: reverse;
}

.marquee-content {
    display: inline-flex;
}

.marquee-item:hover img {
    filter: var(--accent-color);
}

.marquee-item {
    text-wrap: nowrap;
    padding-inline: var(--gap);
    margin-right: 1rem;
    width: max-content;
}

@keyframes marquee {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(calc(-100% - 1rem));
    }
}

.swiperTestimonials {
    overflow: visible;
}

.swiperTestimonials2 {
    position: relative;
    padding-bottom: 40px;
}

.swiperStep .swiper-slide.swiper-slide-thumb-active h4 {
    color: var(--accent-color);
}

.swiperStep {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiperStep2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.swiperStep2 .swiper-slide {
    background-size: cover;
    background-position: center;
}

.swiperStep {
    width: 100%;
    height: 100%;
}

.swiperStep .swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.swiperStep {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.swiperStep .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.swiperStep .swiper-slide-thumb-active {
    opacity: 1;
}

.padding-swiper {
    position: relative;
    padding-inline: 5rem;
}

.inset-container {
    padding-inline: 5rem;
}

.mySwiper {
    position: relative;
    padding-bottom: 156px;
}

.about-image-wrap {
    height: 100%;
    min-height: 420px; /* respaldo para cuando no hay stretch (mobile) */
    border-radius: 20px;
    overflow: hidden;
}

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

@media (max-width: 1200px) {
    .about-image-wrap {
        height: auto;
        min-height: 300px;
    }
}

.swiperImage {
    position: relative;
    width: 100%;
}

.swiper-pagination {
    margin-top: 1rem;
    position: relative;
}


.swiper-pagination-bullet {
    background: var(--accent-color-3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color-11);
}

.swiper-slide {
    padding: 0.5rem;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 27px;
}

.swiperStep2 .swiper-button-next::after,
.swiperStep2 .swiper-button-prev::after {
    font-size: 45px;
}

.swiperStep2 .swiper-button-next,
.swiperStep2 .swiper-button-prev {
    right: -1rem;
    top: 15rem;
    width: 95px;
    height: 95px;
    border: 6px solid var(--primary);
    background: linear-gradient(180deg, var(--brand-navy) -77.42%, var(--brand-blue) 100%);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.swiper-button-next.accent,
.swiper-button-prev.accent {
    bottom: 10px;
    /* Posisikan tombol di bagian bawah */
    width: 50px;
    height: 50px;
    border: 1px solid var(--accent-color);
    background-color: var(--background-color);
    /* Warna background semi-transparan */
    color: var(--accent-color);
    border-radius: 50%;
    /* Membuat tombol bulat */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.swiper-button-next.accent {
    right: 0;
    transform: translateY(20px);
}

.swiper-button-prev.accent {
    left: 0;
    transform: translateY(20px);
}

.swiper-button-next.accent2,
.swiper-button-prev.accent2 {
    top: 15px;
    /* Posisikan tombol di bagian bawah */
    width: 50px;
    height: 50px;
    border: 1px solid var(--accent-color);
    background-color: var(--background-color);
    /* Warna background semi-transparan */
    color: var(--accent-color);
    border-radius: 50%;
    /* Membuat tombol bulat */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.swiper-button-next.accent2 {
    right: 0;
    transform: translateY(20px);
}

.swiper-button-prev.accent2 {
    left: 0;
    transform: translateY(20px);
}

/* Center the buttons horizontally */
.swiperStep2 .swiper-button-next {
    right: 0;
    transform: translateY(20px);
}

.swiperStep2 .swiper-button-prev {
    left: 0;
    transform: translateY(20px);
}

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
    top: 25rem;
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Center the buttons horizontally */
.mySwiper .swiper-button-next {
    right: 45%;
    transform: translateY(20px);
}

.mySwiper .swiper-button-prev {
    left: 45%;
    transform: translateY(20px);
}

/* Center the buttons horizontally */
.swiper-button-next.service {
    right: -9%;
    /* Gerakkan tombol next ke kanan dari tengah */
    transform: translateY(20px);
}

.swiper-button-prev.service {
    left: -7%;
    /* Gerakkan tombol prev ke kiri dari tengah */
    transform: translateY(20px);
}

/* Style for both next and prev buttons */
.swiperImage .swiper-button-next,
.swiperImage .swiper-button-prev {
    bottom: 10px;
    /* Posisikan tombol di bagian bawah */
    width: 50px;
    height: 50px;
    border: 1px solid var(--accent-color);
    background-color: var(--background-color);
    /* Warna background semi-transparan */
    color: var(--accent-color);
    border-radius: 50%;
    /* Membuat tombol bulat */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Center the buttons horizontally */
.swiperImage .swiper-button-next {
    left: 50%;
    /* Gerakkan tombol next ke kanan dari tengah */
    transform: translateY(20px);
}

.swiperImage .swiper-button-prev {
    left: 47%;
    /* Gerakkan tombol prev ke kiri dari tengah */
    transform: translateY(20px);
}

/* Ukuran icon panah */
.swiperImage .swiper-button-next::after,
.swiperImage .swiper-button-prev::after {
    font-size: 24px;
}

/* Hover effect */
.swiperImage .swiper-button-next:hover,
.swiperImage .swiper-button-prev:hover {
    background-color: var(--accent-color);
    color: var(--primary);
    /* Background lebih gelap saat hover */
}

.custom-swiper {
    width: 100%;
    height: 600px;
    padding-right: 3rem;
}

.custom-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-scrollbar {
    width: 6px;
    position: absolute;
    right: 10px;
    top: 0px;
    margin-top: 150px;
    bottom: 0;
    background: #e0e0e0;
    border-radius: 10px;
    z-index: 9999;
}

.swiper-scrollbar.swiper-scrollbar-vertical {
    height: 300px;
}

.custom-scrollbar .swiper-scrollbar-drag {
    background: #ff9800;
    border-radius: 10px;
}

/* ---------------------------- */
/* Buttons & Links              */
/* ---------------------------- */
button {
    padding-inline: 1rem;
    padding-block: 0.5rem;
    text-decoration: none;
    transition: all 0.5s;
}

button:hover {
    color: var(--text-color);
}

a {
    text-decoration: none;
}

.w-max-content {
    width: max-content;
}

.read-more {
    color: var(--accent-color);
    font-family: var(--font-3);
    font-size: 16px;
    transition: all 0.5s;
}

.read-more.blog {
    color: var(--text-color);
    transition: all 0.5s;
}

.read-more:hover {
    color: var(--accent-color-2);
}

.tags {
    padding: 10px 15px;
    font-family: var(--font-3);
    color: var(--accent-color);
    background-color: transparent;
    border: 1px solid var(--accent-color);
    border-radius: 50px;
}

.tags.active {
    color: var(--primary);
    background-color: var(--accent-color);
}

.btn {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-3);
    font-weight: 600;

}

.btn-close {
    color: var(--text-color);
}

.btn-close:hover {
    color: var(--text-color);
}

.btn-accent {
    background: var(--accent-color);
    color: var(--primary);
    transition: all 0.5s;
    border: 1px solid transparent;
}

.btn-accent:hover {
    background-color: var(--primary);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-accent.accent:hover {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-accent-outline {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-accent-outline:hover {
    background-color: var(--accent-color);
    color: var(--primary);
}

.btn-accent-outline:hover .icon-box-2 {
    background-color: var(--primary);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-accent-outline-white {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-accent-outline-white:hover {
    background-color: var(--primary);
    color: var(--accent-color);
}

.btn-accent-outline-white:hover .icon-box-3 {
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: var(--primary);
}

.btn-accent-underline {
    background-color: transparent;
    border-bottom: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-accent-underline:hover {
    border-bottom: 1px solid var(--text-color);
    color: var(--text-color);
}

.btn-toggler-accent {
    background-color: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    aspect-ratio: 1/1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}


.btn-toggler-accent:hover {
    background-color: var(--text-color);
    color: var(--primary);
}

.btn-white-outline {
    background-color: transparent;
    border-color: var(--text-color);
    color: var(--text-color);
    border-width: 1px;
}

.btn-white-outline-hover:hover {
    background-color: transparent;
    border-color: var(--text-color);
    color: var(--text-color);
}

.btn-white-outline:hover {
    background-color: white;
    color: var(--primary);
}

.partner {
    display: flex;
    justify-content: center;
    padding: 16px 24px;
    background-color: var(--background-color);
    border-radius: 30px;
}

.partner svg {
    fill: var(--accent-color);
}

.partner:hover svg {
    fill: var(--accent-color);
}

.image-footer .social-item {
    color: var(--primary);
    background-color: var(--accent-color);
}

.image-footer:hover .image-footer-blur {
    background: rgba(24, 21, 24, 0.3);
    backdrop-filter: blur(2px);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    transition: all 0.5s ease;
}

.image-footer {
    position: relative;
    width: max-content;
}

.image-footer .image-zoom {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 0.5s ease;
}

.image-footer:hover .image-zoom {
    transform: scaleY(1);
}

.card-track:hover .track-blur {
    opacity: 1;
    transform: translate(1rem, -1rem);
}

.card-track .track-blur {
    opacity: 0;

}

.track-blur {
    transition: all 0.5s ease;
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.card-track {
    transition: all 0.5s ease;
}

.card .link {
    color: var(--accent-color);
    transition: color 0.5s;
}

.card .link:hover {
    color: var(--primary);
}

.link.accent-color {
    color: var(--accent-color);
    transition: color 0.5s;
}

.link.accent-color:hover {
    color: var(--dark-bg);
}

.link {
    color: var(--text-color-2);
}

.link:hover {
    color: var(--accent-color);
}

a .icon-box {
    transition: all 0.5s ease;
    transform: rotate(0deg);
}

a .icon-box-2 {
    transition: all 0.5s ease;
    transform: rotate(0deg);
}

a:hover .icon-box {
    transform: rotate(45deg);
}

a:hover .icon-box-2 {
    transform: rotate(45deg);
}

.link-white {
    color: white;
}

.link-white:hover {
    color: var(--accent-color);
}

/* ---------------------------- */
/* Overlay                      */
/* ---------------------------- */
.blog-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 69, 81, 0.6) 100%);
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.3) 23.17%, rgba(1, 199, 243, 0.3) 127.38%);
}

.overlay {
    color: var(--accent-color-2);
    opacity: 0.3;
}

.bg-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

}

.bg-overlay-2 {
    background: linear-gradient(0deg, rgba(1, 137, 142, 0.28), rgba(1, 137, 142, 0.28));
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.testimonial-overlay {
    background: linear-gradient(0deg, rgba(255, 239, 225, 0.96), rgba(255, 239, 225, 0.96));
    position: absolute;
    width: 75%;
    height: 100%;
    top: 0;
    right: 0;
}

.bg-accent-opacity {
    background: linear-gradient(0deg, rgba(43, 43, 43, 0.86), rgba(43, 43, 43, 0.86));
}

.bg-blur {
    position: absolute;
    background: rgba(24, 21, 24, 0.3);
    border: 1px solid rgba(207, 171, 130, 0.2);
    backdrop-filter: blur(17.5px);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.linear-gradient {
    padding: 14px 42px;
    background-color: var(--accent-color-2);
    border-radius: 50px;
    width: max-content;
}

.cta-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20.5%, rgba(1, 199, 243, 0.2) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.contact-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 27.06%, rgba(1, 199, 243, 0.61) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

}

.video-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(4, 56, 63, 0.144) 0%, rgba(4, 56, 63, 0.72) 100%);
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

/* ---------------------------- */
/* Utility Classes              */
/* ---------------------------- */
.hover-transform:hover {
    transform: translateY(-10px);
}

.font-1 {
    font-family: var(--font-1);
}

.font-2 {
    font-family: var(--font-2);
}

.font-3 {
    font-family: var(--font-3);
}

.ls-2 {
    letter-spacing: 2px;
}

.fs-7 {
    font-size: 0.8rem !important;
}

.fs-very-large {
    font-size: 4.125rem;
}

.fw-black {
    font-weight: 900 !important;
}

.team-detail {
    background-color: var(--background-color);
    color: var(--accent-color);
    transition: all 0.5s;
}

.team-detail:hover {
    background-color: var(--accent-color);
    color: var(--primary);
}

.divider {
    display: flex;
    align-items: center;
}

.divider::after {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid var(--brand-blue);
    max-width: 30px;
    min-width: 30px;
}


.divider-element {
    letter-spacing: 2px;
    flex-shrink: 0;
    flex-grow: 1;
    margin: 0;
    margin-left: 1rem;
    font-weight: 400;
}

.image-infinite-bg {
    height: 90vh;
}

.bg-attach-fixed {
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    height: 100%;
}

.bg-attach-cover {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.social-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.social-container.column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.character-img {
    position: relative;
    z-index: 2;
}

.w-70 {
    width: 70%;
}

.stock-img {
    position: relative;
    z-index: 20;
}

.customer-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 12px;
    width: 36px;
    height: 36px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color-2);
    margin-left: -6px;
    overflow: hidden;
}

.customer-item.testimonial {
    width: 57px;
    height: 57px;
}

.customer-item.single {
    margin-left: 0;
}

.testimonial-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 19px;
    width: 5rem;
    height: 5rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    margin-left: -6px;
    overflow: hidden;
}

.bg-box {
    bottom: 0;
    right: 0;
    height: 60%;
    width: 50%;
    border: solid 3px var(--accent-color-2);
}

.icon-box {
    display: flex;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    transition: all 0.5s;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--accent-color);
    padding: 15px;
    width: max-content;
    height: max-content;
}

.icon-box.class {
    display: flex;
    justify-content: center;
    font-size: 46px;
    font-weight: 700;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    transition: all 0.8s;
    border-radius: 50%;
    color: var(--primary);
    padding: 15px;
    width: max-content;
    height: max-content;
    border: 1px solid var(--accent-color);
    background-color: var(--accent-color);
}

.icon-box.class:hover {
    background: transparent;
    color: var(--accent-color);
}

.solid-action-arrow {
    background-color: currentColor;
    clip-path: polygon(0 37%, 58% 37%, 58% 0, 100% 50%, 58% 100%, 58% 63%, 0 63%);
    display: block;
    height: 16px;
    transform: rotate(-45deg);
    width: 18px;
}

.icon-box-2 {
    display: flex;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    transition: all 0.5s;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--primary);
    padding: 15px;
    width: max-content;
    height: max-content;
}

.icon-box-3 {
    display: flex;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    transition: all 0.5s;
    border-radius: 50%;
    background-color: var(--primary);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 15px;
    width: max-content;
    height: max-content;
}

.author-box {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 15rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -6px;
    overflow: hidden;
}

.post-button {
    background-color: transparent;
    color: var(--accent-color) !important;
    border: none !important;
}

.post-button:hover {
    background-color: transparent !important;
    color: var(--accent-color) !important;
    transform: scale(1.15);
}

.position-xl-absolute {
    position: absolute;
}

.w-60 {
    width: 60% !important;
}

.shadow-double {
    box-shadow: 40px -40px 0px -4px var(--accent-color), -54px 44px 0px -3px var(--text-color-2);
}

.shadow-single-left {
    box-shadow: -54px 44px 0px -3px var(--accent-color);
}

.shadow-single-right {
    box-shadow: 40px -40px 0px -4px var(--accent-color);
}

.shadow-accent-2 {
    -webkit-box-shadow: -90px -23px 0px 0px var(--accent-color);
    -moz-box-shadow: -90px -23px 0px 0px var(--accent-color);
    box-shadow: -90px -23px 0px 0px var(--accent-color);
}

.text-404 {
    font-size: 200px;
    font-weight: bold;
    font-family: var(--font-2);
}

.number-text {
    font-size: 96px;
    font-weight: bold;
}

.text-banner {
    font-size: 200px;
}

.rounded-end {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.swiperImage.floating-left {
    margin-left: 16rem;
}

.floating-heading {
    margin-left: -15rem;
}

.floating-image {
    position: absolute;
}

.floating-price {
    top: -2.5rem;
    right: -10rem;
}

.floating-banner {
    margin-top: -15rem;
}

.floating-form {
    position: absolute;
    margin-top: 20rem;
    left: 0;
    bottom: 0;
}

.floating-services {
    position: relative;
    z-index: 9999;
    margin-top: 3rem;
    margin-bottom: -3rem;
}

.floating-testi {
    margin-bottom: -8rem;
    margin-top: 19rem;
    margin-left: 15rem;
}

.floating-services-2 {
    margin-left: -5rem;
}

.floating-services-2 .padding {
    padding-left: 7rem;
}

.floating-services-3 {
    position: relative;
    margin-top: 3rem;
    margin-bottom: -3rem;
}

.floating-services-3 .padding {
    padding-left: 3rem;
    padding-right: 7rem;
}

.floating-bottom {
    position: absolute;
    bottom: 7rem;
    right: 2rem;
}

.d-inline-block {
    display: inline-block;
}

.list .icon-box {
    width: 4.3rem;
    height: 4.3rem;
}

.list-group-item {
    background-color: transparent;
    border-radius: 10px;
}

.list-group .link {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    transition: all 0.5s;
    border-radius: 50px;
    padding: 10px;
}

.list-group .link.active {
    color: var(--primary);
    background-color: var(--accent-color);

}

.list-group .link:hover {
    color: var(--primary) !important;
    background-color: var(--accent-color);
    text-decoration: none;
}

.list-group .link .icon-box {
    background-color: var(--accent-color);
    color: var(--primary);
}

.list-group .link.active .icon-box {
    background-color: var(--primary);
    color: var(--accent-color);
}

.list-group .link:hover .icon-box {
    background-color: var(--primary);
    color: var(--accent-color);
}

.list-group .list-group-item.active {
    background-color: var(--accent-color-2);
    color: var(--accent-color);
}

.list-group .list-group-item.list-group-item-action:hover {
    background-color: var(--accent-color-2);
    color: white;
}

.list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    padding-inline: 0.5rem;
}

.list .link {
    font-weight: 400;
    text-wrap: nowrap;
}

.list li {
    padding: 0;
    font-size: 16px;
    font-family: var(--font-2);
}

.list li .link {
    transition: all 0.5s;
    color: var(--text-color-2);
}

.list li i {
    transition: all 0.5s;
    color: var(--accent-color);
}

.list.text-black i {
    color: #131313;
}

.list li .link:hover,
.list li .link:hover i {
    color: var(--accent-color);
}

.countdown {
    display: flex;
    gap: 20px;
}

.countdown-box {
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    padding: 30px;
    width: 200px;
    border-radius: 8px;
}

.countdown-box h2 {
    margin: 0;
    font-size: 2em;
}

.countdown-box p {
    margin: 0;
    font-size: 1.2em;
}

/* ---------------------------- */
/* Social and Contact Setting    */
/* ---------------------------- */
.customer-container {
    display: flex;
    flex-direction: row-reverse;
}

.customer-item:nth-child(1) {
    z-index: 6;
}

.customer-item:nth-child(2) {
    z-index: 5;
}

.customer-item:nth-child(3) {
    z-index: 4;
}

.customer-item:nth-child(4) {
    z-index: 3;
}

.subscribe-container {
    box-sizing: border-box;
    margin-bottom: -8em;
}

.contact-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 16px;
    width: 36px;
    height: 36px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
}


.social-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 16px;
    width: 36px;
    height: 36px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color-2);
    background-color: transparent;
    border: 1px solid var(--accent-color-2);
}

.social-item-2 {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 16px;
    width: 36px;
    height: 36px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    background-color: transparent;
    border: 1px solid var(--accent-color);
}

.social-item-3 {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 16px;
    width: 36px;
    height: 36px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color-6);
    background-color: transparent;
    border: 1px solid var(--accent-color-6);
}

.social-item-4 {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 16px;
    width: 36px;
    height: 36px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color-3);
    background-color: transparent;
    border: 1px solid var(--accent-color-3);
}

.social-item-5 {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 16px;
    width: 36px;
    height: 36px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color-8);
    background-color: transparent;
    border: 1px solid var(--accent-color-8);
}

.social-item-6 {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 16px;
    width: 36px;
    height: 36px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color-9);
    background-color: transparent;
    border: 1px solid var(--accent-color-9);
}

.social-container.accent .social-item {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.social-container.accent .social-item:hover {
    background-color: var(--accent-color);
    color: white;

}

.social-container.share .social-item {
    background-color: var(--accent-color);
    color: white;
}

.social-container.share .social-item:hover {
    background-color: var(--accent-color);
    color: white;
    border: 1px solid var(--accent-color);
}


.social-container.team .social-item {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 16px;
}


.social-item:hover {
    background-color: var(--accent-color-2);
    color: var(--accent-color-12);
}

.social-item-2:hover {
    background-color: var(--accent-color);
    color: var(--accent-color-12);
}

.social-item-3:hover {
    background-color: var(--accent-color-6);
    color: var(--accent-color-12);
}

.social-item-4:hover {
    background-color: var(--accent-color-3);
    color: var(--accent-color-12);
}

.social-item-5:hover {
    background-color: var(--accent-color-8);
    color: var(--accent-color-12);
}

.social-item-6:hover {
    background-color: var(--accent-color-9);
    color: var(--accent-color-12);
}

.social-container .share-button {
    background-color: var(--accent-color-1);
    aspect-ratio: 1/1;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.share-button:hover {
    background-color: var(--accent-color-2);
}

/* ---------------------------- */
/* Breadcrumb    */
/* ---------------------------- */
.breadcrumb {
    align-items: center;
    font-family: var(--font-2);
}

.breadcrumb .breadcrumb-item>a {
    color: var(--text-color);
}

.breadcrumb .breadcrumb-item.active {
    color: var(--accent-color);
    font-family: var(--font-2);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--accent-color);
}

/* ---------------------------- */
/* Specific Media Queries       */
/* ---------------------------- */
.video-e119 {
    width: 60%;
    margin-bottom: -3rem;
    margin-left: -3rem;
}

.ifr-video {
    aspect-ratio: 16/9;
    width: 100%;
}

.video-container {
    aspect-ratio: 3/2;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 5px solid white;
    border-radius: 10px;
}

.video-iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-btn {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 4rem;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 2rem;
    color: white;
    border: none;
    opacity: 0.7;
}

.video-btn:hover {
    opacity: 1;
    color: white;
}

/* ---------------------------- */
/* card Setting       */
/* ---------------------------- */
.card {
    border: none;
    border-radius: 10px;
    transition: all 0.5s;
    background-color: var(--primary);
}

.card-accent {
    color: var(--accent-color);
    position: relative;
    background-size: cover;
    background-position: center;
    border-width: 1px;
    border-style: solid;
    border-radius: 10px;
    border-image: linear-gradient(to left, var(--brand-red), var(--brand-blue)) 1;
}

.card-blog h4 {
    color: var(--text-color);
}

.card-blog:hover h4 {
    color: var(--accent-color);
}

.card-blog h6 {
    color: var(--text-color);
}

.card-blog:hover h6 {
    color: var(--accent-color);
}

.card-service {
    color: var(--text-color);
    border-radius: 0px;
    border: 1px solid transparent;
    padding: 30px 30px;
}

.card-service:hover {
    color: var(--text-color);
    border: 1px solid var(--accent-color);
    background-color: var(--accent-color-4);
}

.card-service .btn-accent-underline {
    color: var(--text-color);
    border-bottom: 1px solid var(--text-color);
}

.card-service:hover .btn-accent-underline {
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
}

.background-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.card-service:hover .background-hover {
    opacity: 1;
    background: linear-gradient(118.48deg, rgba(47, 74, 157, 0.4) 0%, rgba(165, 2, 168, 0.4) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
    border-radius: 10px;

}

.card-service.img-hover:hover {
    background-image: var(--url-image, none);
}

.image-hover {
    opacity: 0;
    position: absolute;
}

.card-service:hover .image-hover {
    opacity: 100%;
}

.card:hover {
    transform: translateY(-5px);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.card-testimonial {
    border: none;
    border-radius: 20px;
    transition: all 0.5s;
    background-color: var(--accent-color-3);

}

.card .icon-box.bg-accent-color {
    background-color: var(--accent-color);
    color: var(--accent-color);
}

.card .icon-box.accent-color-2 {
    color: var(--accent-color-2);
    font-size: 4rem;
}

.card:hover .icon-box.accent-color-2 {
    color: var(--accent-color-2);
}

.card-testimonial:hover {
    transform: translateY(-20px);
    box-shadow: 0px 0px 0px 2px var(--accent-color);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.card.card-pricing-hover {
    color: var(--primary);
    background-color: var(--accent-color-6);
    border-radius: 40px;

}

.card.card-pricing-hover:hover h3 {
    color: var(--accent-color);
}

.card.card-pricing-hover p {
    color: var(--primary);
}

.card.card-pricing-hover:hover {
    background-color: var(--accent-color);
    transform: scale(1.04);
}

.card.card-pricing-hover:hover::before {
    content: "";
    position: absolute;
    top: -14px;
    left: -14px;
    right: -14px;
    bottom: -14px;
    border-radius: 45px;
    border: 2px solid var(--text-color); /* Border luar */
    z-index: -1;
  }

  .card.card-pricing-hover:hover::after {
    content: "";
    position: absolute;
    top: -7px;
    left: -7px;
    right: -7px;
    bottom: -7px;
    border-radius: 45px;
    border: 2px solid var(--accent-color); /* Border luar */
    z-index: -1;
  }

.card-pricing-hover-middle {
    transform: scale(1);
    flex: 1.00;
    color: white;
}

.card.card-pricing-hover:hover .btn-accent-outline {
    background-color: var(--text-color);
    color: var(--primary);
}

.card.card-pricing-hover .btn-accent-outline i {
    color: var(--text-color);
}

.card.card-pricing-hover:hover .btn-accent-outline i {
    color: var(--primary);
}

.card:hover .icon-box.bg-accent-color {
    background-color: var(--accent-color);
    color: var(--accent-color-2);

}

.card.card-outline-hover {
    box-shadow: 0 7px 15px 0 rgba(0, 0, 0, .13), 0 1px 4px 0 rgba(0, 0, 0, .11);
    border: 1px solid var(--accent-color);
}

.card.blog {
    background-color: var(--background-color);
}

.card.blog:hover {
    border: solid 1px var(--accent-color-2);
    border-radius: 10px;
}


.card.card-outline-hover:hover .btn-accent {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.card-overlay {
    background-color: transparent;
    height: 100%;
}

.card-overlay .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.5s;
    padding: 0;
}

.card-overlay:hover .card-body {
    transform: scaleX(1);
    opacity: 1;
}

.card-overlay .card-img {
    position: relative;
    bottom: 0;
    left: 0;
}

.card-overlay .artist-text {
    transition: all 0.5s;
    transform: rotate(270deg);
    color: var(--text-color);
    position: absolute;
    bottom: 0;
    left: 15px;
    z-index: 2;
    transform-origin: left;
    line-height: 0;
}

.card-overlay img {
    padding-left: 40px;
    transition: all 0.5s;
}

.card-overlay.service img {
    padding-left: 0;
}

.card-overlay:hover img {
    padding-left: 0;
}

.card-overlay:hover .artist-text {
    padding-block: 2rem;
    transform: rotate(360deg);
    padding-inline: 0.5rem;
}

.card:hover .icon-box.bg-accent-color {
    background-color: white;
    color: var(--accent-color);
}

.card:hover p {
    transition: all 0.5s;
}

.card.with-border-bottom {
    border-bottom: 5px solid var(--accent-color) !important;
}

.card-about {
    background-color: var(--background-color);
    padding: 3rem;
    transition: all 0.8s;
}


.card-about:hover p {
    color: var(--primary);
}

.card-about:hover .icon-box-2 {
    background-color: var(--primary);
    color: var(--accent-color-2);
}

.card-about:hover {
    background-color: var(--accent-color-2);
    margin-top: -5rem;
    color: var(--primary);
    height: calc(100% + 5rem);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.activities-container {
    --activity-hover-outline: var(--brand-navy);
    border-radius: 20px;
    padding: 30px 30px 0px 30px;
    outline: 2px solid transparent;
    outline-offset: 0;
    transform-origin: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, outline-color 0.3s ease, outline-offset 0.3s ease;
    color: var(--primary);
}

.swiperCard .swiper-wrapper {
    align-items: stretch;
}

.swiperCard .swiper-slide {
    display: flex;
    height: auto;
}

.swiperCard .swiper-slide > div,
.swiperCard .activities-container,
.swiperCard .activities-container > .d-flex {
    width: 100%;
    height: 100%;
}

.activities-container-image {
    /* Rompe el padding lateral del contenedor para llegar a los bordes */
    margin: 30px -30px 0px -30px;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    /* Ajusta esta altura según el tamaño real de tus cards */
    height: 350px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.swiperCard .activities-container-image {
    margin: auto -30px 0;
}

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

@media (hover: hover) and (pointer: fine) {
    .activities-container:hover {
        z-index: 3;
        outline-color: var(--activity-hover-outline);
        outline-offset: 4px;
        box-shadow: 0 16px 28px var(--brand-shadow);
        transform: translateY(-4px) rotate(1.5deg);
    }

    .activities-container:hover .activities-container-image {
        transform: rotate(1.5deg);
    }
}

.activities-container p,
.activities-container .read-more {
    color: var(--primary);
}

.activities-container.accent {
    --activity-hover-outline: var(--brand-yellow);
    background-color: var(--brand-primary);
    color: var(--brand-white);
}

.activities-container.accent:hover,
.activities-container.accent:hover p,
.activities-container.accent:hover .read-more {
    color: var(--brand-white);
}

.activities-container.accent2 {
    --activity-hover-outline: var(--brand-blue);
    background-color: var(--brand-secondary);
    color: var(--brand-navy);
}

.activities-container.accent2:hover,
.activities-container.accent2:hover p,
.activities-container.accent2:hover .read-more {
    color: var(--brand-navy);
}

.activities-container.accent3 {
    --activity-hover-outline: var(--brand-yellow);
    background-color: var(--brand-red);
    color: var(--brand-white);
}

.activities-container.accent3:hover,
.activities-container.accent3:hover p,
.activities-container.accent3:hover .read-more {
    color: var(--brand-white);
}

.activities-container.accent4 {
    --activity-hover-outline: var(--brand-navy);
    background-color: var(--accent-color-9);
    color: var(--brand-navy);
}

.activities-container.accent4:hover,
.activities-container.accent4:hover p,
.activities-container.accent4:hover .read-more {
    color: var(--brand-navy);
}

.activities-container.accent2 p,
.activities-container.accent2 .read-more,
.activities-container.accent3 p,
.activities-container.accent3 .read-more,
.activities-container.accent4 p,
.activities-container.accent4 .read-more,
.activities-container.accent6 p,
.activities-container.accent6 .read-more {
    color: inherit;
}

.activities-container.accent5 {
    --activity-hover-outline: var(--brand-yellow);
    background-color: var(--accent-color-8);
    color: var(--brand-white);
}

.activities-container.accent5:hover,
.activities-container.accent5:hover p,
.activities-container.accent5:hover .read-more {
    color: var(--brand-white);
}

.activities-container.accent6 {
    --activity-hover-outline: var(--brand-blue);
    color: var(--brand-navy);
    background-color: var(--brand-secondary);
}

.activities-container.accent6:hover,
.activities-container.accent6:hover p,
.activities-container.accent6:hover .read-more {
    color: var(--brand-navy);
}

.testimonial-container {
    background-color: var(--background-color);
    padding: 40px;
    border-radius: 30px;
    color: var(--text-color-2);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 0.5rem;
    height: 370px;
    position: relative;
}

.testimonial-container:hover {
    height: 370px;
}

.testimonial-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 32px;
    transition: transform 0.3s ease;
    z-index: -1;
    border: 2px solid var(--accent-color);
}

.testimonial-container:hover::after {
    transform: rotate(2deg);
}

.services-container {
    background-color: transparent;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
}

/* Inventory showcase cards */
.inventory-showcase-card {
    color: var(--brand-navy);
    box-shadow: none;
}

.inventory-showcase-card-blue {
    background-color: var(--brand-blue);
    color: var(--brand-white);
}

.inventory-showcase-card-yellow {
    background-color: var(--brand-yellow);
    color: var(--brand-navy);
}

.inventory-showcase-card-blue h4 {
    color: var(--brand-white);
}

.inventory-showcase-card-yellow h4 {
    color: var(--brand-navy);
}

/* Homepage statistics */
.stats-section {
    background-color: var(--brand-surface);
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.stats-section .r-container {
    padding-inline: clamp(1rem, 4vw, 2rem);
}

.stat-item {
    color: var(--brand-navy);
    padding: 0.75rem 0.5rem;
    text-align: center;
}

.stat-number {
    align-items: flex-start;
    color: var(--brand-blue);
    display: flex;
    font-family: var(--font-1);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 600;
    justify-content: center;
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-suffix {
    font-size: 0.42em;
    letter-spacing: 0;
    margin-left: 0.12em;
}

.stat-item h4 {
    color: var(--brand-navy);
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    margin: 0.9rem 0 0;
}

.features-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.feature-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--accent-color);
    color: var(--primary);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-box-middle {
    transform: scaleY(1.15) scaleX(1.05);
}

.feature-box-middle h3,
.feature-box-middle p {
    position: relative;
    transform: none;
    will-change: contents;
}

/* Class Cards */
.class-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.class-course {
    display: none;
}

.class-course.active {
    display: block;
}

.class-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 2rem;
    color: var(--accent-color);
    background-color: var(--background-color);
    align-items: center;
    height: 100%;
    padding: 1.5rem;
    transition: all 0.5s;
}

.class-card:hover {
    background-color: var(--accent-color-7);
    color: var(--accent-color-2);
}

.class-card:hover .icon-box {
    background-color: var(--accent-color-2);
    border: 1px solid var(--accent-color-2);
    color: var(--primary);

}

.class-card:hover .custom-border {
    background-color: var(--accent-color-7);
    border-color: var(--accent-color-7);
}

.class-info {
    color: var(--primary);
    margin: 20px;
    font-family: var(--font-2);
    font-size: 12px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.class-speakers {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.class-price {
    font-size: 1.2em;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    width: max-content;
}

.class-link {
    color: var(--brand-red);
    font-weight: bold;
    margin-top: 10px;
    text-align: left;
    display: inline-block;
}

.class-duration {
    display: none;
}

.class-duration.active {
    display: block;
}

/* Tab Navigation */
.tab-container {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.background-container {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.tabs {
    display: flex;
    justify-content: space-around;

}

.tab {
    text-align: center;
    cursor: pointer;
    color: var(--accent-color);
    transition: background 0.3s ease-in-out;
}

.tab.active {
    color: var(--primary);
    padding: 8px 10px;
    background-color: var(--accent-color);
    border-radius: 30px;
}

.tab .title-tab {
    font-size: 32px;
    font-weight: bold;
    padding: 30px;
}

.tab.active .title-tab {
    background-color: var(--primary);
}

.content {
    display: none;
}

.content.active {
    display: block;
}

.tab .content {
    display: none;
    position: absolute;
    bottom: 10rem;
    margin-left: -4rem;
    max-width: 500px;
    padding: 40px;
    text-align: left;
    background: rgba(35, 31, 32, 0.3);
    backdrop-filter: blur(17.5px);
    /* Sembunyikan semua konten */
}

.tab.active .content {
    display: block;
    /* Tampilkan konten yang aktif */
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 kolom */
    gap: 0;
    /* Jarak antar elemen 0 untuk mengatur garis */
    position: relative;
}

.grid-item-1 {
    border-right: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kanan */
    border-bottom: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis horizontal bawah */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Ruang untuk gambar */
}

.grid-item-2 {
    border-right: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kanan */
    border-bottom: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis horizontal bawah */
    border-left: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kiri */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Ruang untuk gambar */
}

.grid-item-3 {
    border-bottom: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis horizontal bawah */
    border-left: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kiri */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Ruang untuk gambar */
}

.grid-item-4 {
    border-right: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kanan */
    border-top: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis horizontal atas */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Ruang untuk gambar */
}

.grid-item-5 {
    border-right: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kanan */
    border-left: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kiri */
    border-top: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis horizontal atas */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Ruang untuk gambar */
}

.grid-item-6 {
    border-left: 1px solid rgba(255, 255, 255, 0.61);
    /* Garis vertikal kiri */
    border-top: 1px solid rgba(255, 255, 255, 0.61);
    /* Garis horizontal atas */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Ruang untuk gambar */
}

/* ---------------------------- */
/* Header scroll state          */
/* ---------------------------- */
.glass-effect {
    background: var(--primary);
    opacity: 0.9;
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}

@media only screen and (max-width:993px) {

    /* ---------------------------- */
    /* Typography                   */
    /* ---------------------------- */
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 14px;
    }

    p,
    button,
    a {
        font-size: 13px;
    }

    .text-banner {
        font-size: 50px;
    }

    /* ---------------------------- */
    /* Button and Links Setting     */
    /* ---------------------------- */
    .btn {
        font-size: 13px;
        width: 100%;
    }

    /* ---------------------------- */
    /* Header, Footer and Navigation Setting  */
    /* ---------------------------- */
    .logo-container {
        max-width: 100px;
    }

    .nav-link {
        padding-block: 0.2rem;
        text-align: center;
    }

    #header {
        background: var(--background-color);
        backdrop-filter: blur(11px);
        -webkit-backdrop-filter: blur(11px);
    }

    footer {
        height: 100%;
    }

    /* ---------------------------- */
    /* Utility Classes              */
    /* ---------------------------- */
    .p-banner {
        color: var(--text-color);
    }


    .section {
        padding: 4em 2em 4em 2em;
    }

    .divider {
        width: 330px;
    }

    .fs-very-large {
        font-size: 3.125rem;
    }

    .text-404 {
        font-size: 8rem;
        font-weight: 700;
    }

    .image-absolute-1 {
        left: 45%;
        top: 35%;
    }

    .image-infinite-bg {
        background-size: cover !important;
    }


    .border-custom {
        border-width: 0px 0px 1px 0px;
    }

    .outer-margin {
        margin-right: 0;
    }

    .banner-image {
        margin: 0;
        transform: none;
    }

    .testimonial-img {
        margin: 0;
        margin-bottom: 1rem;
    }

    .dropdown-menu {
        width: 100%;
        box-shadow: none;
    }

    .video-e119 {
        width: 85%;
        margin-left: -1.5rem;
    }

    .dropdown-item {
        padding-block: 0.35rem;
    }

    .floating-image {
        position: inherit;
    }

    .floating-price {
        top: -2.5rem;
        right: -7.5rem;
    }

    .floating-heading {
        margin-left: 0;
    }

    .floating-banner {
        top: 0;
        left: 0;
        right: 0;
        margin-right: 1rem;
        margin-left: 1rem;
        margin-top: -10rem;
    }

    .floating-form {
        opacity: 0.6;
    }

    .floating-testi {
        margin-bottom: 1rem;
        margin-top: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .floating-services {
        position: relative;
        z-index: 9999;
        margin-top: 3rem;
        margin-bottom: 1rem;
    }

    .floating-services-2 {
        margin-left: 0;
    }

    .floating-services-2 .padding {
        padding-left: 3rem;
    }

    .floating-services-3 {
        position: relative;
        margin-top: 1rem;
        margin-bottom: -3rem;
    }

    .floating-services-3 .padding {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .floating-bottom {
        position: initial;
        top: 0;
        left: 0;
    }

    .position-xl-absolute {
        position: static;
    }

    .banner-heading {
        font-size: 2.5rem;
    }

    .tabs.studio {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: relative;
        z-index: 2;
        background: rgba(35, 31, 32, 0.3);
        backdrop-filter: blur(17.5px);
        padding: 30px;
        align-items: center;

    }

    .tabs {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .tab-content {
        position: relative;
        left: 0;
    }

    .tab-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
        align-items: center;
    }

    .class-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
        align-items: center;
    }

    .testimonial-container {
        height: 490px;
    }
    
    .testimonial-container:hover {
        height: 490px;
    }

    footer .d-flex.flex-column {
        text-align: center;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        padding: 0 0 0 0;
    }

    footer .link.d-flex.flex-row {
        text-align: center;
        justify-content: center;
        align-items: center;

    }

    footer .list {
        padding: 0 0 0 0;
    }

    .footer {
        position: relative;
    }

    .footer-img {
        position: relative;
    }

    .features-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .padding-swiper {
        position: relative;
        padding-inline: 2rem;
    }

    .swiperImage {
        padding-bottom: 0;
    }

    .swiper-button-next.accent,
    .swiper-button-prev.accent {
        top: 12rem;
        height: 80px;
        width: 80px;
        border: 5px solid var(--primary);
    }

    .swiper-button-next,
    .swiper-button-prev {
        top: 12rem;
        height: 80px;
        width: 80px;
        border: 5px solid var(--primary);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 24px;
    }

    .mySwiper .swiper-button-next,
    .mySwiper .swiper-button-prev {
        top: 28rem;
        width: 40px;
        height: 40px;
    }

    /* Center the buttons horizontally */
    .mySwiper .swiper-button-next {
        right: 0;
        transform: translateY(20px);
    }

    .mySwiper .swiper-button-prev {
        left: 70%;
        transform: translateY(20px);
    }

    .swiperStep2 .swiper-button-next::after,
    .swiperStep2 .swiper-button-prev::after {
        font-size: 16px;
    }

    .swiperStep2 .swiper-button-next,
    .swiperStep2 .swiper-button-prev {
        width: 50px;
        height: 50px;
        border: 3px solid var(--primary);
    }

    /* Center the buttons horizontally */
    .swiperStep2 .swiper-button-next {
        right: 7%;
        transform: translateY(20px);
    }

    .swiperStep2 .swiper-button-prev {
        left: 7%;
        transform: translateY(20px);
    }

    .icon-box.link {
        font-size: 25px;
        padding: 25px;
    }

    .tab .content {
        margin-left: 0;
        position: static;
    }

}

/* === Napoleon's Rentals catalog === */

        .rentals-hero,
        .contact-hero {
            position: relative;
            isolation: isolate;
            padding-top: 9rem;
            padding-bottom: 7rem;
            background-color: var(--brand-surface);
        }

        .rentals-hero::before,
        .contact-hero::before {
            content: "";
            position: absolute;
            z-index: 0;
            right: 0;
            bottom: 1.5rem;
            left: 0;
            height: clamp(220px, 37.9vw, 720px);
            background: url("../image/BG10.png") center / 100% 100% no-repeat;
            pointer-events: none;
        }

        .contact-hero::before {
            content: none;
        }

        .rentals-hero .r-container,
        .contact-hero .r-container {
            position: relative;
            z-index: 1;
        }

        .rentals-hero .hero-copy,
        .contact-hero .hero-copy {
            max-width: 650px;
        }

.rentals-hero .hero-media,
.contact-hero .hero-media {
            position: relative;
            overflow: hidden;
            border: 7px solid var(--brand-white);
            border-radius: 34px;
            box-shadow: 0 24px 60px var(--brand-shadow);
            transform: rotate(1.5deg);
        }

        .rentals-hero .hero-media::after,
        .contact-hero .hero-media::after {
            content: "";
            position: absolute;
            inset: 14px;
            border: 2px solid var(--brand-white-65);
            border-radius: 22px;
            pointer-events: none;
        }

        .rentals-hero .hero-media img,
        .contact-hero .hero-media img {
            width: 100%;
            aspect-ratio: 4 / 5;
            object-fit: cover;
            object-position: center;
        }

        .hero-feature-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            padding: 0;
            margin: 0.25rem 0 0;
        }

        .hero-feature-list li {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.65rem 1rem;
            border-radius: 999px;
            color: var(--nap-navy);
            background: var(--brand-white);
            box-shadow: 0 8px 20px var(--brand-shadow-soft);
            font-family: var(--font-3);
            font-weight: 600;
        }

        .hero-feature-list i {
            color: var(--nap-red);
        }

        .catalog-intro {
            max-width: 760px;
        }

        .catalog-jump {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
            margin: 1.25rem 0 0;
        }

        .catalog-jump a {
            padding: 0.7rem 1.15rem;
            border: 2px solid var(--nap-navy);
            border-radius: 999px;
            color: var(--nap-navy);
            background: var(--brand-white);
            font-size: 0.95rem;
            font-weight: 700;
            transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
        }

        .catalog-jump a:hover {
            transform: translateY(-2px);
            color: var(--brand-white);
            background: var(--nap-navy);
        }

        .catalog-category {
            scroll-margin-top: 110px;
        }

        .category-heading {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .category-heading p {
            max-width: 520px;
            margin-bottom: 0;
        }

        .category-kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.65rem;
            color: var(--nap-red);
            font-family: var(--font-2);
            font-size: 1.25rem;
        }

        .rental-card {
            position: relative;
            display: flex;
            height: 100%;
            min-height: 100%;
            overflow: hidden;
            padding: 0;
            color: var(--nap-navy);
            cursor: pointer;
        }

        .rental-card:hover,
        .rental-card:hover p {
            color: inherit;
        }

        .rental-card:focus-visible {
            outline: 4px solid var(--nap-blue);
            outline-offset: 5px;
        }

        .rental-card.accent4,
        .rental-card.accent4 p,
        .rental-card.accent4 .product-tag {
            color: var(--brand-navy);
        }

        .rental-card .card-inner {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .rental-card .product-photo-wrap {
            position: relative;
            overflow: hidden;
        }

        .rental-card .product-photo {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            object-position: center;
            transition: transform 0.45s ease;
        }

        .rental-card:hover .product-photo {
            transform: scale(1.035);
        }

        .rental-card .product-tag {
            position: absolute;
            left: 1rem;
            bottom: 1rem;
            padding: 0.45rem 0.8rem;
            border-radius: 999px;
            color: var(--nap-navy);
            background: var(--brand-white-92);
            font-family: var(--font-3);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            box-shadow: 0 5px 15px rgba(3, 27, 53, 0.12);
        }

        .rental-card .product-body {
            display: flex;
            flex: 1;
            flex-direction: column;
            gap: 0.85rem;
            padding: 1.6rem;
        }

        .rental-card .product-highlight {
            min-height: 3rem;
            margin: 0;
            color: inherit;
        }

        .product-specs {
            display: grid;
            gap: 0.45rem;
            margin: 0;
            padding-top: 0.25rem;
            border-top: 1px solid var(--brand-border);
        }

        .product-specs > div {
            display: grid;
            grid-template-columns: 96px 1fr;
            gap: 0.75rem;
            align-items: start;
        }

        .product-specs dt,
        .product-specs dd {
            margin: 0;
            font-family: var(--font-3);
            font-size: 0.9rem;
            line-height: 1.45;
        }

        .product-specs dt {
            font-weight: 800;
        }

        .product-price {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 1rem;
            margin-top: auto;
            padding-top: 0.85rem;
            border-top: 1px solid var(--brand-border);
            font-family: var(--font-3);
        }

        .product-price span {
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .product-price strong {
            color: inherit;
            font-size: 1.55rem;
            line-height: 1;
        }

        .product-price.stacked {
            display: grid;
            gap: 0.45rem;
            width: 100%;
            align-items: stretch;
            justify-content: stretch;
        }

        .product-price.stacked div {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 1rem;
            width: 100%;
        }

        .product-price.stacked strong {
            margin-left: auto;
        }

        .addon-section {
            background-color: var(--brand-surface);
        }

        .catalog-note {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            padding: 2.2rem;
            border-radius: 28px;
            color: var(--brand-navy);
            background: var(--brand-green);
            box-shadow: 0 18px 45px var(--brand-shadow);
        }

        .catalog-note h4,
        .catalog-note p {
            color: var(--brand-navy);
        }

        .catalog-note p {
            margin-bottom: 0;
            opacity: 0.88;
        }

        .catalog-note .btn-accent-outline-white {
            border: 2px solid var(--brand-navy);
            color: var(--brand-navy);
        }

        .catalog-note .btn-accent-outline-white .icon-box-3 {
            background-color: var(--brand-navy);
            border-color: var(--brand-navy);
            color: var(--brand-white);
        }

        .catalog-note .btn-accent-outline-white:hover,
        .catalog-note .btn-accent-outline-white:focus-visible {
            background-color: var(--brand-navy);
            color: var(--brand-white);
        }

        .catalog-note .btn-accent-outline-white:hover .icon-box-3,
        .catalog-note .btn-accent-outline-white:focus-visible .icon-box-3 {
            background-color: var(--brand-yellow);
            border-color: var(--brand-yellow);
            color: var(--brand-navy);
        }

        .rental-product-modal .modal-dialog {
            width: auto;
            max-width: min(1180px, calc(100vw - 2rem));
        }

        body.rental-modal-open {
            overflow: hidden;
        }

        .rental-product-modal {
            overscroll-behavior: contain;
            background: var(--brand-overlay);
        }

        .rental-product-modal.is-open {
            display: block;
        }

        .rental-product-modal .modal-content {
            position: relative;
            overflow: hidden;
            border: 0;
            border-radius: 30px;
            background: var(--brand-white);
            box-shadow: 0 28px 80px var(--brand-shadow-strong);
        }

        .rental-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 5;
            width: 2.75rem;
            height: 2.75rem;
            padding: 0.85rem;
            border-radius: 50%;
            background-color: var(--brand-white-94);
            box-shadow: 0 8px 22px var(--brand-shadow);
            opacity: 1;
        }

        .rental-modal-layout {
            display: grid;
            grid-template-columns: minmax(0, 3fr) minmax(340px, 2fr);
        }

        .rental-modal-media {
            min-height: 620px;
            background: var(--nap-navy);
        }

        .rental-modal-media img {
            display: block;
            width: 100%;
            height: 100%;
            min-height: 620px;
            max-height: 82vh;
            object-fit: cover;
            object-position: center;
        }

        .rental-modal-details {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.15rem;
            padding: 3rem 2.5rem 2.5rem;
            color: var(--nap-navy);
            background: var(--brand-white);
        }

        .rental-modal-tag {
            display: inline-flex;
            padding: 0.5rem 0.85rem;
            border-radius: 999px;
            color: var(--nap-navy);
            background: var(--nap-yellow);
            font-family: var(--font-3);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            line-height: 1;
            text-transform: uppercase;
        }

        .rental-modal-details h3 {
            margin: 0;
            color: var(--nap-navy);
            font-size: clamp(2rem, 3vw, 3rem);
            line-height: 1.05;
        }

        .rental-modal-highlight {
            margin: 0;
            color: var(--nap-navy);
            font-size: 1.05rem;
        }

        .rental-modal-specs,
        .rental-modal-price {
            width: 100%;
        }

        .rental-modal-specs .product-specs {
            padding-top: 1rem;
        }

        .rental-modal-price {
            margin-top: auto;
        }

        .rental-modal-price .product-price {
            margin-top: 0;
        }

        @media only screen and (max-width: 993px) {
            .rentals-hero,
            .contact-hero {
                padding-top: 8rem;
                padding-bottom: 5rem;
            }

            .rentals-hero::before,
            .contact-hero::before {
                bottom: 0;
            }

            .rentals-hero .hero-media,
            .contact-hero .hero-media {
                transform: none;
            }

            .rentals-hero .hero-media img {
                height: clamp(380px, 55vw, 480px);
                aspect-ratio: auto;
                object-position: center 38%;
            }

            .category-heading,
            .catalog-note {
                align-items: flex-start;
                flex-direction: column;
            }

            .rental-modal-media,
            .rental-modal-media img {
                min-height: 360px;
            }

            .rental-modal-layout {
                grid-template-columns: 1fr;
            }

            .rental-modal-media img {
                max-height: 48vh;
            }

            .rental-modal-details {
                padding: 2rem;
            }
        }

        @media only screen and (max-width: 576px) {
            .rentals-hero,
            .contact-hero {
                padding-left: 1.25rem;
                padding-right: 1.25rem;
            }

            .rentals-hero .hero-media {
                border-width: 5px;
                border-radius: 28px;
            }

            .rentals-hero .hero-media::after {
                inset: 10px;
                border-radius: 18px;
            }

            .rentals-hero .hero-media img {
                height: clamp(280px, 72vw, 380px);
            }

            .rental-card .product-body {
                padding: 1.3rem;
            }

            .product-specs > div {
                grid-template-columns: 82px 1fr;
            }

            .rental-product-modal .modal-dialog {
                max-width: calc(100vw - 1rem);
                margin: 0.5rem auto;
            }

            .rental-product-modal .modal-content {
                border-radius: 22px;
            }

            .rental-modal-media,
            .rental-modal-media img {
                min-height: 290px;
            }

            .rental-modal-details {
                gap: 0.9rem;
                padding: 1.6rem 1.3rem;
            }
        }

/* === End Napoleon's Rentals catalog === */

/* === Home: compact, comfortable mobile layout === */
@media only screen and (max-width: 576px) {
    .home-activities {
        padding-inline: 0.75rem;
    }

    .home-activities .padding-swiper {
        padding-inline: 1.5rem;
    }

    .home-activities .swiperCard {
        max-width: 330px;
        margin-inline: auto;
    }

    .home-activities .activities-container {
        padding: 22px 22px 0;
    }

    .home-activities .swiperCard .activities-container-image {
        height: clamp(205px, 62vw, 245px);
        margin: auto -22px 0;
    }

    .home-activities .activities-container-image img {
        object-fit: contain;
        object-position: center bottom;
    }

    .home-activities .padding-swiper > .swiper-button-next.accent,
    .home-activities .padding-swiper > .swiper-button-prev.accent {
        top: 50%;
        bottom: auto;
        width: 52px;
        height: 52px;
        border-width: 3px;
        transform: translateY(-50%);
    }

    .home-activities .padding-swiper > .swiper-button-next.accent::after,
    .home-activities .padding-swiper > .swiper-button-prev.accent::after {
        font-size: 18px;
    }

    .inset-container {
        margin-inline: 0;
        padding-inline: 0;
    }

    .inset-container .check > .d-flex {
        align-items: flex-start !important;
        gap: 0.75rem !important;
    }

    .inset-container .check p {
        flex: 1;
        min-width: 0;
    }

    .about-image-wrap {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }
}
/* === End home mobile layout === */
