.page-bg {
    position: absolute;
    z-index: -1;
    width: 100%;
}

.bg-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.section-background {
    padding-top: calc(var(--header-height) + 40px);
}

.how-section h3 {
    text-align: center;
    margin-top: 30px;
}

.how-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.how-section svg {
    width: 100%;
    height: 100%;
    position: relative;
    left: -45px;
    margin-bottom: 70px;
}

.how-section .active {
    animation: pulse 2s infinite;
    cursor: pointer;
}

.how-section .glow {
    filter: drop-shadow(0 0 10px #8247FF);
}

.how-section .reset-button {
    cursor: pointer;
}

.how-section .payment-due-tooltip,
.how-section .step-link {
    cursor: pointer;
}

.question-section {
    background-color: #1F2933;
}

.question-section .question-wrapper {
    padding-top: 70px;
    padding-bottom: 70px;
    column-gap: 40px;
}

.question-section .left-side {
    width: 350px;
    max-width: 100%;
}

.question-section .left-side h2 {
    font-family: 'Montserrat-Bold';
    font-size: 48px;
    color: #F4F7FA;
    margin-bottom: 30px;
}

.question-section .left-side p {
    font-family: 'OpenSans-SemiBold';
    font-size: 18px;
    color: #F4F7FA;
}

.question-section .left-side p a {
    color: #F4F7FA;
    position: relative;
}

.question-section .left-side p a::after {
    content: '';
    background-color: #F4F7FA;
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 1px;
    transition: all 300ms ease;
    width: 100%;
}

.question-section .right-side {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.question-section .swiper-slide {
    border-radius: 25px;
    background-color: #F4F7FA;
    width: 100%;
    padding: 40px;
    padding-bottom: 60px;
}

.question-section .right-side .question-type {
    font-family: 'Montserrat-Bold';
    font-size: 16px;
    color: #8247FF;
    margin-bottom: 50px;
}

.question-section .right-side h3 {
    color: #1F2933;
    font-family: 'Montserrat-Bold';
    font-size: 24px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.question-section .right-side p {
    font-family: 'OpenSans-SemiBold';
    font-size: 18px;
    color: #1F2933;
    opacity: 0.8;
    line-height: 1.4;
}

.question-section .swiper-pagination-bullet-active {
    background-color: #6B6B6B;
}

.question-section .swiper-pagination {
    top: var(--padding);
    right: var(--padding);
    left: auto;
    transform: none;
    width: fit-content;
    height: fit-content;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next {
    top: auto;
    bottom: 20px;
    height: 48px;
    width: 48px;
}

.swiper-button-prev {
    left: auto;
    top: auto;
    bottom: 20px;
    right: 20px;
    transform: translateX(-100%);
    height: 48px;
    width: 48px;
}

@keyframes pulse {
    0% {
        filter: drop-shadow(0 0 10px transparent);
    }

    50% {
        filter: drop-shadow(0 0 10px #8247FF);
    }

    100% {
        filter: drop-shadow(0 0 10px transparent);
    }
}

.footer {
    background-image: linear-gradient(#1F2933, #F4F7FA);
}

.footer .footer-link,
.footer .all-rights {
    color: #F4F7FA;
}

@media screen and (max-width: 1500px) {
    .how-section svg {
        left: 0;
    }
}

@media screen and (max-width: 989px) {
    .how-section svg {
        margin-bottom: 40px;
    }

    .question-section .question-wrapper {
        flex-direction: column;
        row-gap: 20px;
    }
}