/* 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 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
20. Progress and Rating 
21. Accordion
*/

/* ---------------------------- */
/* Import Statements            */
/* ---------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;500;600;700;800&family=Unbounded:wght@400;500;600;700;800&display=swap');
@import url('../css/vendor/bootstrap.min.css');
@import url('../css/vendor/fontawesome.css');
@import url('../css/vendor/brands.css');
@import url('../css/vendor/regular.css');
@import url('../css/vendor/solid.css');
@import url('../css/vendor/swiper-bundle.min.css');
@import url('../css/vendor/rtmicons.css');

/* ---------------------------- */
/* Keyframes and Property Animations            */
/* ---------------------------- */
@property --progress {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}

@keyframes load {
    to {
        --progress: var(--value)
    }
}

@keyframes background_animation {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(1, 1, 1);
        transform-origin: center;
        border-width: 0px;
    }

    to {
        opacity: 0;
        transform: scale3d(1.7, 1.7, 1.8);
        transform-origin: center;
        border-width: 13px;
    }
}

/* ---------------------------- */
/*  Custom Properties            */
/* ---------------------------- */
:root {
    --text-color: #F5F5F5;
    --text-color-2: #5F5F5F;
    --background-color: #020202;
    --background-team: #E3E3E3;
    --accent-color: #EF5625;
    --accent-color-2: #F8C02D;
    --accent-color-3: #F4E4DF;
    --accent-color-4: #D7C0ED;
    --color-1: #292929;
    --color-2: #141414;
    --color-3: #D2D2D2;
    --color-4: #D7C0ED;
    --font-1: "Mulish", sans-serif;
    --font-2: "Unbounded", sans-serif;
    --font-3: "Mulish", sans-serif;
}


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


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

h2 {
    font-size: 90px;
    font-weight: bold;
}

h3 {
    font-size: 56px;
}

h4 {
    font-size: 40px;
    font-weight: 500;
}

h5 {
    font-size: 28px;
    font-weight: 500;
}

h6 {
    font-size: 20px;
    font-weight: 400;
    font-family: var(--font-2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-2);
}

.seo-h1-like-h2 {
    font-size: 90px;
    font-weight: bold;
    font-family: var(--font-2);
}

.hero-home__intro,
.hero-home__title,
.services-detail-hero-title {
    font-family: var(--font-2);
}

.hero-home__intro {
    font-size: 96px;
}

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

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

ul {
    list-style: none;
}

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

li {
    font-size: 16px;
    color: var(--accent-color-3);
}

img {
    object-fit: cover;
}

.text-accent {
    background: linear-gradient(90deg, #5F5F5F 0%, #212121 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent.second {
    background: linear-gradient(90deg, #0D0D0D 0%, #141414 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.text-accent::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 50px;
    /* geser sedikit ke bawah */
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0D0D0D 0%, #141414 100%);
}

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

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

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    line-height: 1.55;
    margin-bottom: 0;
}

.testimonial-copy {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.testimonial-text--collapsed {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    line-clamp: 6;
}

.testimonial-text--expanded {
    display: block;
}

.testimonial-toggle {
    display: inline-block;
    padding: 10px 12px 10px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--accent-color);
    font-family: var(--font-1);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
    align-self: flex-start;
}

.testimonial-toggle:hover,
.testimonial-toggle:focus-visible {
    color: var(--accent-color-4);
    opacity: 1;
    transform: translateY(-1px);
    outline: none;
}

.testimonial-toggle[hidden] {
    display: none !important;
}

.testimonial-author-name,
.testimonial-company-label {
    margin: 0;
}

.testimonial-author-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    margin-top: 0.7rem;
    margin-left: 0;
    margin-right: 0;
    padding-inline: 0;
}

.testimonial-author-photo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(245, 245, 245, 0.08);
    border: 1px solid rgba(245, 245, 245, 0.12);
    flex: 0 0 auto;
}

.testimonial-author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-photo span {
    color: var(--text-color);
    font-family: var(--font-2);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.testimonial-author-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.22rem;
    min-width: 0;
}

.testimonial-author-name {
    color: var(--text-color);
    font-size: 1.25rem;
    line-height: 1.15;
}

.testimonial-author-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.testimonial-author-link:hover,
.testimonial-author-link:focus-visible {
    color: var(--accent-color);
    outline: none;
}

.testimonial-company-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.testimonial-company-link:hover,
.testimonial-company-link:focus-visible,
.testimonial-container:hover .testimonial-company-link {
    color: var(--accent-color);
    outline: none;
}

.card-testimonial:hover .testimonial-author-name {
    color: var(--text-color);
}

.small-text {
    font-size: 14px;
}

.textual-showcase {
    font-size: 82px;
}

.cta-text {
    font-size: 80px;
    font-weight: bold;
}

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

.sub-heading {
    font-size: 140px;
    font-style: italic;
}

.sub-heading.about-team-watermark {
    z-index: -1;
    top: 0.5rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    display: inline-block;
    width: max-content;
    padding-inline: 0.08em 0.12em;
    font-size: clamp(4.5rem, 7.5vw, 7rem);
    line-height: 0.88;
    white-space: nowrap;
    text-align: center;
    pointer-events: none;
}

.sub-heading.about-team-watermark::after {
    left: 0.08em;
    width: calc(100% - 0.2em);
    bottom: 0;
    height: 4px;
}


.sub-heading.about-page-watermark {
    display: inline-block;
    width: max-content;
    padding-inline: 0.08em 0.28em;
    white-space: nowrap;
    pointer-events: none;
    overflow: visible;
}

.sub-heading.about-page-watermark::after {
    left: 0.08em;
    width: calc(100% - 0.36em);
    bottom: 0;
    height: 4px;
}

.about-hero-title {
    padding-left: clamp(1.25rem, 3vw, 2.5rem);
    margin-top: clamp(0.75rem, 2vw, 1.5rem);
}

.about-hero-label {
    margin-left: 1rem;
}

.services-detail-hero {
    gap: 2.25rem !important;
}

.services-detail-hero-title {
    display: block;
    width: auto;
    max-width: none;
    margin: 0;

    font-size: clamp(4.75rem, 7vw, 5.75rem) !important;
    line-height: 0.9;
    font-weight: 700 !important;
    letter-spacing: -0.05em;
    text-wrap: pretty;
}

.services-detail-hero-row {
    margin-top: 0.75rem;
}

.services-detail-hero-subtitle {
    display: block;
    width: auto;
    max-width: none;
    margin: 0 0 0 auto;
    font-size: clamp(4.1rem, 6vw, 5.2rem) !important;
    line-height: 0.9;
    font-weight: 400 !important;
    letter-spacing: -0.05em;
    text-wrap: pretty;
}

.services-smm-hero-line {
    display: block;
}

.services-detail-hero-line {
    display: block;
    white-space: nowrap;
}

.services-paid-ads-hero {
    gap: 2.75rem !important;
}

.services-paid-ads-hero-title {
    display: block;
    width: auto;
    max-width: 16ch;
    margin: 0;
    font-size: clamp(3.4rem, 4.9vw, 4.4rem) !important;
    line-height: 0.92;
    font-weight: 700 !important;
    letter-spacing: -0.05em;
    text-wrap: pretty;
}

.services-paid-ads-hero-subtitle {
    display: block;
    width: max-content;
    max-width: none;
    margin: 0 0 0 auto;
    font-size: clamp(3.15rem, 4.65vw, 4.2rem) !important;
    line-height: 0.92;
    font-weight: 400 !important;
    letter-spacing: -0.05em;
    text-align: right;
    text-shadow:
        0 6px 24px rgba(2, 2, 2, 0.9),
        0 2px 8px rgba(2, 2, 2, 0.65);
}

.services-paid-ads-hero-row {
    margin-top: 1.5rem;
}

.services-marketing-hero {
    gap: 2.75rem !important;
}

.services-marketing-hero-title {
    max-width: 10.2ch;
    font-size: clamp(4rem, 5.8vw, 5rem) !important;
    line-height: 0.92;
}

.services-marketing-hero-subtitle {
    max-width: none;
    margin-top: 0 !important;
    text-shadow:
        0 6px 24px rgba(2, 2, 2, 0.9),
        0 2px 8px rgba(2, 2, 2, 0.65);
    font-size: clamp(3.15rem, 4.6vw, 4.15rem) !important;
    line-height: 0.92;
}

.services-marketing-hero-line {
    display: block;
    white-space: nowrap;
}

.services-marketing-hero-row {
    margin-top: 1.4rem;
}

.services-branding-hero {
    gap: 2.75rem !important;
}

.services-branding-hero .services-detail-hero-title {
    max-width: 10.3ch;
    font-size: clamp(4rem, 5.85vw, 5rem) !important;
    line-height: 0.92;
}

.services-branding-title-line {
    display: inline;
}

.services-branding-hero-row {
    margin-top: 1.45rem;
}

.services-branding-hero-subtitle {
    max-width: none;
    margin-top: 0 !important;
    font-size: clamp(3.05rem, 4.35vw, 3.9rem) !important;
    line-height: 0.9;
    text-shadow:
        0 6px 24px rgba(2, 2, 2, 0.9),
        0 2px 8px rgba(2, 2, 2, 0.65);
}

.services-branding-hero-line {
    display: block;
    white-space: nowrap;
}

.services-website-hero {
    gap: 2.75rem !important;
}

.services-website-hero .services-detail-hero-title {
    width: max-content;
    max-width: none;
    font-size: clamp(4rem, 5.85vw, 5rem) !important;
    line-height: 0.92;
}

.services-website-hero-row {
    margin-top: 1.45rem;
}

.services-website-hero-subtitle {
    width: max-content;
    max-width: none;
    margin-top: 0 !important;
    margin-left: auto;
    font-size: clamp(3.1rem, 4.55vw, 4.05rem) !important;
    line-height: 0.92;
    font-weight: 400 !important;
    letter-spacing: -0.05em;
    text-align: right;
    text-shadow:
        0 6px 24px rgba(2, 2, 2, 0.9),
        0 2px 8px rgba(2, 2, 2, 0.65);
}

.services-email-hero {
    gap: 2.75rem !important;
}

.services-email-hero .services-detail-hero-title {
    width: max-content;
    max-width: none;
    font-size: clamp(4rem, 5.8vw, 5rem) !important;
    line-height: 0.92;
}

.services-email-hero-row {
    margin-top: 1.5rem;
}

.services-email-hero-subtitle {
    width: max-content;
    max-width: none;
    margin-top: 0 !important;
    margin-left: auto;
    font-size: clamp(3.05rem, 4.45vw, 4rem) !important;
    line-height: 0.92;
    text-align: right;
    text-shadow:
        0 6px 24px rgba(2, 2, 2, 0.9),
        0 2px 8px rgba(2, 2, 2, 0.65);
}

.services-detail-seo .services-detail-hero-row {
    margin-top: 1.8rem;
}

.services-detail-seo .services-detail-hero-subtitle {
    width: max-content;
    max-width: none;
    margin-top: 0 !important;
    margin-left: auto;
    font-size: clamp(3.05rem, 4.45vw, 4rem) !important;
    line-height: 0.92;
    font-weight: 400 !important;
    letter-spacing: -0.05em;
    text-align: right;
    text-shadow:
        0 6px 24px rgba(2, 2, 2, 0.9),
        0 2px 8px rgba(2, 2, 2, 0.65);
}

.services-detail-smm .services-detail-hero-subtitle {
    width: max-content;
    max-width: none;
    margin-top: 0 !important;
    margin-left: auto;
    font-size: clamp(3.05rem, 4.45vw, 4rem) !important;
    line-height: 0.92;
    font-weight: 400 !important;
    letter-spacing: -0.05em;
    text-align: right;
    text-shadow:
        0 6px 24px rgba(2, 2, 2, 0.9),
        0 2px 8px rgba(2, 2, 2, 0.65);
}

.about-growth-section {
    background-color: #F5F5F5 !important;
    color: var(--background-color);
}

.about-growth-section :is(h3, h6, p, span) {
    color: inherit;
}

.about-growth-section .text-color-2 {
    color: rgba(13, 13, 13, 0.7) !important;
}

.about-growth-section .sub-heading.about-page-watermark {
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.08) 0%, rgba(20, 20, 20, 0.18) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-growth-section .sub-heading.about-page-watermark::after {
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.16) 0%, rgba(20, 20, 20, 0.24) 100%);
}

.about-growth-section .btn-play__text.about > span,
.about-growth-section .btn-play__circle.about i {
    color: var(--background-color);
}

.about-growth-section .btn-play.about:hover .btn-play__icon {
    color: var(--background-color);
}

.home-about-copy {
    max-width: 65%;
}

.about-partnership-section {
    background-color: #EF5625 !important;
    color: var(--background-color);
}

.about-partnership-section p,
.about-partnership-section .accordion .accordion-button,
.about-partnership-section .accordion .accordion-body {
    color: var(--background-color);
}

.about-partnership-section h3 span {
    color: #F5F5F5;
}

.about-partnership-section h3 .accent-color,
.about-partnership-section h3 .text-color-2 {
    color: var(--background-color) !important;
}

.about-partnership-section .accordion .accordion-button {
    border-bottom-color: rgba(13, 13, 13, 0.24);
}

.about-partnership-section .accordion-button:not(.collapsed) {
    border-bottom-color: rgba(245, 245, 245, 0.75);
}

.about-partnership-section .accordion .accordion-button::after,
.about-partnership-section .accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230D0D0D' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}

.about-team-section {
    background-color: #F5F5F5 !important;
    color: var(--background-color);
}

.about-team-section h3,
.about-team-section p,
.about-team-section span {
    color: inherit;
}

.about-team-layout__title-line,
.about-team-layout__copy-line {
    display: block;
}

.about-team-section .about-team-watermark {
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.08) 0%, rgba(20, 20, 20, 0.18) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-team-section .about-team-watermark::after {
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.16) 0%, rgba(20, 20, 20, 0.24) 100%);
}

.about-cta-panel {
    background-color: #EF5625 !important;
    color: #F5F5F5;
}

.about-cta-panel .cta-text,
.about-cta-panel p,
.about-cta-panel span,
.about-cta-panel i {
    color: inherit;
}

.about-cta-panel .cta-text .accent-color {
    color: #0D0D0D !important;
}

.about-cta-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-cta-title__line {
    display: block;
}

.about-cta-title__line--secondary {
    margin-top: 0.18em;
}

.about-cta-panel .btn-accent.cta {
    background-color: #0D0D0D;
    border-color: #0D0D0D;
    color: #F5F5F5;
}

.about-cta-panel .btn-accent.cta::before {
    background-color: #0D0D0D;
}

.about-cta-panel .btn-accent.cta:hover {
    border-color: #F5F5F5;
    background-color: #0D0D0D;
    color: #F5F5F5;
}

.about-cta-panel .btn-accent-3.cta {
    color: #F5F5F5;
    border-color: #F5F5F5;
}

.about-cta-panel .btn-accent-3:hover.cta {
    border-color: #0D0D0D;
    color: #0D0D0D;
}

.about-cta-panel img {
    opacity: 0.18;
}

.contact-hero-title {
    text-shadow:
        0 6px 24px rgba(2, 2, 2, 0.9),
        0 2px 8px rgba(2, 2, 2, 0.65);
}

.team-members-section {
    background-color: #000000 !important;
    color: #F5F5F5;
}

.team-members-section h3,
.team-members-section p,
.team-members-section span {
    color: inherit;
}

.team-members-section .border-accent {
    border-color: #F5F5F5 !important;
}

.team-members-section .card-team-detail h5.background-color,
.team-members-section .card-team-detail .small-text.background-color {
    color: var(--background-color);
}


.sub-heading.home-services-watermark {
    z-index: -1;
    top: 1rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    font-size: clamp(4.5rem, 8vw, 7.5rem);
    line-height: 0.9;
    display: inline-block;
    width: max-content;
    padding-inline: 0.12em;
    white-space: nowrap;
    text-align: center;
    pointer-events: none;
}

.sub-heading.home-services-watermark::after {
    left: 0.08em;
    width: calc(100% - 0.24em);
    bottom: 0;
    height: 4px;
}

.sub-heading.services-page-watermark {
    z-index: -1;
    top: 0.1rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    display: inline-block;
    width: max-content;
    padding: 0.08em 0.16em 0 0.16em;
    font-size: clamp(4.5rem, 8vw, 7.5rem);
    line-height: 0.88;
    white-space: nowrap;
    text-align: center;
    pointer-events: none;
}

.sub-heading.services-page-watermark::after {
    left: 0.08em;
    width: calc(100% - 0.24em);
    bottom: 0;
    height: 4px;
}

@media only screen and (min-width: 1025px) {
    .team-page-hero__label-line {
        display: block;
        white-space: nowrap;
    }

    .team-page-hero__label {
        font-size: clamp(4.1rem, 5.7vw, 5.9rem);
    }

    .page-hero-mobile--blog .page-hero-mobile__title {
        font-size: clamp(4rem, 6.35vw, 6.5rem);
    }

    .page-hero-mobile--blog .blog-hero-title {
        font-size: clamp(2.95rem, 5.65vw, 5.2rem);
    }

    .page-hero-mobile--services .page-hero-mobile__label {
        font-size: clamp(4rem, 5.6vw, 5.8rem);
        text-shadow: 0 16px 44px rgba(2, 2, 2, 0.96);
    }

    .page-hero-mobile--services .page-hero-mobile__title {
        text-shadow: 0 8px 28px rgba(2, 2, 2, 0.7);
    }

    .page-hero-mobile--contact .page-hero-mobile__label {
        font-size: clamp(3.95rem, 5.45vw, 5.6rem);
    }

    .about-page-hero__label {
        font-size: clamp(4rem, 5.55vw, 5.75rem);
    }

    .team-page-hero__label {
        text-shadow: 0 12px 34px rgba(2, 2, 2, 0.82);
    }

    .page-hero-mobile--portfolio .page-hero-mobile__label {
        text-shadow:
            0 14px 36px rgba(2, 2, 2, 0.88),
            0 4px 14px rgba(2, 2, 2, 0.7);
    }
}

.sub-heading.testimonial-watermark {
    display: inline-block;
    width: max-content;
    padding-inline: 0.12em 0.16em;
    white-space: nowrap;
    pointer-events: none;
}

