:root {
    --page-primary-bg: #421983;
    --page-secondary-bg: #B880FF;
    --page-fade: #F7F0FF;
    --text-theme: #1E1E1E;
    --text-grey: #2F2F2F;
    --tick-icon: url(../images/audit-images/check-icon.webp);
    --tick-icon-2: url(../images/audit-images/check-2.webp);
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background: var(--page-secondary-bg);
}

.page-fade {
    background-color: var(--page-fade);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey);
}

.button-primary,
.button-primary:hover {
    color: var(--white-color);
    background-color: var(--page-primary-bg) !important;
    font-weight: 600 !important;
}

.button-secondary,
.button-secondary:hover {
    color: var(--white-color);
    border: 1px solid var(--page-secondary-bg);
    background-color: var(--page-secondary-bg) !important;
    font-weight: 600 !important;
}

.button svg {
    animation: pulso-effect 2s infinite;
    border-radius: 100px;
}

.sections-wrapper .text-white {
    color: var(--white-color) !important;
}

.z-1 {
    z-index: 1;
    position: relative;
}

@keyframes pulso-effect {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

h1,h2,h3,h4,h5,h6 {
    color: var(--text-theme) !important;
}

.section-wrapper h1,
.section-wrapper .h1,
.section-wrapper h2,
.section-wrapper .h2,
.section-wrapper h3,
.section-wrapper .h3,
.section-wrapper h4,
.section-wrapper .h4,
.section-wrapper h5,
.section-wrapper .h5,
.section-wrapper h6,
.section-wrapper .h6,
p {
    font-family: 'Gilroy' !important;
}

.section-wrapper .w-normal {
    font-weight: 400 !important;
}

/* Home Block */

.hero-intro {
    background: url(../images/audit-images/banner-intro.webp), var(--page-primary-bg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 0;
}

.tick-list {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 15px;
}

.tick-list li {
    font-size: 20px;
    padding: 0 0 0 34px;
    position: relative;
    color: var(--white-color);
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 2px auto 0 0;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Counter Block */

.counter-wrapper {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}

.counter-block {
    height: 100%;
    width: 100%;
    padding: 26px 26px;
    text-align: center;
    transition: all 0.3s;
}

.counter-block h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--page-secondary-bg) !important;
}

/* Business Block */

.busniess-block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    border: 1px solid #B8B8B8;
    background-color: var(--white-color);
}

.busniess-block:hover {
    background-color: var(--page-secondary-bg);
    border-color: var(--page-secondary-bg);
}

.busniess-block:hover img {
    filter: brightness(0) invert(1);
}

.busniess-block:hover h4,
.busniess-block:hover p {
    color: var(--white-color) !important;
}

/* Audit Slider */

.service--slider .swiper-slide {
    height: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
}

.service--block {
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.service--img img {
    width: 100%;
}

.service--content {
    padding: 20px 20px;
}

.slider-btn {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 50px 0 0;
}

.slider-btn .swiper-button-next,
.slider-btn .swiper-button-prev {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: 1px solid var(--page-primary-bg);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    color: var(--page-primary-bg);
    margin: unset !important;
    z-index: 1 !important;
    transition: ease-in 0.3s;
}

.slider-btn .swiper-button-next:hover,
.slider-btn .swiper-button-prev:hover {
    background: var(--page-primary-bg);
    border-color: var(--page-primary-bg);
    color: var(--white-color);
    transition: ease-in 0.3s;
}

.slider-btn .swiper-button-next:after,
.slider-btn .swiper-button-prev:after  {
    font-size: 18px;
}

/* Solution Block */

.solution--block {
    padding: 60px 40px;
    background-color: var(--page-secondary-bg);
    border: 1px solid var(--page-secondary-bg);
    border-radius: 30px;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.choose-wrapper .busniess-block {
    border: transparent;
}

.solution--block .tick-list li::before {
    inset: 5px auto 0 0;
    background-image: var(--tick-icon-2);
}

.solution--block .tick-list li {
    color: var(--text-theme);
}

.tick-list.list--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* .solution--block:hover {
    background-color: var(--page-secondary-bg);
    border-color: var(--page-secondary-bg);
}

.solution--block:hover h4,
.solution--block:hover p,
.solution--block:hover ul li {
    color: var(--white-color) !important;
} */

.solution--block:hover .button-primary {
    border-color: var(--page-primary-bg) !important;
    background-color: var(--page-primary-bg) !important;
}

/* Timeline */

.timeline {
    position: relative;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #00000020;
    transform: translateX(-50%);
}

.timeline-step {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-step::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #00000050;
    border-radius: 20px;
    top: 28px;
    right: -10px;
    transition: all 0.3s;
    background-color: var(--white-color);
}

.timeline-step.right::before {
    left: -10px;
}

.timeline-step.in-view::before {
    border-color: var(--page-secondary-bg);
    background-color: var(--page-secondary-bg);
}

.timeline-step.left {
    left: 0;
    text-align: left;
}

.timeline-step.right {
    left: 50%;
    text-align: right;
}

.timeline-content {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 10px;
}

.step-number {
    font-size: 26px;
    color: var(--page-secondary-bg);
    font-weight: 600;
}

.card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    max-width: 100%;
    text-align: left;
}

.icon {
    position: absolute;
    width: 100%;
    max-width: 140px;
    top: 10px;
}

.timeline-step.left .timeline-content, .timeline-step.left .card {
    text-align: end;
}

.left .icon {
    right: -200px;
}

.right .icon {
    left: -200px;
}


/* CTA */

.cta-block {
    background-color: var(--page-primary-bg);
    padding: 0;
    border-radius: 20px;
}

.cta-block img {
    object-fit: cover;
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 36px 0px !important;
}

.section-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 26px !important;
}

/* Responsive */

@media only screen and (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px !important;
        padding-left: calc(50% -(var(--page-width) / 2) + 12px);
    }
    
    .padding-right {
        --page-width: 1200px !important;
        padding-right: calc(50% -(var(--page-width) / 2) + 12px);
    }
}

@media only screen and (max-width: 991px) {

    .spacer-xl {
        padding: 70px 0;
    }

    .tick-list {
        width: fit-content;
        margin-inline: auto;
    }

    .tick-list li {
        font-size: 18px !important;
    }

    .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
        align-items: unset;
        padding: 30px 0;
    }

    .counter-block {
        padding: 20px 20px;
        text-align: center;
    }

    .slider-btn {
        margin: 0;
    }

    .solution--block {
        padding: 40px 30px;
        text-align: center;
    }

    .busniess-block {
        padding: 20px 20px;
    }

    .cta-block {
        padding: 50px 20px;
    }

    .cta-block img {
        border-radius: 20px;
    }

    .faq-section .accordion-button {
        gap: 20px;
    }
}

@media only screen and (max-width: 767px) {
    
    .mb-50 {
        margin-bottom: 30px !important;
    }

    .section-wrapper .new-faq .accordion-item h2.accordion-header button {
        font-size: 19px !important;
        line-height: 30px;
    }

    .timeline-step.left .timeline-content, .timeline-step.left .card {
        text-align: left;
    }

    .timeline-step {
        width: 100%;
        padding: 20px 20px;
        inset: 0 !important;
    }

    .timeline-step::before {
        left: -10px !important;
    }

    .timeline::before {
        left: 0;
    }

    .icon {
        position: static;
    }

    .card {
        padding: 20px;
    }
}