:root {
    --font-fajalla: "Fjalla One", sans-serif;
    --font-fugaz-one: "Fugaz One", sans-serif;
    --black: #000000;
    --white: #FFFFFF;
    --blue: #304359;
    --red: #EF4B3F;
    --yellow: #F4ED32;
    --light-blue: #32C6F4;
    --grey: #C9C9C9;
    --light-grey: #F0F0F0;
    --dark-grey: #707070;
    --f188: 188px;
    /* min 40px */
    --f190: 190px;
    /* min 42px */
    --f150: 150px;
    /* min 34px */
    --f63: clamp(2rem, 1.6125rem + 1.9375vw, 3.9375rem);
    /* min 32px*/
    --f60: clamp(2rem, 1.65rem + 1.7500000000000002vw, 3.75rem);
    /* min 32px*/
    --f48: clamp(1.875rem, 1.65rem + 1.125vw, 3rem);
    /* min 30px*/
    --f43: clamp(1.75rem, 1.5625rem + 0.9375vw, 2.6875rem);
    /* min 28px*/
    --f42: clamp(1.75rem, 1.575rem + 0.8750000000000001vw, 2.625rem);
    /* min 28px */
    --f40: clamp(1.75rem, 1.6rem + 0.75vw, 2.5rem);
    /* min 28px */
    --f35: clamp(1.625rem, 1.5125rem + 0.5625vw, 2.1875rem);
    /* min 26px */
    --f32: clamp(1.625rem, 1.55rem + 0.375vw, 2rem);
    /* min 26px */
    --f28: clamp(1.5rem, 1.45rem + 0.25vw, 1.75rem);
    /* min 24px */
    --f25: clamp(1.375rem, 1.3375rem + 0.1875vw, 1.5625rem);
    /* min 22px */
    --f24: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
    /* min 18px */
    --f21: clamp(1.125rem, 1.0875rem + 0.1875vw, 1.3125rem);
    /* min 18px */
    --f20: clamp(1.1875rem, 1.175rem + 0.0625vw, 1.25rem);
    /* min 19px */
    --f18: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
    /* min 16px */
    --f16: 16px;
    --transition: all .3s ease-in-out;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-fajalla);
    font-size: var(--f16);
    line-height: 1.5;
    color: var(--blue);
    -webkit-text-size-adjust: 100%;
    background: var(--white);
    overflow-x: hidden;
}

h1,
.h1 {
    font-size: var(--f60);
    line-height: 1.2;
}

h2,
.h2 {
    font-size: var(--f40);
    line-height: 1.36;
}

/* h3,
.h3 {}

h4,
.h4 {}

h5,
.h5 {}

h6,
.h6 {} */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 15px;
    font-weight: 400;
}

:focus {
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
}

*:focus {
    outline: none;
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: inherit;
}

p a:hover {
    color: var(--orange);
}

*,
dl,
ol,
ul {
    margin: 0;
    padding: 0;
    outline: none;
    box-shadow: none;
    text-decoration: none;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: block;
}

p {
    margin-bottom: 20px;
    font-size: var(--f24);
    line-height: 1.58;
}

p:last-child {
    margin-bottom: 0;
}

ul {
    list-style: none;
}



.setbg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.container {
    max-width: 1660px;
    width: 100%;
    padding-inline: 20px;
    margin-inline: auto;
}

.container-small {
    max-width: 1050px;
    width: 100%;
    padding-inline: 20px;
    margin-inline: auto;
}


.btn {
    display: inline-block;
    font-size: var(--f28);
    padding: 15px 80px 15px 30px;
    line-height: 1.25;
}

.btn.btn-primary {
    background: var(--light-blue);
    color: var(--white);
    position: relative;

}

.btn.btn-primary:hover {
    background: var(--red);
}