.about-testimonials-title {
    color: var(--accent-color);
}

.sub-heading.process-watermark {
    z-index: -1;
    top: 0.35rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    display: inline-block;
    width: max-content;
    padding-inline: 0.12em 0.18em;
    font-size: clamp(4.5rem, 8vw, 7.5rem);
    line-height: 0.9;
    white-space: nowrap;
    text-align: center;
    pointer-events: none;
}

.sub-heading.process-watermark::after {
    left: 0.08em;
    width: calc(100% - 0.22em);
    bottom: 0;
    height: 4px;
}

.sub-heading.choose-us-watermark {
    z-index: 1;
    left: 2%;
    top: -1%;
    pointer-events: none;
}

.choose-us-heading-row {
    z-index: 2;
}

.choose-us-heading {
    margin: 0;
    max-width: 11ch;
    text-align: right;
}

.choose-us-copy {
    max-width: 34rem;
}

.choose-us-copy__line {
    display: inline;
}

@media only screen and (min-width: 1200px) {
    .choose-us-copy__line {
        display: block;
    }
}

.home-expertise-section {
    background-color: #F5F5F5 !important;
    color: var(--background-color);
}

.home-testimonials-section {
    padding-top: 2.5rem;
}

.home-expertise-section :is(h3, h5, p, span) {
    color: inherit;
}

.home-expertise-section .btn-play__text > span,
.home-expertise-section .btn-play__circle i {
    color: var(--background-color);
}

.home-expertise-section .btn-play:hover .btn-play__icon {
    color: var(--background-color);
}

.home-expertise-section .choose-us-stars i {
    -webkit-text-stroke: 1.5px var(--background-color);
}

.home-expertise-section .r-progress-bar {
    background-color: rgba(13, 13, 13, 0.14);
}

.home-expertise-section .r-progress-bar.percentage-label::after {
    color: var(--background-color);
}

.home-expertise-section .home-stat-divider {
    background: var(--background-color);
    color: var(--background-color);
}

.home-about-section {
    background-color: #F5F5F5 !important;
    color: var(--background-color);
}

.home-about-section :is(h3, h6, p, span) {
    color: inherit;
}

.home-about-section .btn-play__text > span,
.home-about-section .btn-play__circle i {
    color: var(--background-color);
}

.home-about-section .btn-play:hover .btn-play__icon,
.home-about-section .btn-play.about:hover .btn-play__icon {
    color: var(--background-color);
}

.home-about-section .sub-heading.text-accent.second {
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.08) 0%, rgba(20, 20, 20, 0.18) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-about-section .sub-heading.text-accent.second::after {
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.16) 0%, rgba(20, 20, 20, 0.24) 100%);
}

.home-services-section {
    background-color: var(--accent-color) !important;
    color: var(--text-color);
}

.home-services-section :is(h3, h4, p, span) {
    color: inherit;
}

.home-services-section .border-accent {
    border-color: rgba(245, 245, 245, 0.95) !important;
}

.home-services-section .sub-heading.home-services-watermark {
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.08) 0%, rgba(13, 13, 13, 0.22) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-services-section .sub-heading.home-services-watermark::after {
    background: linear-gradient(90deg, rgba(245, 245, 245, 0.22) 0%, rgba(245, 245, 245, 0.38) 100%);
}

.home-services-section .home-services-list hr {
    border-color: rgba(245, 245, 245, 0.32);
    opacity: 1;
}

.home-services-section .navigation {
    color: rgba(245, 245, 245, 0.82);
}

.home-services-section .navigation:hover {
    color: var(--accent-color);
    background-color: var(--accent-color-4);
}

.home-services-section .navigation:hover h4 {
    color: var(--accent-color);
}

.home-services-section .navigation .navigation-arrow,
.home-services-section .btn-accent-2 {
    background-color: #F5F5F5;
    border-color: #F5F5F5;
    color: var(--accent-color);
}

.home-services-section .btn-accent-2.active,
.home-services-section .btn-accent-2:hover {
    background-color: #F5F5F5;
    border-color: #F5F5F5;
    color: var(--accent-color);
}

.home-services-section .navigation:hover .navigation-arrow {
    background-color: #F5F5F5;
    color: var(--accent-color);
}

.home-blog-section {
    background-color: var(--accent-color) !important;
    color: var(--text-color);
}

.home-blog-section .home-blog-title {
    color: var(--text-color);
}

.home-blog-section .border-accent {
    border-color: rgba(245, 245, 245, 0.95) !important;
}

.home-blog-section .home-blog-watermark {
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.12) 0%, rgba(13, 13, 13, 0.22) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-blog-section .home-blog-watermark::after {
    background: linear-gradient(90deg, rgba(245, 245, 245, 0.24) 0%, rgba(245, 245, 245, 0.4) 100%);
}

.home-blog-section .card-blog,
.home-blog-section .card-blog-row,
.home-blog-section .card-blog-detail {
    color: var(--background-color);
}

.home-blog-section .card-blog-row,
.home-blog-section .card-blog-detail {
    background-color: #FFFFFF;
    border: 1px solid rgba(13, 13, 13, 0.08);
    box-shadow: 0 12px 30px rgba(13, 13, 13, 0.05);
}

.home-blog-section .card-blog h5,
.home-blog-section .card-blog h6,
.home-blog-section .card-blog-row h6,
.home-blog-section .button {
    color: var(--background-color);
}

.home-blog-section .card-blog-date,
.home-blog-section .card-blog-row .small-text,
.home-blog-section .text-color-2 {
    color: rgba(13, 13, 13, 0.56);
}

.home-blog-section .card-blog-row:hover,
.home-blog-section .card-blog:hover .card-blog-detail {
    background-color: var(--accent-color-4);
}

.home-blog-more-row .btn.btn-accent {
    width: auto;
    min-width: clamp(11rem, 52vw, 14rem);
    justify-content: center;
    padding-inline: 1.5rem;
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
    color: #0D0D0D;
}

.home-blog-more-row .btn.btn-accent::before {
    display: none;
}

.home-blog-more-row .btn.btn-accent:hover,
.home-blog-more-row .btn.btn-accent:focus-visible,
.home-blog-more-row .btn.btn-accent:active {
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
    color: #0D0D0D;
    box-shadow: none;
}

.home-blog-more-row .btn.btn-accent i,
.home-blog-more-row .btn.btn-accent:hover i,
.home-blog-more-row .btn.btn-accent:focus-visible i,
.home-blog-more-row .btn.btn-accent:active i {
    color: #0D0D0D;
}

.choose-us-stars {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    line-height: 1;
    font-size: clamp(2rem, 3vw, 2.75rem);
}

.choose-us-stars i {
    color: var(--accent-color);
    -webkit-text-stroke: 1.5px #fff;
}

.blog-hero-title {
    font-size: clamp(2rem, 4.1vw, 3.75rem);
    line-height: 1.08;
}

.blog-hero-title__line {
    display: block;
    white-space: nowrap;
}

.blog-section-title {
    font-size: clamp(2rem, 2.8vw, 3rem);
    line-height: 1.08;
}

.blog-section-title__line {
    display: block;
    white-space: nowrap;
}

.blog-articles-section {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.blog-articles-section .blog-section-title {
    color: var(--text-color);
}

.blog-articles-section .border-accent {
    border-color: rgba(245, 245, 245, 0.95) !important;
}

.blog-articles-section .blog-page-watermark {
    display: none !important;
}

.blog-articles-section .blog-page-watermark::after {
    display: none !important;
}

@media (min-width: 768px) {
    .blog-section-title--mobile-quad .blog-section-title__line {
        display: inline;
        white-space: normal;
    }

    .blog-section-title--mobile-quad .blog-section-title__line:nth-child(2)::after {
        content: "";
        display: block;
    }

    .blog-section-title--mobile-quad .blog-section-title__line:nth-child(1),
    .blog-section-title--mobile-quad .blog-section-title__line:nth-child(3) {
        margin-right: 0.22em;
    }
}

@media (max-width: 767.98px) {
    .blog-articles-section {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }

    .blog-articles-section .r-container > .d-flex.flex-column.gap-5 {
        gap: 0.7rem !important;
    }

    .blog-articles-section .col.col-lg-6.mb-3 > .d-flex.flex-column.gap-5 {
        gap: 0.35rem !important;
    }

    .blog-articles-section .row.row-lg-cols-2.row-cols-1 {
        margin-bottom: 0 !important;
    }

    .blog-articles-section #blog-articles {
        gap: 0 !important;
    }

    .blog-section-title--mobile-quad {
        width: 100%;
        max-width: 18.75rem;
        font-size: 26px;
        line-height: 0.96;
        letter-spacing: -0.05em;
    }
}

.contact-section--contact-page {
    background-color: var(--background-color);
    color: var(--text-color);
}

.contact-section__cards .card-service {
    background-color: #d7c0ed;
    color: #0d0d0d;
}

.contact-section__cards .card-service h5,
.contact-section__cards .card-service p,
.contact-section__cards .card-service i {
    color: #0d0d0d;
}

.contact-section__cards .card-service:hover {
    background-color: #d7c0ed;
    color: #0d0d0d;
    transform: none;
}

.blog-articles-section .card-blog,
.blog-articles-section .card-blog-detail {
    color: var(--background-color);
}

.blog-articles-section .card-blog-detail {
    background-color: #FFFFFF;
    border: 1px solid rgba(13, 13, 13, 0.08);
    box-shadow: 0 12px 30px rgba(13, 13, 13, 0.08);
}

.blog-articles-section .card-blog h5,
.blog-articles-section .card-blog h6,
.blog-articles-section .card-blog p,
.blog-articles-section .card-blog span {
    color: var(--background-color);
}

.blog-articles-section .card-blog-date,
.blog-articles-section .text-color-2 {
    color: rgba(13, 13, 13, 0.58);
}

.blog-articles-section .card-blog:hover .card-blog-detail {
    background-color: rgba(255, 255, 255, 0.92);
}

.blog-articles-section .card-blog:hover h5,
.blog-articles-section .card-blog:hover h6,
.blog-articles-section .card-blog:hover .card-blog-date {
    color: var(--background-color);
}

@media only screen and (max-width: 1199.98px) {
    #blog-category-filters {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #blog-category-filters .blog-category-filters__row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center !important;
        width: 100%;
    }

    #blog-category-filters .blog-category-filters__row--first {
        max-width: 23rem;
    }

    #blog-category-filters .blog-category-filters__row--second {
        max-width: 21rem;
    }
}

@media only screen and (min-width: 1025px) {
    #blog-category-filters {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    #blog-category-filters .blog-category-filters__row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap;
        justify-content: flex-end;
        width: 100%;
    }

    #blog-category-filters .blog-category-filters__row--first {
        max-width: 100%;
    }

    #blog-category-filters .blog-category-filters__row--second {
        max-width: 30rem;
    }
}

@media (max-width: 767.98px) {
    .blog-hero-title__line {
        white-space: normal;
    }

    .blog-section-title__line {
        white-space: normal;
    }
}

.textual-showcase,
.cta-text,
.banner-heading,
.sub-heading,
.btn-play__text,
.number-text,
.text-banner,
.follow-text {
    font-family: var(--font-2);
}

.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 {
    background-color: var(--color-2);
    padding: 32px;
    border-radius: 10px;
}

form.subs {
    background-color: transparent;
}

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

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

.form input,
.form select {
    background-color: transparent;
    color: var(--accent-color-3);
    outline: none;
    border: none;
    border-bottom: 1px solid var(--text-color-2);
    padding-bottom: 10px;
    border-radius: 0;
    caret-color: var(--accent-color-3);
}

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

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

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

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

.form select:focus {
    background-color: var(--background-color);
}

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

.form input::placeholder,
.form textarea::placeholder {
    color: var(--text-color-2);
    font-family: var(--font-1);
}

.form .invalid-feedback {
    margin-top: 8px;
    color: #ff6b6b;
    font-size: 14px;
}

.form.was-validated input:invalid,
.form.was-validated textarea:invalid,
.form.was-validated .subscribe:invalid,
.form input.is-invalid,
.form textarea.is-invalid {
    border-bottom: 1px solid #ff6b6b !important;
    box-shadow: none;
    background-color: rgba(255, 107, 107, 0.04);
}

.form.was-validated input:invalid:focus,
.form.was-validated textarea:invalid:focus,
.form.was-validated .subscribe:invalid:focus,
.form input.is-invalid:focus,
.form textarea.is-invalid:focus {
    border-bottom: 1px solid #ff6b6b !important;
    color: var(--accent-color-3);
    background-color: rgba(255, 107, 107, 0.05);
}

.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: var(--accent-color);
    border-radius: 10px;
}


.submit_form:hover {
    background-color: transparent;
    color: var(--accent-color);
}


.submit_appointment {
    padding-inline: 3rem;
    padding-block: 0.7rem;
    text-decoration: none;
}

.form-success-open {
    overflow: hidden;
}

.form-success-banner {
    position: fixed;
    inset: 0;
    opacity: 0;
    z-index: 20000;
    pointer-events: none;
    transition: opacity 0.26s ease;
}

.form-success-banner[hidden] {
    display: none !important;
}

.form-success-banner.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.form-success-banner__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 2, 2, 0.56);
    backdrop-filter: blur(6px);
}

.form-success-banner__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(430px, calc(100vw - 32px));
    padding: 34px 28px 26px;
    border-radius: 24px;
    background: #111111;
    border: 1px solid rgba(244, 228, 223, 0.1);
    color: var(--text-color);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
    pointer-events: auto;
    text-align: center;
    transform: translate(-50%, calc(-50% + 20px)) scale(0.96);
    transition: transform 0.26s ease, opacity 0.26s ease;
}

.form-success-banner__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: #23b26d;
    transform: translateX(-50%);
}

.form-success-banner.is-visible .form-success-banner__inner {
    transform: translate(-50%, -50%) scale(1);
}

.form-success-banner__icon {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(35, 178, 109, 0.12);
    border: 1px solid rgba(35, 178, 109, 0.24);
    color: #23b26d;
}

.form-success-banner__icon-svg {
    width: 22px;
    height: 22px;
    display: block;
}

.form-success-banner__content {
    min-width: 0;
}

.form-success-banner__eyebrow {
    margin-bottom: 8px;
    color: #23b26d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.form-success-banner__title {
    font-family: var(--font-2);
    font-size: clamp(20px, 2.2vw, 24px);
    line-height: 1.24;
}

.form-success-banner__text {
    margin-top: 10px;
    color: rgba(245, 245, 245, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.form-success-banner__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(245, 245, 245, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.form-success-banner__close:hover {
    background: rgba(35, 178, 109, 0.14);
    color: #23b26d;
}

@media (max-width: 767px) {
    .form-success-banner__inner {
        width: min(92vw, 390px);
        padding: 30px 20px 22px;
        border-radius: 20px;
    }

    .form-success-banner__icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .form-success-banner__title {
        font-size: 18px;
    }

    .form-success-banner__text {
        font-size: 13px;
    }

    .form-success-banner__close {
        top: 12px;
        right: 12px;
        width: 34px;
        height: 34px;
    }
}


/* ---------------------------- */
/* Map Elements       */
/* ---------------------------- */
.maps {
    width: 100%;
    height: 600px;
    transition: filter 0.5s;
    display: block;
}


/* ---------------------------- */
/* Header and Navbar       */
/* ---------------------------- */

main section:first-of-type {
    margin-top: 0;
}


#header {
    transition: all 0.5s ease;
}

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

.logo-partner {
    filter: brightness(200%) contrast(0%) saturate(0%) blur(0px) hue-rotate(0deg);
    transition-duration: 0.5s;
}

.logo-partner:hover {
    filter: none;
}

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

.offcanvas-header {
    justify-content: end;
}

.offcanvas-fullwidth {
    width: 41vw !important;
    max-width: 100vw;
    overflow-y: auto;
    background-color: var(--color-1);
}

.offcanvas-body {
    overflow: visible;
    padding: 3rem;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    transition: all 0.3s ease;
}

.navbar {
    margin: 24px 0;
}

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

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

.nav-link {
    border-bottom: 2px solid transparent;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-1);
    color: var(--text-color);
    text-align: center;
}

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

.nav-link.active {
    color: var(--accent-color) !important;
    text-align: center;
    /* border-bottom: 2px solid var(--accent-color); */
}

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

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

@media only screen and (max-width: 1199.98px) {
    .navbar-toggler {
        color: var(--text-color);
    }

    .navbar-toggler:hover,
    .navbar-toggler:focus,
    .navbar-toggler[aria-expanded="true"] {
        color: var(--accent-color);
    }
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.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: 100%;
    -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;
    background-color: var(--background-color);
}

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

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

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

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

.pt-single-post {
    padding-top: 154px !important;
}

@media only screen and (max-width: 1024px) {
    .pt-single-post {
        padding-top: 120px !important;
    }
}

.r-container {
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
    padding-left: clamp(1rem, 2.4vw, 2.35rem);
    padding-right: clamp(1rem, 2.4vw, 2.35rem);
}


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

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

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

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

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

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

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

.bg-color {
    background-color: #292929;
}

.bg-color-2 {
    background-color: #141414;
}

.bg-color-3 {
    background-color: #D2D2D2;
}

.bg-color-4 {
    background-color: #595FEF;
}

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

.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);
}

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

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

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

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

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

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

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

.border-testimonial {
    border-right: 5px solid var(--accent-color-2);
}

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

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

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

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

.bg-image {
    background:
        /* url(../image/img\ 1.png) no-repeat 71% 27%, */
        url(../image/icon\ 1.png) no-repeat 13.5% 21%,
        url(../image/Image\ Background.png) no-repeat center 0%;
}

.bg-image h1 {
    text-shadow: 0 4px 30px #020202;
}

.bg-image-about {
    background: url(../image/icon\ 1.png) no-repeat 106% 15%, url(../image/Image\ Background.png) no-repeat center 0%;
    background-size:
        207px auto,
        1920px 1280px;
}

.bg-image-services {
    --hero-photo: url(../image/services\ 1.jpg);
}

.bg-image-services-details.services-detail-smm {
    --service-detail-photo: url(../image/home-services/smm.png);
}

