﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
/*font-family: "Mucho Sans", sans-serif;*/
}

#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}

.navbar {
    margin: 50px auto;
    padding: 5px 50px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    max-width: 1400px;
    left: 7%;
    right: 7%;
    z-index: 999;
    box-shadow: 6px 4px 6px 0px rgba(182, 182, 182, 0.3);
    height: 85px;
}

.logo img {
    height: 70px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
}

    .nav-links a {
        text-decoration: none;
        color: #591a55; /* Normal */
        font-weight: 600;
        letter-spacing: 0.5px;
        position: relative;
        transition: color 0.3s ease;
    }


        .nav-links a::before {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0; /* hidden */
            height: 2px;
            background-color: currentColor;
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #98469a;
            font-weight: 900;
        }

            .nav-links a:hover::before {
                width: 100%;
                background-color: #98469a;
            }


        .nav-links a.loading-active {
            color: #eb3593;
            font-weight: 900;
        }

            .nav-links a.loading-active::before {
                width: 100%;
                background-color: #eb3593;
            }



.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

    .hamburger span {
        width: 22px;
        height: 2px;
        background: #2d1f3f;
    }

.hero {
    display: flex;
    justify-content: end;
    align-items: end;
    text-align: center;
    color: #2d1f3f;
    width: wi;
    width: 85%;
    margin: auto;
    padding-top: 28%;
    max-width: 1400px;
}

    .hero h1 {
        font-size: 48px;
        line-height: 1.2;
        color: #2d1f3f;
    }

    .hero span {
        font-weight: bold;
    }

.breadcrumb {
    display: none;
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    color: #333;
}

section.hero p {
    font-size: 80px;
    line-height: 1.2;
    text-align: end;
    letter-spacing: 3px;
    color: #3d113c;
    font-weight: 400 !important;
}

.info-section {
    padding: 70px 40px 0px 40px;
    max-width: 1000px;
    margin: 0px auto;
}

.header {
    font-size: 28px;
    text-transform: uppercase;
    color: #3c3c8a;
    background-color: #b3b3e6;
    display: inline-block;
    padding: 5px 10px;
    letter-spacing: 1px;
}

.intro-text {
    margin-top: 10px;
    color: #444;
    font-size: 14px;
    line-height: 1.6;
    width: 75%;
}

.button-group {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

    .button-group button {
        background-color: #693a94;
        color: #fff;
        border: none;
        border-radius: 12px;
        padding: 12px 18px;
        font-size: 13px;
        cursor: pointer;
        width: 170px;
        transition: 0.4s ease;
        height: 65px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.content-box {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid #98469a;
    border-radius: 15px;
}

.image-box {
    width: 50%;
}

    .image-box img {
        width: 100%;
        border-radius: 15px;
    }

.text-box {
    flex: 1;
}

    .text-box p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

.info-buttons {
    display: flex;
    gap: 15px;
}

.btn-outline {
    text-decoration: none;
    border: 1.5px solid #693a94;
    color: #98469a;
    border-radius: 15px;
    padding: 5px 16px;
    font-size: 15px;
    transition: 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.3;
    font-weight: 600;
    width: 180px;
    height: 55px;
}

    .btn-outline:hover {
        background: #98469a;
        border: 2px solid #693a94;
        color: white;
    }

.video-section {
    position: relative;
    height: 110vh;
    overflow: hidden;
}

/* All pages use a compact banner so the first text sits about 100px below the
   fixed top nav bar instead of leaving a full-viewport-height blank area below it. */
.video-section.inner-page {
    height: auto;
    padding-top: 230px;
    padding-bottom: 30px;
}

    .video-section.inner-page .hero {
        padding-top: 0;
    }

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero,
.breadcrumb {
    position: relative;
    z-index: 2;
}

section.info-section h2.header {
    font-size: 28px;
    text-transform: uppercase;
    color: #693a94;
    background-color: unset;
    display: inline-block;
    padding: 0;
    letter-spacing: 1px;
    font-weight: 500;
}

.button-group button:hover {
    background: #98469a;
    border: 3px solid #693a94;
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    /* background-color: #693a94; */
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0px;
    border-radius: 50%;
    display: none;
    transition: 0.4s ease;
    /* width: 40px; */
    /* height: 40px; */
    background: transparent;
}

    #scrollTopBtn img {
        width: 40px;
        height: 40px;
    }

    #scrollTopBtn:hover {
        opacity: 0.8;
    }

button#scrollTopBtn i.fa-solid.fa-chevron-up {
    font-size: 24px;
    color: #fff;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

button#scrollTopBtn:hover {
    transform: translateY(-10px);
}

.just-ask-section {
    position: relative;
    background-image: url("../Images/Home/ask_banner_edit2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 80px;
    color: white;
    margin-top: 70px;
}

    .just-ask-section .overlay-box {
        padding: 40px 50px;
        border-radius: 70px;
        max-width: 550px;
        background: #693a94;
        opacity: .85;
    }

        .just-ask-section .overlay-box h1 {
            font-size: 30px;
            font-weight: 500;
            line-height: 1.3;
            margin-bottom: 15px;
        }

        .just-ask-section .overlay-box p {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 25px;
            color: #f0e6f6;
        }

    .just-ask-section .cta-btn {
        display: inline-block;
        background-color: #00b4b4;
        color: white;
        font-weight: 600;
        text-decoration: none;
        border-radius: 17px;
        padding: 6px 22px;
        font-size: 18px;
        width: 156px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
    }


        .just-ask-section .cta-btn:hover {
            background: #1d4c9b !important;
            border: 2px solid #fff !important;
        }
    .just-ask-section .overlay-box a.cta-btn.loading-active {
        border: 2px solid #00b4b4 !important;
        background: #1d4c9b !important;
    }



section.infinite-waves.home-infinite-waves a.cta-btn.loading-active {
    border: 2px solid #eb3593 !important;
    background: #a02487 !important;
    color:#fff;
}
section.infinite-waves.infinite-podcast.infinite-podcast-podcast .image-content a {
    pointer-events: none;
}


        .infinite-waves {
            padding: 70px 80px;
            font-family: "Poppins", sans-serif;
            color: #333;
            background-color: #fff;
            max-width: 1000px;
            margin: auto;
            padding-bottom: 20px;
        }

    .infinite-waves .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 40px;
    }

    .infinite-waves .text-content {
        flex: 1 1 45%;
        min-width: 280px;
    }

        .infinite-waves .text-content h2 {
            color: #a02487;
            font-size: 35px;
            letter-spacing: 1px;
            margin-bottom: 20px;
            font-weight: 500;
            line-height: 1.2;
            font-weight: 400 !important;
        }

        .infinite-waves .text-content p {
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 15px;
            color: #231f20;
        }

    .infinite-waves .image-content {
        flex: 1 1 45%;
        text-align: right;
    }

        .infinite-waves .image-content img {
            width: 100%;
            max-width: 400px;
            border-radius: 20px;
            box-shadow: 8px 8px 0px 2px #693a94;
            height: 250px;
        }
section.infinite-waves.home-infinite-waves a.cta-btn {
    display: inline-block;
    background-color: #fff;
    color: #a02487;
    font-weight: 600;
    text-decoration: none;
    border-radius: 17px;
    padding: 6px 22px;
    font-size: 18px;
    width: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #693a94;
}
section.infinite-waves.home-infinite-waves a.cta-btn:hover {
    background: #a02487;
    border: 2px solid #693a94;
    color:#fff;
}
section.infinite-waves.infinite-podcast.infinite-podcast-podcast a.cta-btn {
    display: none;
}


.image-content {
    position: relative;
}

.rocket-img img {
    box-shadow: unset !important;
    width: 50px !important;
    position: absolute;
    bottom: -34px;
    right: -23px;
}

.transform {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.infinite-waves.home-infinite-waves img {
    box-shadow: 8px 8px 0px 2px #eb3593;
}

.transform-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.transform-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 60px 80px;
}

    .transform-content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(32 32 32 / 35%);
        z-index: -1;
        pointer-events: none;
    }