.btn.btn-primary:before {
    content: "";
    position: absolute;
    width: 32px;
    height: 16px;
    top: 50%;
    right: 30px;
    background: url(../img/button-arrow.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

.btn.btn-without-arrow {
    padding: 15px 30px;
    background: var(--light-blue);
    color: var(--white);
}

.btn.btn-without-arrow:hover {
    color: var(--blue);
    background-color: var(--yellow);
}

.btn.btn-red {
    background: var(--red);
}

.btn.btn-red:hover {
    background: var(--yellow);
    color: var(--red);
}

.btn.btn-red:hover:before {
    filter: brightness(0) saturate(100%) invert(38%) sepia(99%) saturate(2973%) hue-rotate(340deg) brightness(100%) contrast(88%);
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.d-none {
    display: none;
}

.sticky-btn {
    position: fixed;
    z-index: 9999;
    bottom: 160px;
    right: 0;
}

.red-title {
    color: var(--red);
    text-transform: uppercase;
    font-family: var(--font-fugaz-one);
}

.blue-bg {
    background-color: var(--blue);
    color: var(--white);
}

@media screen and (max-width: 1600.98px) {
    :root {
        --f188: 150px;
        --f190: 150px;
        --f150: 120px;
    }
}

@media screen and (max-width: 1366.98px) {
    :root {
        --f188: 130px;
        --f190: 130px;
        --f150: 100px;
    }
}

@media screen and (max-width: 1199.98px) {
    :root {
        --f188: 100px;
        --f190: 100px;
        --f150: 80px;
    }
}

@media screen and (max-width: 991.98px) {
    :root {
        --f188: 70px;
        --f190: 70px;
        --f150: 60px;
    }

    .btn {
        padding: 10px 50px 10px 20px;



    }

    .btn.btn-primary:before {
        width: 24px;
        height: 12px;
        right: 15px;
    }
}

@media screen and (max-width: 767.98px) {
    :root {
        --f188: 40px;
        --f190: 50px;
        --f150: 50px;
    }

    .sticky-btn {
        bottom: 140px;
    }

    .btn.btn-without-arrow {
        padding: 10px 20px;
    }

}

/* Font Utilities */
.italic {
    font-style: italic;
}

.font-fugaz {
    font-family: var(--font-fugaz-one);
}

/* .container-large {
    max-width: 1820px;
} */

/* Header Section */
html:has(.active.side-menu) {
    overflow: hidden;
}

.site-header {
    background-color: var(--blue);
    padding: 15px 0;
    width: 100%;
}

.header-wrap {
    display: flex;
    justify-content: flex-end;
    /* align-items: center; */
}

.page-template-template-delco-miler .header-wrap {
    justify-content: space-between;
}
html:has(.page-template-template-delco-miler) .logo-text{
display: block;
}

.logo-text {
    font-size: var(--f188);
    font-family: var(--font-fugaz-one);
    color: var(--red);
    /* letter-spacing: -2px; */
    line-height: 1;
    margin-bottom: -14px;
    display: none;
}

.page-template-template-delco-miler .header-right {
    padding-top: 15px;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    padding-top: 0px;
    z-index: 3001;
}

.btn-donate {
    background-color: var(--light-blue);
    color: var(--white);
    padding: 6px 15px;
    font-size: var(--f21);
    border-radius: 0;
    width: 100%;
    text-align: center;
}

.btn-donate:hover {
    background-color: var(--yellow);
    color: var(--blue);
}

.menu-toggle {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--light-blue);
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
    position: relative;

}

.menu-toggle.is-open {
    color: var(--yellow);
}

.menu-label {
    font-size: var(--f25);
    font-family: var(--font-fajalla);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 32px;
    height: 18px;
    position: relative;
    justify-content: center;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: currentColor;
    transition: all 0.3s ease;
    border-radius: 10px;
}

/* Morphing hamburger to X */
.menu-toggle.is-open .hamburger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open .hamburger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}



/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2500;
    visibility: hidden;
    transition: visibility 0.4s;
}

.side-menu.active {
    visibility: visible;
}

.side-menu-inner {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 960px;
    height: 100vh;
    background-color: rgba(48, 67, 89, 0.93);
    z-index: 2;
    padding-top: var(--topSpace);
    padding-inline: 70px;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
    right: 0;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    padding-bottom: 80px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.side-menu-inner::-webkit-scrollbar {
    display: none;
}

.side-menu.active .side-menu-inner {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}


.side-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.4s;
    cursor: pointer;
}

.side-menu.active .side-menu-overlay {
    opacity: 1;
}

.side-menu-header {
    display: none;
}

