:root {
    --theme-secondary: #81041F0D;
    --theme-primary: #89FC00;
    --tick-icon: url(../images/repu-images/check-icon.webp);
}

body {
    color: #121212;
}

.highlight-text {
    color: var(--theme-primary);
}

.button-primary {
    background-color: var(--theme-primary);
    color: var(--black-color);
}

.button-primary:hover svg path {
    stroke: #fff;
    fill: unset;
}

/* Banner Intro */

.banner-intro {
    background-image: url(../images/repu-images/banner-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 180px 0 110px;
}

.tick-list {
    gap: 20px;
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(2, 1fr);
}

.tick-list li {
    font-size: 18px;
    padding: 0 0 0 32px;
    position: relative;
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 4px auto 0 0;
    width: 20px;
    height: 20px;
    background-size: 20px;
    background-repeat: no-repeat;
}

/* Step Block */

.sticky-blk {
    position: sticky;
    top: 160px;
}

.step--wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-block {
    border: 1px solid var(--black-color);
    padding: 20px 20px;
    width: 100%;
    border-radius: 15px;
    transition: all 0.3s;
}

.step-block .step-count {
    opacity: 1;
    color: var(--black-color);
}

.step-block:hover {
    border-color: #81041F;
    background-color: var(--theme-secondary);
    transform: translateY(-4px);
}

/* Benefit Block */

.benefit--block {
    background-size: cover;
    padding: 30px;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.benefit--content {
    background: #00000059;
    backdrop-filter: blur(40px);
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding: 30px 30px;
    width: 100%;
    height: 100%;
}

/* Bordered Block */

.bordered-block {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 20px 20px;
    transition: all 0.3s;
    flex-direction: column;
    background: transparent;
    border: 1px solid var(--black-color);
}

.bordered-block:hover {
    background: var(--theme-secondary);
    border-color: var(--theme-primary);
    transform: translateY(-5px);
}

/* Choose Slider */

.choose--slider .swiper-slide {
    height: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
}

.choose--block {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.choose--img img {
    width: 100%;
    height: 100%;
}

.choose--content {
    position: absolute;
    bottom: 0;
    padding: 30px;
}

/* Cta Block */

.cta-intro {
    background-image: url(../images/repu-images/cta-intro.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--black-color);
}

.cta-intro.intro-2 {
    background-image: url(../images/repu-images/cta-intro-2.webp);
}

/* Responsive Block */

@media screen and (max-width: 1399px) {

}

@media screen and (max-width: 1200px) {

}

@media screen and (max-width: 991px) {

    .text-align-center {
        text-align: center;
    }

    .row-order {
        flex-direction: column-reverse;
    }

    .banner-intro {
        padding-block: 70px !important;
    }
}

@media screen and (max-width: 767px) {

}