.transform-box {
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 40px;
    border-radius: 50px;
    text-align: left;
    max-width: 650px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: rgba(105, 58, 148, 0.85);
}

    .transform-box h1 {
        font-size: 35px;
        font-weight: 500;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .transform-box p {
        font-size: 1rem;
        margin-bottom: 25px;
        color: #ffffff;
        font-weight: 300;
    }

.image-content.about img {
    box-shadow: 8px 8px 0px 2px #693a94;
}



section.transform .transform-box a {
    background-color: #eb3593;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 17px;
    padding: 6px 22px;
    font-size: 18px;
    width: 156px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}
    section.transform .transform-box a:hover {
        background: #a02487;
        color:#fff;
        border:2px solid #fff;
    }
    section.transform .transform-box a.loading-active {
        background: #a02487;
        border: 2px solid #eb3593;
        color:#fff;
    }


.footer {
    background-color: #693a94;
    color: white;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    padding: 40px 80px;
    max-width: 1100px;
    margin: auto;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer .social-icons a.loading-active {
    border-color: #eeb023;
}

    .footer .social-icons a.loading-active i {
        color: #eeb023;
    }


.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

    .social-icons img {
        width: 28px;
        height: 28px;
        filter: brightness(0) invert(1);
        transition: 0.3s;
    }

        .social-icons img:hover {
            transform: scale(1.1);
        }

.addresses {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.address {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
}

.divider {
    width: 1px;
    height: 90px;
    background: white;
    opacity: 0.5;
}

li.ask {
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 80px;
}

    .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

.footer .addresses p {
    font-weight: 400;
}

.footer-links li {
    font-size: 13px;
    margin-bottom: 8px;
    cursor: pointer;
    font-weight: 400;
}



.footer-right {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 220px;
}

section.hero.footer-hero p {
    font-weight: 700;
    color: #fff;
}

    section.hero.footer-hero p span:nth-of-type(1) {
        font-weight: 500;
    }

    section.hero.footer-hero p span:nth-of-type(2) {
        color: #eb3593;
    }

.social-icons a {
    color: #fff;
    font-size: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: anchor-center;
    text-decoration: unset;
    transition:.3s ease;
}
    .social-icons a:hover {
        border: 2px solid #eb3593;
        color: #eb3593;
    }
footer.footer .footer-left .social-icons a:active {
    color: #eeb023;
    border: 2px solid #eeb023;
}
/*    footer*/
.footer-links a {
    text-decoration: none; 
    color: #fff;
    font-weight: 400;
    position: relative;
    max-width: max-content;
    transition: color 0.3s ease;
}

    .footer-links a::before {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: currentColor;
        transition: width 0.3s ease;
    }

    .footer-links a:hover {
        color: #eb3593;
    }

        .footer-links a:hover::before {
            width: 100%;
            background-color: #eb3593;
        }

    .footer-links a.loading-active {
        color: #eeb023;
        transition: 0.3s ease;
    }


.footer-links a.loading-active::before {
    width: 100%;
    background-color: #eeb023;
}




/*footer*/


.footer-hr hr {
    height: 5px;
    border: none;
    background: #fff;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
    transition: 0.4s ease;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
    transition: 0.4s ease;
}

section.hero.about-hero p {
    text-align: center;
}

section.hero.footer-hero p span:nth-of-type(1) {
    font-weight: 500;
    background: #98469a;
    margin-bottom: 15px;
    display: inline-block;
    padding-left: 15px;
}

section.hero.footer-hero p span:nth-of-type(2) {
    color: #fff;
    background: #98469a;
    padding-left: 15px;
}

section.infinite-waves.infinite-waves-about .container {
    flex-direction: row-reverse;
    gap: 54px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .checklist li {
        font-size: 14px;
        color: #333;
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        text-align: start;
    }

    .checklist i {
        color: #eb3593;
        -webkit-background-clip: text;
        background-clip: text;
        font-size: 15px;
        margin-right: 10px;
        border: 2px solid;
        border-radius: 50%;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 25px;
        height: 25px;
    }

.number-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    background: #fff;
    gap: 30px;
}

    .number-box .number-box-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .number-box .box {
        background: #231f20 !important;
        color: #fff;
        text-align: center;
        padding: 20px;
        border-radius: 25px;
        width: 150px;
        height: 150px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .number-box .box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .number-box .box h2 {
            font-size: 32px;
            margin: 0;
            background: #eb3593;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
        }

        .number-box .box p {
            font-size: 12px;
            margin-top: 8px;
            color: #ff66b3;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        .number-box .box:nth-child(1) p,
        .number-box .box:nth-child(1) h2,
        .number-box .box:nth-child(5) p,
        .number-box .box:nth-child(5) h2 {
            opacity: .65;
        }

        .number-box .box:nth-child(3) h2 {
            background: #f15b28;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .number-box .box:nth-child(3) p {
            color: #f15b28;
        }

        .number-box .box:nth-child(4) h2 {
            background: #eeb023;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .number-box .box:nth-child(4) p {
            color: #eeb023;
        }


        .number-box .box:nth-child(5) h2 {
            background: linear-gradient(45deg, #b300b3, #ff0099);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }



.MEET-THE-TEAM {
    text-align: center;
    padding: 25px 0;
    background: #fff;
    color: #333;
    padding-bottom: 60px;
}

    .MEET-THE-TEAM .team-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .MEET-THE-TEAM h2 {
        font-size: 35px;
        letter-spacing: 1px;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .MEET-THE-TEAM p {
        font-size: 16px;
        color: #555;
        margin-bottom: 40px;
    }

    .MEET-THE-TEAM .team-members {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .MEET-THE-TEAM .member {
        width: 200px;
        height: 200px;
        overflow: hidden;
        border-radius: 25px;
        background: #f5f5f5;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .MEET-THE-TEAM .member:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .MEET-THE-TEAM .member img {
            width: 100%;
            object-fit: cover;
            border-radius: 25px;
            transition: 0.3s ease;
        }

        .MEET-THE-TEAM .member:hover img {
            filter: grayscale(0%) hue-rotate(0deg);
        }

section.transform.podcast .transform-box {
    background: #32045c;
    backdrop-filter: blur(0px);
}

section.video-section.podcast section.hero.footer-hero span.ai {
    margin: auto;
    padding: 0;
    padding-right: 15px;
    font-weight: 700;
}

section.video-section.top section.hero.footer-hero span {
    background: transparent;
    line-height: 0;
}

    section.video-section.top section.hero.footer-hero span.ai {
        font-weight: 700;
        margin: 0;
        padding: 0;
    }

.podcast-section {
    background-color: #442262;
    color: #fff;
    padding: 50px 5%;
    font-family: "Poppins", sans-serif;
}

    .podcast-section .podcast-container {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 40px;
    }

    .podcast-section .season-select {
        display: inline-flex;
        align-items: center;
        background: #fff;
        color: #461e6a;
        padding: 6px 12px;
        border-radius: 4px;
        font-weight: 500;
        margin-bottom: 20px;
        cursor: pointer;
        border: 2px solid #ec3494;
    }

        .podcast-section .season-select i {
            margin-left: 8px;
        }

.next-section .slick-list.draggable img {
    border: 2px solid #eb3593;
}

.next-section .play-btn {
    background: transparent !important;
    color: #fff;
    width: 0;
    height: 0;
    font-size: 20px;
}

.podcast-section .video-frame {
    position: relative;
    background: #000000;
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    border: 30px solid #404041;
    height: 422px;
    padding: 0 25px 0 25px;
}

section.podcast-section .sort-dropdown {
    max-width: 1050px;
    margin: auto;
}

.podcast-section .video-frame iframe {
    width: 100%;
    height: 100%;
}

.podcast-section .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #693a94;
    color: #fff;
    opacity: .85;
    width: 80px;
    height: 60px;
    border-radius: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 15px;
    width: 80px;
    height: 60px;
}

    .podcast-section .play-btn:hover {
        background: #d733c6;
    }


.podcast-section .details-side {
    width: 40%;
}

    .podcast-section .details-side h2 {
        font-size: 35px;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .podcast-section .details-side p {
        font-size: 14px;
        line-height: 1.6;
        color: #ddd;
    }

.podcast-section .next-section {
    margin-top: 30px;
    position: relative;
}

    .podcast-section .next-section h4 {
        margin-bottom: 10px;
        font-weight: 500;
    }

.podcast-section .next-slider {
    width: 260px;
}

.podcast-section .next-thumb {
    margin-right: 10px;
    position: relative;
    overflow: hidden;
}

    .podcast-section .next-thumb img {
        width: 120px;
        height: auto;
    }



.podcast-section .next-arrow {
    position: absolute;
    right: -50px;
    top: 45%;
    transform: translateY(20%);
    font-size: 35px;
    cursor: pointer;
}

.podcast-section .watch-listen {
    margin-top: 40px;
}

    .podcast-section .watch-listen h5 {
        margin-bottom: 10px;
        font-size: 15px;
        font-weight: 500;
    }

    .podcast-section .watch-listen .icons i {
        font-size: 26px;
        margin-right: 15px;
        cursor: pointer;
        transition: 0.3s;
    }

        .podcast-section .watch-listen .icons i:hover {
            color: #a2189d;
        }

section.podcast-section .video-side .video-frame img.video-thumb {
    width: 100%;
    height: 362px;
}

section.podcast-section .container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
    max-width: 1050px;
    margin: auto;
}

.next-arrows i.fa-solid.fa-chevron-left.prev-arrow {
    display: none;
}

.watch-listen .icons i.fa-brands.fa-youtube,
i.fa-brands.fa-spotify,
i.fa-brands.fa-apple {
    border: 2px solid #fff;
    border-radius: 500%;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    font-size: 18px !important;
}
    .watch-listen .icons i.fa-brands.fa-youtube:hover,
    .watch-listen i.fa-brands.fa-spotify:hover,
    .watch-listen i.fa-brands.fa-apple:hover {
        border: 2px solid #eb3593 !important;
        color: #eb3593 !important;
    }

    .watch-listen .icons i.fa-brands.fa-youtube:active,
    .watch-listen i.fa-brands.fa-spotify:active,
    .watch-listen i.fa-brands.fa-apple:active {
        border: 2px solid #eeb023 !important;
        color: #eeb023 !important;
    }












.podcast-section .next-arrow:hover {
    color: #eb3593 !important;
}
.podcast-section .next-arrow:active {
    color: #eeb023 !important;
}

    .watch-listen .icons {
        display: flex;
        justify-content: flex-start;
        align-items: anchor-center;
        gap: 5px;
    }

.episode-list {
    background: #fff;
    padding: 80px 5%;
    text-align: center;
    max-width: 1400px;
    margin: auto;
}

section.podcast-section select {
    padding: 7px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 2px solid #d32f8e;
    font-size: 15px;
    font-weight: 500;
}

.episode-list .episode-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.episode-list h2 {
    font-size: 35px;
    font-weight: 500;
    color: #ec3494;
}

.episode-list .sort-dropdown select {
    padding: 8px 14px;
    border: 2px solid #d32f8e;
    border-radius: 4px;
    background: transparent;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    font-size: 16px;
}

.episode-list .episode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.episode-list .episode-card {
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

    .episode-list .episode-card:hover {
        transform: translateY(-6px);
    }

    .episode-list .episode-card img {
        width: 100%;
        display: block;
        border: 3px solid #442262;
        cursor: pointer;
    }
        .episode-list .episode-card img:hover {
            width: 100%;
            display: block;
            border: 3px solid #eb3593
        }
        .episode-list .episode-card img:active {
            width: 100%;
            display: block;
            border: 3px solid #eeb023;
        }
.episode-list .episode-info {
    padding: 15px;
}

    .episode-list .episode-info h4 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .episode-list .episode-info p {
        font-size: 14px;
        color: #555;
        line-height: 1.5;
    }

.episode-list .show-more {
    text-align: center;
    cursor: pointer;
    color: #ff3ea5;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 50px;
    font-weight: 500;
    font-size: 22px;
}

    .episode-list .show-more i {
        display: block;
        margin: 0px auto 0;
        font-size: 40px;
        color: #442262;
    }
        .episode-list .show-more i:hover {
            color: #eb3593;
        }

.episode-list .guest-section {
    text-align: center;
    font-size: 30px;
    color: #404041;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .episode-list .guest-section .chat-btn {
        display: inline-block;
        background: #eb3593;
        color: #fff;
        font-weight: 500;
        padding: 5px 18px;
        border-radius: 17px;
        margin-left: 10px;
        text-decoration: none;
        transition: background 0.3s;
    }

        .episode-list .guest-section .chat-btn:hover {
            background: #a02487;
        }

        .episode-list .guest-section .chat-btn:active {
            background: #a02487;
            border: 2px solid #eb3593 !important;
        }

section.hero.about-hero.products p {
    color: #fff;
}

.ask-section {
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
}

.ask-content {
    text-align: left;
    max-width: 900px;
}

.ask-logo {
    max-width: 400px;
    width: 100%;
    display: block;
    margin: 0 auto 40px auto;
}

.ask-text h2 {
    color: #1d4c9b;
    font-size: 35px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ask-text p {
    color: #231f20;
    font-size: 18px;
    line-height: 1.7;
}

.key-features-video {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #fff;
    margin-bottom: 50px;
}

    .key-features-video .features-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1000px;
        gap: 15px;
    }

    .key-features-video .features-left {
        flex: 1;
    }

        .key-features-video .features-left h2 {
            color: #1d4c9b;
            font-size: 35px;
            font-weight: 500;
            margin-bottom: 40px;
        }

    .key-features-video .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }

        .key-features-video .feature-item i {
            color: #00b5b8;
            font-size: 20px;
            margin-top: 4px;
            border: 2px solid;
            width: 30px;
            height: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            padding: 10px;
        }

section.infinite-waves.infinite-waves-about.products .text-content h2 {
    color: #184298;
}

.key-features-video .feature-text h3 {
    color: #00b5b8;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.key-features-video .feature-text p {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    max-width: 400px;
}

.key-features-video .features-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.key-features-video .video-box {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 8px 8px 0px 2px #1b4c9b;
}

    .key-features-video .video-box video {
        width: 100%;
        display: block;
        border-radius: 20px;
    }

.key-features-video .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #00b5b8;
    border-radius: 15px;
    width: 80px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    .key-features-video .play-overlay.hide {
        opacity: 0;
        pointer-events: none;
    }

    .key-features-video .play-overlay i {
        color: white;
        font-size: 35px;
    }
    .key-features-video .play-overlay:hover {
        border: 2.5px solid #1d4c9b;
    }
    .key-features-video .play-overlay:active {
        background: #1d4c9b;
        border: 2px solid #00b4b4;
    }
        .key-features-video .play-overlay:active i.fa-solid.fa-play {
            color: #00b4b4;
        }

        .try-it-out {
            color: #1b4965;
            padding: 40px 20px;
            display: flex;
            justify-content: center;
            box-sizing: border-box;
            margin-bottom: 50px;
        }

.try-it-out__container {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    padding: 0 40px;
}

.try-it-out__title {
    font-size: 48px;
    letter-spacing: 1px;
    margin: 10px 0 36px;
    color: #184298;
    font-weight: 500;
}


.demo-frame {
    background: white;
    border-radius: 34px;
    padding: 28px;
    position: relative;
    box-sizing: border-box;
    height: 400px;
}


    .demo-frame::before {
        content: "";
        position: absolute;
        inset: -30px;
        border-radius: 50px;
        background: linear-gradient(180deg, rgba(0, 170, 169, 1), rgba(0, 170, 169, 1));
        z-index: -2;
    }


.demo-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 36px 24px;
    min-height: 220px;
    box-sizing: border-box;
    position: relative;
}


.demo-logo {
    position: absolute;
    left: -16px;
    top: -30px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    width: 150px;
    height: 100px;
}


.demo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    color: #b8b8b8;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 36px;
    margin-top: 5%;
}


.demo-input-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12%;
    padding: 0 12px;
}

.demo-input {
    width: 100%;
    max-width: 820px;
    border: 1px solid rgb(0 170 169);
    background: #ffffff;
    height: 36px;
    border-radius: 12px;
    padding: 6px 56px 6px 12px;
    box-sizing: border-box;
    outline: none;
    font-size: 14px;
    color: #333;
    transition: box-shadow .15s, border-color .15s;
}

    .demo-input:focus {
        box-shadow: 0 0 0 3px rgba(45, 90, 164, 0.06);
        border-color: rgba(45, 90, 164, 0.4);
    }


.demo-send {
    position: relative;
    margin-left: -48px;
    height: 28px;
    min-width: 44px;
    padding: 0 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #1d4e93, #0f3b78);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
    transition: transform .08s;
}

    .demo-send:active {
        transform: translateY(1px);
    }

    .demo-send:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(29, 78, 147, 0.12);
    }

section.hero.footer-hero.products p span:nth-of-type(1) {
    font-weight: 700;
    background: #693a94;
}

section.hero.footer-hero.products p span:nth-of-type(2) {
    font-weight: 500;
    background: #693a94;
}


.product-slider {
    position: relative;
    max-width: 1100px;
    overflow: hidden;
    margin: auto;
    padding: 0px 50px 110px 50px;
}

    .product-slider .slider {
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.8s ease;
    }

    .product-slider .slide {
        flex: 0 0 20%;
        margin: 0 10px;
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.6s ease;
        filter: blur(4px) brightness(70%);
        transform: scale(0.9);
        opacity: 0.8;
    }

        .product-slider .slide img {
            width: 100%;
            height: 270px;
            object-fit: cover;
            border-radius: 20px;
            transition: all 0.5s ease;
        }


        .product-slider .slide.active {
            transform: scale(1.1);
            filter: none;
            opacity: 1;
            z-index: 2;
        }


    .product-slider .arrow {
        position: absolute;
        top: 39%;
        transform: translateY(-61%);
        background-color: transparent;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        font-size: 20px;
        cursor: pointer;
        z-index: 10;
        box-shadow: unset;
    }

        .product-slider .arrow.left {
            left: 170px;
        }

        .product-slider .arrow.right {
            right: 170px;
        }

        .product-slider .arrow:hover {
            background-color: #fff;
        }

    .product-slider .slide.active {
        transform: scale(1.25);
        filter: none;
        opacity: 1;
        z-index: 3;
        transition: all 0.6s ease;
    }


    .product-slider .slide {
        transition: all 0.6s ease;
        transform: scale(0.9);
        filter: blur(4px) brightness(70%);
        opacity: 0.8;
    }

    .product-slider .slider {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        padding: 50px;
    }

    .product-slider .slide {
        position: relative;
        flex: 0 0 auto;
        width: 265px;
        margin: 0 -40px;
        transition: all 0.6s ease;
        filter: blur(4px) brightness(70%);
        transform: scale(0.85);
        opacity: 0.8;
        z-index: 1;
    }

        .product-slider .slide.active {
            transform: scale(1.2) translateY(-10px);
            filter: none;
            opacity: 1;
            z-index: 5;
        }

        .product-slider .slide.active {
            transform: scale(1.2) translateY(-10px);
            filter: none;
            opacity: 1;
            z-index: 5;
            overflow: unset;
            border-radius: 20px;
            width: 350px;
        }

    .product-slider img {
        width: 30px;
    }

    .product-slider .slide.active img {
        border-radius: 20px;
        transition: all 0.4s ease;
    }

    .product-slider .arrow:hover {
        background: transparent;
    }


    .product-slider .slide.prev,
    .product-slider .slide.next {
        transform: scale(0.95);
        filter: blur(4px) brightness(85%);
        z-index: 2;
    }

section.hero.footer-hero.products.contact p {
    font-weight: 500;
}

    section.hero.footer-hero.products.contact p span {
        font-weight: 500;
    }

span.today {
    padding: 0 !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

span.reach {
    font-weight: 700 !important;
    margin: 0 !important;
}

.sbi {
    padding: 60px;
}

.testimonial-card {
    position: relative;
    width: 100%;
    height: var(--card-h);
    border-radius: 48px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 160px;
    box-sizing: border-box;
    background: #693a94;
    opacity: .80;
}


.quote-svg {
    position: absolute;
    left: 42px;
    top: 34px;
    width: 180px;
    height: 180px;
    opacity: 0.12;
    pointer-events: none;
    transform: translateY(-6px);
}


.testimonial-content {
    width: 100%;
    text-align: center;
    color: #ffffff;
    max-width: 820px;
    margin: 0 auto;
}

.testimonial-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 1;
    margin: 4px 0 4px;
    font-style: italic;
}

.testimonial-text {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 300;
    margin: 10px auto 26px;
    max-width: 760px;
}

.avatar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    background: #ddd;
}

    .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.author-name {
    margin: 6px 0 0;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
}

.author-title {
    margin: -8px 0 0;
    font-size: 16px;
    font-weight: 500;
    opacity: 0.95;
    color: rgba(255, 255, 255);
    letter-spacing: 0.6px;
    text-transform: none;
}

.quote-svg {
    position: absolute;
    left: 42px;
    top: 34px;
    width: 180px;
    height: 180px;
    pointer-events: none;
    transform: translateY(-6px);
    color: #ffffff;
}

.testimonial-card .quotation {
    position: absolute;
    top: 25px;
    left: 6%;
    fill: #ffffff;
    opacity: .25;
    height: 150px;
}

.contact-section-kr #name.error {
    border: 1px solid red;
    background-color: #ffeaea;
}

.input-error {
    border: 2px solid #ff4d4d !important;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

.contact-section-kr {
    color: #693a94;
    max-width: 1000px;
    margin: 0px auto;
    padding: 0px 80px;
    margin-bottom: 60px;
}

    .contact-section-kr label {
        display: block;
        font-size: 35px;
        margin-bottom: 8px;
        color: #693a94;
        font-weight: 500;
        text-transform: none;
    }

span.to-us {
    font-weight: 500;
}

.contact-section-kr input,
.contact-section-kr select,
.contact-section-kr textarea {
    width: 100%;
    background: #f0e9f3;
    border: 1px solid #693a94;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 1rem;
    color: #592c82;
    outline: none;
    transition: all 0.3s ease;
}

    .contact-section-kr input:focus,
    .contact-section-kr select:focus,
    .contact-section-kr textarea:focus {
        border-color: #9b64d1;
        box-shadow: 0 0 5px #cdb5e6;
    }

.contact-section-kr textarea {
    resize: none;
}

.contact-section-kr .contact-methods {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-section-kr button {
    background: #eb3593;
    border: none;
    color: white;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 18px;
    margin-top: 20px;
    cursor: pointer;
    opacity: 0;
    display: none;
    transition: all 0.4s ease;
    font-size: 18px;
}

    .contact-section-kr button:hover {
        background: #a02487;
    }
    .contact-section-kr button:active {
        border: 2px solid #eb3593;
        background: #a02487;
    }

.contact-section-kr .privacy {
    font-size: 0.9rem;
    color: #7a5ca8;
    line-height: 1.4rem;
    display: flex;
    justify-content: flex-start;
    align-items: anchor-center;
    gap: 25px;
}

    .contact-section-kr .privacy a {
        color: #693a94;
        ;
        text-decoration: underline;
    }

.contact-section-kr .form-step {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

    .contact-section-kr .form-step.visible {
        opacity: 1;
        height: auto;
        overflow: visible;
        transform: translateY(0);
        margin-top: 25px;
    }

.contact-section-kr .instruction {
    display: block;
    font-size: 16px;
    color: #693a94;
    margin-top: 6px;
    font-style: italic;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease, margin 0.3s ease;
}

    .contact-section-kr .instruction.hidden {
        opacity: 0;
        transform: translateY(-8px);
        margin: 0;
        height: 0;
        overflow: hidden;
    }

#contactWrapper {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    height: 0;
    overflow: hidden;
}

    #contactWrapper.show {
        opacity: 1;
        transform: translateY(0);
        height: auto;
        overflow: visible;
        margin-top: 10px;
    }

.contact-section-kr .instruction.hidden {
    opacity: 0;
    transform: translateY(-8px);
    margin: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.raven-img.fade-in {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s ease;
}

    .raven-img.fade-in[style*="display: block"] {
        opacity: 1;
        transform: scale(1);
    }

.step-4-kr {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
}

    .step-4-kr div#step4 {
        width: 52%;
    }

    .step-4-kr div#step5 {
        width: 50%;
    }

.contact-section-kr .privacy input#agree {
    width: 45px !important;
    height: 45px !important;
    background: transparent !important;
    box-shadow: unset !important;
}

.contact-section-kr div#step2 {
    width: 50%;
}

