/* Common Style starts */
:root {
    --page-primary-bg: #1778BE;
    --page-theme: #30AD1C;
    --page-current: #1778BE1A;
    --text-theme: #000000;
    --tick-icon: url(../images/podcast-images/check-icon.webp);
}

.page-primary-bg {
    background-color: var(--page-primary-bg);
}

.page-theme {
    background-color: var(--page-theme);
}

.page-current {
    background-color: var(--page-current);
}

.text-theme {
    color: var(--text-theme);
}

.link-white {
    text-decoration: underline !important;
    color: var(--white-color) !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-color: var(--page-theme) !important;
}

.button-primary:hover {
    color: var(--white-color) !important;
    background-color: var(--page-primary-bg) !important;
}

.button-primary.button-primary-light {
    background: var(--white-color) !important;
    color: var(--text-theme);
    border: 1px solid var(--white-color);
}

.button-primary.button-primary-light:hover {
    color: var(--white-color) !important;
    background-color: var(--page-theme) !important;
    border-color: var(--page-theme) !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-current);
    position: relative;
}

.tick-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tick-list li {
    font-size: 20px;
    padding: 0 0 0 38px;
    position: relative;
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 1px auto 0 0;
    width: 30px;
    height: 30px;
    background-size: 30px;
    background-repeat: no-repeat;
}

/* Counter */

.industry-bg {
    background-image: url(../images/podcast-images/counter-intro.webp);
    background-color: var(--page-primary-bg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 50px;
}

.industry-inner-wrapper {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border: 1px solid #ffffff00;
    transition: 400ms;
    justify-content: flex-start !important;
}

.industry-inner-wrapper:hover {
     border: 1px solid #ffffff;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.industry-icon-grid-block img {
    max-width: 51px;
}

/* Service Block */

.service-block {
    background: var(--page-current);
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.service-block img {
    width: 100%;
    object-fit: cover;
}

.service-content {
    padding: 30px 30px;
}

.service-block:hover {
    border-color: var(--page-primary-bg);
    transform: translateY(-5px);
}

.service-block a,
.service-block:hover a {
    color: var(--page-primary-bg);
    text-decoration: underline !important;
}

/* Product Slider */

.technology-slider .swiper-slide {
    height: auto !important;
}

.product-block {
    padding: 24px 24px;
    transition: all 0.3s;
    background: var(--white-color);
    height: 100%;
    cursor: none;
    user-select: none;
    border-radius: 20px;
}

.product-block:hover .link-blk,
.product-block:hover .link-blk h4 {
    text-decoration: underline;
    color: var(--page-theme) !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-theme);
    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);
}

.slider-btn {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
    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-current);
    background: var(--white-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-theme);
    margin: unset !important;
    z-index: 1 !important;
    transition: ease-in 0.3s;
    font-weight: bold;
    position: static;
    box-shadow: 0px 0px 20px 0px #00000021;
    border-radius: 50px;
}

.slider-btn .swiper-button-next:after, .slider-btn .swiper-button-prev:after {
    font-size: 16px;
}

.slider-btn .swiper-button-next:hover, .slider-btn .swiper-button-prev:hover {
    background: var(--page-theme);
    border-color: var(--page-theme);
    transition: ease-in 0.3s;
    color: var(--white-color) !important;
}

/* Procedure Block */

.procedure-intro {
    background-color: var(--page-current);
    background-image: url(../images/podcast-images/procedure-intro.webp);
    background-position: center;
    background-size: cover;
}

.procedure-block {
    padding: 30px 20px;
    background: var(--white-color);
    border-radius: 20px;
}

.procedure-img img {
    width: 100%;
    object-fit: cover;
}

.procedure-title img {
    width: auto;
}

.procedure-title {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    bottom: 0;
    padding: 20px;
    width: 100%;
}

/* Podcast Block */

.podcast-block {
    border: 1px solid #E0E0E0;
    padding: 24px 24px;
    border-radius: 20px;
    transition: all 0.3s;
}

.podcast-block:hover {
    background-color: var(--page-current);
    border-color: var(--page-primary-bg);
    transform: translateY(-5px);
}


/* Cta Block */

.cta-block {
    background: linear-gradient(90deg, #2F71D2 0%, #37C8EF 100%);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 0 0 50px;
}


/* Faq Block */

.new-faq .accordion-item {
    padding: 36px 0px !important;
}

.sections-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 24px !important;
}

@media (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px !important;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }
}

@media (min-width: 1200px) and (max-width: 1599px) {
    
    .container {
        max-width: 1200px !important;
        width: 100%;
    }
}

@media screen and (max-width: 1399px) {

    .industry-bg {
        padding: 50px 40px;
    }

    .padding-left {
        padding-inline: 12px !important;
    }
}

@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: 50px 0 !important;
    }

    .row-order {
        flex-direction: column-reverse;
    }

    .industry-bg {
        padding: 30px 20px;
    }

    .industry-inner-wrapper {
        padding: 20px;
    }

    .tick-list {
        text-align: left;
    }

    .mb-50 {
        margin-bottom: 28px;
    }

    .new-faq .accordion-button::after {
        background-size: 28px !important;
        width: 28px !important;
        height: 28px !important;
    }

    .cta-block {
        padding: 50px 20px;
    }
}

@media screen and (max-width: 767px) {

    .sections-wrapper .new-faq .accordion-item h2.accordion-header button {
        font-size: 18px !important;
        gap: 10px;
    }

    .industry-grid {
        gap: 10px;
    }

    .industry-inner-wrapper {
        padding: 14px;
        text-align: justify;
    }

    .tick-list li {
        padding: 0 0 0 26px;
    }

    .tick-list li::before {
        inset: -1px auto 0 0;
        width: 22px;
        height: 22px;
        background-size: 22px;
    }

    .procedure-title img {
        width: 100%;
        max-width: 40px;
    }

    .procedure-title {
        gap: 10px;
        padding: 15px;
    }
}

@media screen and (max-width: 474px) {

    .industry-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}