:root {
    --font-primary: "proxima-nova", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-second: "paralucent", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-tert: "argumentum", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    --sl-babar-200: #C1CAD6;
    --sl-babar-300: #AAB5C4;
    --sl-babar-700: #536379;
    --sl-babar-800: #424F60;
    --sl-babar-900: #323B49;
    --sl-babar-1000: #1C1F24;
    --sl-blue-600: #1034F2;
    --sl-blue-700: #1a2fcc;
    --sl-ink: #0f172a;
    --sl-gray: #6b7280;
    --sl-bg: #F9F9FB;
    --sl-lime: #C7E600;
    --sl-trooper-1000: #21201D;
}

.post,
.page {
    margin: 0 !important;
}

.fw-700 {
    font-weight: 700;
}

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

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

.fw-400 {
    font-weight: 400;
}

.topbar a {
    color: var(--sl-babar-700);
    font-size: 14px;
    line-height: 20px;
    font-family: var(--font-primary);
}

.hero-with-bg {
    position: relative;
    background-image: var(--bg-desktop);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 0 164px 0;
}

.hero-with-bg h1 {
    color: var(--sl-trooper-1000);
    font-family: var(--font-second);
    font-size: 64px;
    line-height: 80px;
    margin: 0 0 24px 0;
}

.hero-with-bg p {
    color: var(--sl-trooper-1000);
    font-family: var(--font-second);
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
}

.hero-with-bg .btn.btn-lime {
    color: var(--sl-trooper-1000);
    text-align: center;
    font-family: var(--font-tert);
    font-size: 24px;
    line-height: 26px;
    width: 267px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #DF0;
    transition: all 300ms ease;
    font-weight: 500;
}

.hero-with-bg .btn.btn-lime:hover {
    background: var(--sl-lime);
}

.hero-with-bg h1 span {
    color: var(--sl-blue-600);
}

@media(max-width: 1399px) {
    .hero-with-bg {
        padding: 80px 0;
    }
}


@media(max-width: 1199px) {
    .hero-with-bg {
        background-image: var(--bg-991);
        padding: 50px 0 123px 0;
    }

    .hero-with-bg h1 {
        font-size: 24px;
        line-height: 30px;
        margin: 0 0 16px 0;
    }

    .hero-with-bg p {
        font-size: 18px;
        line-height: 22.5px;
        margin-bottom: 16px;
    }

    .hero-with-bg .btn.btn-lime {
        font-size: 18px;
        line-height: 20px;
        width: 200px;
        height: 40px;
    }
}

@media(max-width: 767px) {
    .hero-with-bg {
        background-image: var(--bg-767);
        padding: 423px 0 40px 0;
        background-size: contain;
    }

    .hero-with-bg h1 {
        color: var(--sl-trooper-1000);
    }

    .hero-with-bg h1 span {
        color: var(--sl-blue-600);
    }

    .hero-with-bg p {
        color: var(--sl-trooper-1000);
    }

    .hero-with-bg .btn.btn-lime {
        width: 100%;
        height: 48px;
    }
}

@media(max-width: 576px) {
    .hero-with-bg {
        background-size: cover;
    }
}