.contact-section-kr .privacy p {
    font-size: 14px;
    line-height: 1.3;
    color: #693a94;
}

span.welcome-1 {
    background: transparent !important;
}

span.kr8-text {
    color: #eb3593 !important;
    background: transparent !important;
}

#reason,
#method {
    padding: 12px 40px 12px 20px !important;
    background-position: right 20px center !important;
    background-repeat: no-repeat;
    background-size: 16px;
}

#reason,
#method {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='%236a2e8f' height='24' viewBox='0 0 512 512' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M98 190l158 158 158-158'/%3E%3C/svg%3E");
    background-size: 30px;
    background-position: right 18px center;
    background-repeat: no-repeat;
}

.custom-select {
    width: 100%;
}

section.hero.footer-hero.products.pro span {
    background: #1b4c9b !important;
}


section.hero.footer-hero.contact p {
    letter-spacing: 10px;
    font-size: 65px;
}

section.hero.footer-hero p {
    letter-spacing: 10px;
    font-size: 65px;
}


.footer-links ul li a {
    color: #fff;
    text-decoration: unset;
}

.podcast-section .sort-dropdown select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23000000' height='24' viewBox='0 0 512 512' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M98 190l158 158 158-158'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 50px;
}

section.episode-list .episode-header .sort-dropdown select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23000000' height='24' viewBox='0 0 512 512' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M98 190l158 158 158-158'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 50px;
}