.bg-image-services-details.services-detail-paid-ads {
    --service-detail-photo: url(../image/home-services/paid_ads.png);
}

.bg-image-services-details.services-detail-marketing {
    --service-detail-photo: url(../image/home-services/marketing.png);
}

.bg-image-services-details.services-detail-branding {
    --service-detail-photo: url(../image/home-services/branding.png);
}

.bg-image-services-details.services-detail-website {
    --service-detail-photo: url(../image/home-services/websites.png);
}

.bg-image-services-details.services-detail-seo {
    --service-detail-photo: url(../image/home-services/seo-google.png);
}

.bg-image-services-details.services-detail-email {
    --service-detail-photo: url(../image/home-services/email.png);
}

.bg-image-services-details {
    background: var(--service-detail-photo, url(../image/dummy-img-1920x1280.jpg)) no-repeat 27% 40%, url(../image/icon\ 1.png) no-repeat 106% 15%, url(../image/Image\ Background.png) no-repeat center 0%;
    background-size:
        320px auto,
        207px auto,
        1920px 1280px;
}

.bg-image-portofolio {
    --hero-photo: url(../image/portfolio\ 1.jpg);
}

.bg-image-portofolio-details {
    background: url(../image/dummy-img-1920x1280.jpg) no-repeat 27% 40%, url(../image/icon\ 1.png) no-repeat 106% 15%, url(../image/Image\ Background.png) no-repeat center 0%;
    background-size:
        384px auto,
        207px auto,
        1920px 1280px;
}

.bg-image-team {
    --hero-photo: url(../image/team\ 1.jpg);
}

.bg-image-pricing {
    background: url(../image/dummy-img-1920x1280.jpg) no-repeat 27% 40%, url(../image/icon\ 1.png) no-repeat 106% 15%, url(../image/Image\ Background.png) no-repeat center 0%;
    background-size:
        384px auto,
        207px auto,
        1920px 1280px;
}

.bg-image-faqs {
    background: url(../image/dummy-img-1920x1280.jpg) no-repeat 27% 40%, url(../image/icon\ 1.png) no-repeat 106% 15%, url(../image/Image\ Background.png) no-repeat center 0%;
    background-size:
        384px auto,
        207px auto,
        1920px 1280px;
}

.bg-image-blog {
    --hero-photo: url(../image/blog\ 1.jpg);
}

.bg-image-single-post {
    background: url(../image/dummy-img-1920x1280.jpg) no-repeat 27% 40%, url(../image/icon\ 1.png) no-repeat 106% 15%, url(../image/Image\ Background.png) no-repeat center 0%;
    background-size:
        384px auto,
        207px auto,
        1920px 1280px;
}

.bg-image-contact {
    --hero-photo: url(../image/contact\ 1.jpg);
}

.bg-image-services,
.bg-image-portofolio,
.bg-image-team,
.bg-image-blog,
.bg-image-contact {
    --hero-photo-position: 27% 40%;
    --hero-photo-size: 384px auto;
    position: relative;
    isolation: isolate;
    background: url(../image/icon\ 1.png) no-repeat 106% 15%, url(../image/Image\ Background.png) no-repeat center 0%;
    background-size:
        207px auto,
        1920px 1280px;
}

.bg-image-services>*,
.bg-image-portofolio>*,
.bg-image-team>*,
.bg-image-blog>*,
.bg-image-contact>* {
    position: relative;
    z-index: 1;
}

.bg-image-services::before,
.bg-image-portofolio::before,
.bg-image-team::before,
.bg-image-blog::before,
.bg-image-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-photo);
    background-repeat: no-repeat;
    background-position: var(--hero-photo-position);
    background-size: var(--hero-photo-size);
    filter: grayscale(1);
    pointer-events: none;
    z-index: 0;
}

.bg-image-404 {
    background: url(../image/icon\ 14.png) no-repeat 15% 12%, url(../image/icon\ 9.png) no-repeat 87% 17%, url(../image/icon\ 1.png) no-repeat 2% 100%, url(../image/icon\ 15.png) no-repeat 80% 97%, url(../image/Image\ Background.png) no-repeat center 0%;
    background-size:
        94px auto,
        66px auto,
        207px auto,
        127px auto,
        1920px 1280px;
}


/* ---------------------------- */
/* Swiper Setting              */
/* ---------------------------- */
.text-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.text-marquee-content {
    display: inline-block;
    animation: text-marquee 70s linear infinite;
    font-size: 100px;
    padding-right: 50%;
}

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

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

.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(400s / var(--speed)) infinite linear;
}

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

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

.marquee-item img {
    width: 170px;
}

.home-hero-logo {
    width: auto;
    height: 48px;
    object-fit: contain;
}

.home-textual-showcase {
    width: 100%;
}

.home-textual-showcase__row {
    width: 100%;
}

.home-textual-showcase__text,
.home-textual-showcase__image,
.home-textual-showcase__icon {
    flex-shrink: 0;
}

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

.marquee-item {
    text-wrap: nowrap;
    padding-block: 0.45rem;
    padding-inline: var(--gap);
    margin-right: 5rem;
    width: max-content;
    color: var(--primary);
}

.marquee-item-2 {
    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));
    }
}

.service-scroll {
    height: 610px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 3rem;
}

/* width */
.service-scroll::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.service-scroll::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

/* Handle */
.service-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

/* Handle on hover */
.service-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color-2);
}

.swiper-slide {
    padding: 0.5rem;
}

.swiperTestimonials {
    overflow: visible;
}

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

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

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

.swiperImage {
    padding-bottom: 8rem;
}

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

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

.swiper-button-next:hover,
.swiper-button-prev:hover {
    border: 1px solid var(--text-color);
    background-color: var(--secondary);
    color: var(--primary);
}

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

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

.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(--background-color);
}

a {
    text-decoration: none;
}

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

.category {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
}

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

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

.latest {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    max-width: 80%;
    transition: all 0.5s
}

.latest:hover {
    color: var(--accent-color);
    background-color: var(--accent-color-4);
    padding: 10px;
    border-radius: 5px;
}

.latest:hover .small-text {
    color: var(--text-color);
}

.single-post-latest-card {
    padding: 1.4rem;
    border-radius: 28px;
    background: #D7C0ED;
    box-shadow: 0 18px 42px rgba(215, 192, 237, 0.14);
}

.single-post-latest-card h4 {
    color: #141414;
}

#single-post-latest {
    display: grid;
    gap: 1rem;
}

.single-post-latest-card .latest {
    max-width: 100%;
    padding: 0.35rem;
    border-radius: 16px;
    color: #141414;
}

.single-post-latest-card .latest h6,
.single-post-latest-card .latest .small-text {
    color: #141414;
}

.single-post-latest-card .latest:hover {
    color: #141414;
    background-color: rgba(20, 20, 20, 0.08);
    padding: 0.35rem;
    border-radius: 16px;
}

.single-post-latest-card .latest:hover .small-text {
    color: #141414;
}

.single-post-latest-card .latest img {
    border-radius: 14px;
}

.single-post-subscribe-card {
    padding: 1.5rem;
    border-radius: 28px;
    background: #EF5625;
    box-shadow: 0 18px 42px rgba(239, 86, 37, 0.18);
}

.single-post-subscribe-card h4,
.single-post-subscribe-card p {
    color: #141414;
}

.single-post-subscribe-card form.subs {
    background: transparent;
    padding: 0;
}

.single-post-subscribe-card .form-control.subscribe {
    color: #141414;
    border-bottom: 1px solid rgba(20, 20, 20, 0.35);
}

.single-post-subscribe-card .form-control.subscribe::placeholder {
    color: rgba(20, 20, 20, 0.62);
}

.single-post-subscribe-card .form-control.subscribe:focus {
    color: #141414;
    border-bottom: 1px solid #141414;
}

.single-post-subscribe-card .btn.btn-accent {
    background: #141414;
    border-color: #141414;
    color: #FFFFFF;
}

.single-post-subscribe-card .btn.btn-accent:hover {
    background: #000000;
    border-color: #000000;
    color: #FFFFFF;
    box-shadow: 0 12px 28px rgba(20, 20, 20, 0.2);
}

.single-post-subscribe-card .invalid-feedback {
    color: #141414;
}

.single-post-main-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: clamp(1.25rem, 2.4vw, 2rem);
    border-radius: 32px;
    background: #FFFFFF;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.single-post-main-card #single-post-body {
    gap: 1.25rem !important;
}

.single-post-main-title {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-size: 40px;
    font-weight: 500;
    font-family: var(--font-2);
    line-height: 0.96;
    text-wrap: balance;
}

.single-post-main-title__lead,
.single-post-main-title__rest {
    display: block;
}

.single-post-main-title__lead {
    color: #ef5625;
}

@media only screen and (min-width: 1025px) {
    .single-post-main-title__lead {
        width: fit-content;
        max-width: 100%;
        white-space: normal;
        text-wrap: balance;
    }
}

.single-post-main-card h1,
.single-post-main-card h4,
.single-post-main-card .small-text,
.single-post-main-card p,
.single-post-main-card li,
.single-post-main-card td,
.single-post-main-card th,
.single-post-main-card blockquote {
    color: #141414;
}

.single-post-main-card #single-post-body > img,
.single-post-main-card .article-rich-content img {
    border-radius: 22px;
}

.single-post-main-card hr.text-color-2 {
    margin: 0;
    border-color: rgba(20, 20, 20, 0.14) !important;
    opacity: 1;
}

.single-post-share-row {
    gap: 1rem;
}

.single-post-share-row p {
    margin: 0;
    color: #141414;
    font-weight: 700;
}

.single-post-share-row .social-icons.row {
    gap: 0.75rem;
}

.single-post-share-row .social-icons a {
    color: #141414;
    border-color: rgba(20, 20, 20, 0.14);
    background: rgba(20, 20, 20, 0.04);
}

.single-post-share-row .social-icons a:hover {
    color: #141414;
    background: rgba(20, 20, 20, 0.1);
    border-color: rgba(20, 20, 20, 0.24);
}

.article-rich-content {
    display: grid;
    gap: 1rem;
}

.article-rich-content p,
.article-rich-content li,
.article-rich-content td,
.article-rich-content th {
    font-size: 1rem;
    line-height: 1.75;
}

.article-rich-content p,
.article-rich-content h1,
.article-rich-content h2,
.article-rich-content h3,
.article-rich-content h4,
.article-rich-content h5,
.article-rich-content h6,
.article-rich-content blockquote {
    margin: 0;
}

.article-rich-content ul,
.article-rich-content ol {
    margin: 0;
    padding-left: 1.5rem;
    display: grid;
    gap: 0.55rem;
}

.article-rich-content ul {
    list-style: disc;
}

.article-rich-content ol {
    list-style: decimal;
}

.article-rich-content li {
    color: #141414;
}

.article-rich-content h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.08;
    color: #141414;
}

.article-rich-content h2 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    line-height: 1.12;
    font-weight: 700;
    color: #141414;
}

.article-rich-content h3 {
    font-size: clamp(1.45rem, 2.5vw, 1.8rem);
    line-height: 1.18;
    font-weight: 700;
    color: #141414;
}

.article-rich-content h4 {
    font-size: clamp(1.25rem, 2vw, 1.45rem);
    line-height: 1.22;
    font-weight: 700;
    color: #141414;
}

.article-rich-content h5 {
    font-size: 1.15rem;
    line-height: 1.3;
    font-weight: 700;
    color: #141414;
}

.article-rich-content h6 {
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 700;
    color: #141414;
}

.article-rich-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.article-rich-content img {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.article-rich-content blockquote {
    padding-left: 1rem;
    border-left: 3px solid var(--accent-color);
    color: var(--text-color);
}

.article-rich-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.25rem 0 0.5rem;
    border: 1px solid rgba(245, 245, 245, 0.14);
    border-radius: 18px;
    overflow: hidden;
}

.article-rich-content thead {
    background: rgba(245, 245, 245, 0.06);
}

.article-rich-content th,
.article-rich-content td {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(245, 245, 245, 0.12);
    text-align: left;
    vertical-align: top;
    color: var(--text-color);
    word-break: break-word;
}

.article-rich-content th {
    font-weight: 700;
}

.article-rich-content .article-editor-table--cols-1 tr {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.article-rich-content .article-editor-table--cols-2 tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-rich-content .article-editor-table--cols-3 tr {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-rich-content .article-editor-table--cols-4 tr {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-rich-content .article-editor-table--cols-5 tr {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.article-rich-content .article-editor-table--cols-6 tr {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.article-rich-content .article-editor-table--cols-7 tr {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.article-rich-content .article-editor-table--cols-8 tr {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.read-more {
    font-family: var(--font-1);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.5s;
    color: var(--text-color);
}

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

.read-more img {
    width: 24px;
    height: 24px;
}

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


.tags {
    padding: 3px 6px;
    font-family: var(--font-2);
    color: var(--text-color);
    background-color: var(--accent-color-3);
}

.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-1);
    font-weight: 500;
    position: relative;
    display: inline-block;
    pointer-events: auto;
    cursor: pointer;
    padding: 8px 24px;
    border-radius: 10px;
}

.btn::before,
.btn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

.btn-accent {
    position: relative;
    padding: 8px 24px;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    cursor: pointer;
    color: var(--background-color);
    background: var(--accent-color);
    position: relative;
    overflow: hidden;
    transition: all 1000ms;
    z-index: 9;
    /* width: 100%; */
}

.btn-accent.cta {
    border-radius: 10px;
}

.btn-accent i {
    font-weight: bold;
}

.btn-accent:hover {
    color: var(--text-color);
    /* transform: scale(1.1); */
    box-shadow: none;
    border: 2px solid var(--text-color);
}

.btn-accent:hover.cta {
    border-radius: 10px;
}

.btn-accent::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;
}

.btn-accent:hover::before {
    width: 0;
}

.btn-accent-2 {
    color: var(--text-color-2);
    background-color: transparent;
    transition: all 0.5s;
    overflow: hidden;
    padding: 5px 16px;
    border-radius: 100px;
    border: 1px solid var(--text-color-2);
    outline: none;
}

.btn-accent-2.active {
    color: var(--text-color);
    border-color: var(--text-color);
}

.btn-accent-2:hover {
    color: var(--text-color);
    border-color: var(--text-color);
    transition: all 0.5s;
}

.btn-accent-2:hover i {
    color: var(--primary);
}

.btn-accent-2 span {
    display: block;
    position: relative;
    z-index: 10;
}

.btn-accent-2:hover i {
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

.btn-accent-2 i {
    display: block;
    position: relative;
    z-index: 10;
}

.btn-accent-2:hover span {
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

@media only screen and (min-width: 1200px) {
    #portfolio-service-filters {
        padding-top: 0;
    }

    #portfolio-service-filters > div,
    #portfolio-service-filters .portfolio-service-filters__list {
        max-width: 38rem;
        margin-left: auto;
    }

    #portfolio-service-filters .portfolio-service-filters__list {
        align-items: flex-end;
        transform: translateY(9.25rem);
    }

    #portfolio-service-filters .portfolio-service-filters__row {
        justify-content: flex-end !important;
    }

    #home-portfolio-service-filters > div,
    #home-portfolio-service-filters .portfolio-service-filters__list {
        max-width: 38rem;
        margin-left: auto;
    }

    #home-portfolio-service-filters {
        padding-top: 0;
    }

    #home-portfolio-service-filters .portfolio-service-filters__list {
        align-items: flex-end;
        transform: translateY(9.25rem);
    }

    #home-portfolio-service-filters .portfolio-service-filters__row {
        justify-content: flex-end !important;
    }
}

.portfolio-service-filters__list {
    width: 100%;
    align-items: flex-start;
}

.portfolio-service-filters__row {
    width: 100%;
}

.btn-accent-3 {
    padding: 8px 24px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    color: var(--accent-color);
    background: transparent;
    position: relative;
    overflow: hidden;
    outline: 2px solid var(--accent-color);
    transition: all 1000ms;
    width: 100%;
}

.btn-accent-3.cta {
    width: max-content;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    outline: none;
    border-radius: 10px;
}

.btn-accent-3:hover {
    color: var(--accent-color-4);
    transform: scale(1.1);
    outline: none;
    box-shadow: 4px 5px 17px -4px var(--accent-color-4);
}

.btn-accent-3:hover.cta {
    transform: scale(1);
    box-shadow: none;
    border: 2px solid var(--accent-color);
    color: var(--background-color);
}

.btn-accent-3::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--accent-color);
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;
}

.btn-accent-3:hover::before {
    width: 250%;
}

.btn-accent-4 {
    width: 100%;
    padding: 12px 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: var(--color-3);
    color: var(--background-color);
    transition: all 0.5s;
}

.btn-accent-4 i {
    font-weight: bold;
}

.btn-accent-4:hover {
    background-color: var(--accent-color-3);
    color: var(--text-color);
}


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

.btn-cta-1:hover {
    color: var(--text-color);
    border: 1px solid var(--text-color);
    background-color: transparent;
}

.btn-cta-2 {
    background: transparent;
    color: var(--text-color);
    transition: all 0.5s;
    border: 1px solid var(--text-color);
    overflow: hidden;
}

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

@keyframes MoveScaleUpInitial {
    to {
        transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }
}

