/* Common Style starts */
:root {
    --page-primary-bg: #CC001F;
    --btn-bg: hsl(351, 100%, 45%);
    --linear-bg: linear-gradient(90deg, rgba(230, 0, 35, 0.1) 0%, rgba(208, 44, 25, 0.1) 100%);
    --page-secondary-bg: #1E1E1E;
    --page-theme: #30AD1C;
    --text-theme: #0B0C0D;
    --text-grey: #58646A;
}

.linear-bg {
    background: var(--linear-bg);
}
.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background-color: var(--page-secondary-bg);
}

.text-grey {
    color: var(--text-grey) !important;
}

html body {
    color: var(--text-theme) !important;
}

.object-cover {
    object-fit: cover;
}

.button-primary,
.button-primary:hover {
    color: var(--white-color);
    background: var(--btn-bg) !important;
}

.button-secondary,
.button-secondary:hover {
    color: var(--white-color);
    background: #111451 !important;
}

.button svg {
    animation: pulso 2s infinite;
    border-radius: 100px;
}

.text-highlight {
    color: var(--page-primary-bg) !important;
}

@keyframes pulso {
    0% {
        -moz-box-shadow: 0 0 0 0 #A240E4 !important;
        box-shadow: 0 0 0 0 #A240E4 !important;
    }

    70% {
        -moz-box-shadow: 0 0 0 20px #A240E4 !important;
        box-shadow: 0 0 0 20px #A240E4 !important;
    }

    100% {
        -moz-box-shadow: 0 0 0 0 #A240E4 !important;
        box-shadow: 0 0 0 0 #A240E4 !important;
    }
}

/* Hero Section */
h1 span {
    color: var(--page-primary-bg);
    font-size: 140px;
}

/* Counter Intro */