.side-nav ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.side-nav a {
    font-size: var(--f48);
    color: var(--red);
    transition: color 0.3s;
    font-family: var(--font-fugaz-one);
    text-transform: uppercase;
    line-height: 1.46;

}

.side-nav .current-menu-item a {
    color: var(--yellow);
}

.side-nav a.active,
.side-nav a:hover {
    color: var(--yellow);
}

.side-menu-footer {
    margin-top: auto;
    padding-top: 40px;
}

.btn-register {
    width: 100%;
    background-color: var(--light-blue);
    padding: 15px 60px 15px 20px;
    font-size: 24px;
    border-radius: 0;
    margin-bottom: 30px;
    position: relative;
    text-align: left;
}

.btn-register::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 15px;
    background: url(../images/button-arrow.svg) no-repeat center;
    background-size: contain;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: end;
}

.social-links a:hover svg path {
    fill: var(--yellow);
}

.social-links svg path {
    transition: var(--transition);
}

.social-links svg {
    width: 50px;
    height: 50px;
    stroke: currentColor;
}

.social-links img {
    display: none;
}


@media screen and (max-width: 1199.98px) {
    .header-right {
        padding-top: 0;
    }

    .header-wrap {
        align-items: center;
    }
}

@media screen and (max-width: 991.98px) {
    .side-menu-inner {
        padding-inline: 30px;
    }
}

@media screen and (max-width: 768px) {

    .menu-label {
        display: none;
    }

    .side-menu-inner {
        max-width: 100%;
    }
}

.banner {
    position: relative;
    width: 100%;
    height: 685px;
    overflow: hidden;

}

.banner-video {
    box-sizing: border-box;
    min-width: calc(100% + 1px);
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1.7777777778;
}

.top-banner {
    position: relative;
    background-color: var(--red);
    color: var(--white);
}



.top-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body.page-template-template-delco-miler .top-banner-left {

    margin: -85px 0 -35px;

}

.top-banner-left {
    width: 195px;
    margin: -100px 0 0px;
    display: block;
}

.top-banner-right {
    width: calc(100% - 200px);
    text-align: center;
    padding-block: 20px;
}

.top-banner-right h1 {
    font-size: var(--f42);
}

.top-banner-right h2 {
    font-size: var(--f63);
    margin-bottom: 0;
}

@media screen and (max-width: 1199.98px) {
    body.page-template-template-delco-miler .top-banner-left {
        margin: -60px 0 0px;

    }

    .top-banner-left {
        margin: -60px 0 0px;
    }
}

@media screen and (max-width: 991.98px) {}

@media screen and (max-width: 767.98px) {
    .top-banner-content {
        flex-direction: column;
    }

    .top-banner-left {
        width: 120px;
    }

    .top-banner-right {
        width: 100%;
        padding-block: 40px;
    }
}

/* logo slider */
.lift-logos {
    padding-block: 40px;
}

.logo_slider .slide {
    margin: 0 40px;
}

.logo_slider img {
    max-height: 125px;
    width: auto;
    max-width: 280px;
}

.logo_slider .slick-slide>div {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo_slider .slick-slide {
    height: 125px;
}

@media screen and (max-width: 1199.98px) {
    .logo_slider .slide {
        margin: 0 20px;
    }
}

@media screen and (max-width: 767.98px) {
    .logo_slider img {
        max-height: 75px;
        max-width: 150px;
    }

    .logo_slider .slick-slide {
        height: 75px;
    }

    .logo_slider .slide {
        margin: 0 10px;
    }
}

/* ===== Countdown Section ===== */
.countdown-section {
    padding-block: 60px;
    text-align: center;
}

.countdown {
    display: grid;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    grid-template-columns: repeat(5, 1fr);
}

.countdown-item {
    position: relative;
    padding-block: 20px;
}

.countdown-item:not(:last-child):after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--dark-grey);
    top: 0;
    right: -20px;
}

.countdown-number {
    display: block;
    font-size: var(--f150);
    color: var(--red);
    line-height: 1;
    letter-spacing: -0.05em;
}

.countdown-label {
    text-transform: uppercase;
    font-size: var(--f43);
    margin-bottom: 0;
}

.countdown-expired {
    display: none;
    text-align: center;
    font-size: var(--f42);
}