@keyframes MoveScaleUpEnd {
    from {
        transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}


.btn-play {
    cursor: pointer;
    border: none;
    background: transparent;
    color: #fff;
    width: 188px;
    height: 188px;
    border-radius: 50%;
    overflow: visible;
    position: relative;
    display: grid;
    place-content: center;
    transition:
        background 300ms,
        transform 200ms;
    font-weight: normal;
    margin-left: 10rem;
}

.btn-play.about {
    margin-left: 0;
}

.btn-play.choose-us {
    margin-top: -15rem;
    margin-left: 21rem;
}

.btn-play.about-us {
    width: 200px;
    height: 200px;
    background: var(--accent-color-4);
    color: var(--text-color);
}

.btn-play.footer {
    margin-left: -7rem;
    width: 274px;
    height: 274px;
    aspect-ratio: 1/1;
    border: 1px solid var(--text-color);
    flex-shrink: 0;
}

.hero-home__play {
    margin-left: 0;
}

.hero-home__content-row {
    display: grid;
    grid-template-columns: minmax(18rem, 23rem) minmax(0, 1fr);
    align-items: end;
    column-gap: clamp(1.5rem, 3vw, 3rem);
}

.btn-play__text {
    position: absolute;
    inset: 0;
    --char-count: 33;
    --char-angle: calc(360deg / var(--char-count));
    animation: text-rotation 8s linear infinite;
    margin: 0.25rem;

}

.btn-play__text>span {
    position: absolute;
    transform: rotate(calc(var(--char-angle) * var(--index)));
    inset: -15px;
    color: var(--text-color);
    font-size: 21px;
}

.btn-play__text.about>span {
    inset: -11px;
}

.btn-play.footer .btn-play__text>span {
    position: absolute;
    transform: rotate(calc(var(--char-angle) * var(--index)));
    inset: 3px;
    color: var(--text-color);
    font-size: 21px;
}

.btn-play__circle {
    position: relative;
    width: 80px;
    height: 80px;
    overflow: hidden;
    color: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
}

.btn-play.footer .btn-play__circle {
    position: relative;
    width: 96px;
    height: 96px;
    overflow: hidden;
    color: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
}

.btn-play__circle i {
    font-weight: bold;
}

.btn-play__icon--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.btn-play:hover {
    transform: scale(1.05);
}

.btn-play:hover .btn-play__icon {
    color: var(--background-color);
}

.btn-play.about:hover .btn-play__icon {
    color: var(--text-color);
}

.btn-play.choose-us:hover .btn-play__icon {
    color: var(--text-color);
}

.btn-play.about-us:hover .btn-play__icon {
    color: var(--text-color);
}

.btn-play:hover .btn-play__icon:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.btn-play:hover .btn-play__icon--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}


@keyframes text-rotation {
    to {
        rotate: 360deg;
    }
}

.btn-toggler-accent {
    background-color: var(--text-color);
    border: 1px solid var(--text-color);
    color: var(--background-color);
    aspect-ratio: 1/1;
    width: 45x;
    height: 45px;
    border-radius: 10px;
    padding: 10px;
    transition: all 0.5s ease;
}


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

.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;
    border: 1px solid transparent;
}

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

.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;
    opacity: 0;
    transform-origin: bottom;
    transition: all 0.5s ease;
}

.image-footer:hover .image-zoom {
    opacity: 1;
}

.float-bg-image {
    margin-top: -7rem;
}

.float-number {
    margin-left: 7rem;
}

.gap-about {
    gap: 7rem;
}

.float-img-team {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: cover;
    object-position: center top;
    margin-top: -12rem;
}

.team-image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    min-height: 0;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(180deg, #f1f1f1 0%, #d9d9d9 100%);
    border: 1px dashed rgba(2, 2, 2, 0.08);
    margin-top: -12rem;
}

.float-button {
    margin-top: -5rem;
}

.float-icon {
    margin-right: -4rem;
}

.float-img {
    position: absolute;
    bottom: -4rem;
    right: 8rem;
}

.float-img-2 {
    position: absolute;
    bottom: 0;
    right: 10rem;
}

.float-img-3 {
    position: absolute;
    bottom: 7rem;
    left: -5rem;
}

.float-team {
    position: absolute;
    bottom: 0;
    left: 6rem;
}

.float-img.testi {
    left: 0;
}

.float-container {
    min-height: 80vh;
}

.hero-home__copy {
    max-width: 23rem;
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    text-wrap: balance;
    padding-bottom: 0.35rem;
}

.hero-home__title {
    font-size: clamp(68px, 5vw, 76px);
    line-height: 0.94;
    margin: 0;
}

.hero-home__title--lower {
    width: min(10ch, 100%);
    max-width: 10ch;
    justify-self: end;
}

.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-read-more {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 12px 0 12px 24px;
    border-top-left-radius: 30px;
    background-color: var(--primary);
}


.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);
    transition: color 0.5s;
    cursor: pointer;
}

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

.link-white {
    color: white;
}

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

/* .img-about {
    aspect-ratio: 5/6;
    box-shadow: 20px 20px 0px -8px var(--accent-color);
    border-radius: 10px;
} */

.img-about img {
    border-radius: 12px;
    aspect-ratio: 5/6;
    box-shadow: 20px 20px 0px -8px 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: rgba(10, 10, 10, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    transform: scaleY(1);
    transform-origin: bottom;
    transition: none;
    border-radius: 10px;
}

.portfolio-card-meta-row,
#portfolio-grid .image-overlay > .d-flex.flex-column.gap-5 > .d-flex.flex-row.gap-5,
#home-portfolio-feed .image-overlay > .d-flex.flex-column.gap-5 > .d-flex.flex-row.gap-5 {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.portfolio-card-year,
#portfolio-grid .image-overlay > .d-flex.flex-column.gap-5 > .d-flex.flex-row.gap-5 > span:first-child,
#home-portfolio-feed .image-overlay > .d-flex.flex-column.gap-5 > .d-flex.flex-row.gap-5 > span:first-child {
    flex: 0 0 auto;
    white-space: nowrap;
}

.portfolio-card-service,
#portfolio-grid .image-overlay > .d-flex.flex-column.gap-5 > .d-flex.flex-row.gap-5 > span:last-child,
#home-portfolio-feed .image-overlay > .d-flex.flex-column.gap-5 > .d-flex.flex-row.gap-5 > span:last-child {
    margin-left: auto;
    max-width: 12.5rem;
    display: block;
    text-align: right;
    line-height: 1.2;
    text-wrap: balance;
}

.portfolio-card-title,
#portfolio-grid .image-overlay > .d-flex.flex-column.gap-5 > h4,
#home-portfolio-feed .image-overlay > .d-flex.flex-column.gap-5 > h4 {
    max-width: min(78%, 18rem);
    margin: 0;
    line-height: 1.05;
    text-wrap: pretty;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.portfolio-card-summary {
    max-width: min(68%, 18rem);
}

#portfolio-grid .card,
#home-portfolio-feed .card {
    height: 100%;
}

#portfolio-grid .card>img,
#home-portfolio-feed .card>img {
    width: 100%;
    object-fit: cover;
}

.card .image-overlay.active {
    transform: scaleY(1);
}

.card:hover .image-overlay {
    transform: scaleY(1);
}

.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;
}

.circle {
    background-color: var(--accent-color-4);
    width: 222px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.line {
    width: 3px;
    height: 175px;
    background: var(--accent-color-4);
    margin-top: -23rem;
    z-index: 0;
}

.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 #8692af;
    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;
}

.animation-bg {
    animation: background_animation 10s forwards;
}

.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%;
    background-repeat: no-repeat;
}

.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: 19px;
    width: 48px;
    height: 48px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primary);
    margin-left: -25px;
    overflow: hidden;
}

.customer-item img {
    object-fit: cover;
    aspect-ratio: 1/1;
}

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

.customer-add {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 19px;
    width: 48px;
    height: 48px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primary);
    margin-left: -25px;
    overflow: hidden;
    background-color: var(--background-color);
    z-index: 10;
}

.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: 16px;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    transition: all 0.5s;
    border-radius: 10px;
    background-color: var(--accent-color);
    color: var(--background-color);
    width: 42px;
    height: 42px;
}

.icon-box:hover {
    border: 1px solid var(--accent-color);
    background-color: var(--text-color);
}

.icon-box-2 {
    display: flex;
    justify-content: center;
    font-size: 38.5px;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    transition: all 0.5s;
    border-radius: 50%;
    background-color: var(--accent-color-4);
    color: var(--text-color);
    position: absolute;
    padding: 32px;
}

.icon-box-3 {
    display: flex;
    justify-content: center;
    font-size: 16px;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    transition: all 0.5s;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--background-color);
    width: 40px;
    height: 40px;
    font-size: 42px;
    margin: 0 auto;
    position: absolute;
    top: -15%;
    right: 0;
}

.icon-box-4 {
    background-color: var(--accent-color);
    padding: 32px;
    border-radius: 10px;
}

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

.icon-box-4 i {
    font-size: 38.5px;
}

.icon-box-4:hover i {
    color: var(--text-color);
}

.icon-textual {
    background-color: var(--accent-color-3);
    border-radius: 50rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 70px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.icon-textual:hover {
    background-color: var(--accent-color);
}

.icon-textual i {
    font-weight: 700;
    color: var(--background-color);
    font-size: 40px;
}

.icon-textual:hover i {
    transform: rotate(45deg);
}

.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 {
    display: block;
}

.floating-image-2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

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

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

.floating-top {
    margin-top: -4rem;
}

.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;
    top: 8rem;
    left: -5.5em;
}

.floating-bottom-1 {
    position: absolute;
    bottom: 5rem;
    right: 0;
}

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

.floating-contact {
    margin-left: -7rem;
    border-bottom-left-radius: 1rem;
}

.floating-counter {
    position: relative;
    margin-top: -6rem;
    z-index: 9999;
}

.floating-blog {
    margin-top: -3rem;
}

.image-container {
    position: relative;
    display: inline-block;
}

.hotspot {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(24, 21, 24, 0.5);
    border: 0.5px solid var(--text-color);
    backdrop-filter: blur(2px);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

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

.hotspot i {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.hotspot:hover i {
    color: white;
}

/* Tooltip */
.hotspot::after {
    content: attr(data-text);
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    white-space: nowrap;
    display: none;
}

.hotspot:hover::after {
    display: block;
}

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

.position-responsive {
    position: absolute;
}

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

.list-flush-horizontal {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 1rem;
}

.list-flush-horizontal .list-item:first-child,
.list-flush-horizontal .list-item {
    border-right: 1px solid white;
}

.list-flush-horizontal .list-item:last-child {
    border-left: 1px solid white;
    border-right: none;
}

.list-flush-horizontal .list-item:nth-last-child(2) {
    border: none;
}

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

.list-group .link {
    background-color: transparent;
    border: none;
    color: var(--text-color-2);
    transition: all 0.5s;
    border-radius: 0px;
    font-size: 16px;
    font-family: var(--font-1);

}

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

}

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

.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;
}

.hr-custom {
    border: none;
    height: 5px;
    background: #f5f5f5;
    color: #f5f5f5;
    opacity: 1;
    margin-top: -3rem;
}

.home-stats-row {
    --bs-gutter-x: clamp(1.25rem, 2vw, 2.25rem);
    --bs-gutter-y: 1rem;
    margin-top: clamp(1.25rem, 2vw, 2.25rem);
}

.home-stat-card {
    width: 100%;
    gap: 0.6rem;
    min-height: 100%;
    align-items: center;
}

.home-stat-value {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    align-self: center;
    gap: 0.12em;
    flex-wrap: nowrap;
    white-space: nowrap;
    line-height: 0.85;
    width: max-content;
    margin-inline: auto;
}

.home-stat-number {
    line-height: 0.82;
}

.home-stat-number--suffix {
    flex-shrink: 0;
    line-height: 0.82;
    transform: translateY(-0.02em);
}

.home-stat-divider {
    width: min(100%, 18rem);
    max-width: none;
    margin: 0.2rem auto 0;
    height: 4px;
    flex-shrink: 0;
}

.home-stat-divider--wide {
    width: min(100%, 22rem);
}

.home-stat-divider--medium {
    width: min(100%, 18rem);
}

.home-stat-divider--narrow {
    width: min(100%, 10rem);
}

.home-stat-label {
    margin: 0;
    width: 100%;
    max-width: 16ch;
    line-height: 1.02;
    text-wrap: balance;
    text-align: center;
}

.home-stat-label--long {
    max-width: 19ch;
}

.home-stat-label--single-line {
    white-space: nowrap;
}

.about-stats-stack {
    --bs-gutter-y: 1.75rem;
    justify-content: center;
}

.about-stat-card {
    gap: 0.4rem;
}

.about-stat-card h6 {
    margin: 0;
    line-height: 1.08;
    max-width: 14ch;
}

.about-stat-value {
    gap: 0.08em;
}

.about-stat-plus {
    line-height: 0.82;
    transform: translateY(-0.02em);
}

@media only screen and (min-width:1200px) and (max-width:1499px) {
    .home-stats-row {
        --bs-gutter-x: 1rem;
        margin-top: 1.5rem;
    }

    .home-stat-number {
        font-size: clamp(5.25rem, 7vw, 6.75rem);
    }

    .home-stat-divider {
        margin-top: 0.15rem;
    }

    .home-stat-label {
        max-width: 15ch;
        font-size: 1.4rem;
    }

    .home-stat-label--long {
        max-width: 17ch;
    }
}

@media only screen and (max-width: 767.98px) {
    .home-stats-row {
        --bs-gutter-y: 1.75rem;
        margin-top: 1.5rem;
    }

    .home-stat-card {
        gap: 0.68rem;
    }

    .home-stat-number {
        font-size: clamp(4.75rem, 24vw, 6.5rem);
    }

    .home-stat-number--suffix {
        font-size: clamp(4.75rem, 24vw, 6.5rem);
    }

    .home-stat-divider {
        width: min(100%, 13.75rem);
        margin-top: 0.22rem;
    }

    .home-stat-divider--wide {
        width: min(100%, 14.5rem);
    }

    .home-stat-divider--medium {
        width: min(100%, 13.25rem);
    }

    .home-stat-divider--narrow {
        width: min(100%, 8.75rem);
    }

    .home-stat-label {
        max-width: 100%;
        font-size: 1.05rem;
        line-height: 1.06;
        padding-inline: 0.5rem;
    }

    .home-stat-label--single-line {
        max-width: 100%;
        font-size: 1rem;
        letter-spacing: -0.02em;
        text-align: center;
        white-space: nowrap;
    }

    .home-stat-label--long {
        max-width: 14ch;
    }

    .about-stats-stack {
        --bs-gutter-y: 1.25rem;
    }

    .about-stat-card h6 {
        max-width: none;
        font-size: 0.98rem;
    }
}

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

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

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

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

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

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

.contact-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 40px;
    height: 2rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.process-wrapper {
    align-items: center;
    width: 100%;
    transition: filter 0.6s ease-in-out;
    filter: grayscale(100%);
}

.process-wrapper:hover {
    align-items: center;
    width: 100%;
    filter: grayscale(0%);
}

.process-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.process-icon .icon-box-2,
.process-icon .icon-box-2 i {
    color: #0D0D0D;
}

.social-wrapper {
    margin: 5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
    justify-content: center;
}

.follow-text {
    writing-mode: vertical-rl;
    transform: rotate(0deg);
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color-2);
    margin: 0;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.social-icons.row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 5px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 16px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
    background-color: var(--color-2);
}

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

.social-item i {
    color: var(--background-color);
}

.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(--background-color);
    transition: all 0.5s;
}

.social-item:hover i {
    color: var(--text-color);
}

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

.social-item-3:hover {
    color: var(--text-color);
}

.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-colorbolee);
}

/* ---------------------------- */
/* 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;
}

.request-loader {
    position: absolute;
    height: 60px;
    width: 60px;
    border-radius: 50% !important;
    background-color: var(--accent-color);
    border: solid 2px var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--background-color);
    font-size: 25px;
    aspect-ratio: 1/1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

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

.request-loader::after,
.request-loader::before {
    opacity: 0.2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    color: var(--accent-color);
    border: 4px solid currentColor;
    border-radius: 50%;
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;
}

.request-loader::after {
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.request-loader::before {
    animation-delay: 0.2s;
    animation-duration: 3s;
}


/* ---------------------------- */
/* card Setting       */
/* ---------------------------- */
.card {
    border: none;
    transition: all 0.5s;
    background-color: transparent;
    color: var(--text-color);
    overflow: visible;
}

.card img {
    border-radius: 10px;
}

.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, #A502A8, #2F4A9D)1;
}

.card-customer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    border-top-left-radius: 10px;
    background-color: var(--accent-color);
    gap: 1rem;
    padding: 1rem 3rem;
    position: absolute;
    bottom: 0;
    right: 0;
}

.card-team {
    display: flex;
    flex-direction: column;
    background-color: var(--background-team);
    width: 100%;
    height: 100%;
    margin-top: 15rem;
    transition: all 0.5s ease;
    border-radius: 10px 10px 0 0;
}

.card-team > div:first-child {
    width: 100%;
}

.card-team:hover {
    transform: translateY(-10px);
}

.card-team-detail {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 24px;
    background-color: var(--accent-color);
    border-radius: 10px;
    width: 100%;
    min-height: 50%;
    flex: 1 1 auto;
    align-items: start;
}

#about-team-members,
#team-page-members {
    align-items: stretch;
}

#about-team-members > .col,
#team-page-members > .col {
    display: flex;
}

#about-team-members .card-team,
#team-page-members .card-team {
    width: 100%;
    height: 100% !important;
    margin-top: 0 !important;
    overflow: hidden;
    border-radius: 10px;
}

#about-team-members .card-team > div:first-child,
#team-page-members .card-team > div:first-child {
    width: 100%;
    aspect-ratio: 3 / 4 !important;
    overflow: hidden;
    flex: 0 0 auto;
}

#about-team-members .float-img-team,
#team-page-members .float-img-team,
#about-team-members .team-image-placeholder,
#team-page-members .team-image-placeholder {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 100%;
    margin-top: 0 !important;
    border-radius: 0 !important;
    object-fit: cover !important;
    object-position: center top;
}

#about-team-members .card-team-detail {
    min-height: 160px;
    flex: 1 0 160px;
    justify-content: flex-start;
    gap: 0.75rem;
    border-radius: 10px;
    margin-top: -12px;
    padding-top: 36px;
    position: relative;
    z-index: 1;
}

#team-page-members .card-team-detail {
    min-height: 160px;
    flex: 1 0 160px;
    justify-content: flex-start;
    gap: 0.75rem;
    border-radius: 10px;
    margin-top: -12px;
    padding-top: 36px;
    position: relative;
    z-index: 1;
}

.card-blog {
    display: flex;
    flex-direction: column;
    color: var(--text-color);
    height: 100%;
    transition: all 0.5s;
}

.card-blog img {
    border-radius: 10px 10px 0 0;
}

.card-blog-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: start;
    color: var(--text-color);
    background-color: var(--color-2);
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.5s;
}

