﻿.first-questions {
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    width: 100%;
    box-sizing: border-box;
    margin-top: 2rem;
    margin-bottom: 2rem
}

.first-questions .quiz-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        padding: 20px
}

.first-questions .quiz-title {
        display: none
}

.first-questions h2 {
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
        word-wrap: break-word;
        box-sizing: inherit;
        padding: 0;
        border: 0;
        font-style: inherit;
        font-size: 1.5em;
        line-height: 1.2em;
        font-weight: 600;
        text-transform: none
}

.first-questions p {
    text-align: center
}

.first-questions form > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%
}

.first-questions form .input-group {
    display: flex;
    justify-content: flex-start;
        align-items: center;
        font-size: 14px;
        font-weight: 500;
        line-height: 18.986px;
        border-radius: 8px;
        padding: 20px;
        transition: color .1s ease-in-out,background-color .1s ease-in-out
}

.first-questions form .input-group input {
            margin-right: 6px;
            background-color: transparent;
            appearance: none;
            width: 12px;
            height: 12px;
            aspect-ratio: 1/1;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid;
            position: relative;
            outline: none
        }

.first-questions form .input-group input:checked:before {
                content: "";
                display: block;
                position: absolute;
                top: 50%;
                left: 50%;
                width: 6px;
                height: 6px;
                background-color: currentColor;
                border-radius: 50%;
                transform: translate(-50%,-50%)
            }

.first-questions form .input-group label {
            text-align: center
        }

.first-questions form button {
        display: none
    }

.first-questions-default {
    --primary-blue: #2563eb;
    --primary-green: #10b981;
    --primary-red: #ef4444;
    --primary-purple: #7c3aed;
    --primary-yellow: #f59e0b;
    --dark-text: #1f2937;
    --darker-text: #111827;
    --light-bg: #f9fafb;
    --lighter-bg: #fff;
    --border-color: #A30234;
    --shadow-color: rgba(0,0,0,.1);
    background-color: var(--lighter-bg);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    box-shadow: 0 4px 20px var(--shadow-color);
    border: 1px solid var(--border-color)
}

@media(max-width:1024px) {
    .first-questions-default {
        padding: 1.5rem
    }
}

.first-questions-default .quiz-title {
    display: none
}

.first-questions-default .quiz-content {
    padding: 0;
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: center
}

.first-questions-default h2 {
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

@media(max-width:425px) {
    .first-questions-default h2 {
        font-size: 1.25rem;
        line-height: 1.8rem
    }
}

.first-questions-default form {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%
}

.first-questions-default form > div {
        display: grid;
        grid-template-columns: repeat(2,minmax(0,1fr));
        grid-column-gap: .75rem;
        grid-row-gap: .75rem;
        grid-auto-columns: minmax(0,1fr)
}

.first-questions-default form input[type=radio].radio-input {
        cursor: none;
        width: 0 !important;
        margin: 0;
        background-color: transparent;
        border-color: transparent;
        color: transparent !important;
        padding: 0 !important
    }

.first-questions-default form label.correct {
        border-color: var(--primary-green);
        background-color: rgba(16,185,129,.1);
        box-shadow: 0 0 0 2px var(--primary-green)
 }

.first-questions-default form label.incorrect {
        border-color: var(--primary-red);
        background-color: rgba(239,68,68,.1);
        box-shadow: 0 0 0 2px var(--primary-red)
 }

.first-questions-default form label {
        gap: 0;
        width: 100%;
        color: #111729;
        border-radius: 10px;
        padding: 1.5rem;
        cursor: pointer;
        transition: all .2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-weight: 500;
        font-size: 1.1rem;
        min-height: 80px
    }

@media(max-width:1024px) {
    .first-questions-default form label {
        padding: 1rem
    }
}

@media(max-width:768px) {
    .first-questions-default form label {
        padding: .8rem
    }
}

@media(max-width:480px) {
    .first-questions-default form label {
        padding: .6rem
    }
}

@media(max-width:375px) {
    .first-questions-default form label {
        padding: .75rem
    }
}

.first-questions-default form .input-group {
    color: inherit;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    width: 100%
}

.first-questions-default form .input-group label {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: .875rem;
        height: 100%;
        font-weight: 500;
        line-height: 1.1875rem;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        hyphens: auto;
        word-break: break-word;
        overflow-wrap: break-word;
        text-align: center;
        overflow: hidden;
        width: 100%
    }

.correct-message {
    --primary-green: #10b981;
    color: var(--primary-green);
    background-color: rgba(16,185,129,.1)
}

.correct-message, .incorrect-message {
    text-align: center;
    font-size: 1.2rem;
    min-height: 2rem;
    transition: opacity .3s ease;
    font-weight: 500;
    padding: 1rem;
    border-radius: 8px
}

.incorrect-message {
    --primary-red: #ef4444;
    color: var(--primary-red);
    background-color: rgba(239,68,68,.1)
}

.quiz-button {
    color: #fff;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all .3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

@media(max-width:1024px) {
    .quiz-button {
        padding: 1rem 2rem
    }
}

@media(max-width:768px) {
    .quiz-button {
        padding: .8rem 1.5rem
    }
}

@media(max-width:480px) {
    .quiz-button {
        padding: .6rem 1rem
    }
}

#check {
    background: linear-gradient(135deg,#10b981,#059669)
}

.quiz-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,.15)
}

.quiz-button:active {
    transform: translateY(0)
}

.quiz-button:after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,transparent,hsla(0,0%,100%,.2),transparent);
    transition: .5s
}

.quiz-button:hover:after {
    left: 100%
}

.quiz-button:disabled {
    background: #A30234;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none
}

.quiz-button:disabled:hover:after {
        left: -100%
    }

.first-questions-fourth {
    border: .09375rem solid #111729;
    padding: 0;
    border-radius: .5rem;
    background: #f8f8f8
}

.first-questions-fourth .quiz-title {
        display: flex;
        padding: 1.5rem;
        gap: .5rem;
        border-radius: .5rem .5rem 0 0;
        background: #111729;
        justify-content: center;
        align-items: center;
        font-size: 1.375rem;
        line-height: 1.664375rem;
        color: #f8f8f8
    }

.first-questions-fourth .quiz-title, .first-questions-fourth h2 {
        font-weight: 500;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none
    }

.first-questions-fourth h2 {
        font-size: 2rem;
        line-height: 2.42rem
    }

    .first-questions-fourth form {
        padding: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%
    }

.first-questions-fourth form > div {
            display: grid;
            grid-template-columns: repeat(2,minmax(0,1fr));
            grid-column-gap: .75rem;
            grid-row-gap: .75rem;
            grid-auto-columns: minmax(0,1fr);
            margin-bottom: 1.25rem
        }

.first-questions-fourth form input[type=radio].radio-input {
            cursor: none;
            width: 0;
            margin: 0;
            background-color: transparent;
            border-color: transparent;
            color: transparent !important
        }

.first-questions-fourth form label {
            padding: .75rem 1rem;
            gap: 0;
            border-radius: 2.5rem;
            border: .0625rem solid #111729;
            width: 100%;
            color: #111729;
            cursor: pointer
        }

        .first-questions-fourth form .input-group {
            color: inherit;
            padding: 0;
            display: flex;
            justify-content: flex-start;
            width: 100%
        }

.first-questions-fourth form .input-group label {
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: .875rem;
                height: 100%;
                font-weight: 500;
                line-height: 1.1875rem;
                text-underline-position: from-font;
                text-decoration-skip-ink: none;
                hyphens: auto;
                word-break: break-word;
                overflow-wrap: break-word;
                text-align: center;
                overflow: hidden;
                width: 100%
            }

.first-questions-first {
    border: .09375rem solid #111729;
    padding: 0;
    border-radius: .5rem;
    background: #f8f8f8
}

    .first-questions-first .quiz-title {
        display: flex;
        padding: 1.5rem;
        gap: .5rem;
        border-radius: .5rem .5rem 0 0;
        background: #111729;
        justify-content: center;
        align-items: center;
        font-size: 1.375rem;
        font-weight: 500;
        line-height: 1.664375rem;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #f8f8f8
    }

    .first-questions-first .quiz-content-form {
        display: flex;
        flex-direction: row;
        gap: 3rem
    }

@media(max-width:1024px) {
    .first-questions-first .quiz-content-form {
        display: flex;
        flex-direction: column;
        gap: 0
    }
}

.first-questions-first h2 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.42rem;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none
}