.consectetuer {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 20px;
}

    .consectetuer .feature-title {
        color: #00b5b8;
        font-size: 16px;
        letter-spacing: 2px;
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .consectetuer .feature-text {
        color: #333;
        font-size: 15px;
        line-height: 1.5;
        max-width: 480px;
        margin: 0 auto;
        text-align: start;
    }



.button-group a {
    text-decoration: unset !important;
}

.button-group a {
    text-decoration: unset !important;
}

.checklist li {
    position: relative;
    padding-left: 40px;
    list-style: none;
}

    .checklist li::before {
        content: "\f00c";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 3px;
        top: 0px;
        color: #28a745;
        font-size: 16px;
        color: #eb3593;
        -webkit-background-clip: text;
        background-clip: text;
        font-size: 15px;
        margin-right: 10px;
        border: 2px solid;
        border-radius: 50%;
        padding: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 22px;
        height: 22px;
    }

.footer-links ul a {
    text-decoration: unset;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
}

.footer-links ul:nth-of-type(1) li:nth-of-type(4) {
  text-align:center;
}

.addresses {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    font-weight: 300;
    font-size: 13px;
    margin-left: -27px;
}

.team-members .member:nth-of-type(3) img {
    height: -webkit-fill-available;
}

.footer-links ul:nth-of-type(2) li:nth-of-type(2) {
    display: flex;
    justify-content: center;
}

span.home-footer-one {
    color: #eb3593 !important;
    background: transparent !important;
}

span.home-footer {
    background: transparent !important;
}

p.products-header {
    color: #fff !important;
}

span.products-footer-p1 {
    background: #1b4c9b !important;
    font-weight: 700 !important;
}

span.products-footer-p {
    background: #1b4c9b !important;
    font-weight: 500 !important;
}

span.exploring {
    font-weight: 500;
}

p.podcast-banner-h {
    color: #fff !important;
}

section.podcast-section .video-side {
    width: 100%;
}

span.amp {
    background: #98469a;
}

span.ai {
    display: inline-block;
}

p.contact-banner-p {
    color: #fff !important;
    text-align: center !important;
    line-height: 1 !important;
}

span.today {
    background: #98469a;
    display: inline-block;
    padding-left: 23px !important;
}

span.to-us {
    font-weight: 500 !important;
    display: inline-block;
    background: #98469a;
}

span.reach {
    margin-bottom: 15px !important;
}

.about-who-we-are h2 {
    color: #693a94 !important;
}

.header-header-products img {
    box-shadow: unset !important;
}

.infinite-podcast-podcast h2 {
    color: #693a94 !important;
}

.reach-out-contact h2 {
    color: #693a94 !important;
}
section.infinite-waves.home-infinite-waves .image-content img {
    height: auto;
}
section.infinite-waves.infinite-podcast.infinite-podcast-podcast .image-content img {
    height: auto;
}
section.infinite-waves.infinite-waves-about.products.header-header-products .text-content {
    color: #1d4c9b !important;
}
section.infinite-waves.infinite-waves-about.products.header-header-products .container .image-content a {
    pointer-events: none;
}
section.infinite-waves.infinite-waves-about.products.header-header-products .text-content a.cta-btn {
    display: none;
}

/*scroll*/


.work-with-us {
    background-color: #f0ebf4;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
}

    /* Fade */
    .work-with-us.fade-section {
        opacity: 0;
        transform: translateY(40px);
        transition: all 1s ease;
        margin-top: 50px;
    }

        .work-with-us.fade-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

    .work-with-us .work-with-us-container {
        max-width: 1050px;
        margin: auto;
    }

    .work-with-us .work-with-us-heading {
        font-size: 35px;
        color: #693a94;
        margin-bottom: 15px;
        font-weight: 500;
    }

    .work-with-us .work-with-us-subtext {
        color: #231f20;
        max-width: 650px;
        margin: 0 auto 70px auto;
        font-size: 16px;
    }

    /* Ribbon */
    .work-with-us .logo-ribbon {
        overflow: hidden;
        position: relative;
    }

    .work-with-us .logo-track {
        display: flex;
        gap: 100px;
        width: max-content;
        will-change: transform;
    }

    .work-with-us .logo-item {
        transition: all 0.4s ease;
        opacity: 0.4;
        filter: blur(2px);
    }

        .work-with-us .logo-item img {
            max-width: 180px;
            display: block;
        }

        /* States */
        .work-with-us .logo-item.mid {
            opacity: 0.75;
            filter: blur(0px);
        }

        .work-with-us .logo-item.center {
            opacity: 1;
            filter: blur(0px);
            transform: scale(1.08);
        }

/* Scroll */
@keyframes scrollRibbon {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .work-with-us {
        padding: 80px 20px;
    }

        .work-with-us .work-with-us-heading {
            font-size: 34px;
        }

        .work-with-us .logo-track {
            gap: 70px;
        }

        .work-with-us .logo-item img {
            max-width: 130px;
        }
}

@media (max-width: 768px) {
    .work-with-us {
        padding: 70px 15px;
    }

        .work-with-us .work-with-us-heading {
            font-size: 28px;
        }

        .work-with-us .work-with-us-subtext {
            font-size: 14px;
            margin-bottom: 50px;
        }

        .work-with-us .logo-track {
            gap: 50px;
            animation: scrollRibbon 28s linear infinite;
        }

        .work-with-us .logo-item img {
            max-width: 100px;
        }
}

@media (max-width: 480px) {
    .work-with-us {
        padding: 60px 15px;
    }

        .work-with-us .work-with-us-heading {
            font-size: 22px;
        }

        .work-with-us .work-with-us-subtext {
            font-size: 13px;
        }

        .work-with-us .logo-track {
            gap: 40px;
            animation: scrollRibbon 22s linear infinite;
        }

        .work-with-us .logo-item img {
            max-width: 80px;
        }

        .work-with-us .logo-item {
            filter: blur(1px);
        }
}




/*scroll*/

section.infinite-waves.about-who-we-are a.cta-btn {
    display: none;
}
.number-box .box:hover h2,
.number-box .box:hover p {
    color: #fff !important;
    opacity: 1;
    -webkit-text-fill-color: #fff;
}

    /* Hide all content */
    .product-slider .slide-content {
        display: none;
    }
/* Show content of active slide only */
.product-slider .slide.active .slide-content {
    display: block;
    position: absolute;
    bottom: -40%;
}
    .product-slider .slide.active .slide-content h3 {
        color: #00b4b4;
        font-size: 10px;
        /* color: #00b5b8; */
        font-size: 14px;
        letter-spacing: 1px;
        font-weight: 600 !important;
        margin-bottom: 10px;
        text-transform: uppercase;
        margin-left: 15%;
    }
    .product-slider .slide.active .slide-content p {
        font-size: 12px;
        font-weight: 400 !important;
        color: #231f20 !important;
    }

.work-with-us {
    background-color: #f0ebf4;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
}

    /* Fade */
    .work-with-us.fade-section {
        opacity: 0;
        transform: translateY(40px);
        transition: all 1s ease;
    }

        .work-with-us.fade-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

    .work-with-us .work-with-us-container {
        max-width: 1200px;
        margin: auto;
    }

    .work-with-us .work-with-us-heading {
        font-size: 35px;
        color: #693a94;
        margin-bottom: 15px;
        font-weight: 500;
    }

    .work-with-us .work-with-us-subtext {
        color: #231f20;
        max-width: 650px;
        margin: 0 auto 70px auto;
        font-size: 16px;
    }

    /* Ribbon */
    .work-with-us .logo-ribbon {
        overflow: hidden;
        position: relative;
    }

    .work-with-us .logo-track {
        display: flex;
        gap: 100px;
        width: max-content;
        animation: scrollRibbon 35s linear infinite;
        will-change: transform;
    }

    .work-with-us .logo-item {
        transition: all 0.4s ease;
        opacity: 0.4;
        filter: blur(2px);
    }

        .work-with-us .logo-item img {
            max-width: 180px;
            display: block;
        }

        /* States */
        .work-with-us .logo-item.mid {
            opacity: 0.75;
            filter: blur(0px);
        }

        .work-with-us .logo-item.center {
            opacity: 1;
            filter: blur(0px);
            transform: scale(1.08);
        }

/* Scroll */
@keyframes scrollRibbon {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}
.team-container {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

    .team-container h2 {
        font-size: 34px;
        color: #693a94;
        font-weight: 500;
        margin-bottom: 15px;
    }

    .team-container .team-subtext {
        max-width: 600px;
        margin: 0 auto 60px;
        color: #231f20;
        font-size: 16px;
    }

    .team-container .team-wrapper {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    /* FLIP CARD */
    .team-container .team-card {
        width: 250px;
        height: 250px;
        perspective: 1000px;
        position: relative;
    }

    .team-container .card-inner {
        width: 100%;
        height: 100%;
        position: relative;
        transition: transform 0.6s ease;
        transform-style: preserve-3d;
    }

    .team-container .team-card:hover .card-inner {
        transform: rotateY(180deg);
    }

    .team-container .card-front,
    .team-container .card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border-radius: 30px;
        overflow: hidden;
    }

        /* FRONT IMAGE */
        .team-container .card-front img {
            width: 100%;
            height: 100%;
            border-radius: 30px;
        }

    /* BACK IMAGE */
    .team-container .card-back {
        transform: rotateY(180deg);
    }

        .team-container .card-back img {
            width: 100%;
            height: 100%;
            border-radius: 30px;
        }

    .team-container .team-text {
        text-align: left;
    }

    /* INFO BAR */
    .team-container .team-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(105, 58, 148, .7);
        backdrop-filter: blur(4px);
        color: #ffffff;
        padding: 10px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row-reverse;
    }

    /* TEXT */
    .team-container .team-text h4 {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
        transition: 0.3s;
    }

    .team-container .team-text span {
        font-size: 13px;
        opacity: 0.85;
        transition: 0.3s;
    }

    /* LINKEDIN BUTTON (NOW LINK) */
    .team-container .linkedin-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: transparent;
        color: #fff;
        border: 2px solid #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 900;
        font-size: 18px;
        text-decoration: none;
        transition: 0.3s;
    }

        /* CLICK EFFECT */
        .team-container .linkedin-icon:active {
            background: transparent;
            color: #eeb023;
            border: 2px solid #eeb023;
        }

            .team-container .linkedin-icon:active + .team-text h4,
            .team-container .linkedin-icon:active + .team-text span {
                color: #eeb023;
            }