@media screen and (max-width: 767.98px) {
    .countdown-label {
        font-size: 20px;
    }

    .countdown {
        gap: 20px;
    }

    .countdown-item:not(:last-child):after {
        right: -10px;
    }
}

@media screen and (max-width: 575.98px) {
    .countdown-item:not(:last-child):after {
        content: none;
    }

    .countdown-label {
        font-size: 16px;
    }

    .countdown-item {
        padding-block: 0;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-number {
        font-size: 40px;
        margin-bottom: 5px;
    }
}

/* ================================
   SWAG SECTION
================================ */

.swag {
    padding-block: 100px;
}


.swag_intro {
    margin-bottom: 40px;
}

/* while swag grid is not shown, remove swag intro margin bottom */
.swag_intro {
    margin-bottom: 0;
}

.swag_intro h2 {
    font-family: var(--font-fugaz-one);
    font-size: var(--f190);
    line-height: 1;
    color: var(--red);
    margin: 0;
    letter-spacing: -0.05em;
}

.swag_intro p {
    font-family: var(--font-fugaz-one);
    font-size: var(--f40);
    line-height: 1.3em;
    color: var(--red);
    text-transform: uppercase;
}

/* ================================
   GRID
================================ */

.swag__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.swag .container {
    position: relative;
}

.swag .coming-soon {
    position: absolute;
    top: -125px;
    right: 100px;
    /*width: 210px;*/
    width: 400px;
}

.swag .swag_intro p.small-white {
    color: #fff;
    font-size: 24px;
    text-transform: none;
    font-family: "Fjalla One";
}

/* ================================
   CARD
================================ */

.swag-card {
    border: 3px solid var(--light-blue);
    background-color: var(--white);
    min-height: 470px;
    position: relative;
}

.swag-card__media {
    height: 100%;
    overflow: hidden;
}

.swag-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.2;
}

.swag-card__footer {
    position: absolute;
    bottom: 0;
    left: 0;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1400px) {
    .swag-card {
        min-height: 350px;
        max-height: 400px;
    }
}

@media (max-width: 1199.98px) {
    .swag__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .swag {
        padding-block: 70px;
    }
}

@media (max-width: 992px) {
    .swag__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .swag .coming-soon {
        width: 280px;
        right: 20px;
    }
}

@media (max-width: 600px) {
    .swag {
        padding: 80px 0;
    }

    .swag__grid {
        grid-template-columns: 1fr;
    }

    .swag .coming-soon {
        top: -80px;
        width: 170px;
        right: -10px;
    }

    .swag .swag_intro p.small-white {
        font-size: 18px;
    }

}

/* map */
.map-section img {
    width: 100%;
}

/* ===== Footer ===== */

.site-footer {
    background-color: var(--light-grey);
    padding-block: 70px;
}

.footer-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 90px;
}

.footer-left,
.footer-right {
    width: calc(50% - 45px);
}

.footer-top {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    width: 140px;
}

.footer-social {
    display: flex;
    gap: 10px;
    padding-block: 10px;
}

.footer-social a {
    display: inline-block;
}

.footer-social a:hover svg path {
    fill: var(--red);
}

.footer-social a svg path {
    transition: var(--transition);
}

footer p {
    font-size: var(--f16);
    line-height: 1.75;
    color: var(--dark-grey);
}

.footer-partners {
    display: flex;
    align-items: center;
    gap: 25px;
}
.footer-partners img {
    max-width: 185px;
    max-height: 75px;
    object-fit: contain;
}
@media screen and (max-width: 1199.98px) {

    .footer-left,
    .footer-right {
        width: 100%;
    }

    .footer-wrap {
        gap: 50px;
    }
}

@media (max-width: 767.98px) {
    .site-footer {
        padding-block: 50px;
    }
}

@media screen and (max-width: 575.98px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }
}

/* About Section */
.about-section {
    position: relative;
    padding-block: 100px;
    z-index: 2;
}

.about-wrap {
    display: grid;
    gap: 90px;
    grid-template-columns: 1fr 1.7fr;
}

.small p {
    font-size: var(--f20);
}

.about-right img {
    margin-top: 30px;
}

@media screen and (max-width: 1366.98px) {
    .about-wrap {
        gap: 40px;
    }
}

