:root {
    /* Brand Colors */
    --color-electric-blue: #5e32ff;
    --color-electric-blue-hover: #3e1ac1;
    --color-electric-blue-pressed: #2d1486;
    --color-turquoise: #13c1c0;
    --color-turquoise-hover: #0fa9a8;
    --color-turquoise-active: #0c7f7e;
    --color-magenta: #9e1e63;
    --color-magenta-hover: #7f184f;
    --color-magenta-active: #5e103a;
    --color-orange: #ff8128;
    --color-orange-hover: #d85c08;
    --color-orange-active: #a94806;
    --color-light-gold: #FFDC8B;

    /* Supporting Colors */
    --color-white: #fdfdfd;
    --color-black: #000000;
    --color-dark-bg: #0c0000;
    --color-lilac: #cd428a;
    --color-light-lilac: #ff64b4;
    --color-orange-shadow: #c4750d;

    /* Transparent Backgrounds */
    --color-light-purple: #5e32ff44;
    --color-light-turquoise: #13c1c044;
    --color-light-magenta: #9e1e6344;
    --color-light-orange: #f46c0c44;

    --color-overlay-dark: #000000b2;
    --color-overlay-purple: #5e32ffaa;
    --color-overlay-black-soft: #000000c0;

    /* Fonts */
    --font-base: "Open Sans", Helvetica, Arial, sans-serif;
    --font-monument: "Monument Extended", "Special Gothic Expanded One", Helvetica, Arial, sans-serif;
    --font-hookride: "Hookride", "Bebas Neue", Helvetica, Arial, sans-serif;

    /* Font Sizes */
    --fs-h2: 2.3rem;
    --fs-1-5: 1.5rem;
    --fs-1-52: 1.52rem;
    --fs-2-5: 2.5rem;
    --fs-2-9: 2.9rem;
    --fs-2: 2rem;
    --fs-3: 3rem;
    --fs-3-3: 3.3rem;
    --fs-3-5: 3.5rem;
    --fs-4: 4rem;
    --fs-5: 5rem;
    --fs-6: 6rem;
    --fs-7: 7rem;
    --fs-uppercase-a: 4.2em;
    --fs-uppercase-a-mobile: 3.3em;
    --fs-card-title-mobile: 3.3em;
    --fs-subtitle-mobile: 2em;
    --fs-qual: 4em;
    --fs-qual-mobile: 3.8em;
    --fs-save: 1.8em;
    --fs-large: large;
    --fs-larger: larger;
    --fs-20px: 20px;
    --fs-23px: 23px;
    --fs-25px: 25px;
    --fs-30px: 30px;

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 13px;
    --radius-lg: 20px;

    /* Misc */
    --line-height-tight: 0;
    --line-height-qual: 55.75px;
    --hotel-image-width: 90%;
}

/* -------------------------------------------------------
   Global / Common Utility Classes
   ------------------------------------------------------- */

