:root {
    --page-primary-bg: #BA84FE;
    --page-secondary-bg: #FFA6DE;
    --page-fade: #FCEFF8;
    --page-dark: #483D89;
    --text-theme: #1E1E1E;
    --text-grey: #58606A;
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background: var(--page-secondary-bg);
}

.page-fade {
    background-color: var(--page-fade);
}

.page-dark {
    background-color: var(--page-dark);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey);
}

.highlight {
    color: var(--page-dark) !important;
}

.button-primary {
    color: var(--white-color);
    background-color: var(--page-dark) !important;
    font-weight: 600 !important;
    white-space: nowrap;
}

.button-primary:hover {
    color: var(--white-color) !important;
    background-color: var(--page-dark) !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;
}

.mb-70 {
    margin-bottom: 70px;
}

.link-title,
.link-title:hover {
    text-decoration: underline !important;
    color: var(--text-theme) !important;
}

@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,
.section-wrapper p {
    font-family: 'Gilroy' !important;
}

.section-wrapper .w-normal {
    font-weight: 400 !important;
}

/* Shapes */

.shape {
    margin: 0 0 -10px;
}

.shape-2 {
    margin: -20px 0 0;
}

/* Counter Block */

.counter-wrapper {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}

.counter-block {
    width: 100%;
    height: 100%;
    padding: 20px 20px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.icon--dark,
.icon--light {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background-color: var(--page-dark);
    border-radius: 50px;
    padding: 15px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-block h2 {
    font-size: clamp(2.5rem, 6vw, 3.2rem);
}

/* Service Block */

.service--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    background-color: var(--page-fade);
}

.icon--light {
    background-color: var(--page-secondary-bg);
}

.service--block:hover {
    background-color: var(--page-primary-bg);
}

.service--block:hover .icon--light,
.strategy--block:hover .icon--light {
    background-color: var(--page-dark);
}

.service--block:hover h4,
.service--block:hover p,
.strategy--block:hover h4,
.strategy--block:hover p,
.marketing--block:hover h4,
.marketing--block:hover p,
.b2b-block:hover h4,
.b2b-block:hover p,
.strategy--block:hover .link-title {
    color: var(--white-color) !important;
}

/* Strategy Block */

.strategy--block,
.marketing--block,
.b2b-block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    background-color: var(--white-color);
    border: 1px solid #eee;
}

.strategy--block:hover,
.marketing--block:hover {
    background-color: var(--page-primary-bg);
    border-color: var(--page-primary-bg);
}

/* Marketing BLock */

.marketing--block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.marketing--block.block-2 {
    justify-content: unset;
}

.marketing--block img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Development Block */

.develop-intro {
    background-color: var(--page-fade);
    position: relative;
}

.develop-intro::before {
    content: '';
    position: absolute;
    background-color: var(--white-color);
    inset: auto 0 0 0;
    margin: auto;
    width: 100%;
    height: calc(100% - 50%);
}

.develop-slider .swiper-slide {
    height: auto !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-dark);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    color: var(--page-dark);
    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-dark);
    border-color: var(--page-dark);
    color: var(--white-color);
    transition: ease-in 0.3s;
}

.slider-btn .swiper-button-next:after,
.slider-btn .swiper-button-prev:after  {
    font-size: 18px;
}

/* B2B Block */

.sticky-cloumn {
    position: sticky;
    top: 180px;
}

.b2b-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.b2b-block:hover {
    background-color: var(--page-dark);
    border-color: var(--page-dark);
}

/* Model Block */

.model--wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.model--block {
    display: grid;
    grid-template-columns: auto 450px;
    gap: 30px;
    transition: all 0.3s;
}

.model--block.reverse--block{
    grid-template-columns: 450px auto;
}

.model-content {
    background: var(--white-color);
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s;
}

.model--block:hover .model-content{
    background-color: var(--page-dark);
}

.model--block:hover h4,
.model--block:hover p {
    color: var(--white-color) !important;
}

/* CTA */

.cta-block {
    background-color: var(--page-secondary-bg);
    padding: 40px 60px 0;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.circle-shape {
    border: 40px solid var(--white-color);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    position: absolute;
    right: -100px;
    bottom: -100px;
    opacity: 0.7;
}

.cta--intro {
    background: url(../images/email-images/cta--intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 200px 0 90px !important;
}

/* 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);
    }

    .circle-shape {
        right: -150px;
        bottom: -150px;
        opacity: 0.6;
    }
}

@media only screen and (max-width: 991px) {

    .faq-section .accordion-button {
        gap: 20px;
    }

    .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
        align-items: unset;
        gap: 20px 20px;
    }

    .hero-intro h1 {
        font-size: 2.2rem !important;
        line-height: 50px !important;
    }

    .service--block,
    .strategy--block,
    .marketing--block,
    .b2b-block {
        padding: 20px 20px;
    }

    .cta-block {
        padding: 60px 20px;
    }

    .cta--intro {
        padding: 150px 0 90px !important;
        background-position: bottom;
    }
}

@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;
    }

    .model--block {
        display: flex;
        flex-direction: column-reverse;
    }

    .model--block.reverse--block {
        flex-direction: column;
    }

    .model-img img {
        width: 100%;
    }

    .model-content{
        padding: 20px 20px;
    }
}