:root {
    --theme-secondary: #4981040A;
    --theme-primary: #89FC00;
}

body {
    color: #121212;
}

.highlight-text {
    color: var(--theme-primary);
}

.banner-intro {
    background-image: url(../images/marketing-images/banner-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 180px 0 110px;
}

.button-primary {
    background-color: var(--theme-primary);
    color: var(--black-color);
}

.button-primary:hover svg path {
    stroke: #fff;
    fill: unset;
}

.banner-intro ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* 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: var(--theme-primary);
    background-color: var(--theme-secondary);
    transform: translateY(-4px);
}

/* Listing Wrapper */

.listing--wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.list--tag {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Partner Slider */

.partner--slider .swiper-slide {
    height: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
}

.partner--slider .bordered-block:hover {
    transform: translateY(0);
}

/* 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);
}

.icon--block {
    width: 8rem;
    min-width: 8rem;
    height: 8rem;
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(40px);
    background-color: var(--white-color);
    box-shadow: 0px 28px 44px 0px #00000033;
}

.bordered-block:hover {
    background: var(--theme-secondary);
    border-color: var(--theme-primary);
    transform: translateY(-5px);
}

.bordered-block.hover-dark:hover {
    background: var(--theme-primary);
    border-color: var(--theme-primary);
    color: var(--white-color);
    transform: translateY(-5px);
}



/* Cta Block */

.cta-intro {
    background-image: url(../images/marketing-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/marketing-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) {

}