body {
    font-family: var(--font-base);
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h2 {
    font-size: var(--fs-h2);
}

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

.font-weight-bold {
    font-weight: 500;
}

.font-weight-semi {
    font-weight: 600;
}

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

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

.fs-20px {
    font-size: var(--fs-20px);
}

.fs-23px {
    font-size: var(--fs-23px);
}

.fs-25px {
    font-size: var(--fs-25px);
}

.fs-30px {
    font-size: var(--fs-30px);
}

.f1-5 {
    font-size: var(--fs-1-5);
    font-family: var(--font-monument);
    text-transform: uppercase;
}

.f1-52 {
    font-size: var(--fs-1-52);
}

.f2-5 {
    font-size: var(--fs-2-5);
}

.f2-5-card-title {
    font-size: var(--fs-2-5);
}

.f3 {
    font-size: var(--fs-3);
}

.f4 {
    font-size: var(--fs-4);
    font-family: var(--font-monument);
    text-transform: uppercase;
}

.f4-qual {
    font-size: var(--fs-qual);
}

.f5 {
    font-size: var(--fs-5);
}

.f6 {
    font-size: var(--fs-6);
}

.f7 {
    font-size: var(--fs-7);
    font-family: var(--font-monument);
    text-transform: uppercase;
}

.txt-md {
    font-size: larger;
}

.txt-lg {
    font-size: x-large;
}

.text-large {
    font-size: var(--fs-large);
}

.text-larger {
    font-size: var(--fs-larger);
}

.txt-orange {
    color: var(--color-orange);
}

.txt-light-gold {
    color: var(--color-light-gold);
}

.bold-lilac {
    color: var(--color-lilac);
}

.light-lilac {
    color: var(--color-light-lilac);
}

.heading-shadow {
    text-shadow: 0 5px 0 var(--color-orange-shadow);
}

.price-family {
    font-family: var(--font-hookride);
}

.price-line {
    line-height: var(--line-height-tight);
}

.qual-line-height {
    line-height: var(--line-height-qual);
}

.hotel-image-desktop {
    width: var(--hotel-image-width);
}

.kern {
    letter-spacing: 0.05em;
}

/* -------------------------------------------------------
   Banner Section
   ------------------------------------------------------- */

.parallax {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/a26-banner.jpg") !important;
}

.mono-nav-secondary {
    background: var(--color-electric-blue);
}

.mono-nav-secondary a {
    color: var(--color-white);
}

.uppercase-a {
    text-transform: uppercase;
    font-family: var(--font-hookride);
    font-size: var(--fs-uppercase-a);
}

.uppercase-b {
    text-transform: uppercase;
    font-family: var(--font-monument);
}

.btn-electric-blue {
    background: var(--color-electric-blue);
    border-radius: var(--radius-md);
}

.btn-electric-blue:hover {
    background: var(--color-electric-blue-hover);
}

.btn-electric-blue:active,
.btn-electric-blue:focus {
    background: var(--color-electric-blue-pressed) !important;
}

/* -------------------------------------------------------
   Built For More Section
   ------------------------------------------------------- */

.built-for-more-bg {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/built-for-more-bg.jpg");
    background-color: var(--color-dark-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.transparent-box-1 {
    background-color: var(--color-overlay-dark);
    border-radius: var(--radius-lg);
}

.border-top-div {
    background-image: linear-gradient(to right, #5E32FF, #9E1F63, #F46C0B, #5E32FF);
}

/* -------------------------------------------------------
   Reserve Your Spot Section
   ------------------------------------------------------- */

.reserve-your-spot-bg {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/reserve-your-spot-bg.jpg");
    background-color: var(--color-dark-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.card,
.bg-cards {
    background-color: transparent;
}

.card {
    border: 3px solid var(--color-black);
    border-radius: var(--radius-sm);
}

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

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

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

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

.save {
    font-size: var(--fs-save);
}

.save-electric-blue {
    color: var(--color-electric-blue);
}

.save-electric-turquoise {
    color: var(--color-turquoise);
}

.save-electric-magenta {
    color: var(--color-magenta);
}

.btn-turquoise {
    background: var(--color-turquoise);
    border-color: var(--color-turquoise);
    border-radius: var(--radius-md);
}

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

.btn-turquoise:focus,
.btn-turquoise:active {
    background: var(--color-turquoise-active) !important;
    border-color: var(--color-turquoise-active) !important;
}

.btn-magenta {
    background: var(--color-magenta);
    border-color: var(--color-magenta);
    border-radius: var(--radius-md);
}

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

.btn-magenta:focus,
.btn-magenta:active {
    background: var(--color-magenta-active) !important;
    border-color: var(--color-magenta-active) !important;
}

.btn-orange {
    background: var(--color-orange) !important;
    border-color: var(--color-orange) !important;
    border-radius: var(--radius-md) !important;
}

.btn-orange:hover {
    background: var(--color-orange-hover) !important;
    border-color: var(--color-orange-hover) !important;
}

.btn-orange:focus,
.btn-orange:active {
    background: var(--color-orange-active) !important;
    border-color: var(--color-orange-active) !important;
}

/* -------------------------------------------------------
   Grand Prize Giveaway Section
   ------------------------------------------------------- */

.grand-prize-giveaway-bg {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/grand-prize-bg.jpg");
    background-color: var(--color-dark-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.dim-txt {
    color: #00000098;
}

/* -------------------------------------------------------
   BMW Bring More Winners
   ------------------------------------------------------- */

.bring-more-winners-bg {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/bring-more-winners-bg.jpg?v=20260618");
    background-color: var(--color-dark-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.lh-h2-adjust {
    line-height: 0.45;
}

/* -------------------------------------------------------
   Schedule Section
   ------------------------------------------------------- */

.schedule-bg {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/schedule-bg.jpg");
    background-color: var(--color-dark-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.tablist-bg {
    background-image: url('https://events.ambitenergy.com/uploads/tablist-schedule-bg.jpg');
    background-size: cover;
    background-position: center;
}

.tablist-row-bg {
    background-color: #00000087;
}

.border-table-bg-1 {
    background-color: #f67b11;
}

.border-table-bg-2 {
    background-color: #5d28c5;
}

.border-table-bg-3 {
    background-color: #2c5bb8;
}

.bg-gradient-border {
    background-image: linear-gradient(to top right, #00A79D, #5E32FF, #9E1F63, #F46C0B);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #f5972c !important;
    background-color: #1d1d1d !important;
}

#nav-two-tab,
#nav-three-tab,
#nav-one-tab {
    color: #f4f4f4;
}

#nav-tabContent .row:hover {
    background: #000000c5 !important;
}

/* -------------------------------------------------------
   Special Events Section
   ------------------------------------------------------- */

.special-events-bg {
    background: #0c0000 url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/special-events-bg.jpg") center / cover no-repeat;
}

.special-events-wrap {
    width: 86%;
    margin: 0 auto;
    display: grid;
}

.special-events-title-wrap,
.special-events-row {
    grid-area: 1 / 1;
}

.special-events-title-wrap {
    z-index: 5;
    align-self: start;
}

.special-events-row {
    z-index: 1;
}

/* -------------------------------------------------------
   Centered Special Events Title
   ------------------------------------------------------- */

.special-events-title-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 2rem;
    pointer-events: none;
}

.special-events-title-wrap::before,
.special-events-title-wrap::after {
    content: "";
    display: block;
    height: 7px;
    background: #fdfdfd;
    box-shadow: 0 0 17px #bd2fe0e6;
    transform: translateY(-7px);
}

.special-events-title {
    color: #fdfdfd;
    text-shadow: 0 0 17px #bd2fe0e6;
}

.special-events-title span {
    display: block;
}

/* -------------------------------------------------------
   Main Event Cards
   ------------------------------------------------------- */

.special-event-card {
    width: 100%;
    min-height: 1030px;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    overflow: hidden;
}

.special-event-content {
    min-height: 1030px;
    height: auto;
    display: flex;
    flex-direction: column;
}

/* -------------------------------------------------------
   Individual Backgrounds
   ------------------------------------------------------- */

.special-event-black-tie {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/black-tie-pattern-white-bg.jpg");
    border-right: 5px solid #9e1e63;
}

.special-event-karaoke {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/karaoke-bg.jpg");
    border-right: 5px solid #5e32ff;
}

.special-event-finale {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/finale-bg.jpg");
    border-right: 5px solid #008d8b;
}

/* -------------------------------------------------------
   Black Tie Logo Area
   ------------------------------------------------------- */

.special-event-black-tie-dark {
    height: 515px;
    margin: 25px 15px 0;
    background-image: linear-gradient(#000000, #000000);
    background-size: 100% 470px;
    background-repeat: no-repeat;
    background-position: top center;
}

.special-event-black-tie-dark .special-event-logo {
    height: 100%;
}

/* Fade bridge starts inside Black Tie dark area */
.black-tie-fade-bridge {
    height: 320px;
    margin-top: -320px;
    background: linear-gradient(
        to bottom,
        #00000000 0%,
        #0000000d 22%,
        #00000026 45%,
        #00000033 68%,
        #00000040 100%
    );
    pointer-events: none;
}

/* -------------------------------------------------------
   Logos Area
   ------------------------------------------------------- */

.special-event-logo {
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.special-event-logo img {
    display: block;
    max-width: 100%;
    height: auto;
    transform: translateY(40px);
}

.karaoke-logo img {
    width: 78%;
}

/* -------------------------------------------------------
   Details Areas Flexible text height
   ------------------------------------------------------- */

.special-event-info,
.special-event-info-karaoke,
.special-event-info-gran-finale {
    min-height: 490px;
    height: auto;
    margin-top: 0;
    color: #fdfdfd;
    font-size: var(--fs-large);
    border: 0;
    border-radius: 0;
    overflow: visible;
    text-shadow: 0 2px 8px #000000e6;
}

/* Black Tie details fade */
.special-event-info {
    background: linear-gradient(
        to top,
        #000000f2 0%,
        #000000d9 34%,
        #000000a6 62%,
        #00000075 82%,
        #00000040 100%
    );
}

/* Karaoke fade */
.special-event-info-karaoke {
    background: linear-gradient(
        to top,
        #000000eb 0%,
        #2e024ad1 36%,
        #2e024a7a 66%,
        #2e024a2e 86%,
        #2e024a11 100%
    );
}

/* Grand Finale fade */
.special-event-info-gran-finale {
    background: linear-gradient(
        to top,
        #000000e6 0%,
        #0e5d54ad 36%,
        #3f47d66b 66%,
        #4f043733 86%,
        #4f043711 100%
    );
}

.special-event-info p,
.special-event-info-karaoke p,
.special-event-info-gran-finale p {
    margin-bottom: .75rem;
}

.special-event-info p:last-child,
.special-event-info-karaoke p:last-child,
.special-event-info-gran-finale p:last-child {
    margin-bottom: 0;
}

/* -------------------------------------------------------
   Responsive
   ------------------------------------------------------- */

@media (max-width: 991.98px) {
    .special-events-wrap {
        width: 100%;
        display: block;
    }

    .special-events-title-wrap {
        column-gap: 1.5rem;
        pointer-events: auto;
    }

    .special-events-title {
        font-size: var(--fs-5);
    }

    .special-events-title-wrap::before,
    .special-events-title-wrap::after {
        height: 6px;
        transform: translateY(0);
    }

    .special-event-card {
        min-height: auto;
        height: auto;
        background-position: center center;
    }

    .special-event-content {
        min-height: auto;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .special-event-black-tie,
    .special-event-karaoke,
    .special-event-finale {
        border-right: 0;
        border-bottom: 5px solid #5e32ff;
    }

    .special-event-black-tie {
        border-bottom-color: #9e1e63;
    }

    .special-event-finale {
        border-bottom-color: #008d8b;
    }

    .special-event-logo,
    .special-event-black-tie-dark .special-event-logo {
        height: auto;
        min-height: 360px;
    }

    .special-event-black-tie-dark {
        height: auto;
        margin: 0;
        background: transparent;
    }

    .black-tie-fade-bridge {
        height: 180px;
        margin-top: -180px;
        background: linear-gradient(
            to bottom,
            #00000000 0%,
            #0000000d 22%,
            #00000026 45%,
            #00000033 68%,
            #00000040 100%
        );
    }

    .black-tie-logo img {
        width: 90%;
        max-width: 550px;
    }

    .karaoke-logo img {
        width: 80%;
        max-width: 380px;
    }

    .finale-logo img {
        width: 100%;
        max-width: 550px;
    }

    .special-event-info,
    .special-event-info-karaoke,
    .special-event-info-gran-finale {
        min-height: 360px;
        height: auto;
        font-size: 1rem;
        overflow: visible;
    }
}

@media (max-width: 767px) {
    .special-events-title-wrap {
        column-gap: 1rem;
    }

    .special-events-title {
        font-size: var(--fs-2-5);
    }

    .special-events-title-wrap::before,
    .special-events-title-wrap::after {
        height: 5px;
    }

    .special-event-logo,
    .special-event-black-tie-dark .special-event-logo {
        min-height: 245px;
    }

    .special-event-logo img {
        transform: translateY(-20px);
    }

    .black-tie-fade-bridge {
        height: 150px;
        margin-top: -150px;
    }

    .special-event-info,
    .special-event-info-karaoke,
    .special-event-info-gran-finale {
        min-height: auto;
        height: auto;
        overflow: visible;
    }
}

/* -------------------------------------------------------
   Ultimate Experience Section
   ------------------------------------------------------- */

.ultimate-experience-bg {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/ultimate-experience-bg.jpg");
    background-color: var(--color-dark-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.video-wrap {
    position: relative;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(to right, #5E32FF, #9E1F63, #F46C0B, #5E32FF);
    padding: 3px;
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000;
    border-radius: 17px;
}

/* -------------------------------------------------------
   Perfect Venue Section
   ------------------------------------------------------- */

.perfect-venue-bg {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/venue-bg.jpg");
    background-color: var(--color-dark-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.transparent-box-2 {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.transparent-box-2::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-overlay-purple);
    mix-blend-mode: multiply;
    border-radius: inherit;
    z-index: 0;
}

.transparent-box-2>* {
    position: relative;
    z-index: 1;
}

/* -------------------------------------------------------
   Perfect Host Hotel Section
   ------------------------------------------------------- */

.perfect-hotel-bg {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/host-hotel-bg.jpg");
    background-color: var(--color-dark-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* -------------------------------------------------------
   Top Performer Qualifications Section
   ------------------------------------------------------- */

.top-performer-qualifications-bg {
    background-image: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/qualifying-bg.jpg");
    background-color: var(--color-dark-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.transparent-box-3 {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.transparent-box-3::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-overlay-black-soft);
    mix-blend-mode: multiply;
    border-radius: inherit;
    z-index: 0;
}

.transparent-box-3>* {
    position: relative;
    z-index: 1;
}

/* -------------------------------------------------------
   EC Power Team Section
   ------------------------------------------------------- */
.ec-power-team-bg {
    background-image: url('https://cdn.ambitenergy.com/images/events-center/ambition-2026/ec-power-team-bg.jpg');
    background-size: cover;
    background-position: center center;
    /* background-attachment: fixed; */
    background-repeat: no-repeat;
}

.ec-transparent-box {
    background-image:
        linear-gradient(#ffffff80, #ffffff80),
        url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/cube-bitmap.jpg");
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
}

.ec-transparent-box {
    position: relative;
    background: #ffffffd6;
}

.ec-transparent-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://cdn.ambitenergy.com/images/events-center/ambition-2026/cube-bitmap.jpg") center / cover no-repeat;
    opacity: 0.7;
    z-index: 0;
    border-radius: 30px;
}

.ec-transparent-box>* {
    position: relative;
    z-index: 1;
}

.ec-logo-size {
    width: 65%;
}

th,
td {
    padding: 13px !important;
}

.table-ec-powerteam thead th {
    background-color: var(--color-electric-blue);
    border: 1px solid var(--color-electric-blue);
    color: white;
}

.table-ec-powerteam thead th:first-child {
    text-align: center;
}

.table-ec-powerteam tbody td:first-child {
    text-align: center;
}

/* First 10 rows: Ambit Orange, bold rank */
.table-ec-powerteam tbody tr:nth-child(-n+10) td,
a,
a:hover {
    color: #f89c1c;
}

.table-ec-powerteam tbody tr:nth-child(-n+10) td:first-child {
    font-weight: bold;
}

/* Rows 11+: black */
.table-ec-powerteam tbody tr:nth-child(n+11) td,
.table-ec-powerteam tbody tr:nth-child(n+11) a,
.table-ec-powerteam tbody tr:nth-child(n+11) a:hover {
    color: #000000;
}

.svg-draw-wrap {
    width: 75%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.svg-draw-wrap svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.4s ease;
    will-change: opacity, transform;
}

.svg-draw-wrap.is-visible svg,
.svg-draw-wrap.is-animated svg {
    opacity: 1;
}

.svg-draw-wrap.is-animated svg {
    transform: translateY(0);
}

.svg-draw-wrap svg path,
.svg-draw-wrap svg line,
.svg-draw-wrap svg polyline,
.svg-draw-wrap svg polygon,
.svg-draw-wrap svg rect,
.svg-draw-wrap svg circle,
.svg-draw-wrap svg ellipse {
    vector-effect: non-scaling-stroke;
    transition: fill 0.35s ease;
}

@keyframes svgLineDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .svg-draw-wrap svg {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .svg-draw-wrap svg path,
    .svg-draw-wrap svg line,
    .svg-draw-wrap svg polyline,
    .svg-draw-wrap svg polygon,
    .svg-draw-wrap svg rect,
    .svg-draw-wrap svg circle,
    .svg-draw-wrap svg ellipse {
        animation: none !important;
        stroke-dasharray: none !important;
        stroke-dashoffset: 0 !important;
        transition: none !important;
    }
}


.svg-draw-wrap svg {
    transform: translateY(8px) scale(0.985);
}

.svg-draw-wrap.is-animated svg {
    transform: translateY(0) scale(1);
}

/* -------------------------------------------------------
   Responsive
   ------------------------------------------------------- */
@media (max-width: 767px) {
    .uppercase-a {
        font-size: var(--fs-uppercase-a-mobile);
    }

    .f2-5-card-title {
        font-size: var(--fs-card-title-mobile);
    }

    .sub-title {
        font-size: var(--fs-subtitle-mobile);
    }

    .line-height-qual {
        line-height: var(--line-height-qual);
    }

    .f4-qual {
        font-size: var(--fs-2-5);
    }

    .fs-3-5 {
        font-size: var(--fs-2-5) !important;
    }

    .fs-3-3 {
        font-size: var(--fs-2-5) !important;
    }

    .fs-2-9 {
        font-size: var(--fs-2-5) !important;
    }

    .f7,
    .f5 {
        font-size: var(--fs-6);
    }

    .save {
        font-size: var(--fs-2);
    }

    .hero-bg-mobile {
        background-attachment: scroll;
    }
}