/* Common Style starts */
:root {
    --page-primary-bg: #CCE8FD;
    --page-secondary-bg: #021526;
    --page-theme: #30AD1C;
    --page-theme-sec: #1778BE;
    --page-fade: #CCE8FD59;
    --text-theme: #0B0C0D;
    --text-grey : #3F4751;
    --tick-icon: url(../images/repu-images/check-icon.webp);
}

.page-primary {
    background-color: var(--page-primary-bg);
}

.page-secondary {
    background-color: var(--page-secondary-bg);
}

.page-theme {
    background-color: var(--page-theme);
}

.page-theme-sec {
    background-color: var(--page-theme-sec);
}

.page-fade {
    background-color: var(--page-fade);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey) !important;
}

.link-active,
.link-active:hover {
    color: var(--page-primary-bg);
    text-decoration: underline !important;
}

.link-title,
.link-title:hover {
    color: var(--text-theme);
    text-decoration: underline !important;
}

.link-white,
.link-white:hover {
    color: var(--white-color);
    text-decoration: underline !important;
}

html body {
    color: var(--text-theme) !important;
}

.object-cover {
    object-fit: cover;
}

.h-100 {
    height: 100%;
}

.sections-wrapper h1,.sections-wrapper .h1,
.sections-wrapper h2,.sections-wrapper .h2,
.sections-wrapper h3,.sections-wrapper .h3,
.sections-wrapper h4,.sections-wrapper .h4,
.sections-wrapper h5,.sections-wrapper .h5,
.sections-wrapper h6,.sections-wrapper .h6 {
    color: var(--text-theme) !important;
}

.sections-wrapper .page-text {
    color: var(--page-primary-bg) !important;
}

.sections-wrapper .w-normal {
    font-weight: 400 !important;
}

.sections-wrapper .text-white {
    color: var(--white-color) !important;
}

.button-primary {
    color: var(--white-color);
    background-color: #1778BE !important;
}

.button-primary:hover {
    color: var(--white-color) !important;
    background-color: var(--page-theme) !important;
}

.button-secondary {
    color: var(--white-color);
    background-color: var(--page-theme-sec) !important;
}

.button-secondary:hover {
    color: var(--white-color) !important;
    background-color: var(--page-theme) !important;
}

.button-primary.button-primary-theme {
    background: var(--page-primary-bg) !important;
    color: var(--white-color);
}

.button-primary.button-primary-theme:hover {
    color: var(--white-color) !important;
    background-color: var(--page-theme) !important;
}

.button svg {
    animation: pulso 2s infinite;
    border-radius: 100px;
}

.z-1 {
    position: relative;
    z-index: 1;
}

@keyframes pulso {
    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);
    }
}

/* Hero Section */

.hero-section {
    background-image: url(../images/repu-images/banner-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.tick-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--white-color);
}

.tick-list li {
    font-size: 20px;
    padding: 0 0 0 38px;
    position: relative;
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 1px auto 0 0;
    width: 26px;
    height: 26px;
    background-size: 26px;
    background-repeat: no-repeat;
}

/* Counter */

