/* Common Style starts */
:root {
    --page-primary-bg: #40072F;
    --page-theme: #d631c6;
    --page-current: #F8D2FA33;
    --page-gradient: linear-gradient(153.27deg,#f9f3ff 6.86%,#fff1f7 69.82%);
    --text-theme: #1A1A1A;
    --tick-icon: url(../images/marketing-images/check-icon.webp);
	--primary-color: #D631C6;
}

body {
    background-color: #010207 !important;
    color: var(--white-color) !important;
}

.page-primary-bg {
    background-color: var(--page-primary-bg);
}

.sections-wrapper .w-normal {
    font-weight: 400 !important;
}

.page-secondary-bg {
    background-color: var(--page-secondary-bg);
}

.page-theme {
    background-color: var(--page-theme);
}

.page-current {
    background-color: var(--page-current);
}

.page-gradient {
    background: var(--page-gradient);
}

.text-theme {
    color: var(--text-theme);
}

.link-white {
    text-decoration: underline !important;
    color: var(--white-color) !important;
}

.sections-wrapper .light-text,
.sections-wrapper h3.light-text {
    color: #f8d2fa !important;
}

.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 .text-white {
    color: var(--white-color) !important;
}

.button-primary {
    color: var(--white-color);
    background-color: var(--page-theme) !important;
}

.button-primary:hover {
    color: var(--white-color) !important;
    background-color: var(--page-primary-bg) !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-color: var(--page-primary-bg);
    background-image: url(../images/marketing-images/banner-intro.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-block: 200px 90px;
}

.tick-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tick-list li {
    font-size: 18px;
    padding: 0 0 0 32px;
    position: relative;
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 4px auto 0 0;
    width: 22px;
    height: 22px;
    background-size: 22px;
    background-repeat: no-repeat;
}

/* Development Block */

.development-intro {
    background-image: url('../images/marketing-images/develop-intro.webp');
    background-repeat: no-repeat;
    background-position: center;
    color: var(--white-color);
    background-size: cover;
}

.development-wrapper {
    gap: 20px;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    transition: all 0.3s;
    flex-direction: column;
    background: #1C081A66;
    border: 1px solid transparent;
    backdrop-filter: blur(60px);
}

.development-wrapper:hover {
    border-color: var(--white-color);
    transition: all 0.3s;
}

.development-intro .swiper-slide {
    display: flex;
    height: auto;
}

.develop-img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.develop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
}

.slider-btn {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin: 50px 0 0;
}

.swiper-button-next-tech,
.swiper-button-prev-tech{
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: 1px solid var(--white-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    color: var(--white-color);
    margin: unset !important;
    z-index: 1 !important;
    transition: ease-in 0.3s;
}

.swiper-button-next-tech:hover,
.swiper-button-prev-tech:hover {
    background: var(--page-theme);
    border-color: var(--page-theme);
    transition: ease-in 0.3s;
    transition: ease-in 0.3s;
}

.swiper-button-next-tech:after,
.swiper-button-prev-tech:after {
    font-size: 16px;
}

.swiper-button-next-tech:after,
.swiper-button-prev-tech:after {
    font-family: swiper-icons;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}
.swiper-button-next-tech:after,
.swiper-rtl .swiper-button-prev-tech:after {
    content: 'next';
}

.swiper-button-prev-tech:after,
.swiper-rtl .swiper-button-next-tech:after {
    content: 'prev';
}

/* Counter */

.counter-wrapper,.counter-box,.counter-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2,1fr);
}

.counter-holder {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(1,1fr);
}

.counter-wrapper h2.h1 {
    color: var(--white-color) !important;
}

.counter-grid {
    height: 100%;
}

.counter-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.counter-block {
    padding: 30px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    height: 250px;
    color: var(--white-color);
    background-size: cover;
}

.counter-box img {
    height: 100% !important;
    max-height: 520px;
    border-radius: 20px;
    object-fit: cover;
}

.counter-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
}

/* Service Block */

.service-intro {
    background-image: url(../images/marketing-images/service-intro.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.service-block {
    padding: 30px 30px;
    background-color: #1C081A66;
    backdrop-filter: blur(60px);
    border: 1px solid transparent;
    color: var(--white-color);
    transition: all 0.3s;
    width: 100%;
    height: 100%;
}

.service-block:hover,
.process--block:hover {
    background-color: #ffffff36;
}

/* Process Block */

.sticky-blk {
    position: sticky;
    top: 180px;
}

.process--list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process--block {
    backdrop-filter: blur(60px);
    background-color: #121317;
    transition: all 0.3s;
    position: relative;
    padding: 30px 30px;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 30px;
}

.process--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    height: 90px;
    width: 90px;
}

.process-step {
    position: absolute;
    bottom: -70px;
    left: 0;
}

.process-count {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 600;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px rgb(255 255 255 / 22%);
    text-stroke: 2px rgba(255, 255, 255, 0.3);
    position: absolute;
    right: 0;
    bottom: -30px;
}

/* Cta Block */

.cta-intro {
    background-image: url(../images/marketing-images/cta-intro.webp);
    background-position: center;
    background-repeat: no-repeat;
}

/* Faq */

.new-faq {
    border-top: 1px solid #bedbe040 !important;
}

.new-faq .accordion-button, .new-faq .accordion-item {
    background: transparent !important;
    color: var(--white-color) !important;
}

.new-faq .accordion-button {
    gap: 15px;
}

.new-faq .accordion-button::after {
    filter: brightness(0) invert(1);
}

.new-faq .accordion-item {
    padding: 36px 0px !important;
    border-bottom: 1px solid #bedbe040 !important;
}

.sections-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 24px !important;
}