.first-questions-first form {
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%
}

    .first-questions-first form > div {
        display: grid;
        grid-template-columns: repeat(1,minmax(0,1fr));
        grid-column-gap: .75rem;
        grid-row-gap: .75rem;
        grid-auto-columns: minmax(0,1fr);
        margin-bottom: 1.25rem
    }

    .first-questions-first form input[type=radio].radio-input {
        width: 0;
        cursor: none;
        margin: 0;
        background-color: transparent;
        border-color: transparent;
        color: transparent !important
    }

    .first-questions-first form label {
        padding: .75rem 1rem;
        gap: 0;
        border-radius: 2.5rem;
        border: .0625rem solid #111729;
        width: 100%;
        color: #111729;
        cursor: pointer
    }

    .first-questions-first form .input-group {
        color: inherit;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        width: 100%
    }

        .first-questions-first form .input-group label {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: .875rem;
            height: 100%;
            font-weight: 500;
            line-height: 1.1875rem;
            text-underline-position: from-font;
            text-decoration-skip-ink: none;
            hyphens: auto;
            word-break: break-word;
            overflow-wrap: break-word;
            text-align: center;
            overflow: hidden;
            width: 100%
        }

.first-questions-second .quiz-content {
    color: #fff;
    background: #111729;
    border-radius: 8px;
    margin-bottom: 16px
}

.first-questions-second label {
    width: 100%;
    text-align: left;
    cursor: pointer
}

.first-questions-second form .input-group {
    color: inherit;
    background: #f6f6f6;
    padding: 20px
}

    .first-questions-second form .input-group:hover {
        border-color: #000;
        color: inherit
    }

@media(min-width:1024px) {
    .first-questions-fourth form div {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }
}

@media(max-width:1024px) {
    .first-questions-fourth form div {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }
}

@media(max-width:768px) {
    .first-questions-fourth form div {
        grid-template-columns: repeat(1,minmax(0,1fr))
    }
}

@media(max-width:640px) {
    .first-questions-fourth form div {
        grid-template-columns: repeat(1,minmax(0,1fr))
    }
}

/*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*/


abbr:where([title]) {
    text-decoration: underline dotted
}



sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0
}

button, select {
    text-transform: none
}

button, input:where([type=button]), input:where([type=reset]), input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {
    margin: 0
}

fieldset {
    margin: 0
}

fieldset, legend {
    padding: 0
}


dialog {
    padding: 0
}

textarea {
    resize: vertical
}

input::placeholder, textarea::placeholder {
        opacity: 1;
        color: #9ca3af
    }

[role=button], button {
    cursor: pointer
}

:disabled {
    cursor: default
}

[hidden]:where(:not([hidden=until-found])) {
    display: none
}

.container {
    width: 100%
}

@media (min-width:640px) {
    .container {
        max-width: 640px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 768px
    }
}

@media (min-width:1024px) {
    .container {
        max-width: 1024px
    }
}

@media (min-width:1280px) {
    .container {
        max-width: 1280px
    }
}

@media (min-width:1536px) {
    .container {
        max-width: 1536px
    }
}

