:root {
    --page-primary-bg: #B35758;
    --page-secondary-bg: #43927D;
    --page-fade: #FFF6F7;
    --text-theme: #1C1B21;
    --text-grey: #58606A;
}

.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);
}

.highlight {
    color: var(--page-primary-bg) !important;
}

.button-primary {
    color: var(--white-color);
    background-color: var(--page-secondary-bg) !important;
    font-weight: 600 !important;
    white-space: nowrap;
}

.button-primary:hover {
    color: var(--white-color) !important;
    background-color: var(--page-secondary-bg) !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);
}

.section-wrapper h1,
.section-wrapper .h1 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h2,
.section-wrapper .h2 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h3,
.section-wrapper .h3 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h4,
.section-wrapper .h4 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h5,
.section-wrapper .h5 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h6,
.section-wrapper .h6 {
    font-family: 'Gilroy' !important;
}

p {
    font-family: 'Gilroy' !important;
}

.section-wrapper .w-normal {
    font-weight: 400 !important;
}

/* Home Block */

.banner-content {
    position: absolute;
    inset: auto 0;
    width: 100%;
    max-width: 800px;
    background: #FFFFFF33;
    backdrop-filter: blur(100px);
    padding: 40px 40px;
}

/* Counter Block */

.counter {
    background-image: url(../images/cosmetic-images/counter-intro.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.counter-wrapper {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}

.counter-block {
    text-align: center;
    color: var(--white-color);
    width: 100%;
    height: 100%;
}

.counter-block h2 {
    font-size: clamp(2.5rem, 6vw, 5.6rem) !important;
    -webkit-text-stroke: 1px var(--white-color);
    color: transparent !important;
}

/* Service Block */

.strategy-slider {
    padding: 20px 0 !important;
}

.service--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    transition: all 0.3s;
    background-color: var(--white-color);
    border: 1px solid #E5E5E5;
}

.growth-intro .service--block {
    background-color: transparent;
    border-color: #ba535626;
}

.service--block:hover {
    background-color: var(--page-primary-bg);
    border-color: var(--page-primary-bg);
}

.service--block:hover img {
    filter: brightness(0) invert()
}

.service--block:hover h4,
.service--block:hover p {
    color: var(--white-color) !important;
}

/* Table Block */

.inner-pricing-section table tr th {
    border-bottom: 1px solid #d5d5d580;
    border-right: 1px solid #d5d5d580;
    text-align: center;
    height: 120px;
    padding: 10px;
    font-size: 18px;
    color: var(--white-color);
}

.inner-pricing-section table tr th span {
    width: 100%;
    display: inline-block;
    font-weight: 300;
}

tbody tr td:first-child {
    background-color: #FFD4D5;
    font-weight: 600;
    font-size: 18px !important;
    color: #1C1B21 !important;
}

tbody tr td {
    background-color: var(--white-color);
    font-weight: 500;
    color: #1C1B21 !important;
}

.inner-pricing-section table tr th:nth-child(1) {
    background-color: #EDA8A9;
}

.inner-pricing-section table tr th:nth-child(2) {
    background-color: #D58788;
}

.inner-pricing-section table tr th:nth-child(3) {
    background-color: #CD7273;
}

.inner-pricing-section table tr th:last-child {
    background-color: #C36364;
}

.flex-featured {
    display: flex;
    align-items: center;
    gap: 8px;
}

.inner-pricing-section img {
    width: 100%;
    max-width: 24px;
}

.inner-pricing-section table tr td {
    font-size: 17px;
    padding: 20px 20px;
    border-bottom: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
}

/* Strategy Slider */

.strategy-slider .swiper-slide {
    height: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !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(--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;
}

/* Reputation Block */

.sticky-cloumn {
    position: sticky;
    top: 180px;
}

.reputation-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reputation-wrapper .service--block {
    display: flex;
    gap: 20px;
    border: none;
}

.reputation-wrapper .service--icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
}

/* CTA */

.cta-intro {
    background-image: url(../images/cosmetic-images/cta-intro.webp);
    background-color: var(--page-primary-bg);
    background-repeat: no-repeat;
    background-size: cover;
    margin: -2px 0 0;
}

.cta-intro.intro-2 {
    background-image: url(../images/cosmetic-images/cta-intro-2.webp);
    background-color: var(--page-primary-bg);
}

/* 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) {

    .banner-content {
        position: static;
        max-width: 100%;
        padding: 80px 0 0;
        text-align: center;
    }

    .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
        align-items: unset;
        gap: 30px;
    }

    .faq-section .accordion-button {
        gap: 20px;
    }

    .cta-intro,
    .cta-intro.intro-2 {
        background-position: center;
    }

}

@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;
    }

    .inner-pricing-section {
        overflow: auto;
    }

    .reputation-wrapper .service--block {
        flex-direction: column;
    }

    .service--block {
        padding: 20px 20px;
    }
}