:root {
    --primary-color: #3B6D2F !important;
}

.light--bg {
    background-color: #F3FAF2;
}

.rounded-20 {
    border-radius: 20px;
}

.text-space {
    letter-spacing: 2px;
}

.gradient-border.dark {
    background: #0A0511;
}

.swiper-wrapper {
    display: flex;
}

.swiper-wrapper .swiper-slide {
    height: auto;
}

.mb-30 {
    margin-bottom: 30px;
}

.cus-border {
    border: 1px solid var(--primary-color);
}

.buss--card {
    border-color: var(--primary-color) !important;
}

.text-bg-clr {
    background: #7e1bff45;
}

.brands-image,
.brands-image img {
    width: 200px;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    flex: 0 0 200px;
}

.w-fit {
    width: fit-content;
    height: fit-content;
}

.check-img {
    width: 24px;
}

.bg-theme {
    background: #3b6d2f;
}

.button_theme-primary i.fa-regular.fa-angle-right {
    background: url('../images/mobile-app-images/right-btn-arrow.svg')no-repeat center / contain !important;
}

.button_theme-primary.white {
    background: #fff;
    color: var(--primary-color);
}

.button_theme-primary.white i.fa-regular {
    filter: brightness(1) invert(0) !important;
}

.animation-img {
    animation: moveUpDown 2s ease-in-out infinite;
}

/* Listing Wrapper */
.check-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.check-list li {
    font-size: 18px;
    padding: 0px 0 20px 35px;
    position: relative;
    z-index: 1;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 24px;
    height: 24px;
    background: url('../images/subscription-platform-images/bell.svg') no-repeat center;
    z-index: -1;
    background-size: contain;
    animation: hithere 3s ease infinite;
}

.cta-1 .cta-block {
    background: var(--primary-light);
}

.cta-block {
    border-radius: 20px;
    position: relative;
    height: 100%;
}

/* common css end */

.sub-main {
    padding: 15px 20px;
    border: 1px solid #3B6D2F;
    border-radius: 10px;
    background: #fff;
    justify-content: space-between;
    transition: 0.5s all ease;
    gap: 20px;
    align-items: center;
}

.sub-main:hover {
    background: #F3FAF2;
}

.sub-main .sub-image,
.sub-main .sub-image img {
    width: 150px;
    max-width: 150px;
    flex: 0 0 150px;
    height: 100%;
    object-fit: cover;
}

.solutions-main .solutions-text {
    flex: 1;
}

.solutions-main .solutions-img {
    width: 300px;
    max-width: 300px;
    flex: 0 0 300px;
    margin-left: 150px;
}

.solutions-main .solutions-text img {
    max-width: 30%;
    margin: 0 auto 30px;
}

.dev-process {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px 20px 20px 250px;
    min-height: 150px;
}

.dev-process .dev-process-num {
    color: var(--primary-color);
    font-size: 10em;
    font-weight: 900;
    margin: 0;
    line-height: 120%;
    z-index: 1;
    top: 15px;
    position: absolute;
    left: 15px;
    letter-spacing: 10px;
    opacity: 0.2;
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes hithere {
    30% {
        transform: scale(1.2);
    }

    40%,
    60% {
        transform: rotate(-20deg) scale(1.2);
    }

    50% {
        transform: rotate(20deg) scale(1.2);
    }

    70% {
        transform: rotate(0deg) scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media only screen and (max-width: 1599px) {

    .accordion-btn {
        width: 70px;
    }
}

@media (max-width: 1200px) {
    .position-sticky {
        position: static !important;
    }
}

@media (max-width: 991px) {

    a.button.mobile-center {
        margin: auto;
    }

    .new-faq .accordion-header .accordion-button {
        font-size: 18px !important;
    }

    .check-list {
        width: fit-content;
        margin: auto;
    }

    .solutions-main .solutions-text {
        border: 0 !important;
    }
}

@media (max-width: 767px) {
    .dev-process {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .dev-process .dev-process-num {
        position: static;
        font-size: 40px;
        letter-spacing: 1px;
    }

    .sub-main .sub-image,
    .sub-main .sub-image img {
        width: fit-content;
        max-width: fit-content;
        flex: fit-content;
        height: 100%;
        margin: auto;
    }
}