section.team-container .team-card:nth-of-type(3) .card-front img {
    object-fit: cover;
}

section.team-container .team-card:nth-of-type(3) .card-back img {
    object-fit: cover;
}
/* ===== LinkedIn Pulse Animation ===== */

.team-container .linkedin-icon {
    position: relative;
    overflow: visible;
}
section.header-tabs:nth-of-type(2)
{
    display:none !important;
}
/* animated ring */
.team-container .linkedin-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #ffffff;
    top: -2px;
    left: -2px;
    opacity: 0;
}

    /* animation only on hover */
    .team-container .linkedin-icon:hover::after {
        animation: pulseRing 1.4s infinite;
        opacity: 1;
    }

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.7);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.podcast-section .next-section .play-btn {
    opacity: 1;
    font-size: 25px;
}

    /* Default */
    .podcast-section .next-section .play-btn i {
        position: relative;
        color: #fff;
        z-index: 2;
    }

    .podcast-section .next-section .play-btn::after {
        content: "\f04b";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        color: #eb3593;
        font-size: 32px;
        z-index: 1;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Hover effect */
.next-section .next-thumb.slick-slide:hover i {
    color: #eb3593;
}
.next-section .next-thumb.slick-slide:active i {
    color: #eeb023;
}

.next-section .next-thumb.slick-slide:hover .play-btn::after {
    color: #fff;
}
.next-section .next-thumb.slick-slide:active .play-btn::after {
    color: #fff;
}
section.podcast-section .video-side .play-btn:hover {
    background: #eb3593;
    border: 2px solid #fff;
    transition: unset;
}
section.podcast-section .video-side .play-btn:active {
    background: #eeb023;
    border: 2px solid #fff;
    transition: unset;
}
.podcast-section .next-section .play-btn:active i {
    color: #eeb023;
}
.next-section .next-thumb.slick-slide:hover {
    border: 2px solid #fff;
}
.next-section .slick-list.draggable img {
    border: unset;
}
.next-section .next-thumb.slick-slide {
    border: 2px solid #eb3593;
}
.next-section .next-thumb.slick-slide:hover {
    border: 2px solid #fff;
}
    .next-section .next-thumb.slick-slide:active {
        border: 2px solid #eeb023;
    }

.episode-list-inner {
    display: flex;
    gap: 30px;
}

.episode-list .show-more:active i,
.episode-list .show-more:active p {
    color: #eeb023;
}





    /* RESPONSIVE */
    @media(max-width:991px) {
        .team-container .team-wrapper {
            gap: 20px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }

        .team-container .team-card {
            max-width: 100%;
            width: 100%;
            height: 410px;
        }
    }
    /* RESPONSIVE */
    @media(max-width:767px) {
    }

    @media(max-width:576px) {
        .team-container .team-wrapper {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    @media(max-width:400px) {
        .team-container .team-wrapper {
            grid-template-columns: repeat(1, 1fr);
        }

        .team-container .team-card {
            height: 260px;
        }
    }
    /* ================= RESPONSIVE ================= */

    @media (max-width: 992px) {
        .work-with-us {
            padding: 80px 20px;
        }

            .work-with-us .work-with-us-heading {
                font-size: 34px;
            }

            .work-with-us .logo-track {
                gap: 70px;
            }

            .work-with-us .logo-item img {
                max-width: 130px;
            }
    }

    @media (max-width: 768px) {
        .work-with-us {
            padding: 70px 15px;
        }

            .work-with-us .work-with-us-heading {
                font-size: 28px;
            }

            .work-with-us .work-with-us-subtext {
                font-size: 14px;
                margin-bottom: 50px;
            }

            .work-with-us .logo-track {
                gap: 50px;
                animation: scrollRibbon 28s linear infinite;
            }

            .work-with-us .logo-item img {
                max-width: 100px;
            }
    }

    @media (max-width: 480px) {
        .work-with-us {
            padding: 60px 15px;
        }

            .work-with-us .work-with-us-heading {
                font-size: 22px;
            }

            .work-with-us .work-with-us-subtext {
                font-size: 13px;
            }

            .work-with-us .logo-track {
                gap: 40px;
                animation: scrollRibbon 22s linear infinite;
            }

            .work-with-us .logo-item img {
                max-width: 80px;
            }

            .work-with-us .logo-item {
                filter: blur(1px);
            }
    }








    @media (max-width: 991.98px) {
        .testimonial-title {
            font-size: 34px;
        }

        .work-with-us-logos {
            gap: 40px;
        }

        .testimonial-text {
            font-size: 18px;
            max-width: 540px;
        }

        .quote-svg {
            left: 18px;
            width: 140px;
            height: 140px;
        }

        section.podcast-section .container {
            flex-direction: column;
        }

        .podcast-section .details-side {
            width: 100%;
        }

        .podcast-section .details-side {
            margin-top: 30px;
        }

        .episode-list .episode-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        section.key-features-video {
            padding: 40px 20px;
        }

        section.ask-section {
            padding: 40px 20px;
        }



        .podcast-section .next-arrow {
            left: 50%;
        }

        .nav-links {
            visibility: hidden;
            opacity: 0;
            flex-direction: column;
            background: rgba(255, 255, 255, 0.9);
            position: absolute;
            top: 100px;
            right: 0px;
            left: 0;
            border-radius: 15px;
            padding: 0;
            width: 0%;
            opacity: 0;
            transition: 0.4s ease;
            margin: auto;
            padding: 20px;
            width: 100%;
        }

            .nav-links.active {
                visibility: visible;
                padding: 25px;
                width: 100%;
                opacity: 1;
            }

        .nav-links {
            gap: 25px;
        }

        .hamburger {
            display: flex;
        }



        .hero h1 {
            font-size: 32px;
        }

        .video-section {
            padding: 0 15px 10%;
            height: max-content;
        }

        .step-4-kr {
            display: flex;
            gap: 0;
            width: 100%;
            justify-content: space-between;
            flex-direction: column;
        }

            .step-4-kr div#step4 {
                width: 100%;
            }

            .step-4-kr div#step5 {
                width: 100%;
            }

        .contact-section-kr div#step2 {
            width: 100%;
        }

        .footer {
            width: 95%;
        }
    }

    @media (max-width: 768px) {
        .contact-section-kr {
            padding: 40px 20px;
        }

        .rocket-img img {
            width: 33px !important;
            bottom: -14px;
            right: -17px;
        }

        .product-slider .slide.active {
            width: 250px;
        }

            .product-slider .slide.active .slide-content {
                bottom: -55%;
            }

        .product-slider .arrow.right {
            right: 30px;
        }

        .product-slider .slide.active .slide-content h3 {
            font-size: 12px;
        }

        .product-slider .slide.active .slide-content p {
            font-size: 10px;
        }

        .product-slider .arrow.left {
            left: 30px;
        }

        .sbi {
            padding: 40px 20px;
        }

        .key-features-video .features-container {
            flex-direction: column;
        }

        .product-slider .slide img {
            height: 180px;
        }

        .key-features-video .feature-text p {
            max-width: unset;
        }

        .key-features-video .video-box {
            max-width: 100%;
        }

        .just-ask-section {
            height: auto;
            padding: 40px 20px;
            justify-content: center;
            text-align: center;
        }

        .episode-list .guest-section {
            flex-direction: column;
            gap: 10px;
        }

        .episode-list .episode-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .episode-list .sort-dropdown {
            margin-top: 10px;
        }

        .episode-list .episode-grid {
            grid-template-columns: 1fr;
        }

        .episode-list h2 {
            font-size: 24px;
        }

        .just-ask-section .overlay-box {
            max-width: 100%;
            border-radius: 20px;
        }

            .just-ask-section .overlay-box h1 {
                font-size: 22px;
            }

        .infinite-waves {
            padding: 40px 20px;
            text-align: center;
        }

            .infinite-waves .container {
                flex-direction: column;
                align-items: center;
            }

            .infinite-waves .text-content {
                text-align: center;
            }

            .infinite-waves .image-content img {
                max-width: 100%;
                height: auto;
            }

        .content-box {
            display: flex;
            flex-direction: column;
        }

        .image-box {
            width: 100%;
        }

        .footer-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 25px;
        }

        .footer {
            padding: 40px;
            width: 95%;
        }

        .transform-content {
            padding: 40px 20px;
        }

        section.infinite-waves.infinite-waves-about .container {
            flex-direction: column;
        }

        .MEET-THE-TEAM .member {
            width: 100%;
            height: auto;
        }

        .podcast-section {
            padding: 30px 20px;
        }

            .podcast-section .details-side h2 {
                font-size: 22px;
            }

            .podcast-section .play-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .podcast-section .next-slider img {
                width: 120px;
            }

        section.hero.footer-hero p {
            letter-spacing: 10px;
            font-size: 57px;
        }

        section.hero p {
            font-size: 70px;
        }

        .MEET-THE-TEAM .member img {
            object-fit: cover;
            height: 800px !important;
        }

        .demo-frame {
            height: auto;
        }

        .demo-input-row {
            margin-top: 5%;
        }
    }

    @media (max-width: 577.98px) {
        section.podcast-section .video-side .video-frame img.video-thumb {
            height: 230px;
        }

        .number-box .box {
            width: 100%;
            height: auto;
        }

        .number-box {
            padding: 60px 20px;
        }
        .contact-section-kr label {
          
            font-size: 25px;
          
        }
        .next-section .next-thumb.slick-slide {
            border: unset;
        }
            .next-section .next-thumb.slick-slide:active {
                border: unset;
            }

            .next-section .next-thumb.slick-slide:hover {
                border: unset;
            }
        .next-section .slick-list.draggable img {
            border: 2px solid #eb3593;
        }
        .testimonial-card .quotation {
            left: 0%;
            height: 90px;
        }







        .podcast-section .video-frame {
            height: 290px;
        }

        .demo-placeholder {
            font-size: 28px;
            margin-top: 5%;
        }

        .podcast-section .play-btn {
            transform: translate(-202%, -50%);
        }

        .MEET-THE-TEAM .member img {
            object-fit: cover;
            height: auto !important;
        }

        section.video-section.top section.hero.footer-hero span {
            line-height: 1;
        }

        section.hero.footer-hero p {
            letter-spacing: 5px;
            font-size: 50px;
        }

        .play-btn.play-two {
            transform: translate(-50%, -50%);
        }

        .testimonial-card {
            padding: 22px;
            border-radius: 28px;
            height: auto;
        }

        .testimonial-title {
            font-size: 26px;
        }

        .testimonial-text {
            font-size: 16px;
        }

        .avatar {
            width: 72px;
            height: 72px;
            border-width: 5px;
        }

        .product-slider .slide {
            flex: 0 0 33.33%;
        }

        .hero {
            padding-top: 50%;
            display: block;
        }

        section.hero p {
            font-size: 45px;
            word-wrap: break-word;
        }

        .navbar {
            padding: 5px 25px;
        }

        .try-it-out__container {
            padding: 40px 20px;
        }

        .demo-card {
            padding: 0;
            min-height: unset;
        }

        .demo-logo {
            left: -16px;
            width: 40px;
            height: 40px;
        }

        .product-slider .slide {
            flex: none !important;
        }

        .info-buttons {
            flex-direction: column;
        }
    }

    @media (max-width: 450px) {
        section.podcast-section .video-side .video-frame img.video-thumb {
            height: 190px;
        }

        .podcast-section .video-frame {
            height: 250px;
        }


        section.hero.footer-hero p {
            letter-spacing: 5px;
            font-size: 34px;
        }
    }


    @media (max-width: 400px) {
        section.hero p {
            font-size: 34px;
            word-wrap: break-word;
        }
    }

    .header-tabs {
    padding: 70px 40px 0px 40px;
    max-width: 1000px;
    margin: 0px auto;
    font-family: "Poppins", sans-serif;
}

    /* HEADING */
    .header-tabs .main-heading {
        font-size: 28px;
        text-transform: uppercase;
        color: #693a94;
        letter-spacing: 1px;
        font-weight: 500;
    }

    /* PARAGRAPH */
    .header-tabs .main-para {
        margin-top: 10px;
        color: #231f20;
        font-size: 14px;
        line-height: 1.6;
        width: 75%;
    }

    /* TABS WRAPPER */
    .header-tabs .tabs {
        margin-top: 25px;
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
    }

    /* TAB BUTTON */
    .header-tabs .tab-btn {
        background-color: #693a94;
        color: #fff;
        border: none;
        border-radius: 12px;
        padding: 12px 18px;
        font-size: 13px;
        cursor: pointer;
        width: 170px;
        transition: 0.4s ease;
        height: 65px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

        /* HOVER */
        .header-tabs .tab-btn:hover {
            background: #98469a;
            border: 3px solid #693a94;
        }

        /* ACTIVE */
        .header-tabs .tab-btn.active {
            background: #98469a;
            border: 3px solid #693a94;
        }

    .header-tabs .tab-content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.4s ease;
    }

        .header-tabs .tab-content.active {
            opacity: 1;
            transform: translateY(0);
        }

    /* INNER BOX */
    .header-tabs .tab-box {
        display: flex;
        align-items: center;
        gap: 25px;
        padding: 30px;
        border: 3px solid #98469a;
        border-radius: 15px;
        margin-top: 40px;
    }

    /* IMAGE */
    .header-tabs .img-box {
        width: 50%;
    }

        .header-tabs .img-box img {
            width: 100%;
            border-radius: 20px;
        }

    /* TEXT */
    .header-tabs .text-box p {
        font-size: 14px;
        line-height: 1.6;
        color: #231f20;
        margin-bottom: 15px;
    }

    /* INNER BUTTON WRAPPER */
        .header-tabs .inner-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

    /* INNER BUTTONS */
    .header-tabs .outline-btn {
      
        color: #a02487;
        border-radius: 12px;
        padding: 10px 16px;
        font-size: 12px;
        cursor: pointer;
        transition: 0.3s;
        text-decoration: unset;
        font-weight: 600;
        text-align: center;
        height: 40px;
        font-weight: 600;
        border-radius: 17px;
        font-size: 12px;
        text-decoration: none;
        border: 1.5px solid #693a94;
        color: #98469a;
        border-radius: 15px;
        padding: 5px 16px;
        font-size: 15px;
        transition: 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        line-height: 1.3;
        font-weight: 600;
        width: 180px;
        height: 55px;
    }

        .header-tabs .outline-btn:hover {
            background: #98469a;
            border: 2px solid #693a94;
            color: white;
        }

    .header-tabs .tab-btn:active {
        transform: scale(0.95);
    }