.card-blog-row:hover {
    background-color: var(--accent-color-4);
    transform: translateY(-5px);
}

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

.card-blog-row:hover .small-text {
    color: var(--accent-color);
}

.card-blog:hover {
    color: var(--accent-color);
    transform: translateY(-10px);
}

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

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

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

.card-blog-detail {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
    background-color: var(--color-2);
    padding: 24px;
    border-radius: 0 0 10px 10px;
    color: var(--text-color);
    transition: all 0.5s;
}

.card-blog:hover .card-blog-detail {
    background-color: var(--accent-color-4);
}

.card-blog-date {
    color: var(--text-color-2);
    margin-top: auto;
}

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

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

.card-service {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: var(--color-2);
    color: var(--text-color);
    border-radius: 10px;
    padding: 24px;
    transition: all 0.5s;
    max-width: 35%;
    position: relative;
    z-index: 2;
    cursor: pointer;
    text-decoration: none;
}

.services-cards-grid>div {
    width: 100%;
    justify-content: center;
}

.services-cards-grid .card-service {
    width: 35%;
    max-width: 35%;
    min-height: 220px;
}

.card-service:hover {
    color: var(--text-color);
    transform: translateY(-10px);
    background-color: var(--accent-color-4);
}

.card-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3rem;
    height: 100%;
    background-color: var(--text-color);
    border-radius: 10px;
    padding: 24px;
}

.legal-page {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

.legal-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(239, 86, 37, 0.16), transparent 24rem),
        radial-gradient(circle at left center, rgba(215, 192, 237, 0.14), transparent 22rem);
    pointer-events: none;
}

.legal-page__header,
.legal-page__card {
    position: relative;
    z-index: 1;
}

.legal-page__header {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 56rem;
    margin-bottom: 2.5rem;
}

.legal-page__eyebrow {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.legal-page__title {
    margin: 0;
    font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
}

.legal-page__subtitle {
    max-width: 44rem;
    margin: 0;
    color: var(--color-3);
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-page__card {
    padding: clamp(1.5rem, 3vw, 3rem);
    border: 1px solid rgba(245, 245, 245, 0.1);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.94), rgba(10, 10, 10, 0.98));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.legal-page__meta {
    margin: 0 0 2rem;
    color: var(--text-color-2);
    font-size: 0.95rem;
}

.legal-page__section + .legal-page__section {
    margin-top: 2rem;
}

.legal-page__section h3 {
    margin-bottom: 0.9rem;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.05;
}

.legal-page__section p,
.legal-page__section li {
    color: var(--text-color);
    line-height: 1.75;
}

.legal-page__section ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 1rem 0 0;
}

.legal-page__section a {
    color: var(--accent-color-3);
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.footer-legal-links {
    flex-wrap: wrap;
    color: var(--color-3);
}

.footer-legal-link {
    color: var(--color-3) !important;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal-links .text-color-2,
footer .d-flex.flex-row.align-items-center.justify-content-between > p.text-color-2 {
    color: var(--color-3) !important;
}

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

.class-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.class-card {
    background-color: var(--background-color);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Hide all by default */
}

.class-card:hover {
    transform: translateY(-10px);
    transition: all 0.5s;
}

.class-card.active {
    display: block;
    /* Show active cards */
}

.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: #ff3b3b;
    font-weight: bold;
    margin-top: 10px;
    text-align: left;
    display: inline-block;
}

.navigation {
    display: grid;
    grid-template-columns: 3fr 2fr 0.5fr;
    align-items: center;
    color: var(--text-color-2);
    transition: all 0.5s;
    border-radius: 8px;
    padding-inline: 24px;
    text-decoration: none;
}

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

.navigation .navigation-arrow {
    background-color: var(--secondary);
    width: 64px;
    height: 64px;
    border-radius: 10px;
    color: var(--text-color-2);
    padding: 10px;
    transition: all 0.5s;
    font-size: 44px;
    display: flex;
    align-items: center;
    justify-self: end;
}

.navigation:hover .navigation-arrow {
    color: var(--color-4);
    background-color: var(--accent-color);
    margin: 0px 8px;
    transition: all 0.5s;
}

.navigation:hover h4 {
    margin: 0px 8px;
    transition: all 0.5s;
}

.navigation img {
    opacity: 0;
    margin-block: -3rem;
    justify-self: center;
    transition: all 1s;
    transform: scale(1);
    position: relative;
    z-index: 9999;
    box-shadow: 6px 6px 0px 0px var(--accent-color);
    aspect-ratio: 1/1;
    width: 50%;
    transform: rotate(3deg);
    border-radius: 8px;
}

.navigation:hover img {
    opacity: 1;
}

.home-services-list .navigation h4 {
    margin: 0;
    max-width: none;
    white-space: nowrap;
    font-size: clamp(1.8rem, 2.7vw, 2.5rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
}

.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);
}

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

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

.card-service-detail {
    background-color: var(--accent-color-4);
    display: flex;
    flex-direction: column;
    padding: 41px 27px;
    border-radius: 50px;
    gap: 12px;
}

.service-detail-media-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.service-detail-need-title {
    font-size: clamp(1.75rem, 2.5vw, 2.6rem);
    line-height: 1.08;
    font-weight: 700;
    margin: 0;
}

.bg-image-services-details + .section .col.col-xl-7.mb-3 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: clamp(1.25rem, 2.4vw, 2rem);
    border-radius: 32px;
    background: #FFFFFF;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.bg-image-services-details + .section .col.col-xl-7.mb-3 h4,
.bg-image-services-details + .section .col.col-xl-7.mb-3 h5,
.bg-image-services-details + .section .col.col-xl-7.mb-3 p,
.bg-image-services-details + .section .col.col-xl-7.mb-3 li,
.bg-image-services-details + .section .col.col-xl-7.mb-3 .small-text,
.bg-image-services-details + .section .col.col-xl-7.mb-3 .social-icons a,
.bg-image-services-details + .section .col.col-xl-7.mb-3 .social-icons i {
    color: #141414;
}

.bg-image-services-details + .section .col.col-xl-7.mb-3 .text-color-2 {
    border-color: rgba(20, 20, 20, 0.14) !important;
    opacity: 1;
}

.bg-image-services-details + .section .col.col-xl-7.mb-3 .service-detail-media-image {
    border-radius: 22px;
}

.bg-image-services-details + .section .service-social-row p {
    margin: 0;
    font-weight: 700;
}

.bg-image-services-details + .section .service-social-row .social-icons a {
    border: 0;
    background: transparent;
    color: #141414;
}

.bg-image-services-details + .section .service-social-row .social-icons a i {
    color: inherit;
}

.bg-image-services-details + .section .service-social-row .social-icons a:hover,
.bg-image-services-details + .section .service-social-row .social-icons a:focus-visible {
    border-color: transparent;
    background: transparent;
    color: #141414;
}

.bg-image-services-details + .section .service-social-row .social-icons a:hover i,
.bg-image-services-details + .section .service-social-row .social-icons a:focus-visible i {
    color: #141414;
}

.bg-image-services-details + .section .col.col-xl-7.mb-3 > .d-flex.flex-column.gap-3 > p {
    margin-bottom: 0.9rem;
}

.bg-image-services-details + .section .col.col-xl-7.mb-3 > .d-flex.flex-column.gap-3 > p.fst-italic {
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}

.bg-image-services-details + .section .col.col-xl-7.mb-3 > .d-flex.flex-column.gap-3 > hr.text-color-2 {
    margin: 0.55rem 0 0.75rem;
}

.bg-image-services-details + .section .col.col-xl-7.mb-3 > .d-flex.flex-column.gap-3 > h5:not(.service-detail-need-title) {
    margin-top: 0.1rem;
}

.service-sidebar-card {
    padding: clamp(1.5rem, 2.4vw, 2rem);
    border-radius: 32px;
}

.service-sidebar-card--other {
    background: #d7c0ed;
    color: #141414;
}

.service-sidebar-card--other h4,
.service-sidebar-card--other p,
.service-sidebar-card--other a,
.service-sidebar-card--other i,
.service-sidebar-card--other .button {
    color: #141414 !important;
}

.service-sidebar-card--other .category {
    padding: 0.1rem 0;
}

.service-sidebar-card--other .category:hover,
.service-sidebar-card--other .category:hover a,
.service-sidebar-card--other .category:hover i {
    color: #141414 !important;
}

.service-sidebar-card--help {
    background: #ef5625;
    color: #141414;
}

.service-sidebar-card--help h4,
.service-sidebar-card--help p {
    color: #141414 !important;
}

.service-sidebar-card--help .btn.btn-accent {
    border-color: #141414;
    background: #141414;
    color: #ffffff;
}

.service-sidebar-card--help .btn.btn-accent span,
.service-sidebar-card--help .btn.btn-accent i {
    color: #ffffff !important;
}

.service-sidebar-card--help .btn.btn-accent::before {
    background-color: #141414;
}

.service-sidebar-card--help .btn.btn-accent:hover,
.service-sidebar-card--help .btn.btn-accent:focus-visible,
.service-sidebar-card--help .btn.btn-accent:active {
    border-color: #141414;
    background: #141414;
    color: #ffffff;
    box-shadow: none;
}

.service-sidebar-card--help .btn.btn-accent:hover::before,
.service-sidebar-card--help .btn.btn-accent:focus-visible::before,
.service-sidebar-card--help .btn.btn-accent:active::before {
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    .bg-image-services-details + .section .col.col-xl-7.mb-3 > .d-flex.flex-column.gap-3 > p {
        margin-bottom: 0.7rem;
    }

    .bg-image-services-details + .section .col.col-xl-7.mb-3 > .d-flex.flex-column.gap-3 > p.fst-italic {
        margin-top: 0.15rem;
        margin-bottom: 1rem;
    }

    .bg-image-services-details + .section .col.col-xl-7.mb-3 > .d-flex.flex-column.gap-3 > hr.text-color-2 {
        margin: 0.3rem 0 0.55rem;
    }

    .bg-image-services-details + .section .col.col-xl-7.mb-3 > .d-flex.flex-column.gap-3 > h4 + hr.text-color-2 {
        margin-top: -0.2rem;
    }

    .bg-image-services-details + .section .col.col-xl-7.mb-3 > .d-flex.flex-column.gap-3 > h5:not(.service-detail-need-title) {
        margin-top: 0;
    }

    .service-detail-need-title {
        font-size: 22px;
        line-height: 1.12;
    }

    .service-detail-need-title + p + hr + h5,
    .service-detail-need-title + p + p + hr + h5,
    .service-detail-need-title + p + p + p + hr + h5 {
        font-size: 22px;
        line-height: 1.12;
    }

    .service-sidebar-card {
        border-radius: 26px;
        padding: 1.4rem;
    }
}

.card-detail {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid var(--accent-color-9);
    justify-content: space-between;
    transition: all 0.5s;
    padding-bottom: 5px;
}

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

.card-testimonial {
    border: none;
    border-radius: 20px;
    transition: all 0.5s;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.card-testimonial hr {
    border: none;
    height: 3px;
    background-color: var(--text-color);
    opacity: 1;
}

.card-name-testi {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: .5rem;
}

.card-testimonial:hover .border-up {
    background-color: var(--accent-color);
}

.card-testimonial:hover i {
    color: var(--accent-color);
}

.card-testimonial:hover h5 {
    color: var(--accent-color);
}

.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:hover {
    transform: translateY(-5px);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.card-pricing {
    position: relative;
    color: var(--black);
    border-radius: 10px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    transition: all 0.5s;
    border: 1px solid var(--text-color-2);
    gap: 2rem;
}

.card-pricing:hover {
    transform: translateY(-20px);
    color: var(--black);
}

.card-pricing .custom-border {
    border-bottom: 2px solid var(--accent-color-8);
}

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

.card-pricing-detail {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
}

.card-pricing-detail i {
    color: var(--background-color);
    background-color: var(--accent-color);
    border-radius: 100px;
    padding: 5px;
    font-weight: bold;
    font-size: medium;
}

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

.card.card-pricing span,
.card.card-pricing i {
    color: var(--black);
}

.card.card-pricing:hover .btn-accent {
    background-color: var(--black);
    color: var(--yellow);
}

.card.card-pricing:hover .btn-accent span,
.card.card-pricing:hover .btn-accent i {
    color: var(--yellow);
}

.card.card-pricing .custom-border-4 {
    border-bottom: 1px solid var(--accent-grey-2);
}

.card.card-pricing:hover .custom-border-4 {
    border-bottom: 1px solid var(--accent-yellow);
}

.card.card-pricing-hover {
    color: var(--text-color);
    border: 1px solid #01c7f349;
    border-radius: 20px;
    background: linear-gradient(140.72deg, rgba(30, 30, 30, 0.7) -67.01%, rgba(5, 5, 5, 0.7) 100.85%);
    backdrop-filter: blur(12.4px);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

/* Ribbon */
.ribbon {
    width: 120px;
    height: 120px;
    overflow: hidden;
    position: absolute;
    top: 0px;
    right: 0px;
}

.ribbon span {
    position: absolute;
    font-family: var(--font-1);
    display: block;
    width: 110px;
    padding: 4px 0;
    background-color: #c6f70f;
    /* Warna hijau neon */
    color: var(--accent-color-4);
    text-align: center;
    transform: rotate(47deg);
    top: 14px;
    right: -30px;
    font-size: 16px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}


.box-price {
    border: 1px solid;
    border-image: linear-gradient(210deg, #00000045, #01c7f349) 1;
    box-shadow:
        0 7px 15px 0 rgba(0, 0, 0, 0.13),
        0 1px 4px 0 rgba(0, 0, 0, 0.11);
    border-radius: 10px;
    background: linear-gradient(140.72deg, rgba(30, 30, 30, 0.7) -67.01%, rgba(5, 5, 5, 0.7) 100.85%);
    backdrop-filter: blur(12.4px);
}

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

.card.card-pricing-hover:hover {
    border: 1px solid var(--accent-color-2);
    background: linear-gradient(180deg, #01C7F3 -81.79%, #111111 100%);

    transform: scale(1.05);
}

.card-pricing-hover-middle {
    transform: scale(1.04);
    flex: 1.00;
    box-shadow: 0px 0px 0px 2px var(--accent-color);
    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: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 {
    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;
}

.testimonial-container {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    border: 1px solid transparent;
    color: var(--text-color-2);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.testimonial-container:hover {
    box-shadow: none;
    transition: all 0.5s;
    backdrop-filter: blur(12.4px);
}

.testimonial-container:hover .team-name {
    color: var(--accent-color);
}

.testimonial-container .icon-hover {
    color: var(--accent-color-3);
    font-size: 84px;
    transition: all 0.5s;
}

.testimonial-container:hover .icon-hover {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--accent-color-2);
    font-size: 37px;
    margin-top: 1rem;
    margin-right: 2rem;
}

.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);
}

.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-team {
    display: none;
    height: 100%;
    align-self: stretch;
}

#about-team-members > .col {
    display: flex;
}

#team-page-members.class-container,
#about-team-members.class-container {
    align-items: stretch;
}

#team-page-members .card-team-detail > .d-flex,
#about-team-members .card-team-detail > .d-flex {
    width: 100%;
}

.class-team.active {
    display: flex;
}

.class-card:hover {
    transform: translateY(-10px);
    transition: all 0.5s;
}

.class-card.active {
    display: block;
    /* Show active cards */
}

.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: #ff3b3b;
    font-weight: bold;
    margin-top: 10px;
    text-align: left;
    display: inline-block;
}

/* Tab Navigation */
.tab-container.allteam {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 20px 0;
    font-family: var(--font-2);
}

.tab-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    font-family: var(--font-1);
}

.tab-container.team {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    width: 100%;
    align-items: center;
}

.tab-container.faq {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    width: 100%;
}


.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;

}

.tabs .card-overlay img {
    padding-left: 0;
    transition: all 0.5s;
}

.class-card .card-overlay img {
    padding-left: 0;
    transition: all 0.5s;
}

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

}

.tabs.faq {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 30px;
    background-color: var(--background-color);
    border: 1px solid var(--accent-color-3);
    height: max-content;
}

.tabs.team {
    display: flex;
    flex-direction: row;
    gap: 1rem;

}

.tabs.faq .tab {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: row;
    padding: 16px 24px;
    gap: 1rem;
    justify-content: space-between;
    cursor: pointer;
    color: var(--text-color);
    transition: background 0.5s ease-in-out;
    border-right: none;
}

.tabs.team .tab {
    flex: 1;
    text-align: left;
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color-2);
    transition: background 0.5s ease-in-out;
    border-right: none
}

.tabs.studio .tab {
    flex: 1;
    text-align: left;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color-2);
    transition: background 0.5s ease-in-out;
    border-right: none
}

.tab {
    padding: 8px 24px;
    color: var(--text-color);
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    border: 1px solid var(--text-color);
}

.tab-container.allteam .tab {
    flex: 1;
    text-align: center;
    cursor: pointer;
    color: var(--text-color);
    transition: background 0.5s ease-in-out;
    border-right: none;
    padding-block: 10px;
}

.tab-container.allteam .tab.active {
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
}

.tab.active {
    color: var(--background-color);
    background-color: var(--accent-color);
    border: none;
}

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

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

.tabs.studio .tab.active {
    color: var(--primary);
    background: var(--accent-color)
}

.tabs.faq .tab.active {
    color: var(--primary);
    background: var(--accent-color)
}

.tab-content.studio {
    position: relative;
    bottom: unset;
    left: unset;
    max-width: unset;
    background: var(--primary);
    padding: 40px;
    text-align: left;
}

.tab-content.faq {
    position: relative;
    bottom: unset;
    left: unset;
    max-width: unset;
    background: var(--accent-color-3);
    padding: 40px;
    text-align: left;
}

.tab-content.team {
    position: relative;
    bottom: unset;
    left: unset;
    max-width: unset;
    background: var(--primary);
    text-align: left;
}

.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 */
}

/* ---------------------------- */
/* Progress and Rating       */
/* ---------------------------- */
.r-progress {
    --value: 17;
    --progress-color: var(--text-color);
    --secondary-progress-color: var(--accent-color-2);
    --animation-duration: 2000;
}