.visible {
    visibility: visible
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.sticky {
    position: sticky
}

.top-0 {
    top: 0
}

.z-20 {
    z-index: 20
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.my-3 {
    margin-top: .75rem;
    margin-bottom: .75rem
}

.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mr-3 {
    margin-right: .75rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-3 {
    margin-top: .75rem
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.inline {
    display: inline
}

.flex {
    display: flex
}

.table {
    display: table
}

.grid {
    display: grid
}

.hidden {
    display: none
}

.h-\[64px\] {
    height: 64px
}

.h-full {
    height: 100%
}

.max-h-\[400px\] {
    max-height: 400px
}

.w-\[100\%\] {
    width: 100%
}

.w-\[64px\] {
    width: 64px
}

.w-fit {
    width: fit-content
}

.w-full {
    width: 100%
}

.max-w-full {
    max-width: 100%
}

.transform {
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.cursor-pointer {
    cursor: pointer
}

.resize {
    resize: both
}

.grid-cols-1 {
    grid-template-columns: repeat(1,minmax(0,1fr))
}

.flex-row {
    flex-direction: row
}

.flex-row-reverse {
    flex-direction: row-reverse
}

.items-start {
    align-items: flex-start
}

.items-center {
    align-items: center
}

.justify-end {
    justify-content: flex-end
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.gap-2 {
    gap: .5rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.gap-7 {
    gap: 1.75rem
}

.gap-8 {
    gap: 2rem
}

.gap-\[32px\] {
    gap: 32px
}

.gap-\[48px\] {
    gap: 48px
}

.space-y-\[32px\] > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(32px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(32px * var(--tw-space-y-reverse))
}

.\!rounded-full {
    border-radius: 9999px !important
}

.rounded-lg {
    border-radius: .5rem
}

.rounded-md {
    border-radius: .375rem
}

.\!border {
    border-width: 1px !important
}

.border {
    border-width: 1px
}

.border-b-\[1px\] {
    border-bottom-width: 1px
}

.\!border-\[\#111729\] {
    --tw-border-opacity: 1 !important;
    border-color: rgb(17 23 41/var(--tw-border-opacity,1)) !important
}

.object-contain {
    object-fit: contain
}

.object-cover {
    object-fit: cover
}

.p-6 {
    padding: 1.5rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.py-4 {
    padding-top: 1rem
}

.pb-4, .py-4 {
    padding-bottom: 1rem
}

.text-center {
    text-align: center
}

.text-start {
    text-align: start
}

.text-\[1\.5em\] {
    font-size: 1.5em
}

.text-\[14px\] {
    font-size: 14px
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.font-bold {
    font-weight: 700
}

.font-semibold {
    font-weight: 600
}

.underline {
    text-decoration-line: underline
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.shadow {
    --tw-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)
}

.blur {
    --tw-blur: blur(8px)
}

.blur, .drop-shadow {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.drop-shadow {
    --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0,0,0,.1)) drop-shadow(0 1px 1px rgba(0,0,0,.06))
}

.grayscale {
    --tw-grayscale: grayscale(100%)
}

.filter, .grayscale {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.transition {
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.ease-in-out {
    transition-timing-function: cubic-bezier(.4,0,.2,1)
}

@font-face {
    font-family: Roboto;
    src: url(/fonts/roboto-v32-latin-regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

.flex-col {
    flex-direction: column
}

@font-face {
    font-family: Open Sans;
    src: url(/fonts/open-sans-v40-latin-regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Lato;
    src: url(/fonts/lato-v24-latin-regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Montserrat;
    src: url(/fonts/montserrat-v29-latin-regular.woff2) format("woff2");
    font-weight: 400;
    font-display: swap;
    font-style: normal
}

@font-face {
    font-family: Playfair Display;
    src: url(/fonts/playfair-display-v37-latin-regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Poppins;
    src: url(/fonts/poppins-v22-latin-regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Merriweather;
    src: url(/fonts/merriweather-v31-latin-regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Source Code Pro;
    src: url(/fonts/source-code-pro-v23-latin-regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Inconsolata;
    src: url(/fonts/inconsolata-v32-latin-regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Lobster;
    src: url(/fonts/lobster-v30-latin-regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Pacifico;
    src: url(/fonts/pacifico-v22-latin-regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Dancing Script;
    src: url(/fonts/dancing-script-v25-latin-regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Great Vibes;
    src: url(/fonts/great-vibes-v19-latin-regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Garamond;
    src: url(/fonts/eb-garamond-v30-latin-regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Libre Baskerville;
    src: url(/fonts/libre-baskerville-v14-latin-regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

.hidden-topirank {
    display: none
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

::-webkit-scrollbar-button {
    width: 0;
    height: 0
}

::-webkit-scrollbar-thumb {
    background: #eee;
    border: none;
    border-radius: 8px
}

    ::-webkit-scrollbar-thumb:hover {
        background: #f0f0f0
    }

    ::-webkit-scrollbar-thumb:active {
        background: #aaa
    }

::-webkit-scrollbar-track {
    border: none
}

    ::-webkit-scrollbar-track, ::-webkit-scrollbar-track:hover {
        background: hsla(0,0%,100%,0)
    }

        ::-webkit-scrollbar-track:active {
            background: hsla(0,0%,100%,0)
        }

::-webkit-scrollbar-corner {
    background: transparent
}

:root {
    --color-primary-100: #cec2ec;
    --color-primary-200: #ae9ae1;
    --color-primary-300: #8d70d5;
    --color-primary-400: #7251cc;
    --color-primary-500: #5733c3;
    --color-primary-600: #4c2fbd;
    --color-primary-700: #3c27b4;
    --color-primary-800: #2a21ad;
    --color-primary-900: #0015a1;
    --color-secondary-100: #f0efef;
    --color-secondary-200: #e5e4e4;
    --color-secondary-300: #d4d3d3;
    --color-secondary-400: #afaeae;
    --color-secondary-500: #8f8d8d;
    --color-secondary-600: #676666;
    --color-secondary-700: #545353;
    --color-secondary-800: #363535;
    --color-secondary-900: #161515;
    --color-tertiary-100: #f3f3f3;
    --color-tertiary-200: #ebebeb;
    --color-tertiary-300: #dcdcdc;
    --color-tertiary-400: #b8b8b8;
    --color-tertiary-500: #999;
    --color-tertiary-600: #707070;
    --color-tertiary-700: #5d5d5d;
    --color-tertiary-800: #3e3e3e;
    --color-tertiary-900: #1d1d1d;
    --background-primary-100: #fdfdfd;
    --background-primary-200: #fafafa;
    --background-primary-300: #f7f7f7;
    --background-primary-400: #f4f4f4;
    --background-primary-500: #f1f1f1;
    --background-primary-600: #ededed;
    --background-primary-700: #eaeaea;
    --background-primary-800: #e9e9e9;
    --background-primary-900: #e4e4e4
}

@media (prefers-color-scheme:dark) {
    :root {
        --color-primary-100: #cec2ec;
        --color-primary-200: #ae9ae1;
        --color-primary-300: #8d70d5;
        --color-primary-400: #7251cc;
        --color-primary-500: #5733c3;
        --color-primary-600: #4c2fbd;
        --color-primary-700: #3c27b4;
        --color-primary-800: #2a21ad;
        --color-primary-900: #0015a1;
        --color-secondary-100: #f0efef;
        --color-secondary-200: #e5e4e4;
        --color-secondary-300: #d4d3d3;
        --color-secondary-400: #afaeae;
        --color-secondary-500: #8f8d8d;
        --color-secondary-600: #676666;
        --color-secondary-700: #545353;
        --color-secondary-800: #363535;
        --color-secondary-900: #161515;
        --color-tertiary-100: #f3f3f3;
        --color-tertiary-200: #ebebeb;
        --color-tertiary-300: #dcdcdc;
        --color-tertiary-400: #b8b8b8;
        --color-tertiary-500: #999;
        --color-tertiary-600: #707070;
        --color-tertiary-700: #5d5d5d;
        --color-tertiary-800: #3e3e3e;
        --color-tertiary-900: #1d1d1d;
        --background-primary-100: #1a1a1a;
        --background-primary-200: #1d1d1d;
        --background-primary-300: #1f1f1f;
        --background-primary-400: #222;
        --background-primary-500: #242424;
        --background-primary-600: #262626;
        --background-primary-700: #282828;
        --background-primary-800: #2a2a2a;
        --background-primary-900: #2d2d2d
    }
}



@media (min-width:640px) {
    .sm\:col-span-1 {
        grid-column: span 1/span 1
    }

    .sm\:max-w-\[1080px\] {
        max-width: 1080px
    }

    .sm\:grid-cols-1 {
        grid-template-columns: repeat(1,minmax(0,1fr))
    }
}

@media (min-width:768px) {
    .md\:col-span-1 {
        grid-column: span 1/span 1
    }

    .md\:grid-cols-1 {
        grid-template-columns: repeat(1,minmax(0,1fr))
    }
}

@media (min-width:1024px) {
    .lg\:col-span-1 {
        grid-column: span 1/span 1
    }

    .lg\:col-span-3 {
        grid-column: span 3/span 3
    }

    .lg\:block {
        display: block
    }

    .lg\:w-\[264px\] {
        width: 264px
    }

    .lg\:w-\[calc\(100\%-264px\)\] {
        width: calc(100% - 264px)
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4,minmax(0,1fr))
    }

    .lg\:flex-row {
        flex-direction: row
    }

    .lg\:space-y-6 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(1.5rem * var(--tw-space-y-reverse))
    }

    .lg\:text-center {
        text-align: center
    }
}

@media (min-width:1280px) {
    .xl\:col-span-1 {
        grid-column: span 1/span 1
    }

    .xl\:col-span-3 {
        grid-column: span 3/span 3
    }

    .xl\:w-\[400px\] {
        width: 400px
    }

    .xl\:w-\[calc\(100\%-400px\)\] {
        width: calc(100% - 400px)
    }

    .xl\:grid-cols-4 {
        grid-template-columns: repeat(4,minmax(0,1fr))
    }

    .xl\:gap-\[60px\] {
        gap: 60px
    }

    .xl\:space-y-\[48px\] > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(48px * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(48px * var(--tw-space-y-reverse))
    }
}

@media (min-width:1536px) {
    .\32xl\:col-span-1 {
        grid-column: span 1/span 1
    }

    .\32xl\:col-span-3 {
        grid-column: span 3/span 3
    }
}

.first-qualities-default {
    --dark-bg: #0f172a;
    --light-text: #f8fafc;
    --gray-text: #94a3b8;
    display: flex;
    justify-items: center;
    align-items: center;
    flex-direction: column;
    width: 100%
}

    .first-qualities-default .tires-image {
        width: 100%;
        max-width: 900px;
        height: 400px;
        margin: 0 auto 50px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04);
        transition: transform .3s ease
    }

        .first-qualities-default .tires-image:hover {
            transform: translateY(-5px)
        }

    .first-qualities-default .section-title {
        text-align: center;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        position: relative;
        display: inline-block;
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
        word-wrap: break-word;
        box-sizing: inherit;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
        padding: 0;
        border: 0;
        font-style: inherit;
        font-size: 1.5em;
        line-height: 1.2em;
        font-weight: 600;
        text-transform: none
    }

@media(max-width:1000px) {
    .first-qualities-default .section-title {
        font-size: 28px !important;
        line-height: 36.4px
    }
}

.first-qualities-default .section-description {
    max-width: 700px;
    text-align: center;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-text)
}

@media(max-width:768px) {
    .first-qualities-default .section-description {
        font-size: 1rem;
        text-align: start
    }
}

.first-qualities-default .benefits-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px
}

.first-qualities-default .benefit-item {
    flex: 1;
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all .3s ease;
    border-bottom: 4px solid transparent;
    will-change: transform
}

    .first-qualities-default .benefit-item:hover {
        position: relative
    }

.first-qualities-default .benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px
}

.first-qualities-default .benefit-description {
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 1.05rem
}

.first-read-more-list-default {
    display: flex;
    justify-items: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 0 20px
}

    .first-read-more-list-default .content-wrapper {
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
        padding: 30px;
        background-color: #fff;
        border-radius: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,.05)
    }

    .first-read-more-list-default .main-carousel-container {
        max-width: 1200px;
        width: 100%;
        position: relative;
        padding: 0 120px;
        margin: 0 auto
    }

@media(max-width:1024px) {
    .first-read-more-list-default .main-carousel-container {
        padding: 0
    }
}

@media(max-width:768px) {
    .first-read-more-list-default .main-carousel-container {
        padding: 0
    }
}

@media(max-width:480px) {
    .first-read-more-list-default .main-carousel-container {
        padding: 0
    }
}

.first-read-more-list-default .carousel-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0;
    padding: 40px 0
}

@media(max-width:1024px) {
    .first-read-more-list-default .carousel-container {
        margin-bottom: 100px
    }
}

@media(max-width:768px) {
    .first-read-more-list-default .carousel-container {
        margin-bottom: 100px;
        padding: 30px 0
    }
}

.first-read-more-list-default .carousel {
    display: flex;
    transition: transform .5s cubic-bezier(.175,.885,.32,1.275);
    width: 100%
}

.first-read-more-list-default .event-card {
    width: calc(100% - 100px);
    min-width: calc(100% - 100px);
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 20px rgba(0,0,0,.15);
    transition: all .4s cubic-bezier(.175,.885,.32,1.275);
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px;
    margin: 0 50px;
    box-sizing: border-box;
    position: relative;
    border: 1px solid hsla(0,0%,100%,.3)
}

    .first-read-more-list-default .event-card:hover {
        transform: translateY(-10px) scale(1.02)
    }

@media(max-width:1024px) {
    .first-read-more-list-default .event-card {
        width: calc(100% - 80px);
        min-width: calc(100% - 80px);
        padding: 20px;
        margin: 0 40px
    }
}

@media(max-width:768px) {
    .first-read-more-list-default .event-card {
        width: calc(100% - 60px);
        min-width: calc(100% - 60px);
        padding: 16px;
        margin: 0 30px
    }
}

@media(max-width:480px) {
    .first-read-more-list-default .event-card {
        width: calc(100% - 40px);
        min-width: calc(100% - 40px);
        padding: 10px;
        margin: 0 20px
    }
}

.first-read-more-list-default .card-header {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    position: relative
}

    .first-read-more-list-default .card-header img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease
    }

@media(max-width:1024px) {
    .first-read-more-list-default .card-header {
        height: 300px
    }
}

@media(max-width:768px) {
    .first-read-more-list-default .card-header {
        height: 250px;
        margin-bottom: 30px
    }
}

@media(max-width:480px) {
    .first-read-more-list-default .card-header {
        height: 200px
    }
}

.first-read-more-list-default .event-card:hover .card-header img {
    transform: scale(1.05)
}

.first-read-more-list-default .card-body {
    width: 100%;
    box-sizing: border-box
}

.first-read-more-list-default .card-title {
    font-size: 36px;
    margin: 0 0 20px;
    color: #333;
    font-weight: 700;
    letter-spacing: -.5px
}

@media(max-width:1024px) {
    .first-read-more-list-default .card-title {
        font-size: 32px
    }
}

@media(max-width:768px) {
    .first-read-more-list-default .card-title {
        font-size: 24px
    }
}

@media(max-width:480px) {
    .first-read-more-list-default .card-title {
        font-size: 20px
    }
}

.first-read-more-list-default .card-date {
    font-weight: 700;
    margin: 0 0 20px;
    font-size: 22px;
    letter-spacing: .5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap
}

    .first-read-more-list-default .card-date .rating-container {
        display: flex;
        align-items: center;
        gap: 5px
    }

        .first-read-more-list-default .card-date .rating-container .stars {
            display: flex;
            align-items: center
        }

@media(max-width:768px) {
    .first-read-more-list-default .card-date {
        font-size: 20px
    }
}

.first-read-more-list-default .card-description {
    color: #666;
    line-height: 1.6;
    margin: 0 0 40px;
    font-size: 22px;
    padding: 0 30px
}

@media(max-width:1024px) {
    .first-read-more-list-default .card-description {
        font-size: 20px;
        padding: 0 20px;
        margin-bottom: 10px
    }
}

@media(max-width:768px) {
    .first-read-more-list-default .card-description {
        font-size: 18px;
        padding: 0;
        margin-bottom: 10px
    }
}

@media(max-width:480px) {
    .first-read-more-list-default .card-description {
        font-size: 16px
    }
}

.first-read-more-list-default .card-button {
    display: inline-block;
    padding: 18px 45px;
    color: #fff !important;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 700;
    transition: all .3s ease,background .5s ease;
    font-size: 22px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1
}

@media(max-width:768px) {
    .first-read-more-list-default .card-button {
        margin-top: 0
    }
}

.first-read-more-list-default .card-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: -1;
    border-radius: 40px
}

.first-read-more-list-default .card-button:hover {
    transform: scale(1.08)
}

    .first-read-more-list-default .card-button:hover:before {
        opacity: 1
    }

@media(max-width:768px) {
    .first-read-more-list-default .card-button {
        padding: 10px 20px;
        font-size: 14px
    }
}

.first-read-more-list-default .carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10
}

@media(max-width:1024px) {
    .first-read-more-list-default .carousel-nav {
        top: auto;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%) translateY(0);
        justify-content: center
    }
}

.first-read-more-list-default .nav-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    transition: all .3s cubic-bezier(.175,.885,.32,1.275);
    pointer-events: auto;
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
    position: absolute
}

    .first-read-more-list-default .nav-button.prev-btn {
        left: 0;
        transform: translateX(-50%)
    }

        .first-read-more-list-default .nav-button.prev-btn:hover:not(:disabled) {
            transform: translateX(-50%) scale(1.15)
        }

    .first-read-more-list-default .nav-button.next-btn {
        right: 0;
        transform: translateX(50%)
    }

        .first-read-more-list-default .nav-button.next-btn:hover:not(:disabled) {
            transform: translateX(50%) scale(1.15)
        }

    .first-read-more-list-default .nav-button:disabled {
        opacity: .3;
        cursor: not-allowed;
        background: linear-gradient(135deg,#a9a9a9,#737373);
        box-shadow: 0 5px 20px rgba(0,0,0,.1)
    }

@media(max-width:1024px) {
    .first-read-more-list-default .nav-button {
        width: 70px;
        height: 70px;
        font-size: 28px
    }
}

@media(max-width:768px) {
    .first-read-more-list-default .nav-button {
        width: 60px;
        height: 60px;
        font-size: 24px
    }
}

@media(max-width:480px) {
    .first-read-more-list-default .nav-button {
        width: 50px;
        height: 50px;
        font-size: 20px
    }
}

.faqContainer {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    text-transform: none;
    font-size: 17px;
    line-height: 1.6;
    word-wrap: break-word;
    box-sizing: inherit;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem
}

    .faqContainer .faq {
        display: flex;
        justify-content: center;
        flex-direction: column
    }

    .faqContainer h2 {
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
        margin-top: 1.5rem;
        padding: 0;
        border: 0;
        font-style: inherit;
        font-size: 1.2em;
        line-height: 1.2em;
        font-weight: 600;
        margin-bottom: 0 !important;
        color: #111729
    }

    .faqContainer .description, .faqContainer h2 {
        word-wrap: break-word;
        box-sizing: inherit;
        text-transform: none
    }

    .faqContainer .description {
        font-weight: 400;
        font-size: 14px;
        line-height: 160%;
        text-align: center;
        margin-bottom: 16px;
        color: #747474
    }

    .faqContainer .faqItem {
        margin-bottom: 10px;
        padding: 24px;
        border-radius: 8px;
        border: 1px solid transparent
    }

    .faqContainer .faqQuestion {
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
        text-transform: none;
        word-wrap: break-word;
        font-size: 1.2rem;
        font-weight: 500;
        line-height: 130%;
        box-sizing: inherit;
        cursor: pointer;
        display: flex;
        word-break: auto-phrase;
        justify-content: space-between;
        align-items: center;
        transition: all .5s ease
    }

        .faqContainer .faqQuestion.active {
            margin-bottom: 12px
        }

    .faqContainer .faqAnswer {
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
        text-transform: none;
        font-size: 14px;
        font-weight: 400;
        line-height: 160%;
        word-wrap: break-word;
        box-sizing: inherit;
        transition: all .5s ease;
        opacity: 0;
        max-height: 0;
        overflow: hidden
    }

        .faqContainer .faqAnswer.active {
            opacity: 1;
            max-height: 900px
        }

.first-faq-cards {
    width: 100%
}

    .first-faq-cards .faqItem {
        margin-bottom: 0;
        border-radius: 0;
        padding: 24px 0 16px;
        border-bottom: 1px solid #a7a7a7
    }

    .first-faq-cards .faqQuestion.active {
        color: #5045f0
    }

.first-faq-first {
    width: 100%
}

    .first-faq-first .faqItem {
        color: #f6f6f6;
        background: #111729
    }

    .first-faq-first .faqQuestion.active {
        margin-bottom: 12px
    }

.first-faq-second {
    width: 100%
}

    .first-faq-second .faqItem {
        border: 1px solid #111729
    }

    .first-faq-second .faqQuestion.active {
        margin-bottom: 12px
    }

.first-faq-default {
    --primary: #fff;
    --secondary: #f8f9fa;
    --accent: #4a00e0;
    --accent-light: #8e2de2;
    --highlight: #00b4d8;
    --text: #212529;
    --text-secondary: #495057;
    --card-bg: hsla(0,0%,100%,.95);
    --card-border: rgba(74,0,224,.3);
    --shadow-color: rgba(0,0,0,.15);
    --section-bg: hsla(0,0%,100%,.98);
    --card-gap: 2rem;
    --card-width: 340px;
    --card-height: auto;
    --card-min-height: 240px;
    width: 100%
}

    .first-faq-default .faqContainer {
        background: var(--section-bg);
        border-radius: 18px;
        padding: 3.5rem;
        width: 100%;
        max-width: 1200px;
        box-shadow: 0 8px 20px rgba(0,0,0,.1);
        border: 1px solid rgba(74,0,224,.15);
        position: relative;
        overflow: hidden
    }

        .first-faq-default .faqContainer:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(to right,var(--accent),var(--highlight))
        }

    .first-faq-default h2 {
        margin-bottom: 2rem !important;
        text-align: center;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 0 10px rgba(142,45,226,.2);
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
        word-wrap: break-word;
        box-sizing: inherit;
        margin-top: 1.5rem;
        padding: 0;
        border: 0;
        font-style: inherit;
        font-size: 1.5em;
        line-height: 1.2em;
        font-weight: 600;
        text-transform: none
    }

    .first-faq-default .faq {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: var(--card-gap);
        width: 100%;
        justify-content: center
    }

    .first-faq-default .faqItem {
        background: var(--card-bg);
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: var(--card-min-height);
        max-height: 300px;
        cursor: pointer;
        transition: all .4s ease;
        border: 1px solid var(--card-border);
        box-shadow: 0 4px 10px rgba(0,0,0,.1);
        position: relative;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        overflow: auto;
        box-sizing: border-box;
        justify-content: space-between
    }

        .first-faq-default .faqItem .card-highlight {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            opacity: .7;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
            background: linear-gradient(to right,var(--accent),var(--highlight))
        }

        .first-faq-default .faqItem:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,.1)
        }

        .first-faq-default .faqItem.active {
            border-color: var(--accent);
            box-shadow: 0 8px 15px rgba(0,0,0,.15)
        }

        .first-faq-default .faqItem:focus {
            outline: 1px solid var(--accent)
        }

        .first-faq-default .faqItem.active .buttonFaq, .first-faq-default .faqItem.active .faqQuestion, .first-faq-default .faqItem.active .preview-text {
            display: none !important
        }

        .first-faq-default .faqItem.active .faqAnswer {
            display: block !important;
            opacity: 1 !important;
            max-height: none !important;
            overflow: visible !important
        }

        .first-faq-default .faqItem:not(.active) .faqAnswer {
            display: none !important
        }

    .first-faq-default .faqQuestion {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text);
        display: flex;
        align-items: center;
        line-height: 1.4;
        margin-bottom: 1rem
    }

    .first-faq-default .question-icon {
        margin-right: 1rem;
        font-size: 1.6rem;
        color: var(--accent)
    }

    .first-faq-default .preview-text {
        font-size: 1rem;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        max-height: calc(var(--card-min-height) - 5rem);
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto
    }

    .first-faq-default .faqAnswer, .first-faq-default .preview-text {
        color: var(--text-secondary);
        margin: 0;
        padding: 0;
        width: 100%;
        word-break: break-word
    }

    .first-faq-default .faqAnswer {
        line-height: 1.7;
        font-size: 1.05rem;
        max-height: calc(var(--card-min-height) - 3rem);
        overflow-y: auto;
        animation: fadeIn .3s ease
    }

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@media(max-width:1024px) {
    .first-faq-default {
        --card-gap: 1.5rem
    }

        .first-faq-default .faqContainer {
            padding: 2.5rem
        }
}

@media(max-width:768px) {
    .first-faq-default {
        --card-gap: 1rem
    }

        .first-faq-default .faq {
            grid-template-columns: 1fr
        }

        .first-faq-default .faqContainer {
            padding: 2rem
        }

        .first-faq-default .faqItem {
            padding: 1.2rem
        }

        .first-faq-default h2 {
            font-size: 2.2rem;
            margin-bottom: 1.8rem !important
        }
}

@media(max-width:600px) {
    .first-faq-default .faqContainer {
        padding: 2rem
    }

    .first-faq-default h2 {
        font-size: 2rem
    }
}

@media(max-width:480px) {
    .first-faq-default .faqContainer {
        padding: 1rem
    }

    .first-faq-default h2 {
        font-size: 1.8rem
    }
}

@media(max-width:375px) {
    .first-faq-default .faqItem {
        padding: .8rem !important
    }

    .first-faq-default .faqAnswer, .first-faq-default .faqQuestion, .first-faq-default .preview-text {
        font-size: 1rem !important
    }

    .first-faq-default .card-highlight {
        height: 3px !important
    }
}

@media(max-width:425px) {
    .first-faq-default {
        padding: 0 !important;
        box-shadow: none !important
    }
}

.Table_first-table-interactive__Y8bwx {
    --font-weight: 300;
    --text-transform: none;
    --font-size: 13px;
    --line-height: 1.6;
    --border-spacing: 0;
    --border-collapse: separate;
    --box-sizing: inherit;
    --border-radius: 10px;
    --padding: 10px;
    --text-align: center;
    --border-width: 3px;
    --font-smoothing: antialiased;
    --font-family: inherit;
    --caption-font-size: 18px;
    --caption-margin: 10px 0;
    --table-bg-color: #f7f7f7;
    --table-color: #000;
    --thead-color: #2a21ad;
    --border-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: var(--font-smoothing);
    font-weight: var(--font-weight);
    text-transform: var(--text-transform);
    font-size: var(--font-size);
    line-height: var(--line-height);
    font-family: var(--font-family);
    word-wrap: break-word;
    box-sizing: var(--box-sizing);
    border-spacing: var(--border-spacing);
    width: 100%;
    border-collapse: var(--border-collapse);
    overflow-x: auto;
    margin-bottom: 1rem;
    margin-top: 1rem;
    max-width: 100%
}

    .Table_first-table-interactive__Y8bwx table {
        min-width: 100%;
        width: 100%;
        border-collapse: separate;
        border-spacing: 0
    }

    .Table_first-table-interactive__Y8bwx caption {
        margin: var(--caption-margin);
        font-size: 1.5em;
        font-weight: 600;
        line-height: 130%;
        text-align: left
    }

    .Table_first-table-interactive__Y8bwx thead, .Table_first-table-interactive__Y8bwx tr {
        color: var(--thead-color)
    }

    .Table_first-table-interactive__Y8bwx table > thead {
        background: #fff
    }

    .Table_first-table-interactive__Y8bwx td, .Table_first-table-interactive__Y8bwx th {
        font-size: var(--font-size);
        line-height: var(--line-height);
        word-wrap: break-word;
        box-sizing: var(--box-sizing);
        padding: var(--padding);
        text-align: var(--text-align);
        position: relative;
        border: 1px solid var(--border-color);
        background-color: var(--table-bg-color)
    }

    .Table_first-table-interactive__Y8bwx table > thead > tr > th {
        font-weight: 500;
        background-color: rgba(80,69,240,.051);
        color: var(--thead-color)
    }

    .Table_first-table-interactive__Y8bwx table > tbody > tr > td {
        color: var(--table-color)
    }

    .Table_first-table-interactive__Y8bwx td:before, .Table_first-table-interactive__Y8bwx th:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: var(--border-radius);
        border: 2px solid var(--border-color);
        box-sizing: border-box;
        pointer-events: none;
        z-index: 0
    }

    .Table_first-table-interactive__Y8bwx td:after, .Table_first-table-interactive__Y8bwx th:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: var(--border-width) solid var(--border-color);
        border-radius: 0;
        box-sizing: border-box;
        pointer-events: none;
        z-index: 0
    }

.Table_first-table-first__t9sqG {
    --font-weight: 300;
    --text-transform: none;
    --font-size: 13px;
    --line-height: 1.6;
    --border-radius: 8px;
    --border-spacing: 0;
    --border-collapse: collapse;
    --box-sizing: inherit;
    --padding: 10px;
    --text-align: center;
    --border-width: 1px;
    --font-smoothing: antialiased;
    --font-family: inherit;
    --caption-font-size: 18px;
    --caption-margin: 24px 0;
    --table-bg-color: #eee;
    --thead-bg-color: #5045f00d;
    --table-color: #000;
    --thead-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: var(--font-smoothing);
    font-weight: var(--font-weight);
    text-transform: var(--text-transform);
    font-size: var(--font-size);
    line-height: var(--line-height);
    font-family: var(--font-family);
    word-wrap: break-word;
    box-sizing: var(--box-sizing);
    border-spacing: var(--border-spacing);
    width: 100%;
    border-collapse: var(--border-collapse);
    overflow-x: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-width: 100%
}

    .Table_first-table-first__t9sqG table {
        min-width: 100%;
        width: 100%
    }

    .Table_first-table-first__t9sqG caption {
        margin: var(--caption-margin);
        font-size: 1.5em;
        font-weight: 600;
        line-height: 130%;
        text-align: left
    }

    .Table_first-table-first__t9sqG table {
        border-collapse: separate;
        border-spacing: 0
    }

        .Table_first-table-first__t9sqG table > thead {
            background: #fff
        }

            .Table_first-table-first__t9sqG table > thead > tr > th {
                background-color: var(--thead-bg-color);
                color: #2a21ad;
                overflow: hidden;
                text-overflow: ellipsis;
                font-size: 13px;
                font-style: normal;
                font-weight: 600;
                line-height: 14.583px
            }

        .Table_first-table-first__t9sqG table > tbody > tr > td {
            background-color: var(--thead-color);
            color: var(--table-color)
        }

    .Table_first-table-first__t9sqG td, .Table_first-table-first__t9sqG th {
        font-size: var(--font-size);
        line-height: var(--line-height);
        word-wrap: break-word;
        padding: var(--padding);
        box-sizing: var(--box-sizing);
        text-align: var(--text-align);
        border: 1px solid rgba(75,65,227,.05)
    }

    .Table_first-table-first__t9sqG table > tbody > tr:last-child td:last-child, .Table_first-table-first__t9sqG table > thead > tr:last-child td:last-child {
        border-bottom-right-radius: var(--border-radius)
    }

.Table_first-table-second__js6Y1 {
    --font-weight: 300;
    --text-transform: none;
    --font-size: 13px;
    --line-height: 1.6;
    --border-radius: 8px;
    --border-spacing: 0;
    --border-collapse: collapse;
    --box-sizing: inherit;
    --padding: 10px;
    --text-align: center;
    --border-width: 1px;
    --font-smoothing: antialiased;
    --font-family: inherit;
    --caption-font-size: 18px;
    --caption-margin: 24px 0;
    --table-bg-color: #eee;
    --thead-bg-color: #5045f00d;
    --table-color: #000;
    --thead-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: var(--font-smoothing);
    font-weight: var(--font-weight);
    text-transform: var(--text-transform);
    font-size: var(--font-size);
    line-height: var(--line-height);
    font-family: var(--font-family);
    word-wrap: break-word;
    box-sizing: var(--box-sizing);
    border-spacing: var(--border-spacing);
    width: 100%;
    border-collapse: var(--border-collapse);
    overflow-x: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-width: 100%
}

    .Table_first-table-second__js6Y1 table {
        min-width: 100%;
        width: 100%;
        border-collapse: var(--border-collapse);
        border-spacing: 0;
        border-bottom-style: solid
    }

    .Table_first-table-second__js6Y1 caption {
        margin: var(--caption-margin);
        font-size: 1.5em;
        font-weight: 600;
        line-height: 130%;
        text-align: left
    }

    .Table_first-table-second__js6Y1 table > thead {
        background: #fff
    }

        .Table_first-table-second__js6Y1 table > tbody > tr > th, .Table_first-table-second__js6Y1 table > thead > tr > th {
            background-color: var(--thead-bg-color);
            color: #2a21ad;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: 13px;
            font-style: normal;
            font-weight: 600;
            line-height: 14.583px
        }

    .Table_first-table-second__js6Y1 table > tbody > tr > td {
        background-color: var(--thead-color);
        color: var(--table-color)
    }

    .Table_first-table-second__js6Y1 td, .Table_first-table-second__js6Y1 th {
        font-size: var(--font-size);
        line-height: var(--line-height);
        word-wrap: break-word;
        padding: var(--padding);
        box-sizing: var(--box-sizing);
        text-align: var(--text-align)
    }

    .Table_first-table-second__js6Y1 table > tbody > tr > th, .Table_first-table-second__js6Y1 table > thead > tr > td, .Table_first-table-second__js6Y1 table > thead > tr > th {
        border-color: rgba(80,69,240,.05);
        border-style: none solid solid none;
        border-width: 1px
    }

        .Table_first-table-second__js6Y1 table > tbody > tr > th:last-child, .Table_first-table-second__js6Y1 table > thead > tr > td:last-child, .Table_first-table-second__js6Y1 table > thead > tr > th:last-child {
            border-right-style: none
        }

    .Table_first-table-second__js6Y1 table > tbody > tr > th, .Table_first-table-second__js6Y1 table > thead > tr:last-child > td, .Table_first-table-second__js6Y1 table > thead > tr > th {
        border-bottom-style: none
    }

    .Table_first-table-second__js6Y1 table > tbody > tr > th, .Table_first-table-second__js6Y1 table > thead > tr > th {
        border-bottom-style: solid
    }

    .Table_first-table-second__js6Y1 table > tbody > tr:last-child > th:first-child, .Table_first-table-second__js6Y1 table > thead > tr:last-child > th:first-child {
        border-bottom-style: none
    }

    .Table_first-table-second__js6Y1 table > tbody > tr:first-child > th:first-child, .Table_first-table-second__js6Y1 table > thead > tr:first-child > th:first-child {
        border-bottom-style: solid
    }

.Table_captionSticky__o23Ua {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    margin: var(--caption-margin);
    font-size: 1.5em;
    font-weight: 600;
    line-height: 130%;
    text-align: left
}

.Table_first-table-default__LTxi4 {
    --font-weight: 300;
    --text-transform: none;
    --font-size: 0.875rem;
    --line-height: 1.6;
    --border-radius: 12px;
    --border-spacing: 0;
    --border-collapse: collapse;
    --box-sizing: inherit;
    --padding: 14px 18px;
    --text-align: left;
    --font-smoothing: antialiased;
    --font-family: "Inter",-apple-system,BlinkMacSystemFont,sans-serif;
    --caption-font-size: 1.4rem;
    --caption-margin: 0 0 20px 0;
    --primary-color: #2b2b2c;
    --secondary-color: #a29bfe;
    --highlight-color: #fd79a8;
    --text-dark: #2d3436;
    --text-light: #f5f6fa;
    --table-bg-color: #fff;
    --header-bg-color: #8566ff;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: var(--font-smoothing);
    font-weight: var(--font-weight);
    text-transform: var(--text-transform);
    font-size: var(--font-size);
    line-height: var(--line-height);
    font-family: var(--font-family);
    word-wrap: break-word;
    box-sizing: var(--box-sizing);
    border-spacing: var(--border-spacing);
    width: 100%;
    border-collapse: var(--border-collapse);
    overflow-x: auto;
    perspective: 1000px;
    transform-style: preserve-3d;
    margin-top: 2rem;
    margin-bottom: 2rem
}

    .Table_first-table-default__LTxi4 table {
        min-width: 100%;
        border-collapse: collapse;
        box-shadow: 0 4px 20px rgba(var(--primary-color),.15);
        border-radius: var(--border-radius);
        overflow: hidden;
        transform-style: preserve-3d;
        transition: all .3s ease;
        background: #fff
    }

        .Table_first-table-default__LTxi4 table:hover {
            box-shadow: 0 8px 30px rgba(var(--primary-color),.3);
            transform: translateY(-2px)
        }

    .Table_first-table-default__LTxi4 caption {
        font-size: var(--caption-font-size);
        font-weight: 700;
        margin-bottom: 20px;
        color: #333;
        text-align: left;
        padding-left: 0;
        width: 100%
    }

    .Table_first-table-default__LTxi4 thead tr {
        background: var(--header-bg-color)
    }

    .Table_first-table-default__LTxi4 th {
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        font-size: .75rem;
        position: relative;
        text-shadow: 0 1px 2px rgba(0,0,0,.1);
        border: none;
        cursor: pointer;
        padding-right: 20px;
        background-color: var(--header-bg-color);
        transition: background-color .3s ease
    }

        .Table_first-table-default__LTxi4 th:hover {
            background-color: var(--secondary-color)
        }

    .Table_first-table-default__LTxi4 tbody th {
        background: var(--header-bg-color);
        color: #fff;
        font-weight: 600;
        text-transform: uppercase
    }

    .Table_first-table-default__LTxi4 tr {
        background-color: #fff;
        transition: all .3s cubic-bezier(.25,.8,.25,1)
    }

    .Table_first-table-default__LTxi4 tbody tr.Table_verticalRow__zgJgn:hover {
        background-color: transparent
    }

    .Table_first-table-default__LTxi4 tbody tr:not(.Table_verticalRow__zgJgn):hover {
        background-color: #E60349;
        transform: scale(1.005);
        box-shadow: 0 4px 15px rgba(var(--primary-color),.2)
    }

        .Table_first-table-default__LTxi4 tbody tr:not(.Table_verticalRow__zgJgn):hover td {
            color: var(--primary-color)
        }

    .Table_first-table-default__LTxi4 tbody tr.Table_verticalRow__zgJgn:hover td:not(.Table_highlightedCell__juc2h) {
        color: inherit
    }

    .Table_first-table-default__LTxi4 td, .Table_first-table-default__LTxi4 th {
        font-size: var(--font-size);
        line-height: var(--line-height);
        word-wrap: break-word;
        padding: var(--padding);
        box-sizing: var(--box-sizing);
        text-align: var(--text-align);
        transition: all .2s ease
    }

    .Table_first-table-default__LTxi4 .Table_highlightedCell__juc2h {
        background-color: #f0f0ff !important;
        color: var(--primary-color) !important;
        font-weight: 500;
        box-shadow: 0 2px 10px rgba(108,92,231,.1);
        position: relative;
        z-index: 1
    }

    .Table_first-table-default__LTxi4 .Table_highlight__pUu0d {
        font-weight: 700;
        color: var(--primary-color)
    }

    .Table_first-table-default__LTxi4 .Table_sort-arrow__kZa31 {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        font-size: .7rem;
        opacity: .8;
        color: #fff
    }

    .Table_first-table-default__LTxi4 tr:hover .Table_sort-arrow__kZa31 {
        background-color: var(--primary-color);
        color: #fff;
        box-shadow: 0 4px 8px rgba(var(--primary-color),.2);
        transform: translateY(-1px)
    }

.Table_tableResponsiveWrapper__nUnU9 {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: "-ms-autohiding-scrollbar";
    margin-bottom: 2.5rem
}

.Table_responsiveContainer__OgEIW {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important
}

@media(max-width:768px) {
    .Table_tableResponsiveWrapper__nUnU9 {
        width: 100%;
        overflow-x: auto
    }

    .Table_responsiveContainer__OgEIW {
        padding-bottom: 15px !important;
        padding-left: 0 !important;
        padding-top: 0 !important
    }

    .Table_first-table-default__LTxi4, .Table_first-table-first__t9sqG, .Table_first-table-interactive__Y8bwx, .Table_first-table-second__js6Y1 {
        padding: 0;
        margin-left: 0;
        margin-right: 0
    }

        .Table_first-table-default__LTxi4 table, .Table_first-table-first__t9sqG table, .Table_first-table-interactive__Y8bwx table, .Table_first-table-second__js6Y1 table {
            width: 100%
        }

        .Table_first-table-default__LTxi4 caption, .Table_first-table-first__t9sqG caption, .Table_first-table-interactive__Y8bwx caption, .Table_first-table-second__js6Y1 caption {
            padding: 0 15px
        }
}

@media(max-width:650px) {
    .Table_first-table-default__LTxi4 caption, .Table_first-table-first__t9sqG caption, .Table_first-table-interactive__Y8bwx caption, .Table_first-table-second__js6Y1 caption {
        font-size: 1.2rem
    }

    .Table_first-table-default__LTxi4 th, .Table_first-table-first__t9sqG th, .Table_first-table-interactive__Y8bwx th, .Table_first-table-second__js6Y1 th {
        font-size: 14px;
        padding: 10px 14px;
        white-space: nowrap
    }

    .Table_first-table-default__LTxi4 td, .Table_first-table-first__t9sqG td, .Table_first-table-interactive__Y8bwx td, .Table_first-table-second__js6Y1 td {
        font-size: 14px;
        padding: 10px 14px
    }
}

@media(max-width:480px) {
    .Table_first-table-default__LTxi4 caption, .Table_first-table-first__t9sqG caption, .Table_first-table-interactive__Y8bwx caption, .Table_first-table-second__js6Y1 caption {
        font-size: 1.1rem
    }

    .Table_first-table-default__LTxi4 td, .Table_first-table-default__LTxi4 th, .Table_first-table-first__t9sqG td, .Table_first-table-first__t9sqG th, .Table_first-table-interactive__Y8bwx td, .Table_first-table-interactive__Y8bwx th, .Table_first-table-second__js6Y1 td, .Table_first-table-second__js6Y1 th {
        font-size: 12px
    }
}

.Table_mobileCards__fWWiW {
    display: none;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%
}

.Table_machineCard__x9UDj {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0dddd;
    transition: all .3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,.08)
}

.Table_cardHeader__9Cn10 {
    padding: 1rem;
    font-weight: 600;
    text-align: center;
    color: #fff
}

.Table_cardBody__k42l_ {
    padding: 1rem
}

.Table_specRow__j9B6F {
    display: flex;
    justify-content: space-between;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(0,0,0,.05)
}

    .Table_specRow__j9B6F:last-child {
        border-bottom: none
    }

.Table_specLabel__rSPoY {
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase
}

.Table_specValue__Mnmey {
    text-align: right
}

@media(max-width:1024px) {
    .Table_tableResponsiveWrapper__nUnU9 table {
        display: none
    }

    .Table_mobileCards__fWWiW {
        display: grid
    }
}

@media(max-width:480px) {
    .Table_specRow__j9B6F {
        flex-direction: column;
        gap: .5rem;
        text-align: center
    }

    .Table_specLabel__rSPoY, .Table_specValue__Mnmey {
        text-align: center
    }
}

.Timeline_first-timeline-default__aEnUy {
    width: 100%;
    position: relative;
    margin: 0 auto
}

    .Timeline_first-timeline-default__aEnUy h2 {
        font-size: 1.5em;
        font-weight: 600;
        line-height: 130%
    }

    .Timeline_first-timeline-default__aEnUy .Timeline_title___HHDy {
        color: #111729;
        font-size: 2em;
        font-weight: 500;
        line-height: 1.5
    }

    .Timeline_first-timeline-default__aEnUy .Timeline_description__ftMSz {
        color: #747474;
        font-size: 1em;
        font-weight: 400;
        line-height: 1.6;
        margin-bottom: 20px
    }

    .Timeline_first-timeline-default__aEnUy .Timeline_links__CyAfr, .Timeline_first-timeline-default__aEnUy .Timeline_small_content__Eare_ {
        display: none
    }

    .Timeline_first-timeline-default__aEnUy .Timeline_topic__Of3hM {
        font-size: 2.2rem;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        transition: all .6s cubic-bezier(.16,1,.3,1)
    }

        .Timeline_first-timeline-default__aEnUy .Timeline_topic__Of3hM:hover {
            transform: translateY(-2px)
        }

    .Timeline_first-timeline-default__aEnUy .Timeline_content__nqL_T {
        display: flex;
        height: 100%;
        transition: transform .8s cubic-bezier(.16,1,.3,1);
        will-change: transform;
        align-items: center
    }

    .Timeline_first-timeline-default__aEnUy .Timeline_timelineCarousel__PqPYb {
        position: relative;
        z-index: 2;
        width: 100%;
        overflow: hidden;
        perspective: 1000px
    }

@keyframes Timeline_gradientFlow__3oIz9 {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    to {
        background-position: 0 50%
    }
}

.Timeline_first-timeline-default__aEnUy .Timeline_timelineCard__oDO7c {
    width: calc(100% - 80px);
    min-width: calc(100% - 80px);
    background: #fff;
    border-radius: 16px;
    padding: 2.2rem;
    position: relative;
    text-align: center;
    flex-shrink: 0;
    transition: all .6s cubic-bezier(.16,1,.3,1);
    opacity: 0;
    transform: scale(.92) translateY(10px);
    box-shadow: 0 8px 20px -5px rgba(0,0,0,.1);
    margin: 20px 40px;
    backface-visibility: hidden
}

    .Timeline_first-timeline-default__aEnUy .Timeline_timelineCard__oDO7c:hover {
        transform: translateY(-3px)
    }

.Timeline_first-timeline-default__aEnUy .Timeline_active__0RU5L {
    opacity: 1;
    transform: scale(1) translateY(0)
}

.Timeline_first-timeline-default__aEnUy .Timeline_timelineLine__foXK7 {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-size: 300% 100%;
    transform: translateY(-50%);
    z-index: 0;
    border-radius: 10px;
    animation: Timeline_gradientFlow__3oIz9 12s ease infinite;
    filter: drop-shadow(0 0 6px rgba(59,130,246,.3))
}

.Timeline_first-timeline-default__aEnUy .Timeline_topic__Of3hM {
    display: inline-block;
    padding: .6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    transition: all .5s cubic-bezier(.16,1,.3,1);
    transform: translateY(5px)
}

.Timeline_first-timeline-default__aEnUy .Timeline_navButtons__hS_AE {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem
}

.Timeline_first-timeline-default__aEnUy .Timeline_navBtn__hpJm3 {
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    padding: .8rem 1.8rem;
    background: var(--card-bg);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all .4s cubic-bezier(.16,1,.3,1);
    font-size: 1rem;
    position: relative;
    overflow: hidden
}

    .Timeline_first-timeline-default__aEnUy .Timeline_navBtn__hpJm3:disabled {
        opacity: .5;
        cursor: not-allowed
    }

    .Timeline_first-timeline-default__aEnUy .Timeline_navBtn__hpJm3:hover {
        transform: translateY(-3px)
    }

@media(max-width:375px) {
    .Timeline_first-timeline-default__aEnUy .Timeline_timelineCard__oDO7c {
        padding: 1.1rem !important
    }

    .Timeline_first-timeline-default__aEnUy .Timeline_navButtons__hS_AE {
        gap: 1rem;
        margin-top: 0
    }
}

.Timeline_first-timeline-fourth__e8GU0 {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5em;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem
}

    .Timeline_first-timeline-fourth__e8GU0 .Timeline_timelineLine__foXK7 {
        display: none
    }

    .Timeline_first-timeline-fourth__e8GU0 .Timeline_content__nqL_T {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5em
    }

    .Timeline_first-timeline-fourth__e8GU0 .Timeline_links__CyAfr, .Timeline_first-timeline-fourth__e8GU0 .Timeline_small_content__Eare_ {
        display: none
    }

    .Timeline_first-timeline-fourth__e8GU0 h2 {
        font-size: 1.5em;
        font-weight: 600;
        line-height: 130%
    }

    .Timeline_first-timeline-fourth__e8GU0 .Timeline_title___HHDy {
        color: #111729;
        font-size: 2em;
        font-weight: 500;
        line-height: 1.5
    }

    .Timeline_first-timeline-fourth__e8GU0 .Timeline_description__ftMSz {
        color: #747474;
        font-size: 1em;
        font-weight: 400;
        line-height: 1.6
    }

    .Timeline_first-timeline-fourth__e8GU0 .Timeline_timeline_content__rYSr0 {
        display: flex;
        padding: 1em;
        flex-direction: column;
        align-items: flex-start;
        gap: 1em;
        align-self: stretch;
        border-radius: .5em;
        background: rgba(80,69,240,.05)
    }

        .Timeline_first-timeline-fourth__e8GU0 .Timeline_timeline_content__rYSr0 .Timeline_topic__Of3hM {
            color: #fff;
            font-size: .875em;
            font-weight: 500;
            line-height: 1.5;
            border-radius: 2em;
            background: #2a21ad;
            display: flex;
            padding: .5em 1em;
            justify-content: center;
            align-items: center;
            gap: .625em
        }

        .Timeline_first-timeline-fourth__e8GU0 .Timeline_timeline_content__rYSr0 .Timeline_sub_description__p8eVb {
            color: #747474;
            font-size: .875em;
            font-weight: 400;
            line-height: 1.6
        }

.Timeline_first-timeline-first__HpcNM {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5em;
    width: 100%
}

    .Timeline_first-timeline-first__HpcNM .Timeline_timelineLine__foXK7 {
        display: none
    }

    .Timeline_first-timeline-first__HpcNM .Timeline_content__nqL_T {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5em
    }

    .Timeline_first-timeline-first__HpcNM h2 {
        text-align: center;
        font-size: 1.5em;
        font-weight: 600;
        line-height: 130%
    }

    .Timeline_first-timeline-first__HpcNM .Timeline_links__CyAfr, .Timeline_first-timeline-first__HpcNM .Timeline_small_content__Eare_ {
        display: none
    }

    .Timeline_first-timeline-first__HpcNM .Timeline_title___HHDy {
        text-align: center;
        color: #111729;
        font-size: 2em;
        font-weight: 500;
        line-height: 1.5
    }

    .Timeline_first-timeline-first__HpcNM .Timeline_description__ftMSz {
        text-align: center;
        color: #747474;
        font-size: 1em;
        font-weight: 400;
        line-height: 1.6
    }

    .Timeline_first-timeline-first__HpcNM .Timeline_timeline_content__rYSr0 {
        display: flex;
        padding: 1em;
        flex-direction: column;
        align-items: center;
        gap: 1em;
        align-self: stretch;
        border-radius: .5em;
        border: .0625em solid #2a21ad
    }

        .Timeline_first-timeline-first__HpcNM .Timeline_timeline_content__rYSr0 .Timeline_topic__Of3hM {
            color: #fff;
            font-size: .875em;
            font-weight: 500;
            line-height: 1.5;
            border-radius: 2em;
            background: #2a21ad;
            display: flex;
            padding: .5em 1em;
            justify-content: center;
            align-items: center;
            gap: .625em
        }

        .Timeline_first-timeline-first__HpcNM .Timeline_timeline_content__rYSr0 .Timeline_sub_content__SeGNs {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            width: 100%
        }

        .Timeline_first-timeline-first__HpcNM .Timeline_timeline_content__rYSr0 .Timeline_sub_description__p8eVb {
            color: #747474;
            font-size: .875em;
            font-weight: 400;
            line-height: 1.6
        }

.Timeline_first-timeline-second___orB_ {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    width: 100%
}

    .Timeline_first-timeline-second___orB_ .Timeline_description__ftMSz, .Timeline_first-timeline-second___orB_ .Timeline_timelineLine__foXK7, .Timeline_first-timeline-second___orB_ .Timeline_topic__Of3hM {
        display: none
    }

    .Timeline_first-timeline-second___orB_ .Timeline_content__nqL_T {
        margin-bottom: 24px
    }

    .Timeline_first-timeline-second___orB_ h2 {
        text-align: center;
        font-size: 1.5em;
        font-weight: 600;
        line-height: 130%
    }

    .Timeline_first-timeline-second___orB_ .Timeline_small_content__Eare_ {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5em
    }

    .Timeline_first-timeline-second___orB_ .Timeline_links__CyAfr {
        display: flex;
        overflow-x: auto;
        gap: 2.25em;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        max-width: 100%
    }

    .Timeline_first-timeline-second___orB_ .Timeline_link__ZUcQw {
        flex: 0 0 auto;
        display: flex;
        color: #b7b7b7;
        text-align: center;
        font-size: 1em;
        font-weight: 400;
        line-height: 1.3;
        letter-spacing: .02em;
        text-transform: capitalize;
        cursor: pointer;
        transition: all .3s ease
    }

        .Timeline_first-timeline-second___orB_ .Timeline_link__ZUcQw svg {
            display: none
        }

    .Timeline_first-timeline-second___orB_ .Timeline_selected__zZ8DV {
        color: #2a21ad;
        text-align: right;
        transition: all .3s ease
    }

        .Timeline_first-timeline-second___orB_ .Timeline_selected__zZ8DV svg {
            display: flex
        }

    .Timeline_first-timeline-second___orB_ .Timeline_title___HHDy {
        color: #111729;
        font-size: 2em;
        font-weight: 500;
        line-height: 1.5
    }

    .Timeline_first-timeline-second___orB_ .Timeline_sub_content__SeGNs {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: .75em;
        width: 100%
    }

    .Timeline_first-timeline-second___orB_ .Timeline_sub_description__p8eVb {
        color: #747474;
        font-size: 1em;
        font-weight: 400;
        line-height: 1.6
    }

.Timeline_first-timeline-third__XX3vA {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    width: 100%
}

    .Timeline_first-timeline-third__XX3vA .Timeline_description__ftMSz, .Timeline_first-timeline-third__XX3vA .Timeline_timelineLine__foXK7, .Timeline_first-timeline-third__XX3vA .Timeline_topic__Of3hM {
        display: none
    }

    .Timeline_first-timeline-third__XX3vA .Timeline_content__nqL_T {
        margin-bottom: 24px
    }

    .Timeline_first-timeline-third__XX3vA h2 {
        text-align: center;
        font-size: 1.5em;
        font-weight: 600;
        line-height: 130%
    }

    .Timeline_first-timeline-third__XX3vA .Timeline_links__CyAfr, .Timeline_first-timeline-third__XX3vA .Timeline_small_content__Eare_ {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5em
    }

    .Timeline_first-timeline-third__XX3vA .Timeline_link__ZUcQw {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        color: #b7b7b7;
        text-align: left;
        font-size: 1em;
        font-weight: 400;
        line-height: 1.3;
        letter-spacing: .02em;
        text-transform: capitalize;
        cursor: pointer;
        transition: all .3s ease
    }

        .Timeline_first-timeline-third__XX3vA .Timeline_link__ZUcQw:before {
            content: "•";
            display: inline-block;
            margin-right: .5em;
            color: currentColor;
            transition: color .3s ease
        }

        .Timeline_first-timeline-third__XX3vA .Timeline_link__ZUcQw svg {
            display: none
        }

    .Timeline_first-timeline-third__XX3vA .Timeline_selected__zZ8DV {
        color: #2a21ad
    }

    .Timeline_first-timeline-third__XX3vA .Timeline_title___HHDy {
        color: #111729;
        font-size: 2em;
        font-weight: 500;
        line-height: 1.5
    }

    .Timeline_first-timeline-third__XX3vA .Timeline_sub_content__SeGNs {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: .75em;
        width: 100%
    }

    .Timeline_first-timeline-third__XX3vA .Timeline_sub_description__p8eVb {
        color: #747474;
        font-size: 1em;
        font-weight: 400;
        line-height: 1.6
    }




.Advantages_first-advantages-default__j3urM {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px
}

    .Advantages_first-advantages-default__j3urM .Advantages_advantagesTitle__Qevnu {
        font-size: 1.5em;
        font-weight: 600;
        line-height: 130%;
        text-align: center
    }

    .Advantages_first-advantages-default__j3urM .Advantages_advantagesContainer__cNNpE {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 16px
    }

    .Advantages_first-advantages-default__j3urM .Advantages_advantageItem__xJ_YF {
        padding: 24px;
        gap: 12px;
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        width: 100%
    }

    .Advantages_first-advantages-default__j3urM .Advantages_advantageItemNumber__PHR4z {
        font-size: 64px;
        font-weight: 500;
        line-height: 77.45px;
        text-align: center;
        margin-bottom: 12px
    }

    .Advantages_first-advantages-default__j3urM .Advantages_advantageItemTitle__W79j6 {
        font-size: 17px;
        font-weight: 500;
        line-height: 22.1px;
        text-align: center
    }

    .Advantages_first-advantages-default__j3urM .Advantages_advantageItemDescription__eUneh {
        font-size: 14px;
        font-weight: 400;
        line-height: 22.4px;
        text-align: center
    }

@media(min-width:1000px) {
    .Advantages_first-advantages-default__j3urM {
        gap: 48px
    }

        .Advantages_first-advantages-default__j3urM .Advantages_advantagesContainer__cNNpE {
            flex-direction: row;
            gap: 24px
        }
}