@media screen and (max-width: 1199.98px) {
    .about-section {
        padding-block: 70px;
    }

    .about-wrap {
        grid-template-columns: 1fr;
    }

    .about-wrap img {
        margin-inline: a;
    }

}

@media screen and (min-width: 1200px) {
    .about-section {
        padding-bottom: 0;
    }

    .max-w-830 {
        max-width: 830px;
    }

    .about-right img {
        margin-left: auto;
        margin-top: 50px;
    }
}


/* ===== Race Package Section ===== */
.race-package-section {
    padding-block: 60px;
}

.race-package-wrap {
    display: grid;
    align-items: flex-start;
    gap: 90px;
    grid-template-columns: 1fr 1.5fr;
}

/* .race-package-left {
    width: 38%;
} */

.race-package-left img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

/* .race-package-right {
    width: 62%;
} */



.check-list {
    list-style: none;
    padding: 0;
}

.check-list:not(:last-child) {
    margin-bottom: 40px;
}

.check-list li {
    position: relative;
    padding-left: 40px;

    font-size: var(--f24);
    line-height: 1.6;
}

.check-list li:not(:last-child) {
    margin-bottom: 30px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-size: var(--f35);
    font-family: var(--font-fugaz-one);
    color: var(--red);
    line-height: 1.1;
}

.race-package-right .btn {
    margin-top: 10px;
    margin-bottom: 30px;
}

@media (max-width: 1366.98px) {
    .race-package-wrap {
        gap: 30px;
    }

    .check-list li {
        padding-left: 30px;
    }

    .check-list li:not(:last-child) {
        margin-bottom: 20px;
    }

    .check-list li::before {
        top: 3px;
    }
}

@media screen and (max-width: 1199.98px) {
    .race-package-wrap {
        grid-template-columns: 1fr;
    }

    .race-package-left {
        order: 2;
    }
}

@media screen and (max-width: 767.98px) {

    .race-package-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .race-package-left,
    .race-package-right {
        width: 100%;
    }

    .race-package-title {
        font-size: var(--f35);
    }
}

/* ===== Important Information Section ===== */
.important-info-section {
    padding: 40px 0 60px;
}

.important-info-section .container {
    max-width: 1490px;
}

.blue-title {
    font-family: var(--font-fugaz-one);
    text-transform: uppercase;
}

.road-closures-section {
    margin-top: 50px;
    padding-block: 60px;
}

@media (max-width: 767.98px) {

    .about-section,
    .countdown-section,
    .swag,
    .site-footer,
    .race-package-section,
    .road-closures-section {
        padding-block: 50px;
    }

    .important-info-section {
        padding: 0;
    }
}


/* ===== FAQ Section & Accordion Redesign ===== */
.faq-section {
    padding-block: 80px;
}


.faq-section h2 {
    font-size: var(--f60);
}

.faq-section h3 {
    font-size: var(--f40);
    word-break: break-word;
}

.faq-list.accordion {
    max-width: 1180px;
    margin-top: 40px;
}

.faq-list .faqs-wrapper:not(:first-child) {
    margin-top: 80px;
}

.accordion-item {
    border: 1px solid var(--light-blue);

    background-color: var(--white);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:not(:last-child) {
    margin-bottom: 30px;
}

.accordion-item:hover {
    box-shadow: 0 4px 15px rgba(50, 198, 244, 0.1);
}

.accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 40px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 20px;
    transition: all 0.3s ease;
    outline: none;
}