/* RESPONSIVE */
@media (max-width: 768px) {

    .header-tabs .main-para {
        width: 100%;
    }

    .header-tabs .tab-box {
        flex-direction: column;
    }
    .header-tabs .img-box {
        width: 100%;
    }
}




.episode-list-inner {
    flex-wrap: wrap;
    display: flex;
    gap: 16px;
}

.sort-dropdown {
    position: relative;
    display: inline-block;
}

    .sort-dropdown select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-color: #fff;
        background-image: none;
        color: #404041;
        border: 3px solid #a02487;
        border-radius: 4px;
        padding: 8px 40px 8px 12px;
        font-weight: 700;
        font-size: 14px;
        cursor: pointer;
        outline: none;
    }

        /* remove arrow from IE/Edge */

        .sort-dropdown select::-ms-expand {
            display: none;
        }

    /* custom arrow */

    .sort-dropdown::after {
        content: "";
        position: absolute;
        right: 14px;
        top: 50%;
        width: 8px;
        height: 8px;
        border-right: 2px solid #404041;
        border-bottom: 2px solid #404041;
        transform: translateY(-60%) rotate(45deg);
        pointer-events: none;
    }
section.episode-list .episode-header .episode-list-inner .sort-dropdown select {
   background-image: unset;
}
.custom-check input {
    display: none;
}