.counter {
    background-image: url(../images/pinterest-images/counter-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.counter-wrapper {
    display: grid;
    gap: 27px;
    grid-template-columns: repeat(2, 1fr);
}

.counter-block {
    padding: 40px;
    border-radius: 30px;
    background-color: #FFFFFF3D;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
}


.counter-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.counter-left-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}


.counter-right-inner {
    display: flex;
    gap: 20px;
    height: 100%;
}

.counter-right {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 20px;
}

.br-linear::before,
.br-linear-bottom::before {
    content: '';
    display: block;
    background-color: #141414;
    position: absolute;
    height: 98%;
    width: 98%;
    z-index: -1;
    border-radius: 30px;
}

.counter-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.br-linear {
    background-image: linear-gradient(126.69deg, #983BD8 0.05%, rgba(152, 59, 216, 0) 50.05%);
}

.br-linear-bottom {
    background-image: linear-gradient(126.69deg, rgba(34, 68, 153, 0) 50.05%, #224499 100.05%);
}

.counter-box-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}


.line-bg {
    background-image: url(../images/pinterest-images/line-bg.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.text-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    text-align: left;
}


.marketing-block {
    background: #FFFFFF;
    padding: 50px 30px;
    border-radius: 30px;
    height: 100%;
    transition: 400ms;
}

.marketing-block:hover {
    background: var(--page-primary-bg);
}

.marketing-block:hover h3, .marketing-block:hover p {
    color: #fff;
}

.swiper-slide {
    height: auto !important;
}

.marketing-icon-block {
    width: 96px;
    height: 96px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--page-primary-bg);
    transition: 400ms;
}

.marketing-block:hover .marketing-icon-block {
    background: var(--page-secondary-bg);
}


.work-block h3 {
    font-size: 120px;
    background: linear-gradient(180deg, #E60023 0%, rgba(230, 0, 35, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
}
.work-block img {
    margin-top: -44px;
}


/* Platform Block */

.platform-intro {
    background-image: url(../images/facebook-images/platform-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.platform-slider .swiper-slide {
    height: auto !important;
}

.platform-block {
    background-color: var(--white-color);
    padding: 30px 30px;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #D7CAE0
}

.platform-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--page-secondary-bg);
    width: 100%;
    height: 0;
    transition: all 0.3s;
    border-radius: 30px;
}

.platform-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 50%;
    background-color: #EBEFF5;
    transition: all 0.3s;
}

.platform-block:hover::before {
    height: 100%;
}


.platform-block:hover img {
    filter: brightness(100);
}

.platform-block:hover p,
.platform-block:hover h4 {
    color: var(--white-color) !important;
}

.cursor {
    position: fixed;
    left: var(--cursor-x);
    top: var(--cursor-y);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
    background: var(--page-secondary-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
}

body.show-custom-cursor .cursor {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


/*Digital Block*/
.digital-wrapper {
    overflow: hidden;
    border-radius: 30px;
    position: relative;
    height: 100%;
}

.digital-block {
    padding: 50px;
    backdrop-filter: blur(60px);
    background: #1E1E1E66;
    position: absolute;
    bottom: -60%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    transition: 400ms;
    width: 100%;
}

.digital-wrapper:hover .digital-block {
    bottom: 0px;
    backdrop-filter: unset;
    background-color: var(--page-secondary-bg);
}

.digital-block .liner-text {
    font-size: 22px;
}

.digital-block p {
    display: none;
}

.digital-wrapper:hover p {
    display: block;
}

.liner-text {
    background: linear-gradient(90deg, #A240E4 0%, #C894EB 25%, #9A38DD 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*Agency Block*/

.agency-bg {
    background-image: url(../images/new-photographer-img/agency-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.agency-block {
    gap: 40px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: self-start;
    flex-direction: column;
    position: relative;
    z-index: 1;
    padding: 50px 30px;
    border-radius: 30px;
    background-color: #141414;
}

.agency-block.br-linear:before {
    top: 2px;
    left: 2px;
}

.agency-block.br-linear-bottom:before {
    bottom: 3px;
    right: 3px;
}


/* Process Block */

.process-intro {
    background-image: url(../images/facebook-images/process-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.process-block {
    padding: 0 20px;
    position: relative;
}

.process-count {
    background: linear-gradient(180deg, #2c71ca82 0%, rgb(14 67 137 / 0%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 100px;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 -30px;
}

.process-icon {
    background: #D9D9D91A;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-inline: auto;
    z-index: 1;
    position: relative;
    backdrop-filter: blur(40px);
}

/* Choice Block */

.choice-block {
    background: #FFFFFF33;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    z-index: 2;
}


.choice-block:hover  {
    background: var(--page-primary-bg);
}

.choice-block:hover .marketing-icon-block {
    background: var(--page-secondary-bg);
}

.choice-block:hover::before {
    height: 100%;
}

/* Industry Block */

.industry-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 100%;
    padding: 20px 20px;
    transition: all 0.3s;
}

/* CTA Wrapper */

.cta-wrapper {
    background-image: url(../images/pinterest-images/cta-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 90px;
    border-radius: 20px;
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 32px 0px !important;
}

.sections-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 24px !important;
}

.choice-block span {
    font-size: 147px;
    background: linear-gradient(180deg, #000000 0%, rgb(255 149 149) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    font-weight: 700;
    position: absolute;
    top: -31px;
    z-index: -1;
}
.choice-block:hover a {
    text-decoration: underline !important;
    color: #fff !important;
}

.new-digital-block {
    border: 2px solid #cd191d;
    border-radius: 30px;
    padding: 25px;
    height: 100%;
    transition: 400ms;
}

.new-digital-block:hover {
    background: #cd191d;
}

.new-digital-block a {
    color: #0b0c0d;
}

.new-digital-block:hover a {
    color: #fff !important;
    text-decoration: underline;
}

.new-digital-block:hover h3 {
    color: #fff !important;
}

.new-digital-block:hover p {
    color: #fff;
}

/* Responsive */

@media only screen and (max-width: 1599px) {
    .padding-left {
        --page-width: 1200px !important;
        padding-left: calc(50% -(var(--page-width) / 2) + 12px);
    }

    .digital-block {
        bottom: -56%;
        padding: 25px;
    }

    .digital-wrapper img.w-100 {
        height: 460px;
        object-fit: cover;
    }
}

@media only screen and (max-width: 1199px) {
    .digital-block {
        padding: 30px;
        width: 100%;
    }
}

@media only screen and (max-width: 991px) {

    .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-wrapper {
        padding: 40px 20px;
    }

    .platform-block,
    .choice-block {
        padding: 20px 20px;
    }

    .cta-wrapper .col-lg-8 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .digital-block {
        padding: 25px;
        bottom: -53%;
    }
    .text-bg {
        position: unset;
        transform: unset;
    }
    .text-bg-img {
        display: none;
    }
    .counter-right-inner .counter-block {
        height: 200px;
    }
    .cta-wrapper a {
        width: auto !important;
    }
    .work-block img {
        margin-top: -20px;
    }
    .work-block h3 {
        font-size: 80px !important;
    }
}

@media only screen and (max-width: 767px) {

    .count-text {
        font-size: 70px;
    }

    .new-faq .accordion-item {
        padding: 20px 0px !important;
    }

    .agency-wrapper {
        flex-direction: column;
    }
    h1 span {
        font-size: 65px;
    }
    .counter-left {
        grid-template-columns: repeat(1, 1fr);
    }
    .counter-right-inner {
        display: flex;
    }
    .counter-block {
        height: 170px !important;
    }
    .counter-left img {
        width: 100%;
    }
    .counter-left-inner {
        flex-direction: row;
    }
    .counter-block {
        padding: 25px;
    }
}