.accordion-button span {
    font-family: var(--font-fajalla);
    font-size: var(--f32);
    color: var(--blue);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.accordion-button:not([aria-expanded="true"]):hover span {
    color: var(--white);
}

.accordion-button:not([aria-expanded="true"]):hover {
    background-color: var(--light-blue);
}

.accordion-button:not([aria-expanded="true"]):hover .accordion-chevron {
    color: var(--white);
}

.accordion-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 12px;
    color: var(--light-blue);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-button[aria-expanded="true"] .accordion-chevron {
    transform: rotate(180deg);
}

.accordion-content {
    height: 0;
    opacity: 0;
    overflow: hidden;
    padding-inline: 40px;
    transition: height 0.4s ease, opacity 0.3s ease, padding-bottom 0.3s ease;
}

.accordion-button[aria-expanded="true"]+.accordion-content {
    opacity: 1;
    transition: height 0.4s ease, opacity 0.4s ease;
}

.accordion-content .accordion-content-inner {
    padding-bottom: 25px;
}

.accordion-content p {
    font-size: var(--f24);
    color: var(--blue);
}

.accordion-content ul {
    list-style: disc;
    padding-left: 20px;
}

.accordion-content a:not(.btn) {
    color: var(--light-blue);
}

.accordion-content a:not(.btn):hover {
    color: var(--red);
}

.accordion-content ul:not(:last-child) {
    margin-bottom: 20px;
}

.accordion-content ul li {
    font-size: var(--f20);
    margin-bottom: 10px;
    color: var(--blue);
}

@media (max-width: 1199.98px) {
    .faq-list .faqs-wrapper:not(:first-child) {
        margin-top: 60px;
    }

    .faq-list.accordion {
        margin-top: 0px;
    }
}

@media (max-width: 767.98px) {
    .faq-section {
        padding-block: 50px;
    }

    .accordion-button span {
        font-size: 20px;
    }

    .accordion-button {
        padding: 15px;
    }

    .accordion-content p,
    .accordion-content ul li {
        font-size: 16px;
    }

    .accordion-content {
        padding-inline: 15px;
    }

    .faq-list .faqs-wrapper:not(:first-child) {
        margin-top: 40px;
    }
}

#map {
    /* background: #e8e8e8; */
    height: 100vh;
    width: 100%;
    /* margin-top: -200px; */
    position: relative;
    z-index: 1;
}

.map {
    /* margin-top: -200px; */
}
.page-template-template-delco-miler .map-section {
    /*margin-top: -200px;*/
}

.package-details-section {
    background-color: var(--light-grey);
    padding-block: 60px;
}

.package-details-wrap {
    display: grid;
    gap: 90px;
    grid-template-columns: 4fr 3fr;

}

.package-details-wrap .check-list li:not(:last-child) {
    margin-bottom: 15px;
}

.package-details-wrap .check-list:not(:last-child) {
    margin-bottom: 20px;
}

.about-section {
    margin-bottom: -30px;
}

.package-details {
    padding-left: 30px;
    padding-top: 20px;
}

.package-details .small p {
    margin: 0;
}

.package-details .small p:first-of-type {
    margin-bottom: 10px;
}

@media (max-width:768px) {
    #map {
        height: 50vh;
        /* margin-top: 0; */
    }

    .map {
        /* margin-top: 0; */
    }

    .page-template-template-delco-miler .map-section {
        margin-top: 0;
    }

    /* package details mobile */ 
    .package-details-wrap {
        display: flex;
        gap: 30px;
        flex-direction: column-reverse;
    }

    .package-details {
        padding: 0;
    }

    .package-details .small p {
        font-size: 18px;
    }
}

label.gfield_label {
    display: none;
}

.gform_fields input,
.gform_fields textarea {
    width: 100% !important;
    margin-bottom: 0px !important;
    padding: 15px 20px !important;
    font-family: var(--font-fajalla);
    color: var(--dark-grey);
    font-size: var(--f18) !important;
    border: 1px solid #C9C9C9;
}

.gform_fields input[type="checkbox"] {
    width: auto !important;

}


.gform_fields input::placeholder,
.gform_fields textarea::placeholder {

    color: inherit;
}

.gform_fields textarea {
    height: 110px !important;
    padding: 10px;
}

.gform_heading {
    display: none;
}

input.gform_button:hover {
    background: var(--red);
}

.gform_wrapper.gravity-theme .gform_validation_errors {
    display: none;
}

label.gform-field-label--type-inline {
    display: inline;
    line-height: 1.5;
    font-family: var(--font-fajalla);
    font-size: 12px;
}

label.gform-field-label--type-inline a {
    text-decoration: underline;
}

.footer textarea {
    margin-bottom: 0;
}

.gform-footer.gform_footer {
    justify-content: end;
}
.gform-footer.gform_footer .btn.btn-primary {
    border: 0;
    font-family: var(--font-fajalla);
    cursor: pointer;
    transition: var(--transition);
}

body form .gform_footer .gform-loader {
    display: none !important;
}