:root {
    --primary-bg: #B8FB3C;
    --page-fade: #F7FFE9;
    --page-light: #F3F3F3;
    --page-dark: #050A10;
    --tick-icon: url(../images/tech-images/check-icon.webp);
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.padding-left {
    --page-width: 1600px;
    padding-left: calc(50% - (var(--page-width) / 2) + 12px);
}

.button_theme-secondary {
    justify-content: center !important;
}

.button {
    transition: all 0.3s;
}

.button-secondary {
    display: flex !important;
    align-items: center;
    gap: 20px;
    width: fit-content !important;
}

.button-secondary {
  color: #FFF;
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

.button-secondary.button-icon::after {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.page-fade {
    background-color: var(--page-fade);
}

.primary-bg {
    background-color: var(--primary-bg);
}

.page-light {
    background-color: var(--page-light);
}

.page-dark {
    background-color: var(--page-dark);
}

.highlight-text {
    color: var(--primary-bg) !important;
}

/* Hero Banner */

.page-hero {
    padding: 50px 0 !important;
}

.shape-bg {
    position: absolute;
    bottom: 0;
    z-index: -1;
}

/* Listing Block */

.listing--wrapper ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
    width: 100%;
}

.listing--wrapper ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 500;
}

/* Steps Wrapper */

.step-padding {
    padding-bottom: 120px !important;
}

.steps--wrapper {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    margin: 120px 0 90px !important;
}

.step-arrow {
    position: absolute;
    inset: 0;
    margin: 20% auto auto;
}

.steps--wrapper li {
    background-color: var(--white-color);
    box-shadow: 0px 0px 24px 0px #00000026;
    border-radius: 30px;
    padding: 80px 30px 40px;
}

.steps--block {
    background-color: #FFEFE7;
    padding: 30px 30px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.steps--wrapper > li {
    width: 45%;
    position: relative;
    transform: rotate(9deg);
}

.steps--wrapper > li:nth-child(even) {
    margin-left: auto;
    transform: rotate(-7deg);
    margin-top: -130px;
}

.steps--wrapper li:nth-child(2) .steps--block,
.steps--wrapper li:nth-child(5) .steps--block {
    background-color: #E2E8FE;
}

.steps--wrapper li:nth-child(3) .steps--block {
    background-color: #F4E4FF;
}

/* Business Block */

.business--wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.business--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    background-color: var(--white-color);
    border: 1px solid #DEDEDE;
}

.business--block:hover {
    transform: translateY(-5px);
    border-color: var(--primary-bg);
}

.benefit--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    background-color: var(--white-color);
    border: 1px solid #DEDEDE;
}

/* Core Wrapper */

.core--wrapper {
    padding: 30px 30px;
    background-color: var(--page-dark);
}

.core-list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.core-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.core-list li img {
    width: 20px;
}

/* CTA Block */

.cta--block {
    padding: 90px 60px;
    background-color: var(--primary-color);
}

.cta--handler {
    background-color: var(--page-dark);
    border-radius: 30px;
    overflow: hidden;
    padding: 0 0 0 50px;
}

/* Faq */

.accordion__heading {
    font-weight: 500 !important;
}

@media only screen  and (max-width: 1599px) {

    .step-arrow {
        margin: 30% auto auto;
    }
}

@media only screen  and (max-width: 1200px) {

    .steps--wrapper li {
        padding: 20px 20px 20px;
    }

    .steps--wrapper > li:nth-child(even) {
        margin-top: -150px;
    }
}

@media only screen  and (max-width: 991px) {

    .cta--block .button_theme-secondary {
        width: fit-content !important;
        margin-inline: auto !important;
        display: flex;
    }

    .text-align-center {
        text-align: center;
    }

    .business--block {
        padding: 20px 20px;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 20px;
        margin: 0 0 20px;
    }

    .image-grid img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }

    .steps--wrapper {
        margin: 50px 0 0 !important;
        gap: 40px;
    }

    .step-arrow {
        display: none;
    }

    .steps--wrapper > li {
        width: 100%;
        transform: unset !important;
        margin: 0 !important;
    }

    .cta--block {
        padding: 40px 20px;
    }

    .business--wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media only screen  and (max-width: 767px) {

    .listing--wrapper ul {
        grid-template-columns: repeat(1, 1fr);
        width: fit-content;
        margin: auto;
        text-align: left;
    }

}