.custom-check span {
    width: 30px;
    height: 30px;
    display: inline-block;
    background: #f0e9f3;
    border: 1px solid #693a94;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.custom-check input:checked + span::after {
    content: "✔";
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 20px;
    color: #eb3593;
    transform: translate(-50%, -50%);
    font-weight: bolder;
}
section.infinite-waves.reach-out-contact .text-content div {
    display: none;
}

/* SELECT WRAPPER */

.custom-select.new-custom-select {
    position: relative;
    border: 1px solid #693a94;
    border-radius: 8px;
    background: #f0e9f3;
    overflow: hidden;
}


/* SELECT BOX */

.new-custom-select .select-box {
    color: #693a94;
    font-style: italic;
    padding: 10px 20px 10px 20px;
    cursor: pointer;
    position: relative;
}


    /* ARROW (SVG FROM CSS) */

    .new-custom-select .select-box:after {
        content: "";
        position: absolute;
        right: 12px;
        top: 50%;
        width: 18px;
        height: 18px;
        transform: translateY(-50%);
        transition: 0.3s ease;
        background-image: url("data:image/svg+xml,<svg fill='%23693a94' height='24' viewBox='0 0 512 512' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M98 190l158 158 158-158'/></svg>");
        background-size: contain;
        background-repeat: no-repeat;
        width: 30px;
        height: 30px;
    }