.r-progress-bar {
    position: relative;
    height: 8px;
    background-color: var(--text-color);
    display: flex;
    /* overflow: hidden; */
}

.r-progress-bar .progress-value {
    height: 100%;
    width: calc(var(--progress) * 1%);
    background-color: var(--accent-color);
    position: relative;
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: black;
}

.r-progress-bar.percentage-label::after {
    counter-reset: percentage var(--progress);
    content: counter(percentage) '%';
    display: block;
    position: absolute;
    left: calc((var(--progress) * 1%));
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    font-size: 18px;
    line-height: 1.2;
    /* font-weight: 700; */
    font-family: var(--font-1);
    bottom: calc(100% + 0.5rem);
    transform: translateX(-50%);
}

.rating {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
}

.rating li {
    color: #f1c644;
}

.rating li.inactive {
    color: #d9d9d9;
}

.glass-effect {
    background: var(--background-color);
    opacity: 0.9;
}

.glass-effect::before {
    content: "";
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}

#player-container {
    width: 100%;
    height: 100%;
    margin-top: 5rem;
}

#player-bg-artwork {
    position: fixed;
    top: -30px;
    right: -30px;
    bottom: -30px;
    left: -30px;
    background-image: url("https://raw.githubusercontent.com/himalayasingh/music-player-1/master/img/_1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    filter: blur(40px);
    -webkit-filter: blur(40px);
    z-index: 1;
}

#player-bg-layer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.5;
    z-index: 2;
}

#player {
    position: relative;
    height: 100%;
    z-index: 3;
}

#player-track {
    width: auto;
    flex: 1 1 0px;
    height: 100%;
    padding: 13px 10px 10px 13px;
    border-radius: 15px 15px 0 0;
    transition: 0.3s ease top;
    z-index: 1;
}

#album-name {
    color: var(--text-color);
    font-size: 17px;
    font-weight: bold;
}

#track-name {
    color: var(--accent-color);
    font-size: 13px;
    margin: 2px 0 13px 0;
}

#track-time {
    height: 12px;
    margin-bottom: 3px;
    overflow: hidden;
}

#current-time {
    float: left;
}

#track-length {
    float: right;
}

#current-time,
#track-length {
    color: var(--text-color);
    font-size: 11px;
    border-radius: 10px;
    transition: 0.3s ease all;
}

#track-time.active #current-time,
#track-time.active #track-length {
    color: var(--text-color);
    background-color: transparent;
}

#seek-bar-container,
#seek-bar {
    position: relative;
    height: 4px;
    border-radius: 4px;
}

#seek-bar-container {
    background-color: var(--text-color);
    cursor: pointer;
}

#seek-time {
    position: absolute;
    top: -29px;
    color: #fff;
    font-size: 12px;
    white-space: pre;
    padding: 5px 6px;
    border-radius: 4px;
    display: none;
}

#s-hover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    opacity: 0.2;
    z-index: 2;
}

#seek-time,
#s-hover {
    background-color: #3b3d50;
}

#seek-bar {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: var(--accent-color);
    transition: 0.2s ease width;
    z-index: 1;
}

#player-content {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
    padding: 16px;
    width: 100%;
    background: rgba(24, 21, 24, 0.3);
    backdrop-filter: blur(17.5px);

}

#album-art {
    width: 115px;
    height: 115px;
    transform: rotateZ(0);
    transition: 0.3s ease all;
    border-radius: 50%;
    overflow: hidden;
}

#album-art.active {
    top: -60px;
    box-shadow: 0 0 0 4px #fff7f7, 0 30px 50px -15px #afb7c1;
}

#album-art:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 20px;
    height: 20px;
    margin: -10px auto 0 auto;
    background-color: var(--accent-color-3);
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px #fff;
    z-index: 2;
}

#album-art img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
}

#album-art img.active {
    opacity: 1;
    z-index: 1;
}

#album-art.active img.active {
    z-index: 1;
    animation: rotateAlbumArt 3s linear 0s infinite forwards;
}

@keyframes rotateAlbumArt {
    0% {
        transform: rotateZ(0);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

#buffer-box {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 13px;
    color: #1f1f1f;
    font-size: 13px;
    text-align: center;
    font-weight: bold;
    line-height: 1;
    padding: 6px;
    margin: -12px auto 0 auto;
    opacity: 0;
    z-index: 2;
}

#album-art img,
#buffer-box {
    transition: 0.1s linear all;
}

#album-art.buffering img {
    opacity: 0.25;
}

#album-art.buffering img.active {
    opacity: 0.8;
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

#album-art.buffering #buffer-box {
    opacity: 1;
}

#player-controls {
    width: auto;
    display: flex;
    gap: 2rem;
    height: 100%;
    float: right;
    overflow: hidden;
}

.control {
    width: 33.333%;
    float: left;
    padding: 12px 0;
}

.button i {
    display: block;
    color: #d6dee7;
    font-size: 16px;
    text-align: center;
    line-height: 1;
}

.button,
.button i {
    transition: 0.2s ease all;
}

.button:hover i {
    color: var(--background-color);
}

/* ---------------------------- */
/* Accordion                    */
/* ---------------------------- */
.accordion {
    --bs-accordion-bg: transparent;
}

.accordion .accordion-item {
    border: none;
    color: var(--text-color);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion .accordion-button {
    background-color: transparent;
    font-size: 28px;
    font-weight: 700;
    padding-inline: 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: start;
    padding-block: 1.2rem;
    color: var(--text-color);
    border-bottom: solid 1px #EF5625;
    font-family: var(--font-1);
    gap: 1em;
    padding-left: 0;
    padding-right: 0;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 0px;
}

.accordion .accordion-button::after {
    color: #F4E4DF;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23F4E4DF' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed) {
    color: var(--text-color);
    border-bottom: solid 1px #F4E4DF;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23EF5625' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}

.accordion .accordion-body {
    background-color: transparent;
    font-size: 16px;
    color: var(--text-color);
    padding-left: 0;
    padding-right: 0;
}

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

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

    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 14px;
    }

    .seo-h1-like-h2 {
        font-size: 38px;
    }

    .d-mobile-block {
        display: block !important;
    }

    .d-mobile-none {
        display: none !important;
    }

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

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

    .textual-showcase {
        font-size: 40px;
    }

    .cta-text {
        font-size: 40px;
        font-weight: bold;
    }

    .sub-heading {
        font-size: 80px;
        font-style: italic;
    }

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

    #portfolio .row.mt-5 .btn.btn-accent {
        width: auto;
        min-width: clamp(11rem, 52vw, 14rem);
        justify-content: center;
        padding-inline: 1.5rem;
    }

    .btn-play {
        margin-left: 5rem;
    }

    .hero-home__intro {
        font-size: clamp(38px, 9vw, 52px) !important;
        line-height: 1.1;
        margin-bottom: 3rem !important;
    }

    .hero-home__play {
        margin-left: 0;
        margin-bottom: 4rem;
    }

    .hero-home__content-row {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .hero-home__copy {
        max-width: 100%;
        margin: 0;
        font-size: 14px;
        padding-bottom: 0.25rem;
        text-align: left;
    }

    .hero-home__title {
        font-size: clamp(34px, 8vw, 42px);
        text-align: left !important;
    }

    .hero-home__title--lower {
        width: 100%;
        max-width: 100%;
        margin-top: 0.5rem;
    }

    .btn-play.choose-us {
        margin-top: -27rem;
        margin-left: 18rem;
    }

    .sub-heading.choose-us-watermark {
        top: 0.5rem;
        left: 1.5rem;
        font-size: clamp(4rem, 9vw, 5.5rem);
        line-height: 0.86;
    }

    .choose-us-heading {
        max-width: 9ch;
        font-size: clamp(2.8rem, 5vw, 3.6rem);
    }

    .choose-us-copy {
        max-width: 28rem;
    }

    /* ---------------------------- */
    /* Header and Navigation Setting  */
    /* ---------------------------- */
    .logo-container {
        max-width: 200px;
        width: 115px;
    }

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

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

    .offcanvas-fullwidth {
        width: 100vw !important;
        max-width: 100vw;
    }

    /* ---------------------------- */
    /* 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: relative;
        display: flex;
        justify-content: end;
        margin-top: -9rem;
    }

    .floating-image-2 {
        display: none;
    }

    .float-img-team,
    .team-image-placeholder {
        margin-top: -20rem;
    }

    .float-icon {
        margin-right: 5rem;
    }

    .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-top {
        margin-top: 3rem;
    }

    .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;
    }

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

    .floating-bottom-2 {
        position: initial;
        bottom: 0;
        right: 0;
        left: 0;
        margin-top: 1rem;
    }

    .floating-contact {
        margin-left: 0rem;
    }

    .floating-counter {
        position: relative;
        margin-top: -5rem;
        z-index: 9999;
    }

    .floating-blog {
        margin-top: 0;
    }

    .float-container {
        min-height: 0;
    }

    .border-testimonial {
        border-right: none;
    }

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

    .appointment-box {
        top: -2rem;
        bottom: 0;
        left: 0;
        right: 0;
        height: 8rem;
    }

    .w-md-70 {
        width: 70%;
    }

    .w-md-60 {
        width: 60%;
    }

    .position-responsive {
        position: relative;
    }

    .form-appointment-container {
        position: relative;
        transform: translateY(0);
    }

    .input-group {
        max-width: 658px;
        margin: 0 auto;
    }

    .list-flush-horizontal {
        flex-direction: column;
    }

    .list-flush-horizontal .list-item:first-child,
    .list-flush-horizontal .list-item {
        border-right: none;
        border-bottom: 1px solid white;
    }

    .list-flush-horizontal .list-item:last-child {
        border-left: none;
        border-bottom: none;
        border-top: 1px solid white;
    }

    .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(4, 1fr);
        justify-content: center;
        align-items: center;
    }

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

    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;
    }

    .float-button {
        margin-top: 3rem;
    }

    .float-img {
        position: absolute;
        bottom: 0rem;
        right: 12rem;
    }

    .float-img-3 {
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .float-team {
        position: absolute;
        bottom: 0;
        left: 11.5rem;
    }

    .float-bg-image {
        margin-top: -3rem;
    }

    .float-number {
        margin-left: 15rem;
    }

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

    .swiperImage {
        padding-bottom: 0;
    }

    .service-scroll {
        padding-right: 1rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        visibility: hidden;
        display: none;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        visibility: hidden;
        display: none;
    }

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

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

    .line {
        display: none;
    }

    .bg-image {
        background:
            /* url(../image/img\ 1.png) no-repeat 70% 28%, */
            url(../image/icon\ 1.png) no-repeat 0% 8%,
            url(../image/Image\ Background.png) no-repeat center;
    }

    .bg-image-about {
        background: url(../image/icon\ 1.png) no-repeat 106% 11%, url(../image/Image\ Background.png) no-repeat center 0%;
        background-size:
            207px auto,
            1920px 1280px;
    }

    .bg-image-services {
        --hero-photo: url(../image/services\ 1.jpg);
    }

    .bg-image-services-details {
        background: var(--service-detail-photo, url(../image/dummy-img-1920x1280.jpg)) no-repeat 27% 35%, url(../image/icon\ 1.png) no-repeat 106% 11%, url(../image/Image\ Background.png) no-repeat center 0%;
        background-size:
            320px auto,
            207px auto,
            1920px 1280px;
    }

    .bg-image-portofolio {
        --hero-photo: url(../image/portfolio\ 1.jpg);
    }

    .bg-image-portofolio-details {
        background: url(../image/dummy-img-1920x1280.jpg) no-repeat 27% 35%, url(../image/icon\ 1.png) no-repeat 106% 11%, url(../image/Image\ Background.png) no-repeat center 0%;
        background-size:
            384px auto,
            207px auto,
            1920px 1280px;
    }

    .bg-image-team {
        --hero-photo: url(../image/team\ 1.jpg);
    }

    .bg-image-pricing {
        background: url(../image/dummy-img-1920x1280.jpg) no-repeat 27% 35%, url(../image/icon\ 1.png) no-repeat 106% 11%, url(../image/Image\ Background.png) no-repeat center 0%;
        background-size:
            384px auto,
            207px auto,
            1920px 1280px;
    }

    .bg-image-faqs {
        background: url(../image/dummy-img-1920x1280.jpg) no-repeat 27% 35%, url(../image/icon\ 1.png) no-repeat 106% 11%, url(../image/Image\ Background.png) no-repeat center 0%;
        background-size:
            384px auto,
            207px auto,
            1920px 1280px;
    }

    .bg-image-blog {
        --hero-photo: url(../image/blog\ 1.jpg);
    }

    .bg-image-single-post {
        background: url(../image/dummy-img-1920x1280.jpg) no-repeat 27% 35%, url(../image/icon\ 1.png) no-repeat 106% 11%, url(../image/Image\ Background.png) no-repeat center 0%;
        background-size:
            384px auto,
            207px auto,
            1920px 1280px;
    }

    .bg-image-contact {
        --hero-photo: url(../image/contact\ 1.jpg);
    }

    .bg-image-services,
    .bg-image-portofolio,
    .bg-image-team,
    .bg-image-blog,
    .bg-image-contact {
        --hero-photo-position: 27% 35%;
        --hero-photo-size: 384px auto;
        background: url(../image/icon\ 1.png) no-repeat 106% 11%, url(../image/Image\ Background.png) no-repeat center 0%;
        background-size:
            207px auto,
            1920px 1280px;
    }

    .bg-image-contact {
        background-position: 106% 15%, center 0%;
    }

    .social-wrapper {
        flex-direction: row;
        margin: 1.25rem 0 0.75rem;
        gap: 0.6rem;
    }

    .follow-text {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
        letter-spacing: 3px;
        font-size: 14px;
        font-weight: 500;
        color: #a5a5a5;
        margin: 0;
    }

    .social-icons {
        display: flex;
        flex-direction: row;
        gap: 12px;
        margin-top: 0;
    }

    .hr-custom {
        margin-top: 0;
    }

    .card-team {
        align-items: center;
        margin-top: 27rem;
    }

    .card-team-detail {
        align-items: center;
        min-height: 30%;
    }

    .card-service {
        max-width: none;
        gap: 1rem;
        padding: 20px;
    }

    .services-cards-grid .card-service {
        width: 100%;
        max-width: none;
        min-height: auto;
    }

    .home-services-list .navigation {
        grid-template-columns: minmax(0, 1fr) 56px;
        gap: 1rem;
        padding-inline: 0;
        align-items: center;
    }

    .home-services-list .navigation h4 {
        white-space: normal;
        font-size: clamp(2.1rem, 6vw, 3rem);
        line-height: 0.95;
        max-width: 11ch;
        text-wrap: balance;
    }

    .home-services-list .navigation img {
        display: none;
    }

    .home-services-list .navigation .navigation-arrow {
        width: 56px;
        height: 56px;
        font-size: 38px;
        justify-self: end;
    }
}

