/* Common Style starts */
:root {
    --page-primary-bg: #051445;
    --page-secondary-bg: #E4F4FF;
    --page-theme: #30AD1C;
    --text-theme: #0B0C0D;
    --text-grey : #3F4751;
    --tick-icon: url(../images/influencer-images/check-icon.webp);
}

.page-primary {
    background-color: var(--page-primary-bg);
}

.page-secondary {
    background-color: var(--page-secondary-bg);
}

.page-light {
    background-color: #F3F9FE;
}

.page-theme {
    background-color: var(--page-theme);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey) !important;
}

.theme-wrapper {
    background-color: #072261;
}

.highlight-text {
    color: var(--page-primary-bg) !important;
}

html body {
    color: var(--text-theme) !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 .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: var(--page-theme) !important;
}

.button-primary:hover  {
    color: var(--white-color);
    background: 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-image: url(../images/influencer-images/banner-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.check-list {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 20px;
    color: var(--black-color);
}

.check-list li {
    font-size: 20px;
    padding: 0 0 0 38px;
    position: relative;
}

.check-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 {
    background-image: url(../images/influencer-images/counter-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    margin: 110px 0 0;
}

.counter-wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    background: var(--page-secondary-bg);
    padding: 50px 50px;
    width: 100%;
    max-width: 60%;
    border-radius: 30px 0 0 30px;
    margin: -180px 0 80px auto;
}

.counter-block {
    padding: 0px 20px;
    color: #0A63A5 !important;
    text-align: center;
    border-right: 1px solid #A3B0D6;
}

.counter-wrapper .counter-block:last-child {
    border: none;
}

.counter-wrapper .counter-block h2 {
    color: #0A63A5 !important;
}

/* Choose Slider */ 

.choose-slider .swiper-slide {
    height: auto !important;
}

.choose-slider {
    padding: 10px 0 20px 20px !important;
}

.choose-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
    transition: all 0.3s;
    color: var(--text-theme);
    padding: 30px 30px;
    border-radius: 30px;
    border: 1px solid var(--page-primary-bg);
}

.choose-block:hover {
    cursor: grab;
    border-color: transparent;
    box-shadow: 0px 4px 15px 0px #00000012;
}

.slider-arrow {
    display: flex;
    flex-direction: row-reverse;
    justify-content: left;
    gap: 20px;
}

.slide-next, .slide-prev {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #00000040;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: all 0.3s;
}

.slider-arrow .slide-next:hover,
.slider-arrow .slide-prev:hover {
    background-color: var(--page-primary-bg);
    border: 1px solid var(--page-primary-bg);
    display: flex;
}

.slider-arrow .slide-next:hover svg path,
.slider-arrow .slide-prev:hover svg path {
    fill: var(--white-color);
}

/* Agency Block */

.agency--wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.agency--block {
    display: grid;
    grid-template-columns: auto 450px;
    gap: 30px;
    transition: all 0.3s;
}

.agency-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.agency--block.reverse--block{
    grid-template-columns: 450px auto;
}

.agency-content {
    background: var(--page-secondary-bg);
    border-radius: 20px;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s;
}

.agency--block:hover .agency-content {
    background-color: var(--page-primary-bg);
}

.agency--block:hover .agency-content h4,
.agency--block:hover .agency-content p {
    color: var(--white-color) !important;
}

/* Indutry Block */

.industry-listing {
    display: flex;
    flex-wrap: wrap;
}

.industry-listing .single-industry {
    width: 25%;
    flex-shrink: 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    border-right: 1px solid #eee;
	border-bottom: 1px solid #eee;
    padding: 10px;
    text-align: center;
}

.industry-listing .single-industry:nth-child(4n){
	border-right:hidden;
}

.industry-listing .single-industry:nth-last-child(1),
.industry-listing .single-industry:nth-last-child(2),
.industry-listing .single-industry:nth-last-child(3),
.industry-listing .single-industry:nth-last-child(4){
	border-bottom:hidden;
}

/* Benefit Wrapper */

.benefit-wrapper {
    background: #051A60;
    padding: 50px 50px;
    border-radius: 20px;
}

.benefit-block {
    background: #072261;
    padding: 20px 20px;
    border-radius: 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid transparent;
}

.benefit-block:hover {
    border-color: #E4F4FF;
}

.benefit-icon {
    width: 100%;
    max-width: 140px;
    min-width: 140px;
    background: #E4F4FF;
    padding: 40px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Process Block */

.process-sec {
    background-image: url(../images/influencer-images/process-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.process-slider .swiper-slide:not(:last-child)::after {
    content: '';
    width: 60%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 75%;
    top: 75px;
    background: #00000040;
}

.process-sec > span {
    opacity: 50%;
    color: #EEEAEA;
    font-size: 12vw;
    text-align: center;
    display: block;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 0;
}

.process-block h4 {
    margin-bottom: 90px;
}

.process-block::before {
    content: '';
    width: 38px;
    height: 38px;
    background: var(--white-color);
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
}

.process-block::after {
    content: '';
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    height: 18px;
    width: 18px;
    border-radius: 50px;
    background: #4285F4;
}

.process-slider .swiper-slide:nth-child(2) .process-block::after {
    background: #DB4437;
}

.process-slider .swiper-slide:nth-child(3) .process-block::after {
    background: #F4B400;
}

.process-slider .swiper-slide:nth-child(4) .process-block::after {
    background: #0F9D58;
}

/* CTA Wrapper */

.cta-wrapper {
    background-image: url(../images/influencer-images/cta-wrapper.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 40px 0;
    border-radius: 30px;
}

.cta-intro {
    background-image: url(../images/influencer-images/cta-intro.webp);
    background-color: var(--page-primary-bg);
    background-size: cover;
    background-repeat: no-repeat;
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 28px 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) {
    .industry-listing .single-industry {
        min-height: 190px;
    }
}

@media only screen and (max-width: 991px) {

    .counter {
        margin: 0;
    }

    .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 0 30px;
        max-width: 100%;
        padding: 30px 10px;
        border-radius: 20px;
    }

    .counter-wrapper .counter-block:nth-child(2) {
        border: none;
    }

    .check-list {
        width: fit-content;
        margin-inline: auto;
    }

    .slider-arrow {
        justify-content: center;
    }

    .cta-wrapper {
        padding: 40px 20px;
    }

    .benefit-wrapper {
        padding: 20px 20px;
    }

    .benefit-block {
        flex-direction: column;
        align-items: flex-start;
        border-color: #ffffff3d;
    }

    .benefit-icon {
        padding: 20px 20px;
        min-width: 100px;
        max-width: 100px;
    }

    .agency--block {
        grid-template-columns: auto 50%;
    }
}

@media only screen and (max-width: 767px) {

    .industry-listing {
        gap: 20px;
        justify-content: space-between;
    }

    .industry-listing .single-industry {
        width: 46%;
        border: 1px solid #ddd !important;
        transition: all 0.3s;
    }

    .industry-listing .single-industry:hover {
        transform: translateY(-8px);
        border-color: var(--page-primary-bg) !important;
    }
    
    .agency--block {
        display: flex;
        flex-direction: column-reverse;
    }

    .agency--block.reverse--block {
        flex-direction: column;
    }

    .agency-img img {
        width: 100%;
    }

    .agency-content {
        padding: 20px 20px;
    }

    .choose-block {
        padding: 20px 20px;
        border-radius: 20px;
    }
}