ul.half-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
section.hero-section {
    background-image: url('../images/website-design/Rectangle 34625557.webp');
	background-size:cover;
	background-position: center;
}
.text-gray {
	color:#50565D;
}
.light-white {
    background-color: #f8f5f6;
}
.a-service-box {
    border: 1px solid #000000;
    padding: 25px;
    border-radius: 20px;
    height: 100%;
    border: hidden;
    background: #fff;
}
.a-service-box span {
    font-size: 30px;
    font-weight: 900;
    color: #000;
    font-family: 'trap';
    margin-bottom: 20px;
    background-color: var(--primary-color);
    display: flex;
    width: 50px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 4px 0 0;
}

.a-service-box:hover {
    background: var(--primary-color);
}
.a-service-box:hover > span {
    background: #fff;
    color: var(--primary-color);
}
.a-service-box:hover > h4, .a-service-box:hover > p {
    color: #fff !important;
}
.boxes-columns {
    display: flex;
    flex-flow: column;
    row-gap: 20px;
}

.cta-pink-block.text-center {
    background-color: var(--primary-color);
    padding: 60px 30px;
    border-radius: 30px;
}
.why-choose-box {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    height: 100%;
    border-radius: 20px;
}
a.black-btn {
    background: #000 !important;
}
.grid-boxhub {
    display: flex;
    column-gap: 20px; 
	align-items:center;
}
.grid-boxhub > div {
    width: calc(100% / 5 - 80px / 5);
}
.grid-boxhub h4 {
    font-size: 25px;
}
.a-service-box:hover {
    background: var(--primary-color);
}
.case-block {
    border: 2px solid var(--primary-color);
    padding: 30px; 
    width: 100%;
}

.slider-btn > div::after{
	display:none;
}
.slider-btn > div {
    position: static;
    width: 80px;
    border: 1px solid #d5d5d5;
    padding: 20px 10px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
section.hero-section { 
    background-size: cover;
    background-position: center;
    background-image: url('../images/seo-escort-images/Rectangle34625557.webp');
}
.number-section > span {
    background: #D631C6;
    background: linear-gradient(182deg, rgba(214, 49, 198, 1) 0%, rgba(215, 49, 198, 0.06) 84%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 70px;
    font-weight: 900;
    line-height: 1;
    flex-shrink: 0;
}
.number-section {
    width: 100%;
    background-color: rgba(248, 210, 250, 0.2);
    border-radius: 10px;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    column-gap: 30px;
}
.content-number {
    width: 100%;
}
.section-arrows .single-number-section:nth-child(2n) .number-section {
    flex-flow: row-reverse;
}
.btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.growth-single {
    height: 300px;
    border-radius: 15px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding: 30px 30px;
}

.growth-single p {
    font-size: 22px;
}

.growth-single span {
    font-size: 35px;
    font-weight: 600;
}


@media (min-width: 1200px) and (max-width: 1599px) {
    
    .container {
        max-width: 1200px !important;
        width: 100%;
    }

    .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }
}

@media (max-width:1199px) {
.grid-boxhub {
    flex-flow: column;
    row-gap: 20px;
}
.grid-boxhub > div {
    width: 100%;
}
}

@media screen and (max-width: 991px) {

    .text-align-center {
        text-align: center;
    }

    .spacer-xl {
        padding: 70px 0 !important;
    }
    
    .pt-0 {
        padding-top: 0px !important;
    }

    .pb-0 {
        padding-bottom: 0px !important;
    }
    
    .py-1 {
        padding: 10px 0 !important;
    }

    .hero-section {
        padding: 200px 0 60px !important;
    }

    .row-order {
        flex-direction: column-reverse;
    }

    .tick-list {
        text-align: left;
        width: fit-content;
        margin-inline: auto;
    }

    .tick-list li {
        font-size: 16px;
        padding: 0 0 0 30px;
    }

    .tick-list li::before {
        inset: 2px auto 0 0;
        width: 18px;
        height: 18px;
        background-size: 18px;
    }

    .button {
        width: fit-content !important;
    }

    .service-block {
        padding: 20px 20px;
    }

    .mb-50 {
        margin-bottom: 28px;
    }

    .new-faq .accordion-button::after {
        background-size: 28px !important;
        width: 28px !important;
        height: 28px !important;
    }

    .counter-wrapper,.counter-box {
        grid-template-columns: repeat(1,1fr);
    }

    .counter-grid img,.counter-box img {
        display: none;
    }

    .counter-wrap {
        flex-direction: unset;
    }

    .counter-holder {
        grid-template-columns: repeat(2,1fr);
    }

    .counter-grid {
        grid-template-columns: repeat(1,1fr);
    }

    .counter-block {
        height: 180px;
    }

    .case--block {
        text-align: center;
    }
	.col-lg-6.sticky-blk {
    position: static;
}
    
}

@media screen and (max-width: 767px) {

    .sections-wrapper .new-faq .accordion-item h2.accordion-header button {
        font-size: 18px !important;
        gap: 10px;
    }

    .process--block {
        flex-direction: column;
    }

    .process-count {
        -webkit-text-stroke: 2px rgb(255 255 255 / 12%);
        right: 10px;
        bottom: 0;
    }

    .process-step {
        display: none;
    }
	.number-section {
    flex-flow: column;
    row-gap: 20px;
    align-items: flex-start;
}
.section-arrows .single-number-section:nth-child(2n) .number-section {
    flex-flow: column;
}
}