.counter-wrapper {
    padding: 80px 80px;
    background-color: var(--page-primary-bg);
    background-image: url(../images/repu-images/counter-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
}

.counter-block {
    grid-template-columns: repeat(4, 1fr);
    display: grid;
    padding: 0 30px;
    gap: 50px;
}

.counter-wrap {
    background-color: #E8F3FD;
    padding: 20px 20px;
    text-align: center;
    position: relative;
}

.counter-wrap h2 {
    background: var(--page-secondary-bg);
    padding: 12px;
    border-radius: 10px;
    color: var(--white-color) !important;
    width: fit-content;
    margin: -56px auto 15px;
}

/* Consulting Cards */

.consulting-intro {
    background-image: url(../images/repu-images/consulting-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.consulting-wrapper {
    background: var(--page-fade);
    backdrop-filter: blur(12px);
    padding: 30px 30px;
    transition: all 0.3s;
    color: var(--white-color) !important;
    position: relative;
}

.consulting-wrapper::before {
    content: '';
    background-image: url(../images/repu-images/consult-img.webp);
    background-size: contain;
    background-repeat: no-repeat;
    width: 340px;
    height: 340px;
    position: absolute;
    bottom: -20px;
    right: 0;
    transition: all 0.3s;
    opacity: 0;
}

.cons-icon {
    background-color: var(--page-secondary-bg);
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consulting-wrapper:hover {
    transform: translateY(-5px);
    background: var(--page-primary-bg);
}

.consulting-wrapper:hover:before {
    opacity: 1;
}

.consulting-wrapper:hover p,
.consulting-wrapper:hover h4 {
    color: var(--text-theme) !important;
}

/* Software Block */

.sticky-column {
    position: sticky;
    top: 140px;
}

.software-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.software-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0 0 30px;
    border-bottom: 1px dashed var(--text-theme);
}

.software-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--text-theme);
    transition: all 0.3s;
}

.software-block:hover .software-icon {
    margin-top: 30px;
    background-color: #1778be10;
    backdrop-filter: blur(10px);
}

.software-block:hover .link-title,
.software-block:hover .link-title h4 {
    color: var(--page-theme-sec) !important;
}

.reputation-wrapper {
    background-color: var(--page-primary-bg);
    padding: 50px 80px;
}

.reputation-block {
    border: 1px solid var(--page-secondary-bg);
    padding: 30px 30px;
    background-color: var(--white-color);
    transition: all 0.3s;
}

/* Choose Block */

.choose-intro {
    background-image: url(../images/repu-images/choose-intro.webp);
    background-color: var(--page-secondary-bg);
    background-size: cover;
    background-repeat: no-repeat;
}

.choose-slider .swiper-slide {
    height: auto !important;
}

.choose-block {
    backdrop-filter: blur(12px);
    border: 1px solid var(--white-color);
    background: #FFFFFF66;
    padding: 25px 25px;
    transition: all 0.3s;
    height: 100%;
}

.choose-block:hover {
    border-color: var(--page-primary-bg);
    background: var(--page-primary-bg);
}

.choose-block:hover p,
.choose-block:hover h4 {
    color: var(--text-theme) !important;
}

.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(--white-color);
    color: var(--text-theme);
    transition: ease-in 0.3s;
}

.slider-btn .swiper-button-next:after,
.slider-btn .swiper-button-prev:after  {
    font-size: 18px;
}

/* Cta Block */

.cta-wrapper {
    background-image: url(../images/repu-images/cta-wrapper.webp);
    background-color: var(--page-primary-bg);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 90px 50px;
    text-align: center;
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 36px 0px !important;
}

.sections-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 24px !important;
}

/* Responsive */

@media (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }
}

@media only screen and (max-width: 1399px) {

    .padding-left {
        --page-width: 1200px !important;
        padding-left: calc(50% -(var(--page-width) / 2) + 12px);
    }

    .cta-wrapper {
        padding: 80px 40px;
    }
}

@media only screen and (max-width: 991px) {

    .tick-list {
        text-align: left;
        width: fit-content;
        margin-inline: auto;
    }

    .tick-list li::before {
        inset: -1px auto 0 0;
        width: 20px;
        height: 20px;
        background-size: 20px;
    }

    .sections-wrapper h1,
    .sections-wrapper .h1 {
        font-size: 2rem !important;
    }

    .sticky-column {
        position: static;
    }

    .spacer-xl {
        padding: 70px 0;
    }

    .cta-wrapper,
    .counter-wrapper,
    .reputation-wrapper {
        padding: 40px 20px;
    }

    .counter-block {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
        gap: 60px 20px;
    }
}

@media only screen and (max-width: 767px) {

    .consulting-wrapper {
        padding: 20px 20px;
    }

    .counter-block {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media only screen and (max-width: 475px) {

    .software-block {
        flex-direction: column;
    }

    .software-block:hover .software-icon {
        margin-top: 0;
    }
}