/* ROTATE WHEN OPEN */

.new-custom-select.active .select-box:after {
    transform: translateY(-50%) rotate(180deg);
}


/* DROPDOWN */

.new-custom-select .dropdown-options {
  

    width: 100%;
  
    display: none;
    overflow: hidden;
}


    /* OPTION */

    .new-custom-select .dropdown-options div {
        padding: 10px 20px 10px 20px;
        color: #693a94;
        font-style: italic;
        cursor: pointer;
        transition: .2s;
    }


        /* HOVER */

        .new-custom-select .dropdown-options div:hover {
            background: #a02487;
            color: #ffffff;
        }

        .new-custom-select .dropdown-options div:active {
            background: #eeb023;
            color: #ffffff;
        }


        /* CLICK / ACTIVE */

        .new-custom-select .dropdown-options div.active {
            background: #eeb023;
            color: #ffffff;
        }


/* OPEN */

.new-custom-select.active .dropdown-options {
    display: block;
}
.custom-select.new-custom-select #reason,
.custom-select.new-custom-select #method {
    background-image:unset;
}
section.infinite-waves.reach-out-contact .image-content a {
    pointer-events: none;
}
.episode-list .episode-header .episode-list-inner .custom-select {
    width: 180px;
    height: max-content;
    border: 2px solid #eb3593;
    background: #fff;
    color: #404041;
}
    .episode-list .episode-header .episode-list-inner .custom-select .select-box {
        font-weight: 500;
        color: #404041;
        font-style: unset;
    }
.episode-list-inner .new-custom-select .select-box:after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    transition: 0.3s ease;
    background-image: url("data:image/svg+xml,<svg fill='%404041' height='24' viewBox='0 0 512 512' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M98 190l158 158 158-158'/></svg>");
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
}
.episode-list .episode-header .episode-list-inner .custom-select .dropdown-options div {
    color: #404041;
    font-weight: 500;
    font-style: unset;
}
.episode-list .episode-header .episode-list-inner .custom-select:hover {
    border: 2px solid #a02487;
}
.episode-list .episode-header .episode-list-inner .custom-select .dropdown-options div:hover {
    background: #a02487;
    color:#fff;
}
.episode-list .episode-header .episode-list-inner .custom-select .dropdown-options div:active {
    background: #eeb023;
    color: #ffffff !IMPORTANT;
}
.episode-list-inner .new-custom-select .dropdown-options div.active {
    background: #eeb023;
    color: #ffffff !IMPORTANT;
}
.episode-list-inner .new-custom-select.active .select-box:after {
    transform: translateY(-50%) rotate(180deg);
}



@media (max-width: 767.98px) {
    .custom-select.new-custom-select {
      
        width: 100%;
       
    }
}