@media only screen and (max-width:599px) {
    .home-textual-showcase__row--first.scrollanimation {
        animation-delay: 0.06s !important;
        animation-duration: 0.74s !important;
    }

    .home-textual-showcase__row--second.scrollanimation {
        animation-delay: 0.22s !important;
        animation-duration: 0.74s !important;
    }

    .home-textual-showcase__row--third.scrollanimation {
        animation-delay: 0.38s !important;
        animation-duration: 0.74s !important;
    }

    .home-textual-showcase__row--fourth.scrollanimation {
        animation-delay: 0.54s !important;
        animation-duration: 0.74s !important;
    }

    .home-textual-showcase-section {
        padding-top: 2.75rem;
        padding-bottom: 3.4rem;
    }

    .home-textual-showcase {
        align-items: stretch !important;
        gap: 1rem !important;
    }

    .home-textual-showcase__row {
        display: grid !important;
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center !important;
        gap: 0.7rem !important;
    }

    .home-textual-showcase__text {
        width: 100%;
        max-width: 100%;
        font-size: clamp(1.72rem, 8.8vw, 2.2rem);
        line-height: 0.96;
        letter-spacing: -0.05em;
        text-align: center;
    }

    .home-textual-showcase__image {
        display: none !important;
        width: min(100%, 15rem) !important;
        height: auto !important;
        max-height: none;
        object-fit: cover;
    }

    .home-textual-showcase__image--top {
        width: min(100%, 11.5rem) !important;
        aspect-ratio: 9 / 3;
    }

    .home-textual-showcase__image--middle {
        width: min(100%, 17rem) !important;
        aspect-ratio: 16 / 3;
    }

    .home-textual-showcase__image--bottom {
        width: min(100%, 12.5rem) !important;
        aspect-ratio: 9 / 2.2;
    }

    .home-textual-showcase__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 4rem;
        height: 2.8rem;
        border-radius: 999px;
        background: var(--accent-color-3);
        font-size: 1.5rem;
    }

    .home-textual-showcase__dash {
        display: none;
    }

    .home-textual-showcase__boxed {
        width: auto;
        max-width: none;
        padding: 0.32rem 0.55rem !important;
        border-width: 2px !important;
    }

    .home-textual-showcase__row--second,
    .home-textual-showcase__row--third {
        gap: 0.65rem !important;
    }

    .home-textual-showcase__row--third {
        margin-top: 0.25rem;
    }

    .home-textual-showcase__row--fourth {
        margin-top: 0.35rem;
        gap: 0.55rem !important;
    }

    .services-detail-smm .services-detail-hero {
        gap: 1.5rem !important;
    }

    .services-detail-smm .services-detail-hero-title {
        max-width: 8.2ch;
        font-size: clamp(2.2rem, 9.2vw, 2.9rem) !important;
        line-height: 0.92;
        letter-spacing: -0.06em;
    }

    .services-detail-smm .services-detail-hero-row {
        margin-top: 0.35rem;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 1rem !important;
    }

    .services-detail-smm .services-detail-hero-row > img {
        width: 180px;
        max-width: 52vw;
        margin-top: 0.25rem !important;
        margin-left: 0 !important;
    }

    .services-detail-smm .services-detail-hero-subtitle {
        max-width: 5.2ch;
        margin: 0 0 0 auto;
        font-size: clamp(1.85rem, 7.6vw, 2.35rem) !important;
        line-height: 0.94;
        letter-spacing: -0.05em;
    }

    .services-detail-smm .btn-play {
        margin-left: 0;
        margin-right: auto;
    }

    .bg-image-services-details.services-detail-paid-ads,
    .bg-image-services-details.services-detail-marketing,
    .bg-image-services-details.services-detail-branding,
    .bg-image-services-details.services-detail-website,
    .bg-image-services-details.services-detail-seo,
    .bg-image-services-details.services-detail-email {
        background-position:
            96% 24%,
            center 0% !important;
        background-size:
            112px auto,
            cover !important;
    }

    .home-services__intro-image {
        display: none !important;
    }

    .hero-home__container {
        min-height: auto !important;
        padding-top: 5.75rem;
        padding-bottom: 2.75rem;
        align-items: flex-start !important;
    }

    .hero-home__layout {
        width: 100%;
        margin-top: 0 !important;
        row-gap: 1.15rem;
    }

    .hero-home__main {
        margin-bottom: 0 !important;
    }

    .hero-home__heading-row,
    .hero-home__body-row {
        row-gap: 0;
    }

    .hero-home__heading-row {
        position: relative;
        min-height: 11.1rem;
        align-content: start;
    }

    .hero-home__intro-col,
    .hero-home__float-col,
    .hero-home__play-col,
    .hero-home__content-col {
        margin-bottom: 0 !important;
    }

    .hero-home__intro {
        max-width: 7.1ch;
        font-size: clamp(2.15rem, 9.1vw, 2.7rem) !important;
        line-height: 1;
        letter-spacing: -0.06em;
        text-wrap: balance;
        margin-bottom: 0 !important;
        margin-left: auto;
        text-align: right !important;
        transform: translateY(0);
        text-shadow: 0 5px 22px rgba(2, 2, 2, 0.42);
        position: relative;
        z-index: 2;
        margin-top: 0.75rem;
    }

    .hero-home__float-col {
        display: none !important;
    }

    .float-icon {
        display: none !important;
    }

    .hero-home__float-col .float-icon img {
        display: none !important;
    }

    .hero-home__body-row {
        margin-top: 0.55rem;
    }

    .hero-home__play-col {
        display: flex;
        justify-content: flex-start;
        margin-top: -2.9rem;
    }

    .hero-home__play {
        width: 116px;
        height: 116px;
        margin: 0 0 0 0.2rem;
    }

    .hero-home__play .btn-play__text > span {
        inset: -7px;
        font-size: 12px;
    }

    .hero-home__play .btn-play__circle {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }

    .hero-home__content-row {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 1.15rem;
        margin-top: 2.4rem;
    }

    .hero-home__title {
        max-width: 9.7ch;
        font-size: clamp(1.48rem, 6.9vw, 1.72rem);
        line-height: 0.98;
        letter-spacing: -0.06em;
        margin-left: 0;
        text-align: left !important;
        margin-top: 0.2rem;
    }

    .hero-home__title--lower {
        width: 100%;
        max-width: 8.8ch;
        margin-top: 0;
        margin-bottom: 0.25rem;
    }

    .hero-home__copy {
        max-width: 14rem;
        margin: 0;
        font-size: 0.84rem;
        line-height: 1.42;
        text-align: left;
        text-wrap: balance;
    }

    .hero-home__social-col {
        display: none;
    }

    .bg-image {
        background:
            /* url(../image/img\ 1.png) no-repeat 71% 27%, */
            url(../image/icon\ 1.png) no-repeat 6.5% calc(11.5% + 50px),
            url(../image/Image\ Background.png) no-repeat center;
        background-size:
            /* 250px auto, */
            124px auto,
            cover;
    }

    .marquee-container,
    .marquee-container.first,
    .marquee-container.reverse,
    .marquee-container.third {
        display: none !important;
    }

    .bg-image-about {
        background: url(../image/icon\ 1.png) no-repeat 88% calc(6% + 50px), url(../image/Image\ Background.png) no-repeat center 0%;
        background-size:
            150px auto,
            cover;
    }

    .about-page-hero__container {
        padding-top: 5.85rem;
        padding-bottom: 2.4rem;
    }

    .about-page-hero__grid {
        --bs-gutter-y: 1rem;
        margin-top: 0 !important;
    }

    .about-page-hero__content {
        gap: 1.8rem !important;
    }

    .about-page-hero__title {
        max-width: 6.5ch;
        padding-left: 0;
        margin: 0;
        font-size: clamp(2.35rem, 11vw, 3rem);
        line-height: 0.92;
        letter-spacing: -0.05em;
        text-shadow: 0 8px 20px rgba(13, 13, 13, 0.2);
    }

    .about-page-hero__label-row {
        flex-direction: column-reverse;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 1rem !important;
    }

    .about-page-hero__accent {
        display: none !important;
    }

    .about-page-hero__label {
        width: 100%;
        max-width: 100%;
        margin: 0 !important;
        font-size: clamp(1.85rem, 8.9vw, 2.45rem);
        line-height: 0.95;
        letter-spacing: -0.04em;
        text-align: left !important;
        text-shadow: 0 10px 22px rgba(13, 13, 13, 0.22);
    }

    .about-page-hero__play {
        margin: 0.2rem auto 0 !important;
        width: 112px;
        height: 112px;
    }

    .about-page-hero__play .btn-play__text > span {
        inset: -8px;
        font-size: 12px;
    }

    .about-page-hero__play .btn-play__circle {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }

    .about-page-hero__social-col {
        display: none;
    }

    .bg-image-team {
        --hero-photo-size: 0 !important;
        background: url(../image/icon\ 1.png) no-repeat right 50px top calc(50px + 1.1rem), url(../image/Image\ Background.png) no-repeat center 0%;
        background-size:
            132px auto,
            cover;
    }

    .bg-image-team::before {
        display: none;
    }

    .team-page-hero__container {
        padding-top: 5.85rem;
        padding-bottom: 2.6rem;
    }

    .team-page-hero__grid {
        --bs-gutter-y: 1rem;
        margin-top: 0 !important;
    }

    .team-page-hero__content {
        gap: 1.75rem !important;
    }

    .team-page-hero__title {
        max-width: 6.5ch;
        margin: 0;
        font-size: clamp(2.35rem, 11vw, 3rem);
        line-height: 0.92;
        letter-spacing: -0.05em;
        text-shadow: 0 8px 20px rgba(13, 13, 13, 0.2);
    }

    .team-page-hero__label-row {
        flex-direction: column-reverse;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0.95rem !important;
    }

    .team-page-hero__accent {
        display: none !important;
    }

    .team-page-hero__label {
        width: 100%;
        max-width: 100%;
        margin: 0 !important;
        font-size: clamp(1.7rem, 7.9vw, 2.2rem);
        line-height: 0.95;
        letter-spacing: -0.04em;
        text-align: left !important;
        text-wrap: balance;
        text-shadow: 0 10px 22px rgba(13, 13, 13, 0.22);
    }

    .team-page-hero__play {
        margin: 0.15rem auto 0 !important;
        width: 112px;
        height: 112px;
    }

    .team-page-hero__play .btn-play__text > span {
        inset: -8px;
        font-size: 12px;
    }

    .team-page-hero__play .btn-play__circle {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }

    .team-page-hero__social-col,
    .team-page-hero .social-wrapper,
    .team-page-hero .marquee-container,
    .team-page-hero .marquee-container.first,
    .team-page-hero .marquee-container.reverse,
    .team-page-hero .marquee-container.third {
        display: none !important;
    }

    .team-page-layout {
        gap: 2rem !important;
    }

    .team-page-heading {
        width: 100%;
        align-items: flex-start !important;
        gap: 0.8rem !important;
    }

    .team-page-heading .border-bottom {
        margin-bottom: 0 !important;
        width: 4.5rem !important;
    }

    .team-page-heading__title {
        width: 100%;
        max-width: 100% !important;
        margin: 0;
        font-size: clamp(1.95rem, 8.4vw, 2.35rem);
        line-height: 0.98;
        letter-spacing: -0.04em;
        text-align: left !important;
        text-wrap: balance;
    }

    #team-page-members {
        width: 100%;
        gap: 1rem;
    }

    #team-page-members.class-container {
        grid-template-columns: 1fr;
    }

    #team-page-members .class-team {
        display: flex;
    }

    #team-page-members .card-team > div:first-child {
        aspect-ratio: 3 / 3.45 !important;
    }

    #team-page-members .card-team-detail {
        min-height: auto;
        flex-basis: auto;
        padding: 20px 18px 18px;
        gap: 0.35rem;
        margin-top: -10px;
    }

    #team-page-members .card-team-detail h5 {
        margin: 0;
        font-size: 1.08rem;
        line-height: 1.08;
    }

    #team-page-members .card-team-detail .small-text {
        font-size: 0.9rem;
        line-height: 1.22;
    }


    .bg-image-services {
        --hero-photo: url(../image/services\ 1.jpg);
    }

    .bg-image-services-details {
        background: var(--service-detail-photo, url(../image/dummy-img-1920x1280.jpg)) no-repeat 27% 35%, url(../image/icon\ 1.png) no-repeat 10% 11%, url(../image/Image\ Background.png) no-repeat center 0%;
        background-size:
            220px auto,
            150px auto,
            cover;
    }

    .bg-image-portofolio {
        --hero-photo: url(../image/portfolio\ 1.jpg);
    }

    .bg-image-portofolio-details {
        background: url(../image/dummy-img-1920x1280.jpg) no-repeat 27% 35%, url(../image/icon\ 1.png) no-repeat 10% 15%, url(../image/Image\ Background.png) no-repeat center 0%;
        background-size:
            250px auto,
            150px auto,
            cover;
    }

    .bg-image-team {
        --hero-photo: url(../image/team\ 1.jpg);
    }

    .bg-image-pricing {
        background: url(../image/dummy-img-1920x1280.jpg) no-repeat 27% 35%, url(../image/icon\ 1.png) no-repeat 10% 15%, url(../image/Image\ Background.png) no-repeat center 0%;
        background-size:
            250px auto,
            150px auto,
            cover;
    }

    .bg-image-faqs {
        background: url(../image/dummy-img-1920x1280.jpg) no-repeat 27% 35%, url(../image/icon\ 1.png) no-repeat 10% 15%, url(../image/Image\ Background.png) no-repeat center 0%;
        background-size:
            250px auto,
            150px auto,
            cover;
    }

    .bg-image-blog {
        --hero-photo: url(../image/blog\ 1.jpg);
    }

    .bg-image-single-post {
        background: url(../image/dummy-img-1920x1280.jpg) no-repeat 27% 35%, url(../image/icon\ 1.png) no-repeat 10% 15%, url(../image/Image\ Background.png) no-repeat center 0%;
        background-size:
            250px auto,
            150px auto,
            cover
    }

    .bg-image-contact {
        --hero-photo: url(../image/contact\ 1.jpg);
    }

    .bg-image-services,
    .bg-image-portofolio,
    .bg-image-team,
    .bg-image-blog,
    .bg-image-contact {
        --hero-photo-position: 27% 35%;
        --hero-photo-size: 250px auto;
        background: url(../image/icon\ 1.png) no-repeat 10% 15%, url(../image/Image\ Background.png) no-repeat center 0%;
        background-size:
            150px auto,
            cover;
    }

    .bg-image-services,
    .bg-image-portofolio {
        background-position: 10% 11%, center 0%;
    }

    .bg-image-services,
    .bg-image-portofolio,
    .bg-image-blog,
    .bg-image-contact {
        --hero-photo-size: 0 !important;
        background-position: right 50px top calc(50px + 1.1rem), center 0%;
        background-size:
            132px auto,
            cover;
    }

    .bg-image-team {
        background-position: right 0 top 90px, center 0%;
    }

    .bg-image-services {
        background-position: right 0 top 90px, center 0%;
    }

    .bg-image-portofolio {
        background-position: right -12px top 90px, center 0%;
    }

    .bg-image-blog {
        background-position: right -14px top 92px, center 0%;
    }

    .bg-image-contact {
        background-position: right -10px top 92px, center 0%;
    }

    .page-hero-mobile::before {
        display: none;
    }

    .page-hero-mobile__container {
        padding-top: 5.85rem;
        padding-bottom: 2.85rem;
    }

    .page-hero-mobile__grid {
        --bs-gutter-y: 1rem;
        margin-top: 0 !important;
    }

    .page-hero-mobile__content {
        gap: 1.75rem !important;
    }

    .page-hero-mobile__title {
        max-width: 12ch;
        margin: 0;
        font-size: clamp(2rem, 8.8vw, 2.45rem);
        line-height: 0.96;
        letter-spacing: -0.05em;
        text-align: left !important;
        text-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
    }

    .page-hero-mobile__label-row {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 0.85rem !important;
        margin: 0;
    }

    .page-hero-mobile__accent {
        display: none !important;
    }

    .page-hero-mobile__label {
        width: 100%;
        max-width: 15rem;
        margin: 0;
        font-size: clamp(1.8rem, 7.8vw, 2.15rem);
        line-height: 0.96;
        letter-spacing: -0.045em;
        text-align: left !important;
        text-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
    }

    .page-hero-mobile__label-line {
        display: block;
        white-space: normal;
    }

    .page-hero-mobile--contact .page-hero-mobile__label {
        align-self: flex-end;
        width: 100%;
        max-width: 19rem;
        margin-top: 0.45rem;
        font-size: clamp(1.7rem, 7.5vw, 2rem);
        line-height: 0.94;
        text-align: right !important;
    }

    .page-hero-mobile--services .page-hero-mobile__label-row {
        align-items: flex-end !important;
    }

    .page-hero-mobile--services .page-hero-mobile__label {
        align-self: flex-end;
        max-width: 19rem;
        margin-top: 0.65rem;
        text-align: right !important;
    }

    .page-hero-mobile--portfolio .page-hero-mobile__label-row {
        align-items: flex-end !important;
    }

    .page-hero-mobile--portfolio .page-hero-mobile__label {
        align-self: flex-end;
        width: 100%;
        max-width: 14.5rem;
        margin-top: 0.7rem;
        margin-right: 0;
        line-height: 0.92;
        text-align: right !important;
    }

    .page-hero-mobile--portfolio .page-hero-mobile__label-line {
        display: block;
        white-space: nowrap;
    }

    #portfolio-service-filters .portfolio-service-filters__list,
    #home-portfolio-service-filters .portfolio-service-filters__list {
        justify-content: flex-start !important;
        gap: 0.85rem !important;
        margin-bottom: 0 !important;
    }

    #portfolio-service-filters .portfolio-service-filters__row,
    #home-portfolio-service-filters .portfolio-service-filters__row {
        justify-content: flex-start !important;
    }

    #portfolio-service-filters .btn-accent-2,
    #home-portfolio-service-filters .btn-accent-2 {
        min-height: 2.9rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
    }

    #portfolio-grid .card > img,
    #home-portfolio-feed .card > img {
        aspect-ratio: 1 / 1 !important;
        min-height: 19rem;
    }

    .page-hero-mobile--blog .page-hero-mobile__label-row {
        align-items: flex-end !important;
    }

    .page-hero-mobile--blog .page-hero-mobile__label {
        align-self: flex-end;
        width: 100%;
        max-width: 18.5rem;
        margin-top: 0.45rem;
        text-align: right !important;
    }

    .page-hero-mobile--blog .blog-hero-title__line {
        white-space: nowrap;
    }

    .page-hero-mobile--contact .page-hero-mobile__label-line {
        white-space: nowrap;
    }

    .blog-page-watermark {
        z-index: -1;
        top: 0.15rem;
        right: 50%;
        transform: translateX(50%);
        display: inline-block;
        width: max-content;
        max-width: calc(100% - 1rem);
        padding-inline: 0.08em 0.12em;
        font-size: clamp(3.4rem, 18vw, 5rem);
        line-height: 0.9;
        white-space: nowrap;
        text-align: center;
        pointer-events: none;
    }

    .sub-heading.services-page-watermark {
        top: 0.45rem;
        max-width: calc(100% - 1.5rem);
        font-size: clamp(2.7rem, 13vw, 3.8rem);
        line-height: 0.9;
    }

    .services-page-tags-col {
        margin-top: 1.25rem !important;
    }

    .services-page-tags-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: flex-start !important;
    }

    .testimonial-watermark {
        display: none !important;
    }

    .page-hero-mobile__play {
        margin-top: 0.4rem;
        margin-left: 0 !important;
        width: 178px;
        height: 178px;
        align-self: flex-start;
    }

    .page-hero-mobile__play .btn-play__text > span {
        inset: 0;
        font-size: 15px;
    }

    .page-hero-mobile__play-circle {
        width: 68px;
        height: 68px;
        font-size: 34px;
    }

    .page-hero-mobile__social-col,
    .page-hero-mobile .social-wrapper,
    .page-hero-mobile .marquee-container,
    .page-hero-mobile .marquee-container.first,
    .page-hero-mobile .marquee-container.reverse,
    .page-hero-mobile .marquee-container.third {
        display: none !important;
    }

    .bg-image-404 {
        background: url(../image/icon\ 14.png) no-repeat 50% 7%, url(../image/icon\ 9.png) no-repeat 35% 27%, url(../image/icon\ 1.png) no-repeat -10% 103%, url(../image/icon\ 15.png) no-repeat 55% 75.5%, url(../image/Image\ Background.png) no-repeat center 0%;
        background-size:
            94px auto,
            66px auto,
            207px auto,
            127px auto,
            1920px 1280px;
    }

    .sub-heading {
        font-size: 40px;
        font-style: italic;
    }

    .float-icon {
        margin-right: 0;
    }

    .float-bg-image {
        margin-top: 0;
    }

    .float-number {
        margin-left: 0;
    }

    .btn-play {
        margin-left: 0;
    }

    .hero-home__play {
        margin-left: 0;
    }

    .home-services-list .navigation {
        gap: 0.75rem;
    }

    .home-services-list .navigation h4 {
        font-size: clamp(1.35rem, 6.4vw, 1.85rem);
        max-width: 10ch;
        line-height: 0.92;
    }

    .home-services-list .navigation .navigation-arrow {
        width: 52px;
        height: 52px;
        font-size: 34px;
    }

    .contact-section__intro {
        align-items: center;
        gap: 0.85rem !important;
        margin-bottom: 2.25rem !important;
    }

    .contact-section__title-row {
        width: 100%;
        justify-content: center;
        gap: 0 !important;
    }

    .contact-section__accent {
        display: none;
    }

    .contact-section__title {
        text-align: center;
    }

    .contact-section__copy {
        display: block;
        align-self: center;
        width: 100%;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding-inline: 0.5rem;
        font-size: 0.98rem;
        line-height: 1.55;
        text-align: center;
    }

    .hero-home__content-row {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        column-gap: 0;
        gap: 2.85rem;
        margin-top: 0;
    }

    .hero-home__copy {
        max-width: 16.5rem;
        margin: 0;
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.55;
        padding-bottom: 0;
    }

    .hero-home__title {
        max-width: 12ch;
        font-size: clamp(1.9rem, 8.3vw, 2.2rem);
        line-height: 1.04;
        letter-spacing: -0.06em;
        margin-left: 0;
        text-align: left !important;
        margin-top: 0.65rem;
    }

    .hero-home__title--lower {
        width: 100%;
        max-width: 12ch;
        margin-top: 0;
        margin-bottom: 0.85rem;
    }

    .hero-home__title-nowrap-mobile {
        white-space: nowrap;
    }

    .btn-play.about-us {
        display: none;
    }

    .about-growth-section .sub-heading.about-page-watermark {
        display: none;
    }

    .about-growth-section .d-flex.flex-column.gap-3 {
        gap: 1.5rem !important;
    }

    .about-growth-section h3 {
        font-size: clamp(1.9rem, 8.6vw, 2.35rem);
        line-height: 0.98;
        letter-spacing: -0.04em;
    }

    .about-growth-section .d-flex.flex-lg-row.flex-column.align-items-center.justify-content-center.gap-about {
        align-items: flex-start !important;
        gap: 0.85rem !important;
    }

    .about-growth-section .d-flex.flex-lg-row.flex-column.align-items-center.justify-content-center.gap-about p {
        max-width: 16rem !important;
        margin: 0;
        font-size: 0.94rem;
        line-height: 1.45;
    }

    .about-growth-section .d-flex.flex-lg-row.flex-column.align-items-center.justify-content-center.gap-about img {
        display: none;
    }

    .about-growth-section .row.row-cols-lg-2.row-cols-1,
    .about-growth-layout {
        --bs-gutter-y: 1rem;
    }

    .home-about-copy {
        max-width: 100% !important;
        font-size: 1rem;
        line-height: 1.55;
    }

    .about-stats-stack {
        --bs-gutter-y: 0.95rem;
        max-width: 15rem;
        margin: 0 auto;
    }

    .about-stats-stack--mobile-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 0.85rem;
        max-width: 18rem;
        margin-top: 0.35rem;
    }

    .about-stats-stack--mobile-grid > .col {
        margin-bottom: 0 !important;
        padding-inline: 0;
    }

    .about-stats-stack--mobile-grid > .col:nth-child(3) {
        grid-column: 1 / -1;
        width: min(100%, 9rem);
        margin-inline: auto;
    }

    .about-stat-card {
        gap: 0.22rem;
    }

    .about-stat-card h2 {
        font-size: clamp(2.35rem, 13vw, 3rem);
        line-height: 0.9;
        letter-spacing: -0.05em;
    }

    .about-stat-card h6 {
        max-width: 12ch;
        font-size: 0.88rem;
        line-height: 1.08;
        text-wrap: balance;
    }

    .about-partnership-section .row.row-cols-lg-2.row-cols-1 {
        --bs-gutter-y: 1rem;
    }

    .about-partnership-section .position-relative img {
        width: 100%;
        max-height: 22rem;
        object-fit: cover;
    }

    .about-partnership-section img[src="image/icon 8.png"] {
        display: none !important;
    }

    .about-partnership-section h3 {
        font-size: clamp(1.85rem, 8.2vw, 2.3rem);
        line-height: 1;
    }

    .about-partnership-section p[style*="max-width: 85%"] {
        max-width: 100% !important;
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .about-partnership-section .accordion {
        gap: 1rem !important;
    }

    .about-partnership-section .accordion .accordion-button {
        font-size: 1rem;
        line-height: 1.25;
    }

    .about-partnership-section .accordion .accordion-body {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .about-team-layout {
        gap: 2rem !important;
    }

    .about-team-layout__intro {
        gap: 1.1rem;
    }

    .about-team-layout__heading {
        align-items: center !important;
        gap: 0.7rem !important;
    }

    .about-team-layout__heading .border-bottom {
        display: none;
    }

    .about-team-layout__heading h3 {
        margin: 0;
        max-width: 17.5rem;
        font-size: clamp(1.72rem, 6.7vw, 2.1rem);
        line-height: 0.94;
        letter-spacing: -0.04em;
    }

    .about-team-layout__copy {
        align-self: flex-start !important;
        margin-top: 0 !important;
        max-width: 20rem;
        font-size: 0.95rem;
        line-height: 1.42;
        text-align: left;
    }

    .about-cta-panel {
        gap: 1.8rem !important;
        padding: 3rem 1rem !important;
        border-radius: 2rem !important;
    }

    .about-cta-title {
        width: 100%;
        margin: 0;
        font-size: clamp(2.15rem, 10vw, 3rem);
        line-height: 0.92;
        letter-spacing: -0.05em;
    }

    .about-cta-title__line {
        display: block;
    }

    .about-cta-title__line + .about-cta-title__line {
        margin-top: 0.35rem;
    }

    .about-cta-layout {
        --bs-gutter-y: 0.6rem;
    }

    .about-cta-layout__spacer,
    .about-cta-layout__icon-col {
        display: none;
    }

    .about-cta-layout__content-col {
        width: 100%;
    }

    .about-cta-layout__content {
        gap: 1rem !important;
    }

    .about-cta-layout__copy {
        max-width: 17.75rem;
        margin: 0;
        font-size: 0.92rem;
        line-height: 1.4;
        text-align: center;
    }

    .about-cta-layout__actions {
        width: 100%;
        gap: 0.85rem !important;
    }

    .about-cta-panel .btn-accent.cta,
    .about-cta-panel .btn-accent-3.cta {
        width: min(100%, 15rem) !important;
        min-width: 0;
        justify-content: center;
    }

    .about-cta-section + footer .section {
        padding-top: 3rem;
    }

    footer .row.row-cols-lg-2.row-cols-1 {
        --bs-gutter-y: 1.75rem;
    }

    footer .col.col-xl-8.mb-3 > .d-flex.flex-column {
        gap: 1rem !important;
        margin-bottom: 0;
    }

    footer .col.col-xl-8.mb-3 > .d-flex.flex-column > div:first-child {
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
        align-items: center;
    }

    footer .col.col-xl-8.mb-3 h3 {
        margin: 0;
        font-size: clamp(1.9rem, 8.6vw, 2.35rem);
        line-height: 0.98;
        text-align: center;
    }

    footer .col.col-xl-8.mb-3 p {
        width: 100%;
        max-width: 20rem;
        margin: 0;
        line-height: 1.45;
        text-align: center;
    }

    footer .col.col-xl-8.mb-3 h5 {
        margin: 0 0 0.65rem;
        font-size: clamp(0.9rem, 4.7vw, 1.05rem);
        line-height: 1.08;
        letter-spacing: -0.02em;
        white-space: nowrap;
        overflow-wrap: normal;
        word-break: normal;
    }

    footer .col.col-xl-8.mb-3 img[src*="logo-footer"] {
        width: min(100%, 13.5rem) !important;
    }

    footer .col.col-xl-4.mb-3.d-flex.justify-content-center.align-items-center {
        min-height: 12rem;
        margin-top: 0.5rem;
        width: 100%;
        justify-content: center !important;
    }

    footer .circle {
        width: 148px;
        opacity: 0.9;
        margin-right: -3.75rem;
        flex-shrink: 0;
    }

    .btn-play.footer {
        margin-left: 0;
        margin-top: 0;
        width: 182px;
        height: 182px;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }

    .btn-play.footer .btn-play__text > span {
        inset: 0;
        font-size: 15px;
    }

    .btn-play.footer .btn-play__circle {
        width: 68px;
        height: 68px;
        font-size: 34px;
    }

    /* ── Footer bottom bar fix on mobile ── */
    footer .d-flex.flex-row.align-items-center.justify-content-between {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.65rem;
    }

    footer .d-flex.flex-row.align-items-center.justify-content-between .d-flex.flex-row.align-items-center.gap-2 {
        gap: 0.5rem !important;
    }

    footer .d-flex.flex-row.align-items-center.justify-content-between p,
    footer .d-flex.flex-row.align-items-center.justify-content-between span,
    footer .d-flex.flex-row.align-items-center.justify-content-between a {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    /* Override generic centered flex-column for the new footer layout */
    footer .col.col-xl-8.mb-3 > .d-flex.flex-column {
        text-align: left !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    footer .col.col-xl-8.mb-3 > .d-flex.flex-column > div:first-child {
        text-align: left !important;
        align-items: flex-start !important;
    }

    footer .col.col-xl-8.mb-3 > .d-flex.flex-column > div:first-child:not(:last-child) {
        width: 100%;
        text-align: center !important;
        align-items: center !important;
        transform: translateY(-0.85rem);
    }

    footer .col.col-xl-8.mb-3 > .d-flex.flex-column > div:first-child:not(:last-child) p {
        max-width: min(100%, 26rem);
        margin-inline: auto;
        padding-inline: 0.5rem;
    }

    .legal-page {
        padding-top: 8.5rem;
        padding-bottom: 4rem;
    }

    .legal-page__header {
        margin-bottom: 1.75rem;
    }

    .legal-page__subtitle,
    .legal-page__section p,
    .legal-page__section li {
        font-size: 0.98rem;
    }

    .legal-page__card {
        border-radius: 22px;
    }

    .single-post-main-card {
        padding: 1rem;
        border-radius: 24px;
    }

    .single-post-share-row {
        flex-direction: column;
        align-items: flex-start !important;
    }

    #about-team-members {
        --bs-gutter-y: 1rem;
    }

    #about-team-members .card-team > div:first-child {
        aspect-ratio: 3 / 3.45 !important;
    }

    #about-team-members .card-team-detail {
        min-height: auto;
        flex-basis: auto;
        padding: 20px 18px 18px;
        gap: 0.35rem;
    }

    #about-team-members .card-team-detail h5 {
        margin: 0;
        font-size: 1.08rem;
        line-height: 1.08;
    }

    #about-team-members .card-team-detail .small-text {
        font-size: 0.9rem;
        line-height: 1.22;
    }

    .about-team-layout__cta {
        margin-top: 0.25rem;
    }

    .about-team-layout__button {
        width: auto !important;
        min-width: 0;
        justify-content: center;
        padding-inline: 1.35rem;
    }

    .about-process-heading {
        width: 100%;
        align-items: flex-start !important;
        gap: 0.95rem !important;
    }

    .about-process-title {
        width: 100%;
        max-width: 100% !important;
        margin: 0;
        font-size: clamp(2rem, 8.9vw, 2.5rem);
        line-height: 0.98;
        letter-spacing: -0.04em;
        text-align: left !important;
        text-wrap: balance;
    }

    .about-process-title__line {
        display: block;
    }

    .about-process-title__line--secondary {
        margin-top: 0.45rem;
    }

    .process-wrapper {
        --bs-gutter-y: 0.85rem;
        max-width: 19rem;
        margin-inline: auto;
    }

    .process-wrapper__media {
        order: 1;
    }

    .process-wrapper__icon {
        display: none;
    }

    .process-wrapper__text {
        order: 2;
    }

    .process-wrapper__media img {
        width: 100%;
        max-width: 100%;
        border-radius: 1rem;
    }

    .process-wrapper__text h5 {
        margin-bottom: 0.7rem;
        font-size: 1.2rem;
        line-height: 1.04;
    }

    .process-wrapper__text p {
        margin: 0;
        font-size: 0.92rem;
        line-height: 1.45;
        color: #F5F5F5 !important;
    }

    .btn-play.choose-us {
        margin-top: -6rem;
        margin-left: 8rem;
    }

    .sub-heading.choose-us-watermark {
        top: 1rem;
        left: 1rem;
        font-size: clamp(2.1rem, 11vw, 2.8rem);
        line-height: 0.9;
        max-width: none;
        white-space: nowrap;
        transform: none;
    }

    .choose-us-heading-row {
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 0.4rem !important;
        padding-top: 0.5rem;
    }

    .choose-us-heading-line {
        display: none;
    }

    .choose-us-heading {
        max-width: 8.8ch;
        margin: 0 !important;
        padding: 0 !important;
        text-align: left !important;
        font-size: clamp(1.55rem, 7vw, 2rem);
        line-height: 1.02;
        letter-spacing: -0.04em;
    }

    .choose-us-copy {
        max-width: 16.5rem;
        margin: 0 !important;
        padding-left: 0 !important;
        font-size: 0.92rem;
        line-height: 1.45;
        text-align: left !important;
    }

    .choose-us-stars {
        gap: 0.3rem;
        font-size: clamp(1.55rem, 7vw, 2rem);
        width: fit-content;
        margin-top: 1.45rem;
    }

    .home-expertise-progress-stack {
        gap: 1.55rem !important;
    }

    .home-expertise-progress-stack > .d-flex.flex-column {
        gap: 1.1rem !important;
    }

    .home-expertise-section .r-progress span.font-1 {
        display: block;
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .home-expertise-section .progress-container {
        margin-top: 0.45rem !important;
    }

    .home-expertise-section .row.row-cols-xl-2.row-cols-1 {
        --bs-gutter-y: 0.9rem;
    }

    .home-expertise-section .col.position-relative.mb-3 {
        min-height: auto !important;
    }

    .choose-us-media-primary,
    .choose-us-media-accent {
        display: none !important;
    }

    .btn-play.choose-us {
        margin-top: 0;
        margin-bottom: 0.25rem;
        margin-left: auto;
        margin-right: auto;
        width: 112px;
        height: 112px;
    }

    .btn-play.choose-us .btn-play__text > span {
        inset: -8px;
        font-size: 12px;
    }

    .btn-play.choose-us .btn-play__circle {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }

    .choose-us-vector {
        display: none !important;
    }

    .home-stats-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.2rem 1rem;
        max-width: 18rem;
        margin: 0.9rem auto 0;
    }

    .home-stats-row > .col {
        width: auto;
        margin-bottom: 0 !important;
        padding-inline: 0;
    }

    .home-stats-row > .col:nth-child(3) {
        grid-column: 1 / -1;
        width: min(100%, 9rem);
        margin-inline: auto;
    }

    .home-stat-card {
        gap: 0.28rem;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .home-stat-number,
    .home-stat-number--suffix {
        font-size: clamp(2.3rem, 12.8vw, 3rem);
        line-height: 0.9;
        font-style: normal;
        letter-spacing: -0.05em;
    }

    .home-stat-divider {
        margin-top: 0.05rem;
        height: 2px;
    }

    .home-stat-divider--wide {
        width: min(100%, 9.5rem);
    }

    .home-stat-divider--medium {
        width: min(100%, 8rem);
    }

    .home-stat-divider--narrow {
        width: min(100%, 5.5rem);
    }

    .home-stat-label {
        max-width: 100%;
        padding-inline: 0;
        font-size: 0.82rem;
        line-height: 1.12;
        text-wrap: balance;
    }

    .home-stat-label--single-line {
        font-size: 0.8rem;
        white-space: normal;
    }

    .home-stat-label--long {
        max-width: 11ch;
    }

    .home-expertise-section .r-progress-bar.percentage-label::after {
        left: auto;
        right: 0;
        bottom: calc(100% + 0.35rem);
        transform: none;
        font-size: 0.9rem;
        line-height: 1;
        text-align: right;
    }

    .home-portfolio-section {
        padding-bottom: 1.5rem;
    }

    .home-portfolio-intro {
        gap: 1rem !important;
    }

    .home-portfolio-section .row.mt-5 {
        margin-top: 0.35rem !important;
    }

    .home-expertise-wrapper {
        padding-top: 0.5rem;
        padding-bottom: 0.9rem;
    }

    .home-expertise-section {
        margin-top: 0 !important;
    }

    .home-testimonials-section {
        padding-top: 1.7rem;
        margin-top: 0;
    }

    .home-testimonials-section .r-container > .d-flex.flex-column {
        gap: 0.75rem !important;
    }

    .home-testimonials-section h3 {
        margin-bottom: 0;
    }

    .home-testimonials-section .d-flex.flex-xl-row.flex-column.align-items-center.justify-content-between.gap-3 {
        gap: 0.85rem !important;
    }

    .home-blog-section .d-flex.flex-row.align-items-center.gap-2 {
        align-items: flex-start !important;
        gap: 0 !important;
    }

    .home-blog-section {
        padding-top: 2.25rem;
    }

    .home-blog-section .home-blog-title {
        max-width: 12.5ch;
        font-size: clamp(1.6rem, 7vw, 2rem);
        line-height: 1.02;
        letter-spacing: -0.04em;
        text-wrap: balance;
    }

    .home-blog-section .border-accent {
        display: none;
    }

    .marquee-container.first,
    .marquee-container.third {
        display: none;
    }

    .marquee-container {
        margin-block: 2.75rem !important;
    }

    .marquee-item {
        padding-block: 0.2rem;
        margin-right: 2.25rem;
    }

    .home-hero-logo {
        height: 38px;
    }

    .card-team {
        align-items: center;
        margin-top: 15rem;
    }

    .card-team-detail {
        align-items: center;
        min-height: 50%;
    }

    .float-img-team,
    .team-image-placeholder {
        margin-top: -12rem;
    }

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

    .gap-about {
        gap: .5rem;
    }

    .process-icon {
        display: none;
    }

    .icon-box-4 {
        padding: 12px;
    }

    .icon-box-4 i {
        font-size: 20px;
    }
}

/* Keep the decorative star below the hero title on desktop service pages */
@media (min-width: 1200px) {
    .services-detail-hero-row.float-bg-image {
        margin-top: 0.65rem !important;
    }

    .services-detail-hero-row.float-bg-image > img {
        transform: translateY(1.1rem);
        margin-top: 0 !important;
    }
}