.band-blue {
    padding: 80px 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(96deg, var(--Sonic-500, #1034F2) 28.53%, var(--Condo-600, #0E27C0) 63.54%, var(--Condo-800, #0A0A50) 95.12%);
}

.band-blue h2 {
    color: #FFF;
    font-family: var(--font-second);
    font-size: 24px;
    line-height: 30px;
    max-width: 363px;
}

.band-blue h2 strong {
    font-weight: 600;
}

.band-blue h2 span {
    color: var(--sl-lime);
}

.card-kpi {
    border-radius: 8px !important;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    z-index: 99;
    position: absolute;
}


.card-kpi .card-body svg {
    margin-right: 31px;
    flex-shrink: 0;
}

.kpi-value {
    color: #FFF;
    font-family: var(--font-tert);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 3px;
}

.kpi-label {
    color: #FFF;
    font-family: var(--font-tert);
    font-size: 16px;
    font-weight: 350;
    line-height: 20px;
}

.band-blue .cards {
    position: relative;
}

.band-blue .cards .card-kpi:nth-child(1) {
    width: 240px;
    height: 75px;
    top: -104px;
    left: -82px;
}

.band-blue .cards .card-kpi:nth-child(2) {
    width: 283px;
    height: 75px;
    top: -117px;
    right: 99px;
}


.band-blue .cards .card-kpi:nth-child(3) {
    width: 274px;
    height: 95px;
    bottom: -136px;
    left: -150px;
}

.band-blue .cards .card-kpi:nth-child(4) {
    width: 248px;
    height: 75px;
    bottom: -151px;
    right: 101px;
}

.floating-card {
    position: absolute;
    right: 23%;
    bottom: -124px;
    width: min(370px, 60vw)
}

.floating-card img {
    width: 100%;
    display: block;
}

@media(max-width: 1399px) {
    .floating-card {
        right: 17%;
    }

    .band-blue .cards .card-kpi:nth-child(2) {
        right: -11px;
    }

    .band-blue .cards .card-kpi:nth-child(4) {
        right: -9px;
    }
}

@media(max-width: 1199px) {
    .card-kpi {
        padding: 8px;
    }

    .floating-card {
        right: 8%;
        bottom: -104px;
    }

    .band-blue .cards .card-kpi:nth-child(1) {
        left: 6px;
        top: -95px;
        width: 157px;
        height: 73px;
    }

    .band-blue .cards .card-kpi:nth-child(2) {
        top: -114px;
        right: 18px;
        width: 153px;
        height: 73px;
    }

    .band-blue .cards .card-kpi:nth-child(3) {
        left: -50px;
        bottom: -116px;
        width: 211px;
        height: 73px;
    }

    .band-blue .cards .card-kpi:nth-child(4) {
        right: 11px;
        bottom: -120px;
        width: 165px;
        height: 73px;
    }

    .band-blue .cards .card-kpi:nth-child(1) svg {
        width: 18px;
        height: 18px;
    }

    .band-blue .cards .card-kpi:nth-child(2) svg {
        width: 20px;
        height: 20px;
    }

    .band-blue .cards .card-kpi:nth-child(3) svg {
        width: 21px;
        height: 21px;
    }

    .band-blue .cards .card-kpi:nth-child(4) svg {
        width: 20px;
        height: 20px;
    }

    .card-kpi .card-body svg {
        margin-right: 12px;
    }

    .kpi-value,
    .kpi-label {
        font-size: 14px;
        line-height: 17px;
    }
}

@media(max-width: 991px) {
    .band-blue {
        padding: 60px 0;
    }

    .band-blue h2 {
        font-size: 18px;
        line-height: 22.5px;
    }

    .floating-card {
        width: auto;
        right: 9%;
        bottom: -75px;
    }

    .floating-card img {
        width: 233px;
        height: 233px;
    }

    .band-blue .cards .card-kpi:nth-child(1) {
        left: -12px;
        top: -84px;
        width: 157px;
        height: 73px;
    }

    .band-blue .cards .card-kpi:nth-child(2) {
        top: -90px;
        right: -1px;
        width: 153px;
        height: 73px;
    }

    .band-blue .cards .card-kpi:nth-child(3) {
        left: -50px;
        bottom: -96px;
        width: 211px;
        height: 73px;
    }

    .band-blue .cards .card-kpi:nth-child(4) {
        right: -23px;
        bottom: -101px;
        width: 165px;
        height: 73px;
    }
}

@media(max-width: 767px) {
    .band-blue {
        padding: 40px 0;
    }

    .band-blue h2 {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .band-blue h2 br {
        display: none;
    }

    .floating-card img {
        width: 100%;
        height: auto;
        margin-bottom: 24px;
    }

    .kpi-value,
    .kpi-label {
        font-size: 16px;
        line-height: 20px;
    }

    .band-blue .cards .card-kpi {
        position: relative;
        width: 100% !important;
        height: auto !important;
        left: inherit !important;
        right: inherit !important;
        top: inherit !important;
        bottom: inherit !important;
        margin-bottom: 24px;
        padding: 16px;
    }

    .floating-card {
        position: relative;
        right: auto;
        top: 0;
        margin-top: 1rem;
        width: 100%
    }

}

.faq {
    background: var(--sl-bg);
    padding: 100px 0;
}

.faq h2 {
    color: var(--sl-babar-900);
    font-family: var(--font-tert);
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 48px;
}

.faq .accordion-button {
    color: var(--sl-babar-800);
    font-family: var(--font-tert);
    font-size: 18px;
    line-height: 22.5px;
    background: transparent;
    padding: 10px;
}

.faq .accordion-button:focus {
    box-shadow: none;
    border: 0;
}

.faq .accordion-body {
    font-family: var(--font-tert);
    color: var(--sl-trooper-1000);
    font-size: 18px;
    line-height: 22.5px;
    padding: 10px;
}

.faq .accordion-item {
    border: 0;
    border-bottom: 1px solid var(--sl-babar-200);
    background: transparent;
    overflow: hidden;
    padding: 16px;
}

.faq .accordion-button:not(.collapsed) {
    background: transparent;
    box-shadow: none;
    color: var(--sl-babar-800);
}

@media(max-width: 991px) {
    .faq {
        padding: 60px 0;
    }

    .faq h2 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 24px;
    }

    .faq .accordion-button,
    .faq .accordion-body {
        font-size: 16px;
        line-height: 20px;
    }
}

@media(max-width: 767px) {
    .faq {
        padding: 40px 0;
    }

    .faq h2 {
        font-size: 20px;
        line-height: 25px;
    }

    .faq .accordion-button,
    .faq .accordion-body {
        font-size: 18px;
        line-height: 22px;
    }
}

.site-footer {
    padding: 59px 0 40px 0;
    background: var(--sl-babar-1000);
}

.border-line {
    width: 90%;
    margin: 0 auto;
    opacity: 0.1;
    height: 1px;
    background: #fff;
}

@media (max-width:1068px) {
    .border-line {
        width: 100%;
    }
}

.footer-top p {
    color: var(--sl-babar-300);
    font-size: 12px;
    line-height: 17px;
    font-family: var(--font-second);
}

.footer-body {
    padding-top: 40px;
}

.footer-body ul {
    margin: 0;
}

.footer-body .content {
    display: inline;
    width: auto;
}

.footer-body .content h6 {
    color: #FFF;
    font-family: var(--font-tert);
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-body .numbers strong,
.footer-body .numbers a {
    color: var(--sl-babar-300);
    font-family: var(--font-tert);
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 4px;
}

.footer-body .numbers {
    display: flex;
    gap: 13px;
}

.box-bottom {
    background: var(--sl-blue-600);
    padding: 20px 0 6px 0;
}

.box-bottom p {
    color: #FFF;
    font-family: var(--font-tert);
    font-size: 12px;
    font-weight: 600;
    line-height: 17px;
    margin: 0;
}

.box-bottom p a {
    color: #FFF;
    font-family: var(--font-tert);
    font-size: 12px;
    font-weight: 600;
    line-height: 17px;
}

@media(max-width: 767px) {
    .site-footer {
        padding: 24px 0;
    }

    .footer-body {
        padding-top: 10px;
    }

    .box-bottom {
        padding: 24px 0;
    }
}