/*!--------
CSS INDEX
===================
01. CUSTOM PROPERTIES
02. GLOBAL
03. Components
04. CSS Animation
05. Header
06. Hero
07. Social Links
08. Reels
09. Services
10. Intro
11. Live
12. Videos
13. Contact
14. Article
15. Footer

--- INNER PAGES

16. About Page
17. Service Page
18. Service Details Page
19. Videos Page
20. Video Details Page
21. Video Shop Page
22. Video Shop Details Page
23. Login Page
24. Checkout Page
25. Blogs Page
26. Pricing Page
27. Contact Page
28. Blog Details Page

*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --ttRed: #7f005f;
    --ttLightRed: #F2EEEA;
    --ttGray: #B5B5B5;
    --ttGray2: #808080;
    --black: #000;
    --white: #fff;
    --tt-pink: #0041a9;
    --tt-gold: #7f005f;
    --tt-gradient-1: linear-gradient(90deg, var(--tt-pink) 0%, var(--tt-gold) 100%);
    --font-inter: "Montserrat", sans-serif;
    --plyr-color-main: var(--ttRed);
}

html {
    overflow-x: hidden;
}

body {
    background-color: #22182e;
    font-family: var(--font-inter);
    margin: auto;
}

ul {
    list-style: none inside;
    padding: 0;
    margin: 0;
}

a,
button,
img,
svg path {
    transition: 0.4s ease;
}

a {
    text-decoration: none;
    vertical-align: top;
}

button {
    background-color: transparent;
    border: none;
}

img {
    max-width: 100%;
}

i {
    line-height: 1;
}

p {
    line-height: 1.5;
}

[data-sal] {
    transition-duration: 1s;
    transition-delay: 0.2s;
}

@media screen and (max-width: 479px) {
    .col-xxs-12 {
        width: 100%;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1434px;
    }
}

@media screen and (max-width: 575px) {
    .row-cols-xs-1>* {
        width: 100%;
    }
}

@media screen and (max-width: 479px) {
    .row-cols-xxs-1>* {
        width: 100%;
    }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

input[type=radio]:checked+span::after {
    opacity: 1;
}

input {
    outline: none;
    border: none;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.preloader .loader {
    width: 150px;
    aspect-ratio: 1.154;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    display: grid;
    background: conic-gradient(from 0deg at 50% 60%, #0219A6 120deg, rgba(0, 0, 0, 0) 0), conic-gradient(from 120deg at 50% 60%, #0219A6 120deg, rgba(0, 0, 0, 0) 0), conic-gradient(from 240deg at 50% 60%, #0219A6 120deg, rgba(0, 0, 0, 0) 0), conic-gradient(from 0deg at 50% 60%, #E5002A 120deg, rgba(0, 0, 0, 0) 0), conic-gradient(from 120deg at 50% 60%, #E5002A 120deg, rgba(0, 0, 0, 0) 0), conic-gradient(from 240deg at 50% 60%, #E5002A 120deg, rgba(0, 0, 0, 0) 0), #0219A6;
    background-size: 200% 200%;
    background-repeat: no-repeat;
    animation: l8 1.5s infinite;
}

@keyframes l8 {
    0% {
        background-position: left, top, right;
    }

    30%,
    50% {
        background-position: left, top, right, center, center, center;
    }

    80%,
    100% {
        background-position: center;
    }
}

.tt-container {
    display: flex;
}

.tt-container__left {
    width: 300px;
    height: 100vh;
    position: sticky;
    top: 0;
    flex-shrink: 0;
}

@media screen and (max-width: 1199px) {
    .tt-container__left {
        width: 270px;
    }
}

.tt-container__right {
    width: calc(100% - 300px);
    padding: 30px;
    flex-grow: 1;
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .tt-container__right {
        padding: 20px;
    }
}

.tt-section-heading {
    color: var(--ttRed);
    margin-bottom: 22px;
}

.tt-section-heading__btn {
    background: rgba(255, 0, 0, 0.1);
    border-radius: 99px;
    padding: 0 10px;
    height: 30px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--ttRed);
    flex-shrink: 0;
}

.tt-section-heading__btn:hover {
    background-color: var(--ttRed);
    color: var(--white);
}

.tt-section-title {
    color: var(--black);
    font-weight: 700;
    font-size: 15px;
}

.sa-single-accordion-item {
    transition: 0.4s ease;
}

.sa-single-accordion-item.open .sa-single-accordion-item__header i {
    transform: rotate(90deg);
}

.sa-single-accordion-item.open .sa-single-accordion-item__body {
    grid-template-rows: 1fr;
    padding-top: 9px;
}

.sa-single-accordion-item__header i {
    transition: transform 0.4s ease;
    display: inline-block;
    color: #000;
}

.sa-single-accordion-item__title {
    color: #000;
}

.sa-single-accordion-item__body {
    transition: all 0.4s ease;
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
}

.sa-single-accordion-item__body>* {
    overflow: hidden;
}

.tt-slider-nav {
    background-color: var(--white);
    border-radius: 999px;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 44%;
    transform: translateY(-50%);
    right: 0;
    color: var(--ttRed);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.tt-slider-nav:hover {
    background-color: rgb(255, 0, 0);
    color: var(--white);
}

.tt-inner-page-banner {
    border-radius: 20px;
    position: relative;
    z-index: 1;
    background: no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: clamp(60px, 10.73vw, 206px) 15px;
    text-align: center;
    overflow: hidden;
}

.tt-inner-page-banner::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.tt-inner-page-title {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 0;
}

@media screen and (max-width: 479px) {
    .tt-inner-page-title {
        font-size: 30px;
    }
}

.tt-inner-page-inner-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 50px;
}

@media screen and (max-width: 575px) {
    .tt-inner-page-inner-title {
        margin-top: 30px;
    }
}

.jo-container {
    margin: 0 13.281vw;
}

@media screen and (max-width: 1599px) {
    .jo-container {
        margin: 0 10.281vw;
    }
}

@media screen and (max-width: 1399px) {
    .jo-container {
        margin: 0 7.281vw;
    }
}

@media screen and (max-width: 1199px) {
    .jo-container {
        margin: 0 3.281vw;
    }
}

@media screen and (max-width: 991px) {
    .jo-container {
        margin: 0 15px;
    }
}

.jo-sidebar {
    position: fixed;
    z-index: 10;
    right: 0;
    height: 100%;
    overflow: auto;
    /* background: #fff; */
    background: linear-gradient(90deg, var(--tt-pink) 0%, var(--tt-gold) 100%);
    z-index: 999;
    transform: translateX(100%);
    transition: 0.4s ease;
    padding: 40px 15px;
    padding-top: 15px;
    max-width: 100%;
    border-left: 1px solid var(--ttRed);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width: 479px) {
    .jo-sidebar {
        padding: 30px 15px;
        padding-top: 15px;
    }
}

.jo-sidebar.active {
    transform: translateX(0);
}

.jo-sidebar__heading {
    gap: 30px;
    padding-bottom: 15px;
}

.jo-sidebar .logo {
    max-width: 65%;
}

.jo-sidebar-close-btn {
    transform: rotate(45deg);
}

.jo-sidebar .jo-header-nav-in-mobile nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.jo-sidebar .jo-header-nav-in-mobile nav a {
    color: var(--white);
    padding: 12px 15px;
}

.jo-sidebar .jo-header-nav-in-mobile nav a:hover {
    color: var(--tt-pink);
}

.jo-sidebar .jo-header-nav-in-mobile nav .has-sub-menu.active>a {
    color: var(--tt-pink);
}

.jo-sidebar .jo-header-nav-in-mobile nav .has-sub-menu .jo-header-submenu li {
    border: none;
    padding-bottom: 6px;
}

.jo-sidebar .jo-header-nav-in-mobile nav .has-sub-menu .jo-header-submenu a {
    padding: 0 15px;
}

@media screen and (max-width: 991px) {
    .jo-sidebar .jo-header-nav-in-mobile nav>* {
        border-top: 1px solid #fefefe4f;
    }
}

.jo-sidebar-socials.tt-footer-top__socials {
    margin-top: 15px;
    justify-content: flex-start;
    gap: 10px;
}

.jo-sidebar-socials.tt-footer-top__socials a {
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--ttRed);
    width: 35px;
    font-size: 18px;
}

.jo-sidebar .jo-btn {
    width: 100%;
    margin-top: 15px;
}

.jo-sidebar .jo-btn i {
    font-size: 10px;
    padding-right: 5px;
}

.jo-header-nav-in-mobile {
    margin: 0 -15px;
}

@media screen and (max-width: 479px) {
    .jo-header-nav-in-mobile {
        margin: 0 -15px;
    }
}

.jo-section-title {
    font-weight: 600;
}

.theme-gradient {
    background: linear-gradient(90deg, #fd0bdc -20%, #0e62fb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.001);
}

/* Typing Animation for cd-headline */
.cd-headline {
    display: inline-block;
}

.cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
    overflow: hidden;
    vertical-align: top;
    height: 1.2em;
}

.cd-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
    opacity: 0;
    text-shadow: none;
}

.cd-words-wrapper b.is-visible {
    position: relative;
    opacity: 1;
    animation: slide-in 0.6s;
}

.cd-words-wrapper b.is-hidden {
    animation: slide-out 0.6s;
}

/* Typing effect */
.cd-headline.type .cd-words-wrapper {
    vertical-align: top;
    overflow: hidden;
}

/* .cd-headline.type .cd-words-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    height: 90%;
    width: 2px;
    background-color: currentColor;
} */

.cd-headline.type .cd-words-wrapper.waiting::after {
    animation: cd-pulse 1s infinite;
}

.cd-headline.type .cd-words-wrapper.selected {
    background-color: transparent;
}

.cd-headline.type .cd-words-wrapper.selected::after {
    visibility: visible;
}

.cd-headline.type .cd-words-wrapper.selected b {
    color: inherit;
}

.cd-headline.type b {
    visibility: hidden;
}

.cd-headline.type b.is-visible {
    visibility: visible;
}

.cd-headline.type i {
    position: absolute;
    visibility: visible;
    opacity: 0;
    font-style: normal;
}

.cd-headline.type i.in {
    animation: type-in 0.4s forwards;
}

.cd-headline.type i.out {
    animation: type-out 0.3s forwards;
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-out {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes cd-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes type-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes type-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* ========================================
   SCROLL ANIMATIONS
========================================*/

/* Keyframe Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Base scroll animation classes */
.scroll-fade-in {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.scroll-fade-in.is-visible {
    opacity: 1;
}

/* Scroll animation variants */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.scroll-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.scroll-fade-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.scroll-fade-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale-in {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: opacity, transform;
}

.scroll-scale-in.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Apply fade-in animation to all titles */
.jo-section-title,
.jo-page-title,
.jo-inner-page-title,
.tt-section-title,
h1,
h2,
h3,
h4,
h5,
h6 {
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

/* Stagger animation for multiple titles */
h1 {
    animation-delay: 0.2s;
}

h2 {
    animation-delay: 0.3s;
}

h3 {
    animation-delay: 0.4s;
}

h4 {
    animation-delay: 0.5s;
}

h5 {
    animation-delay: 0.6s;
}

h6 {
    animation-delay: 0.7s;
}

.jo-section-title {
    animation-delay: 0.2s;
}

.jo-page-title {
    animation-delay: 0.3s;
}

/* Animation delay classes */
.animate-delay-1 {
    animation-delay: 0.2s !important;
}

.animate-delay-2 {
    animation-delay: 0.4s !important;
}

.animate-delay-3 {
    animation-delay: 0.6s !important;
}

.animate-delay-4 {
    animation-delay: 0.8s !important;
}

.animate-delay-5 {
    animation-delay: 1s !important;
}

/* Stagger children animations */
.stagger-children>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.stagger-children.is-visible>*:nth-child(1) {
    transition-delay: 0.15s;
}

.stagger-children.is-visible>*:nth-child(2) {
    transition-delay: 0.25s;
}

.stagger-children.is-visible>*:nth-child(3) {
    transition-delay: 0.35s;
}

.stagger-children.is-visible>*:nth-child(4) {
    transition-delay: 0.45s;
}

.stagger-children.is-visible>*:nth-child(5) {
    transition-delay: 0.55s;
}

.stagger-children.is-visible>*:nth-child(6) {
    transition-delay: 0.65s;
}

.stagger-children.is-visible>*:nth-child(7) {
    transition-delay: 0.75s;
}

.stagger-children.is-visible>*:nth-child(8) {
    transition-delay: 0.85s;
}

.stagger-children.is-visible>* {
    opacity: 1;
    transform: translateY(0);
}

.jo-btn {
    background: linear-gradient(90deg, #fd0bdc -20%, #0e62fb 100%);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .75rem 1rem;
    height: 42px;
    gap: 7px;
    border-radius: .5rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    border: 1px solid #225bf8a3;
    font-weight: 700;
    transition-property: all;
    box-shadow: inset 0 -2px 4px #ffffff80;
}

.jo-btn:hover {
    color: var(--white);
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.jo-btn {
    transition: transform 0.3s ease;
}

.jo-breadcrumb {
    padding: 125px 0 50px;
    text-align: center;
    position: relative;
    z-index: 1;
    color: var(--white);
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .jo-breadcrumb {
        padding: 100px 0 50px;
    }
}

@media screen and (max-width: 479px) {
    .jo-breadcrumb {
        padding: 100px 0 50px;
    }
}

.jo-breadcrumb-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.jo-breadcrumb-nav a {
    color: var(--white);
}

.jo-breadcrumb-nav a:hover {
    color: var(--black);
}

.jo-page-title {
    color: var(--white);
    margin-bottom: 3px;
}

.jo-radio label {
    position: relative;
    display: inline-block;
}

.jo-radio label>span {
    padding-left: 30px;
    display: inline-block;
}

.jo-radio label>span::before,
.jo-radio label>span::after {
    content: "";
    position: absolute;
    width: 20px;
    aspect-ratio: 1/1;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.jo-radio label>span::after {
    width: 8px;
    aspect-ratio: 1/1;
    background-color: var(--ttRed);
    border: none;
    left: 6px;
    opacity: 0;
}

.jo-radio input[type=radio]:checked+span::after {
    opacity: 1;
}

.jo-select-wrapper {
    height: 100%;
}

.jo-tab {
    transition: 0.2s ease;
    pointer-events: none;
    display: none;
}

.jo-tab.active {
    display: block;
    pointer-events: all;
}

.tt-channel-content-pagination>button {
    color: var(--ttRed);
    height: 20px;
}

.tt-channel-content-pagination .pages {
    display: flex;
    gap: 11px;
    overflow: auto;
}

.tt-channel-content-pagination .pages a {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    background-color: rgba(158, 158, 158, 0.102);
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
    border-radius: 50%;
    flex-shrink: 0;
}

@media screen and (max-width: 479px) {
    .tt-channel-content-pagination .pages a {
        width: 32px;
    }
}

.tt-channel-content-pagination .pages a:hover,
.tt-channel-content-pagination .pages a.active {
    background-color: var(--ttRed);
    color: var(--white);
}

.jo-inner-faq {
    padding: 4.583vw 0 5.208vw;
}

@media screen and (max-width: 991px) {
    .jo-inner-faq {
        padding: 38px 0 50px;
    }
}

.tt-accordion {
    margin: 2.448vw 12.5vw 0;
}

@media screen and (max-width: 1199px) {
    .tt-accordion {
        margin: 25px 12.5vw 0;
    }
}

@media screen and (max-width: 991px) {
    .tt-accordion {
        margin: 25px 15px 0;
    }
}

@media screen and (max-width: 479px) {
    .tt-accordion {
        margin: 25px 0 0;
    }
}

.tt-accordion .sa-single-accordion-item {
    padding: 20px 20px;
    border-radius: 10px;
    background-color: #f4f4f4;
}

.tt-accordion .sa-single-accordion-item:not(:last-child) {
    margin-bottom: 20px;
}

.tt-accordion .sa-single-accordion-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tt-accordion .sa-single-accordion-item__header .left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.tt-accordion .sa-single-accordion-item__header .left>* {
    margin-bottom: 0;
}

.tt-accordion .sa-single-accordion-item__header .left h5 {
    font-size: 20px;
}

@media screen and (max-width: 991px) {
    .tt-accordion .sa-single-accordion-item__header .left h5 {
        font-size: 18px;
    }
}

.tt-accordion .sa-single-accordion-item__header .left .order-num {
    color: var(--ttRed);
}

.tt-accordion .sa-single-accordion-item__title {
    margin-bottom: 0;
    transition: 0.4s ease;
}

.tt-accordion .sa-single-accordion-item__body {
    padding-left: 40px;
}

.tt-accordion .sa-single-accordion-item__body p {
    margin-bottom: 0;
    color: var(--white);
}

.tt-accordion .sa-single-accordion-item.open {
    background-color: var(--ttRed);
    color: var(--white);
}

.tt-accordion .sa-single-accordion-item.open .sa-single-accordion-item__header .order-num {
    color: var(--white);
}

.tt-accordion .sa-single-accordion-item.open .sa-single-accordion-item__title {
    color: var(--white);
}

.tt-accordion .sa-single-accordion-item.open .sa-single-accordion-item__header i {
    color: var(--white);
}

.tt-accordion .sa-single-accordion-item.open .sa-single-accordion-item__body {
    padding-top: 10px;
}

.jo-circle-box>* {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 50%;
    transform-origin: left;
}

.jo-circle-box .circle-1 {
    left: 10%;
    top: 30%;
    animation: services-triangle 6s linear infinite alternate;
}

.jo-circle-box .circle-2 {
    left: 30%;
    top: 65%;
    animation: services-triangle 8s linear infinite alternate;
}

.jo-circle-box .circle-3 {
    left: 70%;
    top: 70%;
    animation: services-triangle 10s linear infinite alternate;
}

.jo-circle-box .circle-4 {
    left: 90%;
    top: 32%;
    animation: services-triangle 9s linear infinite alternate;
}

@keyframes services-triangle {
    0% {
        -webkit-transform: rotate(0deg) translateX(-50px);
        -moz-transform: rotate(0deg) translateX(-50px);
        -ms-transform: rotate(0deg) translateX(-50px);
        transform: rotate(0deg) translateX(-50px);
    }

    100% {
        -webkit-transform: rotate(360deg) translateY(100px);
        -moz-transform: rotate(360deg) translateY(100px);
        -ms-transform: rotate(360deg) translateY(100px);
        transform: rotate(360deg) translateY(100px);
    }
}

.tt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 30px;
}

@media screen and (max-width: 1199px) {
    .tt-header {
        gap: 20px;
    }
}

@media screen and (max-width: 575px) {
    .tt-header {
        margin-bottom: 20px;
    }
}

.tt-header button {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tt-header button i {
    font-size: 16px;
}

.tt-header button:hover {
    color: var(--ttRed);
}

@media screen and (max-width: 767px) {
    .jo-services-wrapper {
        padding: 15px !important;
    }

    .talent-card {
        margin-bottom: 15px;
        height: 250px !important;
    }

    .talent-card-cta h6 {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }

    .talent-name {
        font-size: 16px !important;
        margin-bottom: 5px !important;
    }

    .talent-tags {
        gap: 3px !important;
    }

    .jo-talents {
        padding: 30px 0 !important;
    }

    .talent-card-content {
        padding: 10px !important;
    }

    .talent-tag {
        padding: 1px 4px !important;
        ;
        font-size: 8px !important;
    }

    .tt-header__search-wrapper {
        position: fixed !important;
        width: auto !important;
        left: 20px;
        right: 20px;
        z-index: 22;
    }
}

.tt-header__search {
    background-color: var(--white);
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 55px;
}

@media screen and (max-width: 767px) {
    .tt-header__search {
        position: fixed;
        z-index: 99;
        width: auto;
        top: 60px;
        left: 10px;
        right: 10px;
        height: 50px;
        box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
        transform: translateY(-10%);
        opacity: 0;
        pointer-events: none;
        transition: 0.2s ease;
    }

    .tt-header__search.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
}

.tt-header__search input {
    background: transparent;
    border: none;
    width: 100%;
    height: 100%;
}

.tt-header__search button {
    font-size: 18px;
    color: var(--ttRed);
}

.tt-header__search button:hover {
    color: var(--black);
}

.tt-header-search-suggestion {
    background-color: var(--white);
    position: absolute;
    z-index: 22;
    box-shadow: 0px 4px 64px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 12px 20px;
    width: 100%;
    top: calc(100% + 10px);
    display: none;
}

.tt-header-search-suggestion.active {
    display: block;
}

@media screen and (max-width: 767px) {
    .tt-header-search-suggestion {
        top: 90px;
    }
}

.tt-header-search-suggestion a {
    display: block;
    color: var(--black);
    padding: 6px 0;
}

.tt-header-search-suggestion a:hover {
    color: var(--ttRed);
}

.tt-header__right {
    flex-shrink: 0;
    display: flex;
    gap: 20px;
}

@media screen and (max-width: 1199px) {
    .tt-header__right {
        gap: 15px;
    }
}

.tt-header__right button {
    border: 1px solid rgba(181, 181, 181, 0.25);
    height: 40px;
    padding: 0 15px;
    border-radius: 99px;
}

@media screen and (max-width: 1199px) {
    .tt-header__right button {
        padding: 0 11px;
    }
}

.tt-mobile-nav {
    position: fixed;
    bottom: 0;
    z-index: 99;
    left: 0;
    right: 0;
    background-color: var(--white);
    display: none;
    padding: 21px 20px 15px;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    box-shadow: 0px 4px 70px rgba(0, 0, 0, 0.1);
    border-radius: 20px 20px 0px 0px;
}

@media screen and (max-width: 767px) {
    .tt-mobile-nav {
        display: flex;
    }
}

.tt-mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: var(--black);
    font-size: 14px;
}

.tt-mobile-nav a:hover,
.tt-mobile-nav a.active {
    color: var(--ttRed);
}

.tt-mobile-nav a i {
    font-size: 16px;
}


.jo-header {
    position: fixed;
    top: 10px;
    z-index: 99;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    background: linear-gradient(#140f1ef2, #1e142df2) padding-box, linear-gradient(98.4deg, #ed09c5 0%, rgba(195, 153, 0, 0) 30.57%, rgba(195, 108, 18, 0) 66.14%, #0d58eb 100%) border-box;
    border: 1px solid transparent;
    border-radius: 1rem;

}

.jo-header .logo {
    max-width: 175px;
}

@media screen and (max-width: 1199px) {
    .jo-header {
        padding: 0 20px;
    }
}

@media screen and (max-width: 991px) {
    .jo-header {
        padding: 10px 15px;
    }
}


.jo-header-right {
    display: flex;
    align-items: center;
    gap: 4.167vw;
    flex-shrink: 0;
}

@media screen and (max-width: 1399px) {
    .jo-header-right {
        gap: 60px;
    }
}

@media screen and (max-width: 1199px) {
    .jo-header-right {
        gap: 40px;
    }
}

@media screen and (max-width: 479px) {
    .jo-header-right .jo-btn {
        font-size: 14px;
        padding: 0 10px;
        height: 38px;
    }
}

.jo-header-right .jo-btn.jo-header-sidebar-open-btn {
    padding-top: 3px;
}

@media screen and (max-width: 479px) {
    .jo-header-right .jo-btn.jo-header-sidebar-open-btn {
        padding: 5px 10px 0 !important;
    }
}

.jo-header-right .jo-btn.jo-header-sidebar-open-btn i {
    font-size: 18px;
    padding-right: 0;
}

@media screen and (max-width: 479px) {
    .jo-header-right .jo-btn.jo-header-sidebar-open-btn i {
        font-size: 16px;
    }
}

.jo-header-right .jo-btn i {
    font-size: 10px;
    padding-top: 1px;
    padding-right: 5px;
}

.jo-header-nav nav {
    font-weight: 500;
    display: flex;
    gap: 2.604vw;
}

@media screen and (max-width: 1399px) {
    .jo-header-nav nav {
        gap: 30px;
    }
}

@media screen and (max-width: 1199px) {
    .jo-header-nav nav {
        gap: 20px;
    }
}

@media screen and (max-width: 991px) {
    .jo-header-nav nav {
        display: none;
    }
}

.jo-header-nav nav a {
    color: var(--white);
    font-size: 17px;
    height: 69px;
    display: grid;
    align-items: center;
    font-weight: 600;
}

.jo-header-nav nav a:not([href]):hover,
.jo-header-nav nav a:hover,
.jo-header-nav nav a.active {
    color: #e305ab;
}

.jo-header-submenu {
    position: absolute;
    min-width: 200px;
    background-color: var(--white);
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.03);
    top: 100%;
    left: 0;
    opacity: 0;
    transition: 0.4s ease, pointer-events 0s;
    transform: translateY(-5px);
    pointer-events: none;
    width: max-content;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.jo-header-submenu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.jo-header-submenu li:last-child {
    border-bottom: 0;
}

.jo-header-submenu li a {
    height: auto;
    padding: 8px 15px;
    display: inline-block;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .jo-header-submenu li a {
        padding: 4px 10px;
    }
}

@media screen and (max-width: 991px) {
    .jo-header-submenu {
        position: static;
        transform: translateY(0);
        opacity: 1;
        width: 100%;
        overflow: hidden;
        box-shadow: none;
    }
}

.has-sub-menu {
    position: relative;
    display: grid;
    grid-template-rows: max-content 0fr;
    transition: 0.4s ease;
}

.has-sub-menu>a {
    position: relative;
}

@media screen and (max-width: 991px) {

    .has-sub-menu>a::before,
    .has-sub-menu>a::after {
        content: "";
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 1px;
        background-color: var(--tt-pink);
    }

    .has-sub-menu>a::after {
        transform: rotate(90deg) translateX(-5%);
        transition: 0.4s ease;
    }
}

@media screen and (max-width: 991px) {
    .has-sub-menu.active {
        grid-template-rows: max-content 1fr;
    }
}

.has-sub-menu.active>a::after {
    transform: rotate(0deg);
}

.has-sub-menu.active .jo-header-submenu {
    margin-bottom: 5px;
    pointer-events: all;
}

.has-sub-menu:hover .jo-header-submenu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.jo-inner-header {
    background-color: var(--white);
}

.jo-banner {
    /* background: url(../img/banner-2-bg.png) no-repeat center center; */
    background-size: cover;
    padding: 8.125vw 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-bottom: 2px solid transparent;
    /* background-image: linear-gradient(#22182e, #22182e), linear-gradient(90deg, #ea09c3 0%, #1057e4 100%); */
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: gradientShift 3s ease infinite;
}

@media screen and (max-width: 1599px) {
    .jo-banner {
        padding: 120px 0 0;
    }
}

@media screen and (max-width: 1199px) {
    .jo-banner {
        padding: 75px 0 0;
    }
}

.jo-banner .vector {
    position: absolute;
    bottom: 115px;
    right: 0;
}

.jo-banner-container {
    margin: 0 7.031vw;
}

@media screen and (max-width: 1599px) {
    .jo-banner-container {
        margin: 0 75px;
    }
}

@media screen and (max-width: 1199px) {
    .jo-banner-container {
        margin: 0 45px;
    }
}

@media screen and (max-width: 479px) {
    .jo-banner-container {
        margin: 0 15px;
    }
}

.jo-banner__txt {
    position: relative;
}

/* Smooth fade-in animations for banner elements */
.jo-banner__title {
    opacity: 0;
    animation: bannerFadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.jo-banner__txt p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #acacac;
    opacity: 0;
    animation: bannerFadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

.jo-banner__btns {
    opacity: 0;
    animation: bannerFadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
}

.jo-banner__img {
    opacity: 0;
    animation: bannerFadeInScale 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

@keyframes bannerFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bannerFadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.jo-banner__txt .vector {
    bottom: -65px;
    right: 370px;
}

.jo-banner__title {
    margin-top: 25px;
    font-size: 60px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px #fff3;
}

.jo-banner__title>span:first-child {
    display: block;
    opacity: 0;
    animation: wordFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.jo-banner__title .jo-banner__subtitle {
    opacity: 0;
    animation: wordFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards;
}

@keyframes wordFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.jo-banner__title span.styled {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, var(--tt-pink) 0%, var(--tt-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: smoothZoom 3s ease-in-out infinite;
}

.jo-banner__title span.styled::before {
    content: '';
    position: absolute;
    top: 54%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #fffffc 0%, var(--tt-gold) 100%);
    transform: translateY(-50%);
    z-index: 0;
}

@keyframes smoothZoom {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* .jo-banner__title span.styled::before,
.jo-banner__title span.styled::after {
  position: absolute;
  content: "";
  inset: 0;
  top: -30px;
  z-index: -1;
  background: url(../img/banner-txt-vector-1.svg) no-repeat center center;
  background-size: 100% 100%;
}

.jo-banner__title span.styled::after {
  background-image: url(../img/banner-txt-vector-2.svg);
  z-index: 1;
  inset: -10px;
  left: -8px;
  top: -30px;
} */

.jo-banner__notifi {
    background-color: var(--white);
    border-radius: 999px;
    padding: 5px 8px;
    max-width: 160px;
    display: flex;
    gap: 8px;
    align-items: center;
    position: relative;
    font-size: 14px;
    color: var(--ttGray2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.jo-banner__notifi>img {
    width: 40px;
    aspect-ratio: 1/1;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.jo-banner__notifi .icon {
    position: absolute;
    top: 0;
    right: 10px;
    transform: translateY(-40%);
    border-radius: 999px;
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.3);
}

.jo-banner__notifi .icon img {
    width: 30px;
}

.jo-banner__btns {
    display: flex;
    gap: 20px;
}

.jo-banner__btns>*:last-child {
    background: none;
}

.jo-banner__btns>*:last-child:hover {
    background: var(--tt-pink);
}

.jo-banner__btns>*:last-child::before {
    border: 1px solid transparent;
    background: linear-gradient(90deg, var(--tt-pink), var(--white)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

@media screen and (max-width: 991px) {
    .jo-banner__img {
        text-align: center;
    }
}

.jo-banner__img>img {
    max-width: 33.854vw;
}

@media screen and (max-width: 991px) {
    .jo-banner__img>img {
        max-width: 60%;
        margin: auto;
    }
}

.jo-banner__img::before,
.jo-banner__img::after {
    transform: translateX(-50%) !important;
    pointer-events: none;
}

.jo-banner__img .jo-banner__notifi {
    position: absolute;
    top: 70%;
    left: 0;
    text-align: left;
}

.jo-banner__followers {
    background: url(../img/banner-follower-count.svg) no-repeat center center;
    background-size: contain;
    text-align: center;
    font-size: 14px;
    padding: 28px 32px;
    position: absolute;
    right: 0;
    top: 30%;
}

@media screen and (max-width: 479px) {
    .jo-banner__followers {
        padding: 18px 22px;
    }
}

.jo-banner__followers .number {
    font-weight: 700;
    font-size: 26px;
    color: var(--ttRed);
    display: block;
    margin-bottom: 0;
    line-height: 1;
}

@media screen and (max-width: 479px) {
    .jo-banner__followers .number {
        font-size: 22px;
    }
}

.jo-social-links {
    padding: 100px 0 50px;
}

@media screen and (max-width: 1399px) {
    .jo-social-links {
        padding: 70px 0 20px;
    }
}

@media screen and (max-width: 767px) {
    .jo-video-card video {
        height: 500px !important;
    }

    .jo-banner__title {
        font-size: 36px;
        text-align: center;
        line-height: 1.25;
    }

    .jo-banner__btns {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .jo-social-links {
        padding: 15px 0 10px;
    }

    .jo-section-title {
        font-size: 28px;
    }
}

@media screen and (min-width: 1400px) {
    .jo-social-links .container {
        max-width: 1417px;
    }
}

@media (min-width: 576px) {
    .jo-social-links .row {
        --bs-gutter-x: 1.25vw;
    }
}

@media screen and (max-width: 1399px) {
    .jo-social-links .row {
        --bs-gutter-x: 15px;
        --bs-gutter-y: 15px;
    }
}

.jo-social-link {
    background-color: #382f43;
    box-shadow: 0 4px 70px rgba(255, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1.563vw 1.042vw;
    display: flex;
    gap: 0.781vw;
    align-items: center;
}

@media screen and (max-width: 1399px) {
    .jo-social-link {
        padding: 15px;
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media screen and (max-width: 479px) {
    .jo-social-link {
        gap: 10px;
    }
}

.jo-social-link .icon {
    max-width: clamp(40px, 2.604vw, 50px);
    flex-shrink: 0;
}

.jo-social-link .txt {
    flex-grow: 1;
}

.jo-social-link .txt h5 {
    font-weight: 600;
    font-size: clamp(18px, 1.042vw, 20px);
    margin-bottom: 0.156vw;
    color: #fff;
}

.jo-social-link .txt span {
    font-weight: 400;
    font-size: clamp(12px, 0.729vw, 14px);
    color: #ddd;
}

.jo-social-link .jo-btn {
    padding: 0 8px;
    font-size: 13px;
    height: 29px;
    flex-shrink: 0;
}

.jo-reels {
    padding: 40px 0;
}

@media screen and (max-width: 991px) {
    .jo-reels {
        padding: 30px 0;
    }
}

@media screen and (max-width: 767px) {
    .jo-reels {
        padding: 30px 0;
    }
}

.jo-reels-heading {
    margin-bottom: 25px;
    text-align: center;
}

@media screen and (max-width: 479px) {
    .jo-reels-heading {
        margin-bottom: 10px;
    }
}

.jo-reels-heading button {
    flex-shrink: 0;
    background-color: #78045d1c;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 99px;
    color: var(--ttRed);
    transition: 0.4s ease;
}

.jo-reels-heading button i {
    padding-top: 2px;
}

.jo-reels-heading button:hover {
    color: var(--white);
    background-color: var(--ttRed);
}

.jo-reels-container {
    max-width: 1920px;
    margin: auto;
    padding: 0px 3.91vw;
}

@media screen and (max-width: 991px) {
    .jo-reel .plyr {
        min-width: 0;
    }
}

.jo-reel .plyr__poster {
    background-color: transparent;
}

.jo-reel-video {
    margin-bottom: 16px;
    overflow: hidden;
    background: linear-gradient(#382f43, #382f43) padding-box, linear-gradient(98.4deg, #ed09c5 0%, rgba(195, 153, 0, 0) 30.57%, rgba(195, 108, 18, 0) 66.14%, #0d58eb 100%) border-box;
    border: 2px solid transparent;
    border-radius: 1rem;
}

.jo-reel-video video {
    max-width: 100%;
    height: 25.63vw;
    max-height: 492px;
    width: 100%;
    object-fit: cover;
    background: #ddd;
    vertical-align: top;
}

@media screen and (max-width: 767px) {
    .jo-reel-video video {
        height: 42.63vw;
    }
}

@media screen and (max-width: 575px) {
    .jo-reel-video video {
        height: 66.63vw;
    }
}

@media screen and (max-width: 479px) {
    .jo-reel-video video {
        height: 138.73vw;
    }
}

.jo-reel .link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
}

.jo-reel-title a {
    font-weight: 700;
    font-size: 1.042vw;
    color: var(--black);
}

@media screen and (max-width: 1399px) {
    .jo-reel-title a {
        font-size: 15px;
    }
}

.jo-reel-title a:hover {
    color: var(--tt-pink);
}

.jo-reel-info {
    color: var(--ttGray2);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.platform-tag,
.jo-reel .link {
    background-color: var(--white);
    padding: 10px 15px;
    width: max-content;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
}

.platform-tag img,
.jo-reel .link img {
    width: 16px;
}

.jo-services {
    padding: 40px 0;
}

@media screen and (max-width: 991px) {
    .jo-services {
        padding: 30px 0;
    }
}

@media (min-width: 1400px) {
    .jo-services .container {
        max-width: 1417px;
    }
}

.jo-services-wrapper {
    padding: 30px;
    background: linear-gradient(#140f1ef2, #1e142df2) padding-box, linear-gradient(98.4deg, #ed09c5 0%, rgba(195, 153, 0, 0) 30.57%, rgba(195, 108, 18, 0) 66.14%, #0d58eb 100%) border-box;
    border: 1px solid transparent;
    border-radius: 1rem;
}


.jo-services-wrapper .heading {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    padding-bottom: 26px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: linear-gradient(90deg, var(--tt-pink) 0%, var(--tt-gold) 100%) 0 100% / 100% 1px no-repeat;
    animation: borderScroll 3s linear infinite;
}

@keyframes borderScroll {
    0% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 100% 100%;
    }
}

@media screen and (max-width: 479px) {
    .jo-services-wrapper .heading {
        margin-bottom: 20px;
        padding-bottom: 21px;
    }
}

.jo-services-tabs-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.563vw;
}

@media screen and (max-width: 991px) {
    .jo-services-tabs-wrapper {
        flex-direction: column;
    }
}

@media screen and (max-width: 479px) {
    .jo-services-tabs-wrapper {
        gap: 20px;
    }
}

.jo-services-tab-navs {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 0.781vw, 15px);
    flex-shrink: 0;
}

@media screen and (max-width: 991px) {
    .jo-services-tab-navs {
        width: 100%;
        text-align: center;
    }
}

.jo-services-tab-navs .tab-nav {
    height: 3.906vw;
    min-width: 19.271vw;
    text-align: left;
    padding: 0 1.042vw;
    font-weight: 600;
    font-size: 1.042vw;
    position: relative;
    z-index: 1;
    color: var(--white);
    transition: all 0.3s ease;
    background: linear-gradient(#22182e, #22182e) padding-box, linear-gradient(98.4deg, #770363 0%, rgba(195, 153, 0, 0) 30.57%, rgba(195, 108, 18, 0) 66.14%, #093da4 100%) border-box;
    border: 1px solid transparent;
    border-radius: 1rem;
    box-shadow: inset 0 -2px 4px #ffffff80;
}

@media screen and (max-width: 1399px) {
    .jo-services-tab-navs .tab-nav {
        min-width: 0;
        font-size: 16px;
        height: 55px;
        color: white;
    }
}

@media screen and (max-width: 991px) {
    .jo-services-tab-navs .tab-nav {
        font-size: 14px;
        height: 45px;
        padding: 0 15px;
        text-align: center;
    }
}

.jo-services-tab-navs .tab-nav:hover {
    color: var(--white);
    transform: translateX(5px);
}

.jo-services-tab-navs .tab-nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 1rem;
    background: linear-gradient(90deg, var(--tt-pink) 0%, var(--tt-gold) 100%);
    z-index: -1;
    opacity: 0;
    transition: 0.4s ease;
    box-shadow: inset 0 -2px 4px #ffffff80;
}

.jo-services-tab-navs .tab-nav.active {
    color: var(--white);
}

.jo-services-tab-navs .tab-nav.active::before {
    opacity: 1;
}

.tt-tab {
    overflow: hidden;
    opacity: 0;
    height: 0;
    pointer-events: none;
    transition: 0.4s ease;
}

.tt-tab.active {
    opacity: 1;
    height: auto;
    pointer-events: auto;
}

.tt-service-tab {
    display: flex;
    gap: 1.563vw;
    background-color: #22182e;
    padding: 1.563vw;
    border-radius: 10px;
}

@media screen and (max-width: 1199px) {
    .tt-service-tab {
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .influencers-pinfo__label {
        color: #000 !important;
        margin-bottom: 0;
    }

    .influencers-pinfo__title {
        color: #000 !important;
    }

    .influencers-pinfo {
        align-items: center !important;
    }

    .tt-service-tab {
        padding: 20px;
    }
}

@media screen and (max-width: 479px) {
    .tt-service-tab {
        padding: 15px;
    }
}

.tt-service-tab .img {
    max-width: 21.302vw;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

@media screen and (max-width: 1399px) {
    .tt-service-tab .img {
        max-width: 350px;
    }
}

.tt-service-tab .title {
    font-size: clamp(17px, 1.042vw, 20px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.365vw;
}

@media screen and (max-width: 991px) {
    .tt-service-tab .title {
        margin-bottom: 12px;
    }
}

.tt-service-tab .descr {
    font-weight: 400;
    line-height: 1.65;
    color: var(--white);
    margin-bottom: 0.885vw;
}

@media screen and (max-width: 991px) {
    .tt-service-tab .descr {
        margin-bottom: 15px;
    }
}

.tt-service-tab .list {
    list-style: disc inside;
    padding-left: 10px;
    margin-bottom: 0;
    color: var(--white);
}

.tt-service-tab .list li:not(:last-child) {
    margin-bottom: 0.521vw;
}

.jo-intro-lives-wrapper {
    background:
        /* linear-gradient(90deg, var(--tt-gold) 0%, var(--tt-pink) 100%),
    url(../img/intro-live-bg.png) var(--black) no-repeat center center;
  background-size: cover; */
        padding: 30px 0;
}

.jo-intro {
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

@media screen and (max-width: 1399px) {
    .jo-intro {
        padding: 30px 0;
    }
}

.jo-intro__txt {
    color: var(--white);
}

.jo-intro__txt .jo-section-title {
    color: var(--white);
    margin-bottom: 22px;
}

.jo-intro__txt .jo-btn::after {
    content: "";
    position: absolute;
    inset: 1px;
    background-color: var(--black);
    z-index: -1;
    border-radius: 6px;
    transition: 0.4s ease;
}

.jo-intro__txt .jo-btn:hover::after {
    opacity: 0;
}

.jo-intro__descr {
    margin-bottom: 25px;
    color: #fff;
}

.jo-intro__list {
    padding: 0;
    margin: 0;
    margin-bottom: 25px;
}

.jo-intro__list li {
    position: relative;
    padding-left: 30px;
    list-style: none;
    font-weight: 500;
    color: var(--white);
}

.jo-intro__list li:not(:last-child) {
    margin-bottom: 18px;
}

.jo-intro__list li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    background: url(../img/checkmark-badge.svg) no-repeat center center;
    background-size: 100% 100%;
}

.jo-intro__img {
    display: flex;
    justify-content: flex-start;
    margin-left: 34px;
    position: relative;
}

@media screen and (max-width: 479px) {
    .jo-intro__img {
        margin-left: 0;
        display: none;
    }
}

.jo-intro__img .play-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 56px;
    width: 114px;
    aspect-ratio: 1/1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--ttRed);
    border-radius: 99px;
    font-size: 26px;
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.5);
    animation: btn-shadow-anim 2.5s linear infinite forwards;
}

@media screen and (max-width: 767px) {
    .jo-intro__img .play-btn {
        left: 26px;
        width: 84px;
    }
}

@media screen and (max-width: 479px) {
    .jo-intro__img .play-btn {
        left: 10px;
        width: 70px;
        font-size: 20px;
    }
}

.jo-intro__img .play-btn:hover {
    background-color: var(--ttRed);
    color: var(--white);
}

.jo-intro__img img {
    max-width: none;
    max-height: 34.371vw;
    border-radius: 999px 0 0 999px;
    background: #382f43;
}

.jo-intro__vector {
    position: absolute;
    top: 27px;
    left: -427px;
    animation: spin 5.5s linear infinite forwards;
}

@media screen and (max-width: 1799px) {
    .jo-intro__vector {
        left: -497px;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes btn-shadow-anim {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.jo-upcoming-lives {
    color: var(--white);
    padding: 40px 0;
}

@media screen and (max-width: 1399px) {
    .jo-upcoming-lives {
        padding: 20px 0;
    }
}

.jo-upcoming-lives__heading {
    text-align: center;
    border: solid rgba(255, 255, 255, 0.2);
    border-width: 1px 0 1px 0;
    color: var(--white);
    padding: 40px 0 30px;
    margin-bottom: 30px;
}

@media screen and (max-width: 1399px) {
    .jo-upcoming-lives__heading {
        padding: 15px 0 15px;
    }
}

.jo-upcoming-lives__heading .jo-section-title {
    color: var(--white);
}

.jo-upcoming-live {
    display: flex;
    align-items: center;
    gap: 2.604vw;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.563vw;
}

@media screen and (max-width: 1399px) {
    .jo-upcoming-live {
        gap: 30px;
    }
}

@media screen and (max-width: 1199px) {
    .jo-upcoming-live {
        align-items: flex-start;
    }
}

@media screen and (max-width: 991px) {
    .jo-upcoming-live {
        flex-direction: column;
    }
}

@media screen and (max-width: 767px) {
    .jo-upcoming-live {
        padding: 15px;
    }
}

.jo-upcoming-live:not(:last-child) {
    margin-bottom: 20px;
}

.jo-upcoming-live__img {
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    max-width: 26.458vw;
}

@media screen and (max-width: 1399px) {
    .jo-upcoming-live__img {
        max-width: 478px;
    }
}

@media screen and (max-width: 1199px) {
    .jo-upcoming-live__img {
        max-width: 418px;
    }
}

.jo-upcoming-live__txt .platform-tag {
    margin-bottom: 1.302vw;
}

.jo-upcoming-live__txt .title {
    font-weight: 700;
    font-size: 20px, 1.25vw, 24px;
}

.jo-upcoming-live__txt .date {
    font-weight: 500;
    padding-bottom: 15px;
    display: inline-block;
    font-size: 14px;
}

@media screen and (max-width: 479px) {
    .jo-upcoming-live__txt .date {
        padding-bottom: 15px;
    }
}

.jo-upcoming-live__txt .descr {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.042vw;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.667vw;
}

@media screen and (max-width: 479px) {
    .jo-upcoming-live__txt .descr {
        padding-top: 15px;
        margin-bottom: 20px;
    }
}

.jo-videos {
    padding: 40px 0;
    overflow: hidden;
}

@media screen and (max-width: 1399px) {
    .jo-videos {
        padding: 40px 0;
    }
}

.jo-videos__heading {
    text-align: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 8px;
}

.jo-videos__heading .jo-section-title {
    margin-bottom: 0;
}

.jo-videos__heading .jo-videos__btn {
    color: var(--ttRed);
}

.jo-videos__heading .jo-videos__btn i {
    padding-top: 4px;
    padding-right: 4px;
}

.jo-videos__heading .jo-videos__btn:hover {
    color: var(--white);
}

.jo-videos__heading .jo-videos__btn:hover::after {
    opacity: 0;
}

.jo-videos__heading .jo-videos__btn::after {
    position: absolute;
    inset: 1px;
    content: "";
    z-index: -1;
    background-color: var(--white);
    border-radius: 5px;
    transition: 0.4s ease;
}

.jo-videos-slider {
    margin-bottom: 30px;
}

/* .jo-videos-slider .splide__track {
  overflow: visible;
} */

.jo-videos-slider .splide__list {
    align-items: center;
}

.jo-video-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


.jo-video-card:hover .bottom {
    transform: translateY(0);
}

.jo-video-card:hover video {
    transform: scale(1.05);
}

.jo-video-card__img {
    width: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.jo-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(#382f43, #382f43) padding-box, linear-gradient(98.4deg, #ed09c5 0%, rgba(195, 153, 0, 0) 30.57%, rgba(195, 108, 18, 0) 66.14%, #0d58eb 100%) border-box;
    border: 2px solid transparent;
    border-radius: 1rem;
}


@media screen and (max-width: 1399px) {
    .jo-video-card__txt {
        inset: 10px;
    }
}

@media screen and (max-width: 1199px) {
    .jo-video-card__txt {
        inset: 10px;
    }
}

@media screen and (max-width: 479px) {
    .jo-video-card__txt {
        inset: 15px;
    }
}

.jo-video-card__btn {
    border: 1px solid var(--white);
    border-radius: 50%;
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding-top: 1px;
    color: var(--white);
}

.jo-video-card__btn:hover {
    background-color: var(--white);
    color: var(--tt-pink);
}

.jo-video-card__premium-tag {
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background-color: var(--white);
    border-radius: 50%;
    padding-top: 1px;
}

.jo-video-card .bottom {
    transform: translateY(calc(100% - 27px));
    transition: 0.4s ease;
}

.jo-video-card .price {
    display: inline-block;
    background: var(--white);
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px;
    padding: 3.5px 10px;
    color: var(--ttRed);
    margin-bottom: 10px;
}

.jo-video-card__title {
    font-weight: 700;
    font-size: clamp(21px, 1.26vw, 24px);
    line-height: 29px;
    color: var(--white);
    margin-bottom: 4px;
    display: inline-block;
}

.jo-video-card__title:hover {
    color: var(--tt-pink);
}

.jo-video-card__infos {
    color: var(--white);
    font-weight: 300;
}

.jo-video-card__infos>*:not(:last-child) {
    border-right: 1px solid var(--white);
    padding-right: 10px;
    margin-right: 5px;
}

.jo-contact {
    overflow: hidden;
}

.jo-contact .top {
    padding: 40px 0;
}

@media screen and (max-width: 1399px) {
    .jo-contact .top {
        padding: 40px 0;
    }
}

@media screen and (max-width: 991px) {
    .jo-contact .top {
        padding: 30px 0;
    }
}

.jo-contact__img {
    position: relative;
    z-index: 1;
}

.jo-contact__img::before,
.jo-contact__img::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -50px;
    left: 50%;
    transform: translateX(-42%);
    width: 594px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #382f4369;
    border: 1px solid #ed09c341;
    animation: scale 3s infinite linear;
}

.jo-contact__img::after {
    width: 510px;
    height: 510px;
    top: -7px;
    transform: translateX(-40.8%);
}

.jo-contact-form-wrapper {
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(20, 15, 30, 0.95), rgba(30, 20, 45, 0.95));
    padding: 2.083vw;
}

@media screen and (max-width: 1199px) {
    .jo-contact-form-wrapper {
        padding: 30px;
    }
}

@media screen and (max-width: 991px) {
    .jo-contact-form-wrapper {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 479px) {
    .jo-contact-form-wrapper {
        padding: 20px;
    }
}

.jo-contact-form-wrapper>.icon {
    display: inline-block;
    margin-bottom: 0.781vw;
}

.jo-contact-form-wrapper .jo-section-title {
    margin-bottom: 0.781vw;
}

@media screen and (max-width: 1399px) {
    .jo-contact-form-wrapper .jo-section-title {
        margin-bottom: 10px;
    }
}

.jo-contact-form-wrapper p {
    margin-bottom: 1.563vw;
}

@media screen and (max-width: 1399px) {
    .jo-contact-form-wrapper p {
        margin-bottom: 12px;
    }
}

.jo-contact-form>*:not(:last-child) {
    margin-bottom: 1.458vw;
}

@media screen and (max-width: 1399px) {
    .jo-contact-form>*:not(:last-child) {
        margin-bottom: 15px;
    }
}

.jo-contact-form label {
    display: block;
    width: max-content;
    max-width: 100%;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.5vw;
}

.jo-contact-form input,
.jo-contact-form textarea {
    border: 1px solid #ff22d866;
    height: 48px;
    width: 100%;
    padding: .375rem .75rem;
    font-weight: 500;
    color: var(--white);
    border-radius: 10px;
    background-color: #22182e;
}

@media screen and (max-width: 479px) {

    .jo-contact-form input,
    .jo-contact-form textarea {
        padding: 0 15px;
        height: 45px;
    }
}

.jo-contact-form textarea {
    height: clamp(120px, 7.187vw, 138px);
    padding: 0.781vw 1.302vw;
}

@media screen and (max-width: 1399px) {
    .jo-contact-form textarea {
        padding: 15px;
    }
}

.jo-contact-form textarea:focus {
    outline: none;
}


.jo-contact .bottom {
    padding-bottom: 100px;
}

@media screen and (max-width: 1399px) {
    .jo-contact .bottom {
        padding-bottom: 70px;
    }
}

@media screen and (max-width: 767px) {
    .jo-videos {
        padding: 30px 0;
        overflow: hidden;
    }

    .jo-contact .bottom {
        padding-bottom: 30px;
    }
}

.jo-contact .bottom .blank-space {
    pointer-events: none;
}

@keyframes scale {
    0% {
        scale: 1;
        opacity: 1;
    }

    100% {
        scale: 1.1;
        opacity: 0;
    }
}

.jo-partners-title {
    font-weight: 600;
    font-size: 24px;
    color: var(--black);
    text-align: center;
    margin-bottom: 40px;
    margin-top: 45px;
}

.jo-partners-slider-pagination {
    text-align: center;
    margin-top: 55px;
}

.jo-partners-slider-pagination .swiper-pagination-bullet-active {
    background-color: var(--ttRed);
}

.jo-articles {
    padding: 40px 0;
}

.jo-articles .jo-section-title {
    margin-bottom: 25px;
}

.jo-article {
    margin: 10px 0;
    position: relative;
    box-shadow: rgba(149, 157, 165, 0.2) 1px 1px 10px 0px;
    padding: 10px;
    box-sizing: border-box;
    background: linear-gradient(#140f1ef2, #1e142df2) padding-box, linear-gradient(213deg, #ed09c5 0%, rgba(195, 153, 0, 0) 30.57%, rgba(195, 108, 18, 0) 66.14%, #0d58eb 100%) border-box;
    border: 1px solid transparent;
    border-radius: 1rem;
    transition: all 0.4s ease;
    overflow: hidden;
}

.jo-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.5);
}


.jo-article__img {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
}

.jo-article__img img {
    width: 100%;
}

.jo-article .date {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--white);
    border-radius: 10px;
    font-weight: 500;
    font-size: clamp(11px, 0.729vw, 14px);
    color: var(--black);
    display: inline-block;
    text-transform: uppercase;
    overflow: hidden;
    text-align: center;
}

@media screen and (max-width: 1399px) {
    .jo-article .date {
        bottom: 20px;
        left: 20px;
    }
}

.jo-article .date .number {
    background: var(--ttRed);
    display: block;
    color: var(--white);
    padding: 3px;
    border-radius: 10px;
}

.jo-article .date .txt {
    padding: 2px 11px;
    display: block;
}

.jo-article__infos {
    display: flex;
    align-items: center;
    gap: 1.563vw;
    font-size: clamp(12px, 0.729vw, 14px);
    font-weight: 500;
    margin-bottom: 0.625vw;
}

.jo-article__info {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}

.jo-article__info i {
    font-size: 18px;
    color: var(--ttRed);
}

.jo-article__title {
    font-weight: 600;
    font-size: clamp(19px, 1.146vw, 22px);
    margin-bottom: 1.302vw;
    line-height: 1.4;
    text-align: center;
}

.jo-article__designation {
    text-align: center;
    font-size: 14px;
}

@media screen and (max-width: 1399px) {
    .jo-article__title {
        margin-bottom: 3px;
    }
}

.jo-article__txt {
    text-align: center;
}

.jo-article__title a {
    color: var(--black);
    display: inline-block;
}

.jo-article__title a:hover {
    color: var(--ttRed);
}

.jo-article__btn {
    font-weight: 600;
    color: var(--ttRed);
    font-size: 14px;
    display: inline-flex;
}

.jo-article__btn:hover {
    color: var(--black);
}

.jo-article__btn .icon {
    font-size: 13px;
    line-height: 0.7;
    padding-top: 3px;
    padding-left: 4px;
}

/* footer */
.jo-footer {
    background: #0e0a14;
    color: #fff;
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
}

.jo-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #ea09c3 0%, #1057e4 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.jo-footer .jo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.jo-footer-widget__title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
    color: #fff;
}

/* .jo-footer-widget__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #073da5, #7f005f);
  border-radius: 2px;
} */

.jo-footer-widget p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 15px;
    font-weight: 500;
}

.jo-footer-brand-logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0041a9, #7f005f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: inline-block;
}

.jo-footer-brand-logo img {
    height: 50px;
}

.jo-footer .links a {
    display: flex;
    align-items: center;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 2px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 4px 0;
    font-weight: 500;
}

.jo-footer .links a i {
    margin-right: 10px;
    color: #ddd;
    font-size: 1rem;
    width: 20px;
}

.jo-footer .links a:hover {
    color: #fff;
}

.jo-footer .links a:hover i {
    color: #fff;
}

.jo-footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #ddd;
    font-size: 0.95rem;
    font-weight: 500;
}

.jo-footer-contact-item i {
    color: #ddd;
    margin-right: 12px;
    margin-top: 2px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0041a9 0%, #7f005f 100%);
    box-shadow: 0 4px 16px rgba(127, 0, 95, 0.15);
    transition: background 0.3s, box-shadow 0.3s, color 0.3s;
    border: none;
}

.jo-footer-contact-item:hover i {
    background: linear-gradient(135deg, #7f005f 0%, #0041a9 100%);
    box-shadow: 0 6px 24px rgba(0, 65, 169, 0.18);
}

.jo-footer-contact-item a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.jo-footer-contact-item a:hover {
    color: #fff;
}

.jo-footer-social {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.jo-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    background: #710767;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease;
}

.jo-footer-social a:hover {
    background: linear-gradient(135deg, #0041a9, #7f005f);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 65, 169, 0.4);
}

.stat-label {
    font-size: 0.85rem;
    color: #fffffff5;
    margin-top: 5px;
}

.tt-footer-bottom {
    padding: 15px 0 50px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #fffffff5;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #fffffff5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #7f005f;
}

@media (max-width: 991px) {
    .jo-footer .row {
        flex-direction: column;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .jo-footer {
        padding: 40px 0 0 0;
    }

    .jo-footer-widget__title {
        font-size: 1.2rem;
    }

    .stat-item {
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* End Footer */

.jo-inner-social-links {
    padding: 40px 0;
}

@media screen and (max-width: 767px) {
    .jo-articles {
        padding: 30px 0 !important;
    }

    .tt-footer-bottom {
        margin-top: 6px;
        padding: 10px 0;
    }

    .jo-inner-social-links {
        padding: 30px 0;
    }
}

.jo-inner-videos {}

.jo-inner-about {
    padding: 110px 0 0px;
}

.jo-inner-about .top-wrapper {
    border-radius: 20px;
    padding: 0 20px;
}

.jo-inner-about-left {
    background: url(../img/inner-about-left-bg.png) var(--black) no-repeat center center;
    background-size: cover;
    height: 100%;
    border-radius: 20px;
    padding: 2.083vw 5.729vw;
    width: max-content;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1199px) {
    .jo-inner-about-left {
        padding: 25px 50px;
    }
}

@media screen and (max-width: 991px) {
    .jo-inner-about-left {
        width: 100%;
    }
}

@media screen and (max-width: 479px) {
    .jo-inner-about-left {
        padding: 25px 35px;
    }
}

.jo-inner-about-left .title {
    color: var(--white);
    font-weight: 600;
    font-size: clamp(21px, 1.25vw, 24px);
    margin-bottom: clamp(18px, 1.198vw, 22px);
}

.jo-inner-about-left .jo-btn {
    border-radius: 999px;
}

.jo-inner-about-left .jo-btn::before {
    border-radius: 999px;
}

.jo-inner-about-left .sub-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--ttGray2);
    margin-top: clamp(20px, 1.563vw, 30px);
    margin-bottom: 0;
}

.jo-inner-about-left .img {
    position: relative;
    border-radius: 999px;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: clamp(20px, 2.083vw, 40px);
}

.jo-inner-about-left .img img {
    border: 0.9vw solid var(--white);
    border-radius: 999px;
    max-width: 15.937vw;
    aspect-ratio: 1/1;
}

@media screen and (max-width: 1599px) {
    .jo-inner-about-left .img img {
        max-width: 17.937vw;
    }
}

@media screen and (max-width: 1199px) {
    .jo-inner-about-left .img img {
        max-width: 20.937vw;
    }
}

@media screen and (max-width: 991px) {
    .jo-inner-about-left .img img {
        max-width: 100%;
    }
}

.jo-inner-about-left .img .follower-tag {
    position: absolute;
    top: 42px;
    left: -33px;
    background-color: #18E76E;
    border-radius: 999px;
    color: var(--white);
    padding: 4px 10px;
    font-weight: 400;
    font-size: clamp(13px, 0.781vw, 15px);
}

.jo-inner-about-txt {
    padding: 1rem;
}

.jo-inner-about-txt.text-center {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.jo-inner-about-txt h3 {
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: 600;
    padding: 0 1.5rem;
}

.jo-inner-about-txt .quote-text {
    font-style: italic;
    font-size: 1.25em;
    padding: 1rem 2rem;
    margin: 1.5rem 0;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border-image-slice: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.jo-inner-about-txt .jo-intro__descr {
    margin-bottom: 1rem;
    line-height: 2;
    font-size: 1.1em;
    padding: 0 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.jo-inner-about-txt h5 {
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 600;
    padding: 0 1.5rem;
}

.jo-inner-about-txt p {
    margin-bottom: 2rem;
    line-height: 2;
    padding: 0 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Animation Classes */
.animate-slide-left {
    opacity: 0;
    animation: slideInLeft 1s ease-out forwards;
}

.animate-slide-right {
    opacity: 0;
    animation: slideInRight 1s ease-out forwards;
}

.animation-delay-1 {
    animation-delay: 0.2s;
}

.animation-delay-2 {
    animation-delay: 0.4s;
}

.animation-delay-3 {
    animation-delay: 0.6s;
}

.animation-delay-4 {
    animation-delay: 0.8s;
}

.animation-delay-5 {
    animation-delay: 1s;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media screen and (max-width: 991px) {
    .jo-inner-about-txt {
        padding: 2rem 1.5rem;
    }

    .jo-inner-about-txt h3 {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .jo-inner-about-txt .quote-text {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
        font-size: 1.15em;
    }

    .jo-inner-about-txt .jo-intro__descr,
    .jo-inner-about-txt p {
        padding: 0 1rem;
    }
}

@media screen and (max-width: 575px) {
    .jo-inner-about-txt {
        padding: 0;
    }

    .jo-inner-about-txt h3 {
        padding: 0 0.5rem;
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .jo-inner-about-txt .jo-section-title {
        font-size: 36px !important;
    }

    .jo-inner-about-txt .quote-text {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
        font-size: 1.1em;
    }

    .jo-inner-about-txt .jo-intro__descr,
    .jo-inner-about-txt p {
        padding: 0 0.5rem;
        font-size: 1rem;
    }
}

.jo-inner-about .jo-section-title {
    font-size: 3.75rem;
    text-align: center;
}

.jo-inner-about-second-title {
    font-size: clamp(26px, 2.083vw, 40px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: 30px;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .jo-partners-title {
        margin-bottom: 25px;
        margin-top: 25px;
    }

    .jo-partners-slider-pagination {
        text-align: center;
        margin-top: 20px;
    }

    .jo-inner-about-second-title {
        font-size: 22px;
    }
}

@media screen and (max-width: 479px) {
    .jo-inner-about-second-title {
        font-size: 20px;
    }
}

.jo-inner-about-second-title .txt-gold {
    color: var(--tt-gold);
}

.jo-inner-about-second-title .txt-pink {
    color: var(--tt-pink);
}

.jo-inner-services {
    padding: 40px 0;
}

.jo-inner-service {
    border: none;
    border-radius: 20px;
    padding: clamp(15px, 1.563vw, 30px);
}

.jo-inner-service .jo-article__img {
    border-radius: 15px;
}

.jo-inner-service .jo-article__info {
    gap: 10px;
}

.jo-inner-service .jo-article__info i {
    font-size: clamp(17px, 1.042vw, 20px);
}

.jo-inner-service .jo-article__title {
    font-size: clamp(17px, 1.042vw, 20px);
    font-weight: 700;
    margin-bottom: 10px;
}

.jo-inner-service-descr {
    color: var(--ttGray2);
    font-size: clamp(18px, 1.146vw, 22px);
}

.jo-inner-service .jo-btn {
    gap: 6px;
    color: var(--tt-pink);
}

.jo-inner-service .jo-btn::after {
    content: "";
    position: absolute;
    z-index: -1;
    position: absolute;
    inset: 1px;
    border-radius: 4px;
    transition: 0.4s ease;
}

.jo-inner-service .jo-btn:hover {
    color: var(--white);
}

.jo-inner-service .jo-btn:hover::after {
    opacity: 0;
}

.jo-inner-service .jo-btn .icon {
    font-size: 10px;
    padding-top: 4px;
}

.jo-inner-features {
    background: url(../img/features-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 5.208vw 0;
}

@media screen and (max-width: 991px) {
    .jo-inner-features {
        padding: 40px 0;
    }
}

.jo-inner-feature {
    text-align: center;
}

.jo-inner-feature .icon {
    width: 6.25vw;
    max-width: 100%;
    padding-top: 0.625vw;
    aspect-ratio: 1/1;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin: auto;
    margin-bottom: 1.563vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(45px, 3.125vw, 60px);
    background: linear-gradient(180deg, var(--ttRed), var(--tt-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 991px) {
    .jo-inner-feature .icon {
        width: 65px;
    }
}

@media screen and (max-width: 767px) {
    .jo-inner-services {
        padding: 30px 0;
    }

    .jo-inner-feature .icon {
        padding-top: 7px;
    }
}

.jo-inner-feature .title {
    font-weight: 700;
    font-size: clamp(17px, 1.042vw, 20px);
    color: var(--white);
}

.jo-inner-main-content {
    padding: 40px 0;
}

@media screen and (max-width: 991px) {
    .jo-inner-main-content {
        padding: 40px 0;
    }
}

.jo-service-details-sidebar {
    border-radius: 20px;
    padding: 1.719vw;
}

@media screen and (max-width: 991px) {
    .jo-service-details-sidebar {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .jo-service-details-sidebar>* {
        width: calc((100% - 15px) / 2);
    }
}

@media screen and (max-width: 991px) and (max-width: 479px) {
    .jo-service-details-sidebar>* {
        width: calc((100% - 15px) / 1);
    }
}

@media screen and (max-width: 479px) {
    .jo-service-details-sidebar {
        justify-content: center;
        padding: 25px 14px;
    }
}

.jo-service-details-sidebar .service-list li:not(:last-child) {
    margin-bottom: clamp(12px, 1.042vw, 20px);
}

.jo-service-details-sidebar .service-list a {
    padding: clamp(7.5px, 0.66vw, 12.5px) clamp(12px, 1.042vw, 20px);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--ttRed), var(--tt-gold));
    font-weight: 500;
    font-size: 20px;
    color: var(--black);
}

@media screen and (max-width: 1599px) {
    .jo-service-details-sidebar .service-list a {
        font-size: 18px;
    }
}

@media screen and (max-width: 575px) {
    .jo-service-details-sidebar .service-list a {
        font-size: 16px;
    }
}

.jo-service-details-sidebar .service-list a::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 1px;
    border-radius: 8.5px;
    transition: 0.4s ease;
}

.jo-service-details-sidebar .service-list a:hover,
.jo-service-details-sidebar .service-list a.current {
    color: var(--white);
}

.jo-service-details-sidebar .service-list a:hover::before,
.jo-service-details-sidebar .service-list a.current::before {
    opacity: 0;
}

.jo-service-details__cta {
    margin-top: 1.563vw;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 991px) {
    .jo-service-details__cta {
        margin-top: 0;
    }
}

.jo-service-details__cta .img {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.jo-service-details__cta .img::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #7f005fbd;
}

.jo-service-details__cta .txt {
    position: absolute;
    bottom: clamp(25px, 2.604vw, 50px);
    z-index: 2;
    color: var(--white);
    text-align: center;
    width: 100%;
}

.jo-service-details__cta .txt .icon {
    font-size: clamp(25px, 2.604vw, 50px);
    line-height: 1;
    margin-bottom: 6px;
}

.jo-service-details__cta .txt .title {
    font-weight: 600;
    font-size: clamp(14px, 0.938vw, 18px);
    display: block;
    margin-bottom: 0.781vw;
}

.jo-service-details__cta .txt a {
    font-weight: 700;
    font-size: clamp(18px, 1.25vw, 24px);
    color: var(--white);
}

.jo-service-details__cta .txt a:hover {
    color: var(--tt-pink);
}

.jo-service-details-cover-img {
    margin-bottom: 1.563vw;
}

@media screen and (max-width: 1199px) {
    .jo-service-details-cover-img {
        margin-bottom: 18px;
    }
}

.jo-service-details-cover-img img {
    border-radius: 20px;
    aspect-ratio: 930/433;
    max-width: 100%;
    object-fit: cover;
}

.jo-service-details__tag {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0.677vw;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media screen and (max-width: 1199px) {
    .jo-service-details__tag {
        margin-bottom: 12px;
    }
}

.jo-service-details__tag .icon {
    font-size: 20px;
    line-height: 0.7;
    color: var(--ttRed);
}

.jo-service-details__title {
    font-weight: 700;
    font-size: clamp(24px, 1.25vw, 24px);
}

.jo-service-details__descr {
    font-size: 15px;
    color: var(--ttGray2);
}

.jo-service-details__inner-imgs {
    display: flex;
    gap: 24px;
    margin: 1.823vw 0;
}

@media screen and (max-width: 767px) {
    .jo-service-details__inner-imgs {
        gap: 15px;
    }
}

@media screen and (max-width: 479px) {
    .jo-service-details__inner-imgs {
        flex-direction: column;
    }
}

.jo-service-details__inner-imgs img {
    width: 100%;
    border-radius: 20px;
}

.jo-service-details-related-services {}

.jo-service-details-related-services .heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: clamp(20px, 2.083vw, 40px);
}

.jo-service-details-related-services .heading .jo-section-title {
    margin-bottom: 0;
}

.jo-related-services-slider .jo-inner-service {
    background-color: var(--white);
}

.jo-related-services-slider-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.jo-related-services-slider-nav button:hover {
    color: var(--ttRed);
}

.jo-videos-toggle-switch {
    position: relative;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2.604vw;
}

@media screen and (max-width: 991px) {
    .jo-videos-toggle-switch {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 479px) {
    .jo-videos-toggle-switch {
        gap: 8px;
    }
}

.jo-videos-toggle-switch .toggle-label {
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.4s ease;
}

@media screen and (max-width: 479px) {
    .jo-videos-toggle-switch .toggle-label {
        font-size: 14px;
    }
}

.jo-videos-toggle-switch .toggle-label.premium {
    color: rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 479px) {
    .jo-videos-toggle-switch .toggle-label i {
        display: none;
    }
}

.jo-videos-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.jo-videos-toggle-switch input:checked~.slider {
    background-color: var(--black);
}

.jo-videos-toggle-switch input:checked~.slider:before {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.jo-videos-toggle-switch input:checked~.toggle-label.premium {
    color: var(--black);
}

.jo-videos-toggle-switch input:checked~.toggle-label.free {
    color: rgba(0, 0, 0, 0.3);
}

.jo-videos-toggle-switch .slider {
    cursor: pointer;
    position: relative;
    width: 36px;
    display: block;
    height: 20px;
    background-color: var(--black);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 999px;
}

.jo-videos-toggle-switch .slider::before {
    position: absolute;
    content: "";
    aspect-ratio: 1/1;
    left: 2px;
    bottom: 2px;
    top: 2px;
    background-color: var(--white);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%;
}

.jo-inner-videos-filter-nav {
    margin-bottom: 3.333vw;
    gap: 10px;
}

@media screen and (max-width: 991px) {
    .jo-inner-videos-filter-nav {
        margin-bottom: 25px;
    }
}

.jo-inner-videos-filter-nav button {
    background: linear-gradient(90deg, var(--ttRed), var(--tt-gold));
    border-radius: 6px;
    height: 2.188vw;
    padding: 0 20px;
    color: var(--ttRed);
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1599px) {
    .jo-inner-videos-filter-nav button {
        height: 38px;
    }
}

@media screen and (max-width: 479px) {
    .jo-inner-videos-filter-nav button {
        padding: 0 10px;
        height: 35px;
        font-size: 14px;
    }
}

.jo-inner-videos-filter-nav button::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 1px;
    background-color: var(--white);
    border-radius: 4.5px;
    transition: 0.4s ease;
}

.jo-inner-videos-filter-nav button:hover,
.jo-inner-videos-filter-nav button.active {
    color: var(--white);
}

.jo-inner-videos-filter-nav button:hover::before,
.jo-inner-videos-filter-nav button.active::before {
    opacity: 0;
}

.jo-inner-videos-row {
    --bs-gutter-y: 1.563vw;
    --bs-gutter-x: 1.563vw;
}

.jo-inner-video-card {
    max-width: none;
    min-width: 0;
}

.jo-inner-video-card::before {
    background: linear-gradient(0deg, rgb(0, 0, 0), transparent);
    opacity: 1;
}

.jo-inner-video-card .jo-video-card__txt {
    top: auto;
}

.jo-inner-video-card .bottom {
    transform: translate(0);
}

@media screen and (max-width: 479px) {
    .jo-inner-video-card .jo-video-card__btn {
        width: 40px;
    }
}

.jo-inner-video-card .jo-video-card__title {
    margin-top: 1.302vw;
    margin-bottom: 1.042vw;
    font-size: clamp(18px, 1.25vw, 24px);
}

.jo-inner-video-card .jo-video-card__img {
    aspect-ratio: 690/617;
    object-fit: cover;
}

@media screen and (max-width: 575px) {
    .jo-inner-video-card .jo-video-card__img {
        aspect-ratio: 1410/617;
    }
}

@media screen and (max-width: 479px) {
    .jo-inner-video-card .jo-video-card__img {
        aspect-ratio: 1410/967;
    }
}

.jo-inner-video-card--big .jo-video-card__img {
    aspect-ratio: 1410/617;
}

@media screen and (max-width: 479px) {
    .jo-inner-video-card--big .jo-video-card__img {
        aspect-ratio: 1410/967;
    }
}

.jo-inner-video-card-2 {
    border-radius: 0;
    max-width: none;
}

.jo-inner-video-card-2::before {
    content: none;
}

.jo-inner-video-card-2 .jo-video-card__img {
    aspect-ratio: 330/430;
    border-radius: 20px;
}

.jo-inner-video-card-2 .jo-video-card__txt {
    position: static;
    color: var(--black);
}

.jo-inner-video-card-2 .jo-video-card__btn {
    color: var(--ttRed);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: var(--white);
}

.jo-inner-video-card-2 .jo-video-card__btn:hover {
    background-color: var(--ttRed);
    color: var(--white);
}

.jo-inner-video-card-2 .jo-video-card__title {
    color: var(--black);
    font-size: clamp(17px, 1.042vw, 20px);
    font-weight: 500;
    margin-top: 0.99vw;
    margin-bottom: 0.573vw;
}

.jo-inner-video-card-2 .jo-video-card__title:hover {
    color: var(--ttRed);
}

.jo-inner-video-card-2 .jo-video-card__infos {
    color: var(--black);
}

.jo-inner-video-card-2--big {
    margin: 0.521vw 0;
}

.jo-inner-video-card-2--big .jo-video-card__img {
    aspect-ratio: 1410/561;
    object-fit: cover;
}

@media screen and (max-width: 479px) {
    .jo-inner-video-card-2--big .jo-video-card__img {
        aspect-ratio: 1/1;
    }
}

.jo-inner-video-card-2--big .jo-video-card__btn {
    width: clamp(50px, 4.792vw, 92px);
    font-size: clamp(16px, 1.25vw, 22px);
}

.jo-inner-videos-slider .swiper-slide {
    max-width: 35.938vw;
    min-width: 276px;
}

@media screen and (max-width: 575px) {
    .jo-inner-videos-slider .jo-inner-video-card .jo-video-card__img {
        aspect-ratio: 690/617;
    }
}

.jo-inner-videos-slider-nav button {
    width: 45px;
    aspect-ratio: 1/1;
    background-color: rgba(255, 0, 0, 0.1);
    border-radius: 999px;
    color: var(--ttRed);
    padding-top: 6.5px;
}

.jo-inner-videos-slider-nav button:hover {
    background-color: var(--ttRed);
    color: var(--white);
}

.jo-inner-page-container {
    margin: 0 19.71vw;
}

@media screen and (max-width: 1599px) {
    .jo-inner-page-container {
        margin: 0 15.71vw;
    }
}

@media screen and (max-width: 1399px) {
    .jo-inner-page-container {
        margin: 0 12.71vw;
    }
}

@media screen and (max-width: 1199px) {
    .jo-inner-page-container {
        margin: 0 9.71vw;
    }
}

@media screen and (max-width: 991px) {
    .jo-inner-page-container {
        margin: 0 15px;
    }
}

.jo-video-details-wrapper {
    padding: 5.25vw 0;
}

.jo-video-details-cover {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    margin-bottom: clamp(22px, 1.58vw, 30px);
}

.jo-video-details-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, #000000 100%);
    z-index: 1;
}

.jo-video-details-cover img {
    width: 100%;
    aspect-ratio: 1170/570;
}

.jo-video-details-cover .video-btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-weight: 500;
    text-align: center;
}

.jo-video-details-cover .video-btn a {
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(20px, 1.42vw, 27px);
    color: var(--white);
    margin: auto;
    margin-bottom: 15px;
}

.jo-video-details-cover .video-btn a:hover {
    background-color: var(--white);
    color: var(--tt-pink);
}

.jo-video-details-cover .video-btn a i {
    padding-top: 4px;
}

.jo-video-details-txt h2 {
    font-weight: 700;
    font-size: clamp(21px, 1.26vw, 24px);
    color: var(--black);
    margin-bottom: clamp(13px, 0.84vw, 16px);
    margin-top: 20px;
}

.jo-video-details-txt p {
    font-size: 15px;
    color: var(--ttGray2);
}

.jo-video-details-txt ul {
    font-size: clamp(13px, 0.79vw, 15px);
    color: var(--black);
    font-weight: 500;
    margin-bottom: clamp(30px, 2.84vw, 54px);
    margin-top: clamp(20px, 1.58vw, 30px);
}

.jo-video-details-txt ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 15px;
}

.jo-video-details-txt ul li::before {
    content: "\f11f";
    font-family: flaticon_jio_-_influencer !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ttRed);
    font-size: 14px;
}

.jo-video-details-txt ul li:last-child {
    margin-bottom: 0;
}

.jo-video-details-txt blockquote {
    background-color: rgba(255, 0, 0, 0.1);
    padding: clamp(20px, 1.58vw, 30px);
    border-radius: 20px;
    font-size: clamp(17px, 1.05vw, 20px);
    color: var(--ttGray2);
    font-style: italic;
    display: flex;
    align-items: center;
    gap: clamp(15px, 1.05vw, 20px);
}

@media screen and (max-width: 479px) {
    .jo-video-details-txt blockquote {
        flex-wrap: wrap;
    }
}

.jo-video-details-txt-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.jo-video-details-shares {
    display: flex;
    align-items: center;
    gap: 20px;
}

.jo-video-details-shares .share-options {
    display: flex;
    gap: 8px;
}

.jo-video-details-shares .share-options a {
    width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    border: 1px solid rgba(210, 210, 210, 0.88);
    color: var(--ttGray2);
    border-radius: 999px;
    font-size: 13px;
    padding-top: 3px;
}

.jo-video-details-shares .share-options a:hover {
    background-color: var(--ttRed);
    border-color: var(--ttRed);
    color: var(--white);
}

.jo-video-details-cta {
    background: linear-gradient(45deg, var(--ttRed), var(--tt-gold));
    color: var(--white);
    padding: clamp(30px, 2.63vw, 50px);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    margin-top: clamp(50px, 5.25vw, 100px);
}

.jo-video-details-cta h3 {
    font-weight: 500;
    font-size: clamp(32px, 2.1vw, 40px);
}

.jo-video-details-cta .jo-btn {
    border: 1px solid var(--white);
}

.jo-video-details-cta .jo-btn i {
    font-size: 10px;
    padding-top: 1px;
    padding-right: 3px;
}

.jo-related-videos-slider-nav button:hover {
    color: var(--ttRed);
}

.jo-video-shop {
    padding: 5.25vw 0;
}

.jo-video-shop-sidebar {
    padding: clamp(15px, 1.58vw, 30px);
    border-radius: 20px;
}

.jo-video-shop-sidebar-widget-title {
    font-size: clamp(15px, 0.95vw, 18px);
    font-weight: 600;
    color: var(--black);
    margin-bottom: clamp(13px, 0.84vw, 16px);
}

.jo-video-shop-sidebar>* {
    margin-bottom: clamp(20px, 2.1vw, 40px);
}

.jo-video-shop-sidebar>*:last-child {
    margin-bottom: 0;
}

.jo-video-shop-search-form {
    background-color: var(--white);
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.jo-video-shop-search-form input {
    background-color: transparent;
    height: 100%;
    padding: 15px;
    width: 100%;
}

.jo-video-shop-search-form button {
    flex-shrink: 0;
    color: var(--ttRed);
    font-size: 20px;
    padding-right: 15px;
    padding-top: 6px;
    padding-left: 0;
}

.jo-video-shop-price-filter-form {
    background-color: var(--white);
    border-radius: 10px;
    padding: 15px;
}

.jo-video-shop-price-filter-form .noUi-base {
    margin-bottom: 8px;
}

.jo-video-shop-price-filter-form .noUi-horizontal {
    height: 7px;
    border: 1px solid var(--ttRed);
}

.jo-video-shop-price-filter-form .noUi-handle {
    width: 18px;
    height: 18px;
    box-shadow: none;
    border: 5px solid var(--ttRed);
    border-radius: 50%;
    top: -7px;
}

.jo-video-shop-price-filter-form .noUi-handle::before,
.jo-video-shop-price-filter-form .noUi-handle::after {
    content: none;
}

.jo-video-shop-price-filter-form .noUi-connect {
    background-color: var(--ttRed);
}

.jo-video-shop-price-filter-form .noUi-touch-area::before,
.jo-video-shop-price-filter-form .noUi-touch-area::after {
    content: none;
}

.jo-video-shop-price-filter-form .filtered-price {
    font-weight: 500;
    font-size: 12px;
    color: var(--black);
    display: block;
    margin-top: 10px;
}

.jo-video-shop-categories-link {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px 15px;
}

.jo-video-shop-categories-link a {
    display: flex;
    justify-content: space-between;
    color: var(--black);
    margin-bottom: 15px;
}

.jo-video-shop-categories-link a:hover {
    color: var(--ttRed);
}

.jo-video-shop-categories-link a:last-child {
    margin-bottom: 0;
}

.jo-video-shop-video-status-form {
    background-color: var(--white);
    border-radius: 10px;
    padding: 15px;
}

.jo-video-shop-video-status-form>*:not(:last-child) {
    margin-bottom: 10px;
}

.jo-video-shop-video-status-form label {
    position: relative;
    display: inline-block;
}

.jo-video-shop-video-status-form span {
    padding-left: 30px;
    display: inline-block;
}

.jo-video-shop-video-status-form span::before,
.jo-video-shop-video-status-form span::after {
    content: "";
    position: absolute;
    width: 20px;
    aspect-ratio: 1/1;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.jo-video-shop-video-status-form span::after {
    width: 8px;
    aspect-ratio: 1/1;
    background-color: var(--ttRed);
    border: none;
    left: 6px;
    opacity: 0;
}

.jo-video-shop-video-status-form input[type=radio]:checked+span::after {
    opacity: 1;
}

.jo-video-shop-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

@media screen and (max-width: 1599px) {
    .jo-video-shop-row {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 20px;
    }
}

.jo-video-shop-item .premium-badge {
    position: absolute;
    top: clamp(20px, 1.58vw, 30px);
    left: clamp(20px, 1.58vw, 30px);
    width: clamp(40px, 2.63vw, 50px);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--ttRed);
    border-radius: 50%;
    padding-top: 5px;
}

.jo-video-shop-item .jo-video-card__btn {
    transform: translate(0);
    bottom: clamp(20px, 1.58vw, 30px);
    left: clamp(20px, 1.58vw, 30px);
    top: auto;
    width: clamp(40px, 2.63vw, 50px);
}

.jo-video-shop-item .jo-video-card__infos {
    color: var(--ttRed);
    font-weight: 500;
}

.jo-video-shop-item .jo-video-card__title:hover {
    color: var(--ttRed);
}

.jo-video-shop-details {
    padding-top: 50px;
    padding-bottom: 50px;
}

.jo-video-shop-details-video-cover {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: clamp(17px, 1.21vw, 23px);
}

.jo-video-shop-details-video-cover .jo-video-card__btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    color: var(--ttRed);
    width: clamp(50px, 3.68vw, 70px);
    font-size: clamp(15px, 0.95vw, 18px);
}

.jo-video-shop-details-video-cover .jo-video-card__btn:hover {
    color: var(--white);
    background-color: var(--ttRed);
}

.jo-video-shop-details-title {
    font-weight: 600;
    font-size: clamp(22px, 1.58vw, 30px);
    margin-bottom: clamp(13px, 0.84vw, 16px);
}

.jo-video-shop-details-descr {
    color: var(--ttGray2);
    font-size: clamp(13px, 0.79vw, 15px);
}

.jo-video-shop-details-sidebar>* {
    margin-bottom: 0;
}

.jo-video-shop-details-sidebar-title {
    font-weight: 600;
    font-size: clamp(15px, 0.95vw, 18px);
}

.jo-video-shop-details-video-info {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: clamp(15px, 1.58vw, 30px);
}

@media screen and (max-width: 1799px) {
    .jo-video-shop-details-video-info {
        padding: clamp(15px, 1.28vw, 30px);
    }
}

.jo-video-shop-details-video-info:last-child {
    border: none;
}

.jo-video-shop-details-video-info p {
    font-size: 14px;
}

.jo-video-shop-details-video-info .jo-btn {
    width: 100%;
    margin-top: clamp(10px, 1vw, 19px);
}

@media screen and (max-width: 1799px) {
    .jo-video-shop-details-video-info .jo-btn {
        padding: 0 15px;
    }
}

.jo-video-shop-details-video-info .jo-btn i {
    font-size: 10px;
}

.jo-login {
    padding: 12.4vw 0 10.19vw 38.62vw;
    background: url(../img/login-bg.jpg) no-repeat center center;
    background-size: cover;
}

@media screen and (max-width: 767px) {
    .jo-inner-blogs {
        padding: 30px 0 !important;
    }

    .jo-login {
        padding: 12.4vw 0 10.19vw 28.62vw;
    }
}

@media screen and (max-width: 479px) {
    .jo-login {
        padding: 12.4vw 15px 10.19vw 15px;
    }
}

.jo-auth-form-wrapper {
    background-color: var(--white);
    width: max-content;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    max-width: clamp(310px, 30.11vw, 573px);
}

@media screen and (max-width: 767px) {
    .jo-auth-form-wrapper {
        max-width: clamp(290px, 60.11vw, 573px);
    }
}

@media screen and (max-width: 479px) {
    .jo-auth-form-wrapper {
        max-width: clamp(290px, 100%, 100%);
        width: 100%;
    }
}

.jo-auth-form-wrapper .heading {
    background-color: var(--ttRed);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(25px, 2.1vw, 40px);
    color: var(--white);
}

.jo-auth-form-wrapper .heading .logo {
    max-width: 40%;
}

.jo-auth-form-wrapper .heading h3 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: clamp(18px, 1.58vw, 30px);
}

.jo-auth-form-wrapper .bottom {
    padding: clamp(25px, 2.1vw, 40px);
}

.jo-auth-form-wrapper form input {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.22);
    height: clamp(45px, 4.2vw, 80px);
    padding: clamp(15px, 1.58vw, 30px);
    border-radius: 10px;
    margin-bottom: clamp(15px, 1.05vw, 20px);
}

.jo-auth-form-wrapper form .forget-password-btn {
    color: var(--ttGray2);
    font-size: clamp(13px, 0.84vw, 16px);
    padding-top: clamp(7px, 0.53vw, 10px);
    padding-bottom: clamp(15px, 1.16vw, 22px);
}

.jo-auth-form-wrapper form .forget-password-btn:hover {
    color: var(--ttRed);
}

.jo-auth-form-wrapper form .jo-btn {
    width: 100%;
    height: clamp(45px, 2.73vw, 52px);
}

.jo-auth-form-wrapper p {
    text-align: center;
    margin-top: clamp(20px, 1.58vw, 30px);
    font-size: clamp(13px, 0.84vw, 16px);
}

.jo-auth-form-wrapper p a {
    color: var(--ttRed);
}

.jo-auth-form-wrapper p a:hover {
    color: var(--black);
}

.jo-register {
    padding-top: clamp(50px, 5.25vw, 100px);
    padding-bottom: clamp(50px, 5.25vw, 100px);
}

.jo-checkout-wrapper {
    margin: 5.25vw 26.01vw;
}

@media screen and (max-width: 1199px) {
    .jo-checkout-wrapper {
        margin: 5.25vw 20.01vw;
    }
}

@media screen and (max-width: 991px) {
    .jo-checkout-wrapper {
        margin: 60px 15px;
    }
}

.jo-checkout-form {
    background-color: rgba(255, 0, 0, 0.06);
    border-radius: 20px;
}

.jo-checkout-form .form-block {
    padding: clamp(20px, 2.1vw, 40px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.jo-checkout-form .form-block:last-child {
    border-bottom: 0;
}

.jo-checkout-form .form-block .block-title {
    font-weight: 600;
    font-size: clamp(22px, 1.58vw, 30px);
    margin-bottom: clamp(18px, 1.21vw, 23px);
}

.jo-checkout-form .form-block p {
    font-size: clamp(13px, 0.84vw, 16px);
}

.jo-checkout-form .form-block p a {
    color: var(--ttRed);
}

.jo-checkout-form input {
    width: 100%;
    height: clamp(50px, 4.2vw, 80px);
    padding: clamp(15px, 1.58vw, 30px);
    border-radius: 10px;
    margin-bottom: clamp(15px, 1.05vw, 20px);
}

.jo-checkout-payment-methods label {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: clamp(8px, 0.79vw, 15px);
    margin-bottom: clamp(8px, 0.79vw, 15px);
    font-weight: 600;
}

.jo-checkout-payment-methods label>span::before,
.jo-checkout-payment-methods label>span::after {
    top: 16px;
}

.jo-checkout-payment-methods label .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.jo-checkout-note {
    width: 100%;
    background-color: var(--white);
    border-radius: 10px;
    padding: clamp(15px, 1.58vw, 30px);
    border: 1px solid transparent;
    height: 212px;
    margin-top: clamp(25px, 2.1vw, 40px);
    vertical-align: top;
    margin-bottom: clamp(30px, 2.36vw, 43px);
}

.jo-checkout-note:focus,
.jo-checkout-note:focus-visible,
.jo-checkout-note:focus-within {
    outline: none;
    border-color: var(--ttRed);
}

.jo-checkout-agreement-wrapper {
    margin-bottom: clamp(20px, 2.1vw, 40px);
}

.jo-checkout-agreement-wrapper label {
    padding-left: 30px;
    position: relative;
    display: inline-block;
}

.jo-checkout-agreement-wrapper label .txt::before,
.jo-checkout-agreement-wrapper label .txt::after {
    content: "";
    position: absolute;
    width: 20px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid var(--ttGray2);
    top: 4px;
    left: 0;
}

.jo-checkout-agreement-wrapper label .txt::after {
    width: 10px;
    top: 9px;
    left: 5px;
    border: none;
    background-color: var(--ttRed);
    opacity: 0;
}

.jo-checkout-agreement-wrapper label input:checked~.txt::after {
    opacity: 1;
}

.jo-checkout-total {
    margin-bottom: clamp(10px, 0.95vw, 18px);
}

.jo-checkout-total h4 {
    font-weight: 600;
    font-size: clamp(20px, 1.58vw, 30px);
    margin-bottom: 0.53vw;
}

.jo-checkout-total .number {
    font-weight: 600;
    font-size: clamp(24px, 2.1vw, 40px);
}

.jo-inner-blogs {
    padding: 40px 0;
}

.jo-inner-blogs-sidebar>* {
    margin-bottom: clamp(15px, 1.26vw, 24px);
}

.jo-inner-blogs-sidebar-widget {
    padding: clamp(25px, 2.1vw, 40px) clamp(15px, 1.58vw, 30px);
    background-color: rgba(255, 0, 0, 0.1);
    border-radius: 10px;
}

.jo-inner-blogs-sidebar-widget-title {
    font-weight: 700;
    font-size: clamp(18px, 1.16vw, 22px);
    color: var(--black);
    position: relative;
    padding-bottom: clamp(4px, 0.47vw, 9px);
    margin-bottom: clamp(15px, 1.58vw, 30px);
}

.jo-inner-blogs-sidebar-widget-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    width: clamp(35px, 2.63vw, 50px);
    background-color: var(--ttRed);
}

.jo-inner-blogs-search-form {
    background-color: var(--white);
    height: clamp(45px, 3.15vw, 60px);
    border-radius: 10px;
    padding: 0 clamp(12px, 1.05vw, 20px);
    display: flex;
    align-items: center;
}

.jo-inner-blogs-search-form input {
    width: 100%;
    background-color: transparent;
}

.jo-inner-blogs-search-form button {
    color: var(--ttRed);
    padding: 0;
    padding-top: 3px;
    font-size: 20px;
}

.jo-inner-blogs-categories a {
    background-color: var(--white);
    border-radius: 10px;
    height: clamp(46px, 2.94vw, 56px);
    padding: 0 clamp(15px, 1.05vw, 20px);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--black);
    margin-bottom: clamp(9px, 0.63vw, 12px);
}

.jo-inner-blogs-categories a:hover {
    background-color: var(--ttRed);
    color: var(--white);
}

.jo-inner-blogs-sidebar-post {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    align-items: center;
    gap: clamp(12px, 0.79vw, 15px);
    padding: clamp(12px, 1.05vw, 20px) 0;
}

.jo-inner-blogs-sidebar-post:first-child {
    padding-top: 0;
}

.jo-inner-blogs-sidebar-post:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.jo-inner-blogs-sidebar-post .img {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 10px;
}

.jo-inner-blogs-sidebar-post .img img {
    width: 78px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.jo-inner-blogs-sidebar-post .date {
    font-size: clamp(12px, 0.74vw, 14px);
    color: var(--ttRed);
    display: flex;
    align-items: center;
    gap: 8px;
}

.jo-inner-blogs-sidebar-post .date .icon {
    padding-top: 4px;
    font-size: 16px;
}

.jo-inner-blogs-sidebar-post .title {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

.jo-inner-blogs-sidebar-post .title a {
    font-weight: 600;
    color: var(--black);
}

.jo-inner-blogs-sidebar-post .title a:hover {
    color: var(--ttRed);
}

.jo-inner-blogs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(3px, 0.63vw, 6px);
}

.jo-inner-blogs-tags a {
    height: clamp(28px, 1.79vw, 34px);
    padding: 0 clamp(9px, 0.63vw, 12px);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--black);
}

.jo-inner-blogs-tags a:hover {
    background-color: var(--ttRed);
    color: var(--white);
}

.jo-inner-blog {
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: clamp(15px, 1.58vw, 30px);
    margin-bottom: clamp(18px, 1.26vw, 24px);
    border-radius: 20px;
}

.jo-inner-blog-img {
    margin-bottom: clamp(18px, 1.26vw, 24px);
    border-radius: 20px;
    overflow: hidden;
}

.jo-inner-blog-img img {
    width: 100%;
    aspect-ratio: 869/470;
    object-fit: cover;
}

.jo-inner-blog-infos {
    display: flex;
    flex-wrap: wrap;
    gap: 4px clamp(15px, 1.58vw, 30px);
    font-size: 14px;
    margin-bottom: clamp(11px, 0.74vw, 14px);
}

.jo-inner-blog-infos>*:not(:first-child) {
    position: relative;
    padding-left: clamp(22px, 1.94vw, 37px);
}

.jo-inner-blog-infos>*:not(:first-child)::before {
    content: "";
    position: absolute;
    width: 7px;
    aspect-ratio: 1/1;
    background-color: var(--ttRed);
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.jo-inner-blog-infos .author {
    color: var(--ttRed);
    font-weight: 500;
}

.jo-inner-blog-infos .author .name {
    color: var(--ttGray2);
    font-weight: 400;
}

.jo-inner-blog-infos .date {
    color: var(--black);
}

.jo-inner-blog-title {
    font-weight: 700;
    font-size: clamp(20px, 1.26vw, 24px);
    margin-bottom: clamp(10px, 0.79vw, 15px);
}

.jo-inner-blog-title a {
    color: var(--black);
}

.jo-inner-blog-title a:hover {
    color: var(--ttRed);
}

.jo-inner-blog-descr {
    color: var(--ttGray2);
    margin-bottom: clamp(18px, 1.37vw, 26px);
}

.jo-inner-blog-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.jo-inner-blog-actions>* {
    height: clamp(36px, 2.21vw, 42px);
    border-radius: 10px;
}

.jo-inner-blog-actions a {
    aspect-ratio: 1/1;
    background-color: rgba(255, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ttRed);
    font-size: clamp(17px, 1.05vw, 20px);
}

.jo-inner-blog-actions a:hover {
    background-color: var(--ttRed);
    color: var(--white);
}

.jo-inner-blog-actions .share-btn {
    border: 1px solid rgba(255, 0, 0, 0.1);
    padding: 0 clamp(10px, 1.16vw, 22px);
    display: flex;
    align-items: center;
    gap: 10px;
}

.jo-inner-blog-actions .share-btn:hover {
    background-color: var(--ttRed);
    color: var(--white);
}

.jo-inner-blog-actions .share-btn:hover i {
    color: var(--white);
}

.jo-inner-blog-actions .share-btn i {
    color: var(--ttRed);
    padding-top: 2px;
    transition: 0.4s ease;
}

.jo-inner-pricing-plan {
    background-color: var(--white);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    padding: clamp(25px, 2.1vw, 40px);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 16px;
    background: url(../img/pricing-plan-bg.svg) rgba(0, 0, 0, 0.02) no-repeat;
    background-position-x: 0;
    background-position-y: 0;
    background-size: cover;
}

.jo-inner-pricing-plan::before {
    content: "";
    position: absolute;
    z-index: -1;
    background: url(../img/pricing-plan-vector.svg) no-repeat center center;
    background-size: 100% 100%;
    width: 317px;
    height: 268px;
    top: 60%;
    transform: translateY(-50%);
    right: 0;
    pointer-events: none;
}

.jo-inner-pricing-plan .plan-icon {
    width: clamp(60px, 3.68vw, 70px);
    aspect-ratio: 1/1;
    border-radius: 8px;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}

.jo-inner-pricing-plan .plan-icon img {
    max-width: clamp(35px, 2.63vw, 50px);
}

.jo-inner-pricing-plan .heading {
    padding-left: clamp(45px, 3.68vw, 70px);
    padding-left: 80px;
    border-bottom: 1px solid #D4DCFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: clamp(25px, 2.1vw, 40px);
}

.jo-inner-pricing-plan .heading .title {
    font-weight: 700;
    font-size: clamp(20px, 1.26vw, 24px);
}

.jo-inner-pricing-plan .heading .sub-title {
    font-size: clamp(13px, 0.84vw, 16px);
    font-weight: 300;
}

.jo-inner-pricing-plan .heading .price {
    font-weight: 700;
    font-size: clamp(24px, 1.58vw, 30px);
}

.jo-inner-pricing-plan .plan-features {
    padding: clamp(25px, 2.1vw, 40px) 0 clamp(15px, 1.58vw, 30px);
}

.jo-inner-pricing-plan .plan-features li {
    position: relative;
    padding: 0 24px;
    font-weight: 600;
    margin-bottom: clamp(9px, 0.63vw, 12px);
}

.jo-inner-pricing-plan .plan-features li:last-child {
    margin-bottom: 0;
}

.jo-inner-pricing-plan .plan-features li::before,
.jo-inner-pricing-plan .plan-features li::after {
    content: "";
    position: absolute;
    top: 3px;
    width: 16px;
    aspect-ratio: 1/1;
}

.jo-inner-pricing-plan .plan-features li::before {
    left: 0;
    background: url(../img/checkmark.svg) no-repeat center center;
    background-size: cover;
}

.jo-inner-pricing-plan .plan-features li::after {
    right: 0;
    content: "\f121";
    font-family: flaticon_jio_-_influencer !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #445375;
}

.jo-inner-pricing-plan-btn {
    height: clamp(45px, 2.94vw, 56px);
    background-color: var(--ttRed);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    gap: 10px;
    font-size: clamp(13px, 0.84vw, 16px);
}

.jo-inner-pricing-plan-btn:hover {
    color: var(--white);
    background-color: var(--black);
}

.jo-inner-pricing-plan-btn i {
    font-size: 14px;
}

.jo-contact-info {
    padding: clamp(15px, 1.58vw, 30px);
    border-radius: 16px;
    text-align: center;
    background: linear-gradient(#140f1ef2, #1e142df2) padding-box, linear-gradient(303deg, #ed09c5 0%, rgba(195, 153, 0, 0) 30.57%, rgba(195, 108, 18, 0) 66.14%, #0d58eb 100%) border-box;
    border: 1px solid transparent;
    border-radius: 1rem;
}

.jo-contact-info .icon {
    border: 1px solid #2859f8ad;
    border-radius: 30px;
    width: clamp(55px, 3.68vw, 70px);
    aspect-ratio: 1/1;
    margin: auto;
    padding: 5px;
    color: var(--ttRed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(25px, 1.84vw, 35px);
    margin-bottom: clamp(10px, 0.84vw, 16px);
}

.jo-contact-info .title {
    color: #fff;
    font-weight: 700;
    font-size: clamp(18px, 1.26vw, 24px);
    margin-bottom: clamp(7px, 0.53vw, 10px);
}

.jo-contact-info .title a {
    color: var(--black);
}

.jo-contact-info .title a:hover {
    color: var(--ttRed);
}

.jo-contact-info .descr {
    margin-bottom: 0;
    color: var(--white);
}

.jo-inner-contact-form-section {
    padding: 40px 0;
}

.jo-inner-contact-form-wrapper {
    background: linear-gradient(145deg, rgba(20, 15, 30, 0.95), rgba(30, 20, 45, 0.95));
    padding: 22px;
    border-radius: 16px;
}

.jo-inner-contact-from-left-title {
    font-weight: 700;
    font-size: clamp(25px, 2.1vw, 40px);
    margin-bottom: clamp(33px, 3.05vw, 58px);
}

.jo-inner-contact-img {
    background: url(../img/inner-contact-img-vector.svg) no-repeat top center;
    background-size: contain;
    padding-top: 25px;
}

.jo-inner-contact-form-title {
    font-weight: 700;
    font-size: clamp(24px, 1.58vw, 30px);
}

.jo-inner-contact-form input,
.jo-inner-contact-form textarea,
.jo-inner-contact-form .ss-main {
    height: 48px;
    border: 1px solid #ff22d866;
    border-radius: 8px;
    width: 100%;
    line-height: 38px;
}

.jo-inner-contact-form input:focus,
.jo-inner-contact-form input:focus-visible,
.jo-inner-contact-form input:focus-within,
.jo-inner-contact-form textarea:focus,
.jo-inner-contact-form textarea:focus-visible,
.jo-inner-contact-form textarea:focus-within,
.jo-inner-contact-form .ss-main:focus,
.jo-inner-contact-form .ss-main:focus-visible,
.jo-inner-contact-form .ss-main:focus-within {
    outline: none;
    box-shadow: none;
}

.jo-inner-contact-form textarea {
    padding: clamp(15px, 1.05vw, 20px);
    height: 100px;
    vertical-align: top;
}

.jo-inner-contact-form .submit-btn {
    height: clamp(45px, 3.15vw, 60px);
    background-color: var(--ttRed);
    border-radius: 8px;
    width: 100%;
    color: var(--white);
    font-weight: 600;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.jo-inner-contact-form .submit-btn:hover {
    background-color: var(--black);
    color: var(--white);
}

.jo-inner-contact-form .submit-btn i {
    font-size: 12px;
    padding-top: 3px;
}

.ss-content .ss-list .ss-option.ss-highlighted,
.ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
    background-color: var(--ttRed);
}

.ss-content .ss-list .ss-option:hover {
    background-color: var(--ttRed);
}

.jo-blog-details-img {
    border-radius: 20px;
    overflow: hidden;
}

.jo-blog-details-txt p {
    font-size: 15px;
    color: var(--ttGray2);
}

.jo-blog-details-txt ul {
    font-size: clamp(13px, 0.79vw, 15px);
    color: var(--black);
    font-weight: 500;
    margin-bottom: clamp(30px, 1.58vw, 30px);
    margin-top: clamp(20px, 1.58vw, 30px);
}

.jo-blog-details-txt ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 15px;
}

.jo-blog-details-txt ul li::before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Pro';
    font-style: normal;
    font-weight: 900;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ttRed);
    font-size: 14px;
}

.jo-blog-details-txt ul li:last-child {
    margin-bottom: 0;
}

.jo-blog-details-txt blockquote {
    background-color: rgba(255, 0, 0, 0.05);
    padding: clamp(30px, 2.1vw, 40px) clamp(20px, 1.58vw, 30px);
    padding-right: clamp(80px, 6.83vw, 130px);
    border-left: 4px solid var(--ttRed);
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    position: relative;
}

@media screen and (max-width: 479px) {
    .jo-blog-details-txt blockquote {
        flex-wrap: wrap;
    }
}

.jo-blog-details-txt blockquote .quotation-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.jo-blog-details-inner-imgs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(15px, 1.58vw, 30px);
    margin-bottom: 15px;
}

@media screen and (max-width: 479px) {
    .jo-blog-details-inner-imgs {
        grid-template-columns: repeat(1, 1fr);
    }
}

.jo-blog-details-inner-imgs img {
    width: 100%;
    aspect-ratio: 450/269;
    border-radius: 15px;
}

.jo-blog-details-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    border: solid #D4DCFF;
    border-width: 1px 0 1px 0;
    padding: 20px 0;
}

.jo-blog-details-actions .tags-wrapper,
.jo-blog-details-actions .share {
    display: flex;
    gap: 15px;
    align-items: center;
}

.jo-blog-details-actions .title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
}

.jo-blog-details-actions .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.jo-blog-details-actions .tags a {
    height: 34px;
    background-color: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 0 16px;
    color: var(--black);
}

.jo-blog-details-actions .tags a:hover {
    background-color: var(--ttRed);
    color: var(--white);
}

.jo-blog-details-actions .share-options {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 18px;
}

.jo-blog-details-actions .share-options a {
    color: #445375;
}

.jo-blog-details-actions .share-options a:hover {
    color: var(--ttRed);
}

.jo-blog-comments {
    margin-top: clamp(30px, 3.15vw, 60px);
}

.jo-blog-comments-title {
    font-weight: 600;
    font-size: clamp(20px, 1.26vw, 24px);
    margin-bottom: clamp(28px, 1.84vw, 35px);
}

.jo-blog-comment {
    display: flex;
    gap: 20px;
}

.jo-blog-comment:not(:last-child) {
    border-bottom: 1px solid #D4DCFF;
    padding-bottom: clamp(25px, 2.1vw, 40px);
    margin-bottom: clamp(25px, 2.1vw, 40px);
}

.jo-blog-comment-user-img {
    flex-shrink: 0;
}

.jo-blog-comment-user-img img {
    width: clamp(56px, 5.04vw, 96px);
    border-radius: 50%;
}

.jo-blog-comment-txt {
    padding-top: clamp(20px, 1.31vw, 25px);
}

.jo-blog-comment-txt .heading {
    margin-bottom: 12px;
}

.jo-blog-comment-txt .name {
    font-weight: 500;
    font-size: clamp(17px, 1.05vw, 20px);
}

.jo-blog-comment-txt .date {
    color: #445375;
    font-size: clamp(13px, 0.84vw, 16px);
}

.jo-blog-comment-txt .descr {
    color: #445375;
}

.jo-blog-comment-txt .reply-btn {
    border-radius: 999px;
    background-color: rgba(255, 0, 0, 0.1);
    height: 30px;
    font-size: 14px;
    padding: 0 16px;
    color: var(--ttRed);
}

.jo-blog-comment-txt .reply-btn:hover {
    background-color: var(--ttRed);
    color: var(--white);
}

.jo-blog-comment-form-wrapper {
    padding-top: clamp(30px, 3.15vw, 60px);
    border-top: 1px solid rgba(255, 0, 0, 0.1);
    margin-top: clamp(25px, 2.1vw, 40px);
}

.jo-blog-comment-form-title {
    font-weight: 600;
    font-size: clamp(21px, 1.26vw, 24px);
    margin-bottom: clamp(25px, 2.1vw, 40px);
}

.jo-blog-comment-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
}

.jo-blog-comment-form input,
.jo-blog-comment-form textarea {
    height: clamp(55px, 2.94vw, 56px);
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 4px;
    width: 100%;
    padding: 0 clamp(15px, 1.05vw, 20px);
}

.jo-blog-comment-form input:focus,
.jo-blog-comment-form input:focus-visible,
.jo-blog-comment-form input:focus-within,
.jo-blog-comment-form textarea:focus,
.jo-blog-comment-form textarea:focus-visible,
.jo-blog-comment-form textarea:focus-within {
    outline: none;
}

.jo-blog-comment-form textarea {
    padding: clamp(15px, 1.05vw, 20px);
    height: 200px;
    vertical-align: top;
}

.jo-blog-comment-form button {
    background-color: var(--ttRed);
    height: clamp(45px, 2.94vw, 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(18px, 1.26vw, 24px);
    border-radius: 6px;
    gap: 8px;
    color: var(--white);
    margin-top: clamp(15px, 1.58vw, 30px);
}

.jo-blog-comment-form button i {
    font-size: 22px;
    padding-top: 3px;
}

/*======================================
   Member Area
========================================*/
.inflanar-influencer {
    gap: 20px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: linear-gradient(#140f1ef2, #1e142df2) padding-box, linear-gradient(213deg, #ed09c5 0%, rgba(195, 153, 0, 0) 30.57%, rgba(195, 108, 18, 0) 66.14%, #0d58eb 100%) border-box;
    border: 1px solid transparent;
    border-radius: 1rem;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.inflanar-influencer.fade-in,
.inflanar-influencer.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.inflanar-influencer:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.5);
}

.inflancer-hborder {
    width: 1px;
    background: #f4f4f424;
    min-height: 40px;
}

.inflanar-influencer__head {
    position: relative;
    text-align: center;
    width: 30%;
}

.inflanar-influencer__head img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(1);
}

.inflanar-influencer:hover .inflanar-influencer__head img {
    border-color: rgba(138, 43, 226, 1);
    transform: scale(1.08);
}

.inflanar-influencer__body {
    position: relative;
    z-index: 1;
    width: 70%;
}

.inflanar-influencer__title span {
    display: inline-block;
    color: #ffffff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: .5px;
}

.inflanar-influencer__title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.inflanar-influencer__title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.inflanar-influencer__title a:hover {
    color: #8a2be2;
}

.inflanar-influencer:hover .inflanar-influencer__title a {
    color: #FE2C55;
}

.inflanar-influencer__follower {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    margin-bottom: 10px;
}

.inflanar-influencer__follower--single {
    text-align: center;
    flex: 1;
}

.inflanar-influencer__follower--single b {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #8a2be2;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #8a2be2 0%, #da70d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inflanar-influencer__follower--single span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inflanar-influencer__head.inflanar-influencer__head--v2 {
    background-color: #D2F0F4;
}

.inflanar-influencer__head.inflanar-influencer__head--v3 {
    background-color: #EAF8C2
}

.inflanar-influencer__head.inflanar-influencer__head--v4 {
    background-color: #FCE7FF
}

/* Stagger animation delays for influencer cards - smoother timing */
.inflanar-influencer:nth-child(1) {
    transition-delay: 0.05s;
}

.inflanar-influencer:nth-child(2) {
    transition-delay: 0.15s;
}

.inflanar-influencer:nth-child(3) {
    transition-delay: 0.25s;
}

.inflanar-influencer:nth-child(4) {
    transition-delay: 0.35s;
}

.inflanar-influencer:nth-child(5) {
    transition-delay: 0.45s;
}

.inflanar-influencer:nth-child(6) {
    transition-delay: 0.55s;
}

.inflanar-influencer:nth-child(7) {
    transition-delay: 0.65s;
}

.inflanar-influencer:nth-child(8) {
    transition-delay: 0.75s;
}

.inflanar-influencer:nth-child(9) {
    transition-delay: 0.85s;
}

.inflanar-influencer:nth-child(10) {
    transition-delay: 0.95s;
}

/* View Arrow Styles */
.view-aerrow {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 10;
}

.view-aerrow:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: rotate(45deg) scale(1.1);
    color: #fff;
}

.view-aerrow svg {
    width: 20px;
    height: 20px;
}

/* Button Styles */
.inflanar-influencer .jo-btn {
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.inflanar-influencer .jo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.inflanar-influencer:hover .jo-btn::before {
    left: 100%;
}

.inflanar-influencer .jo-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.inflanar-influencer .jo-btn:hover i {
    transform: translateX(5px);
}


/*======================================
   Influencers Pages
========================================*/
.influencers-sidebar {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.08);
    padding: 35px 30px;
}

.inflanar-influencer.inflanar-influencer__sidebar {
    background: #FFFFFF;
    padding: 5px;
    z-index: 333;
    border-radius: 50%;
}

.inflanar-influencer.inflanar-influencer__sidebar .inflanar-influencer__head {
    background: transparent;
    padding: 0;
}

.inflanar-influencer.inflanar-influencer__sidebar .inflanar-influencer__head img {
    width: 100%;
    min-width: 100%;
    height: 100%;
    box-shadow: none;
    border-radius: 50%;
}

.inflanar-influencer.inflanar-influencer__sidebar .inflanar-influencer__follower {
    padding: 0;
    border: none;
}

.influencers-sidebar__tag {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.influencers-sidebar__tag a {
    padding: 11px 15px;
    border-radius: 4px;
    border: 1px solid rgba(51, 51, 51, 0.12);
    background: #FFF;
    box-shadow: 20px 20px 45px 5px rgba(0, 0, 0, 0.10);
    font-size: 14px;
}

.influencers-sidebar__tag a:hover {
    border-color: transparent;
    box-shadow: none;
    background-color: #FE2C55;
    color: #fff;
}

.influencers-sidebar__title {
    font-size: 24px;
    margin-bottom: 15px;
}

.influencers-sidebar__title {
    font-size: 24px;
    margin-bottom: 15px;
}

.influencers-sidebar__selist--title {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.influencers-sidebar__elist {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.influencers-sidebar__selist--text {}


.influencers-sidebar__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.influencers-sidebar__contact li {
    display: flex;
    align-items: center;
    gap: 0;
}

.influencers-sidebar__contact li i {
    min-width: 30px;
}

.influencers-sidebar__contact li,
.influencers-sidebar__contact li a {
    color: #647082;
    font-size: 16px;
}

.influencers-sidebar__contact li i {
    font-size: 18px;
    color: #FE2C55;
}

.influencers-sidebar__contact li:hover,
.influencers-sidebar__contact li a:hover {
    color: #FE2C55;
    cursor: pointer;
}

.influencers__ptitle {
    font-size: 36px;
    margin: 0;
}

.influencers-profile {
    position: relative;
}

.influencers-pinfo {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 50px;
    gap: 20px;
}

.influencers-pinfo__ssocial {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.influencers-pinfo__ssocial li img {
    max-width: 32px;
}

.influencers-pinfo__title {
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    line-height: initial;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
}

.influencers-pinfo__title span {
    font-size: 14px;
    display: block;
    font-weight: 500;
    background: #073da4;
    display: inline-block;
    color: #fff;
    padding: 6px 15px;
    width: auto;
    max-width: fit-content;
    border-radius: 20px;
}

.influencers-pinfo__content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.influencers-pinfo__label {
    color: #fff;
}

.influencers-pinfo__reviews {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #333333;
    background: #FD2C55;
    width: max-content;
    color: #fff;
    padding: 2px 10px;
    border-radius: 30px;
    font-size: 13px;
}

.influencers-pinfo__reviews span {
    font-weight: 700;
}

.influencers-pinfo__sbutton {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: end;
}

.influencers-pinfo__social {
    max-width: 175px;
}

.influencers-pinfo__sbutton .inflanar-btn {
    background: #fff;
    color: #333;
    height: 40px;
    width: 165px;
    font-size: 18px;
    padding: 0;
}

.influencers-pinfo__sbutton .inflanar-btn.inflanar-btn__active,
.influencers-pinfo__sbutton .inflanar-btn.inflanar-btn:hover {
    background: #1778F2;
    border-color: transparent;
    color: #fff;
}

.influencers-pinfo__card {
    background: linear-gradient(135deg, #FEEAE6 0%, #F9E3FC 100%);
    padding: 20px 20px 0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.influencers-pinfo__card--title {
    margin: 0;
    font-size: 18px;
}

.influencers-pinfo__card--info {
    color: #881064;
    font-size: 24px;
    font-weight: 700;
}

.influencers-pinfo__card.influencers-pinfo__card--color2 {
    background: linear-gradient(135deg, #F9E3FC 0%, #FEEAE6 100%);
}

.influencers-pinfo__card.influencers-pinfo__card--color2 .influencers-pinfo__card--info {
    color: #881064;
}

.influencers-pinfo__card.influencers-pinfo__card--color3 {
    background: linear-gradient(135deg, #F9E3FC 0%, #FEEAE6 100%);
}

.influencers-pinfo__card.influencers-pinfo__card--color3 .influencers-pinfo__card--info {
    color: #881064;
}

.influencers-pinfo__card.influencers-pinfo__card--color4 {
    background: linear-gradient(135deg, #DBFBFF 0%, #B2F7FF 100%);
}

.influencers-pinfo__card.influencers-pinfo__card--color4 .influencers-pinfo__card--info {
    color: #881064;
}

/* Joining Form */
.inflanar-joining__inside {
    border-radius: 10px;
    background: var(--w, #FFF);
    box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.08);
    padding: 75px;
}

.inflanar-author-infos {
    display: flex;
    justify-content: end;
    align-items: end;
}

.inflanar-signin__tsmall {
    color: #333;
    font-weight: 500;
    font-size: 18px;
    margin: 0 0 10px;
}

.inflanar-signin__options--join {
    justify-content: center;
}

.inflanar-author-profile__edit input {
    display: none;
}

.inflanar-author-profile__upload {
    text-align: center;
    color: #fff;
    right: 8px;
    background: #FE2C55;
    cursor: pointer;
    padding: 10px 60px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    font-weight: 500;
}

.inflanar-author-profile__note b {
    font-weight: 500;
    color: #333;
}

.form-group__input--select .flag-label {
    position: absolute;
    top: 20%;
    background: transparent;
    border: none;
    padding: 0 15px 0 25px;
    border-right: 1px solid #FE6180;
    height: 60%;
    display: flex;
    align-items: center;
    font-weight: 400;
    border-radius: 0px;
    color: #333;
}

.form-group__input--select input::-webkit-input-placeholder {
    opacity: 1;
    color: #333 !important;
}

.form-group__input--select input::-moz-placeholder {
    opacity: 1;
    color: #333 !important;
}

.form-group__input--select input::-ms-input-placeholder {
    opacity: 1;
    color: #333 !important;
}

.inflanar-form-input .form-group__input--select input {
    padding-left: 145px;
}

.form-group__input--select img {
    margin-right: 10px;
}

/* Profile Update */
.inflanar-author-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
}

.inflanar-author-profile__title {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.inflanar-author-profile__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inflanar-author-profile__thumb {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.inflanar-author-profile__thumb>img {
    min-width: 160px;
    height: 160px;
    min-width: ;
    max-width: 160px;
}

@media only screen and (min-width: 0px) and (max-width: 991px) {
    .inflanar-author-infos {
        justify-content: center;
        align-items: center;
    }

    .inflanar-author-profile__thumb,
    .inflanar-author-profile {
        gap: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .inflanar-joining__inside {
        padding: 30px;
    }

    .inflanar-author-profile__upload {
        padding: 0 30px;
    }

    .influencers-pinfo__title {
        font-size: 32px;
    }

    .influencers-pinfo__ssocial {
        margin-top: 30px;
    }

    .influencers-pinfo {
        margin: 0;
    }
}

@media only screen and (max-width: 767px) {
    .inflanar-joining__inside {
        padding: 25px;
    }

    .inflanar-author-infos {
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }

    .influencers-profile {
        top: -130px;
        margin-bottom: -130px;
    }

    .influencers-pinfo__title {
        font-size: 25px;
    }

    .influencers-pinfo__ssocial {
        gap: 8px;
        margin-top: 20px;
    }

    .influencers-pinfo {
        margin-bottom: 20px;
    }
}


/*======================================
   breadcrumbs CSS
========================================*/
.inflanar-breadcrumb {
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.inflanar-breadcrumb__inner {
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.inflanar-breadcrumb__title {
    font-size: 42px;
}

.inflanar-breadcrumb__menu {
    display: flex;
    gap: 10px;
}

.inflanar-breadcrumb__menu li {
    color: #333;
    font-size: 16px;
}

.inflanar-breadcrumb__content {
    text-align: left;
}

.inflanar-breadcrumb__menu li::after {
    content: "/";
    color: #333;
}

.inflanar-breadcrumb__menu li:after {
    padding-left: 10px;
}

.inflanar-breadcrumb__menu li:last-child:after {
    display: none;
}

.inflanar-breadcrumb__menu li.active a {
    color: #FE2C55;
}

.inflanar-breadcrumb__menu li:hover a {
    opacity: 0.8;
}

.inflanar-breadcrumb__menu li:last-child {
    margin: 0;
}

.inflanar-breadcrumb__group {
    position: absolute;
    top: 50px;
    right: -130px;
    width: 100%;
    height: 100%;
    min-width: 680px;
}

.inflanar-breadcrumb__thumb {
    z-index: 333;
}

.inflanar-breadcrumb__thumb img {
    width: 512px;
    height: 330px;
}

@media only screen and (min-width: 0px) and (max-width: 991px) {
    .inflanar-breadcrumb {
        height: 300px;
    }

    .inflanar-breadcrumb__img {
        max-width: 400px;
    }

    .inflanar-breadcrumb__thumb img {
        width: 100%;
        height: 215px;
    }

    .inflanar-breadcrumb__group {
        min-width: 400px;
        right: -50px;
    }
}

@media only screen and (max-width: 767px) {
    .inflanar-breadcrumb {
        height: 200px;
    }

    .inflanar-breadcrumb__img {
        display: none;
    }

    .inflanar-breadcrumb__title {
        font-size: 30px;
    }
}


.jo-slider-nav-btn {
    color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: background 0.2s, color 0.2s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.jo-reels-slider-prev {
    left: 10px;
}

.jo-reels-slider-next {
    right: 10px;
}

.jo-slider-nav-btn:hover {
    background: #22182e;
    color: var(--white);
}

.jo-slider-nav-btn .arrow {
    display: inline-block;
    width: 18px;
    height: 18px;
}

.jo-slider-nav-btn .arrow-left {
    border: solid #333;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    margin-left: 2px;
}

.jo-slider-nav-btn .arrow-right {
    border: solid #333;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    margin-right: 2px;
}

.reel-action-buttons {
    position: absolute;
    bottom: 40px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
}

.reel-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-action-btn i {
    pointer-events: none;
}

.reel-action-btn.liked i {
    color: #ff0000;
}


.section-close {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: center;
    align-items: center;
    display: flex;
}

.line-full-w {
    background-color: #ffffff1a;
    width: 100%;
    height: 1px;
}

.line-full-w {
    background-color: #ffffff1a;
    width: 100%;
    height: 1px;
}

.icon-embed-custom-hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 15%;
    max-height: 30rem;
    display: flex;
    position: absolute;
    inset: 151px auto auto 0%
}

.icon-embed-custom-hero.is-right {
    width: 15%;
    left: auto;
    right: 0%;
}

.icon-embed-custom-hero.is-right.is-center,
.icon-embed-custom-hero.is-center {
    top: 20vh;
    bottom: auto
}

.absolute-star {
    z-index: -1;
    position: absolute;
    top: -50%;
}

.contact-pstn img {}

.influencer-profile__inner {
    margin-top: 120px;
}

.user-type-selector {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 10px 0;
}

.user-type-option {
    flex: 1;
    position: relative;
    cursor: pointer;
    margin: 0;
}

.user-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.user-type-option span {
    display: block;
    padding: 12px 20px;
    border-radius: 1rem;
    background-color: #444054;
    color: #fff;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.user-type-option input[type="radio"]:checked+span {
    background: linear-gradient(90deg, var(--tt-pink) 0%, var(--tt-gold) 100%);
}

.creator-fields,
.brand-fields {
    display: none;
}

.creator-fields.active,
.brand-fields.active {
    display: block;
}

@media (max-width: 576px) {
    .user-type-selector {
        flex-direction: column;
    }
}

.gradient-bg {
    background: radial-gradient(circle at top left,
            /* pink glow in top-left */
            #f706d361 0%, transparent 20%), radial-gradient(circle at bottom right,
            /* orange/pink glow in bottom-right */
            #0657f352 0%, transparent 20%);
    background-color: #22182e;
    background-attachment: fixed;
}


.jo-partners-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee-content.paused {
    animation-play-state: paused;
}

.partner-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item img {
    width: 175px;
    height: 45px;
    /* width: auto; */
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Responsive Styles */
@media screen and (max-width: 767px) {

    .inflanar-influencer__title {
        font-size: 20px;
        margin-top: 10px;
    }

    .inflanar-influencer__title span {
        padding: 4px 15px;
        font-size: 12px;
    }

    .inflanar-influencer__follower--single b {
        font-size: 18px;
        margin-bottom: 0px;
    }

    .inflanar-influencer__follower--single span {
        font-size: 12px;
    }
}

.view-aerrow {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-aerrow:hover {
    color: #fff;
}

.view-aerrow i {
    font-size: 16px;
}

.influencer-profile__img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: linear-gradient(#382f43, #382f43) padding-box, linear-gradient(213deg, #ed09c5 0%, rgba(195, 153, 0, 0) 30.57%, rgba(195, 108, 18, 0) 66.14%, #0d58eb 100%) border-box;
    border: 1px solid transparent;
    border-radius: 1rem;
}

.influencer-profile__img:hover .influencer-profile__head img {
    border-color: rgba(138, 43, 226, 1);
    transform: scale(1.05);
}

.jo-talents {
    padding: 40px 0;
    overflow: hidden;
}

.talent-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    height: 400px;
    transition: transform 0.3s ease;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.talent-card:hover {
    transform: translateY(-7px);
}

.talent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.talent-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.talent-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    z-index: 2;
}

.talent-reach {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}

.talent-reach svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.talent-name {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.talent-name span {
    background: linear-gradient(90deg, #ff0066 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.talent-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.talent-tag {
    padding: 3px 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.talent-card-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d635e57a 0%, #1661fb7a 100%);
    text-align: center;
    padding: 30px;
}

.talent-card-cta h6 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.talent-card-cta .talent-card-content {
    position: relative;
    padding: 0;
}

.talent-card-cta .jo-btn {
    background: #fff;
    color: #e006a9;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.talent-card-cta .jo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.talent-reachs {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}

.talent-reachs svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}


/*
* ===============================
*  START: Hero Section
* ===============================
*/
.hero-section {
    padding: 120px 0 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-section .intro_text svg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 46%;
    top: 55%;
    transform: translate(-50%, -50%) scale(1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    animation: 3s pulsate infinite alternate ease-in-out;
}

.hero-section .intro_text svg text {
    text-transform: uppercase;
    stroke-width: 2;
    stroke: #2a1454;
    fill: transparent;
    font-size: 150px;
    font-weight: 900;
    display: inline-block;
    opacity: 0;
}

.hero-section .intro_text svg text.animate-stroke {
    animation: stroke 4s forwards;
    /* Adjust the duration as needed */
    opacity: 1;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

@keyframes stroke {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes pulsate {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.hero-sub-title {
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}

.hero-title {
    margin-top: 15px;
    font-size: 65px;
    background: #c221e4;
    background: -webkit-gradient(linear, left top, right top, from(#c221e4), to(var(--white)));
    background: -o-linear-gradient(left, #c221e4 0%, var(--white) 100%);
    background: linear-gradient(to right, #c221e4 0%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Hero Location & Reach Badges */
.hero-location-reach {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.location-badge i {
    font-size: 18px;
    color: #22c55e;
    animation: pulse 2s infinite;
}

.location-badge span {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3px;
}

.reach-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}


.reach-badge:hover::before {
    left: 100%;
}


.reach-badge i {
    font-size: 18px;
    color: #ec4899;
    animation: pulse 2s infinite;
}

.reach-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reach-number {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3px;
}

.reach-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@media screen and (max-width: 575px) {
    .hero-location-reach {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .location-badge,
    .reach-badge {
        width: 100%;
    }
}

.hero-content-box .lead {
    max-width: 550px;
    width: 100%;
    margin-bottom: 0;
}

.hero-content-box .button-box {
    margin-top: 50px;
    gap: 25px;
}

.hero-content-box .button-box .tj-btn-secondary {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-content-box .button-box .tj-btn-secondary i {
    font-size: 17px;
}

.hero-image-box img {
    border-radius: 38px;
    -webkit-transform: rotate(4.29deg);
    -ms-transform: rotate(4.29deg);
    transform: rotate(4.29deg);
    position: relative;
    border: 2px solid #cd26e361;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.hero-image-box img:hover {
    border: 2px solid #c71fe3;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.hero-image-box {
    position: relative;
}

.hero-image-box:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #c71fe3;
    background: -o-linear-gradient(190deg,
            #c71fe3 0%,
            rgba(115, 67, 210, 0) 100%);
    background: linear-gradient(260deg,
            #c71fe3 0%,
            rgba(115, 67, 210, 0) 100%);
    -webkit-filter: blur(150px);
    filter: blur(150px);
    margin-left: -5%;
    margin-bottom: -5%;
}

.hero-section .funfact-area {
    margin-top: 120px;
}

.brdr {
    padding: 30px;
    border: 1px solid #c82be41f;
    border-radius: 1rem;
}

/* Hero Specialties List */
.hero-specialties {
    position: relative;
    margin-top: 15px;
    max-height: 200px;
    overflow: hidden;
}

.hero-list-style {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-list-style li {
    align-items: center;
    gap: 10px;
    padding: 10px 0px;
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-list-style li i {
    font-size: 20px;
    color: #7c3aed;
    min-width: 24px;
}

.hero-list-style li span {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.3px;
}

.list-blur-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(26, 26, 46, 1) 0%, rgba(26, 26, 46, 0.8) 50%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.footer_text {
    color: #ffffff80;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 9.5rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.footer_text h1 {
    font-size: 230px;
    font-weight: 800;
    -webkit-text-stroke: 2px #ffffff14;
    /* For Safari and Chrome */
    text-stroke: 2px #ffffff14;
    /* For Firefox (currently not supported, but kept for future) */
    color: transparent;
}

@media screen and (max-width: 767px) {
    .footer_text h1 {
        font-size: 80px !important;
    }

    .footer_text {
        margin-top: 20px;
        width: 100% !important;
        height: 3.4375rem !important;
    }

    .hero-section {
        padding: 95px 0 30px;
    }

    .brdr {
        padding: 20px;
    }

    .hero-title {
        margin-top: 15px;
        font-size: 36px;
    }

    .hero-list-style {
        grid-template-columns: 1fr;
    }

    .hero-specialties {
        max-height: 250px;
    }

    .hero-location-reach {
        margin-top: 15px;
    }

    .hero-image-box {
        margin-bottom: 17px;
    }

    .hero-list-style li {
        padding: 5px 0px;
    }
}

.jo-footer-middle {
    margin-bottom: 50px;
}

/* END: Hero Section */
/*======================================
	End breadcrumbs CSS
========================================*/

/*======================================
  Social Profiles Section
========================================*/
.social-profiles-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 100%);
    position: relative;
    overflow: hidden;
}

.social-profiles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(127, 0, 95, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 65, 169, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.social-profiles-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.social-profiles-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-profiles-header h2 svg {
    width: 28px;
    height: 28px;
    fill: #7f005f;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.social-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.social-profile-card {
    background: rgba(20, 15, 35, 0.6);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(127, 0, 95, 0.2);
}

.social-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(127, 0, 95, 0.1) 0%, rgba(0, 65, 169, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
}

.social-profile-card:hover {
    transform: translateY(-8px);
    border-color: rgba(127, 0, 95, 0.5);
    box-shadow: 0 20px 40px rgba(127, 0, 95, 0.3);
}

.social-profile-card:hover::before {
    opacity: 1;
}

.social-profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.social-profile-info {
    flex: 1;
}

.social-profile-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.verified-badge svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}

.social-profile-handle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.social-profile-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.stat-item {
    flex: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #7f005f 0%, #0041a9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media screen and (max-width: 768px) {
    .social-profiles-section {
        padding: 60px 0;
    }

    .social-profiles-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .social-profiles-header h2 {
        font-size: 24px;
    }

    .social-profiles-grid {
        grid-template-columns: 1fr;
    }
}

/*======================================
  Engagement Rate Section
========================================*/
.engagement-rate-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0a1e 0%, #1e0f2e 100%);
    position: relative;
    overflow: hidden;
}

.engagement-rate-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(127, 0, 95, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.engagement-rate-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.engagement-rate-header {
    margin-bottom: 40px;
}

.engagement-rate-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.engagement-percentage {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    position: relative;
}

.engagement-percentage::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(127, 0, 95, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.engagement-number {
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #7f005f 0%, #0041a9 50%, #7f005f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s linear infinite;
    letter-spacing: -4px;
}

.engagement-symbol {
    font-size: 80px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
}

.engagement-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 768px) {
    .engagement-rate-section {
        padding: 80px 0;
    }

    .engagement-rate-header h2 {
        font-size: 28px;
    }

    .engagement-number {
        font-size: 80px;
    }

    .engagement-symbol {
        font-size: 60px;
    }

    .engagement-description {
        font-size: 16px;
    }
}

/*======================================
  Let's Connect Section
========================================*/
.lets-connect-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #22182e 0%, #2d1b4e 100%);
    position: relative;
    overflow: hidden;
}

.lets-connect-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(127, 0, 95, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 65, 169, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.lets-connect-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lets-connect-header {
    text-align: center;
    margin-bottom: 60px;
}

.lets-connect-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.lets-connect-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.connect-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.connect-card {
    background: rgba(20, 15, 35, 0.6);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(127, 0, 95, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.connect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(127, 0, 95, 0.1) 0%, rgba(0, 65, 169, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.connect-card:hover {
    transform: translateY(-8px);
    border-color: rgba(127, 0, 95, 0.5);
    box-shadow: 0 20px 50px rgba(127, 0, 95, 0.3);
}

.connect-card:hover::before {
    opacity: 1;
}

.connect-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7f005f 0%, #0041a9 100%);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.connect-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.connect-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.connect-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.connect-value {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    word-break: break-all;
}

.connect-card:hover .connect-value {
    background: linear-gradient(135deg, #7f005f 0%, #0041a9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media screen and (max-width: 768px) {
    .lets-connect-section {
        padding: 60px 0;
    }

    .lets-connect-header h2 {
        font-size: 36px;
    }

    .lets-connect-subtitle {
        font-size: 16px;
    }

    .connect-cards-grid {
        grid-template-columns: 1fr;
    }

    .connect-card {
        padding: 24px;
    }
}

@media screen and (max-width: 480px) {
    .lets-connect-header h2 {
        font-size: 28px;
    }

    .connect-icon {
        width: 48px;
        height: 48px;
    }

    .connect-icon svg {
        width: 24px;
        height: 24px;
    }

    .connect-value {
        font-size: 16px;
    }
}

/* ========================================
   INFLUENCER DETAILS PAGE - THREE SECTIONS
========================================*/

/* Social Profiles Section */
.social-profiles-section {
    background: linear-gradient(145deg, rgba(20, 15, 30, 0.95), rgba(30, 20, 45, 0.95));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.social-profiles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.social-profiles-header {
    margin-bottom: 15px;
}

.social-profiles-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.social-profiles-header svg {
    width: 20px;
    height: 20px;
    color: rgba(139, 92, 246, 0.8);
}

.social-profiles-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-profile-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.social-profile-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.social-profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-profile-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.social-profile-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-profile-info {
    flex: 1;
}

.social-profile-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
}

.verified-badge svg {
    width: 16px;
    height: 16px;
    color: #8b5cf6;
}

.social-profile-handle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.social-profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    text-align: left;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

/* Engagement Rate Section */
.engagement-rate-section {
    background: linear-gradient(145deg, rgba(20, 15, 30, 0.95), rgba(30, 20, 45, 0.95));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.engagement-rate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.engagement-rate-container {
    text-align: center;
    width: 100%;
}

.engagement-rate-header {
    margin-bottom: 15px;
}

.engagement-rate-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.engagement-percentage {
    margin-bottom: 25px;
}

.engagement-number {
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.engagement-symbol {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 5px;
}

.engagement-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 90%;
    margin: 0 auto;
}

/* Let's Connect Section */
.lets-connect-section {
    background: linear-gradient(145deg, rgba(20, 15, 30, 0.95), rgba(30, 20, 45, 0.95));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.lets-connect-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.lets-connect-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lets-connect-header {
    margin-bottom: 15px;
}

.lets-connect-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}

.lets-connect-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.connect-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.connect-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.connect-card:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateX(5px);
}

.connect-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(139, 92, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.connect-icon svg {
    width: 24px;
    height: 24px;
    color: #8b5cf6;
}

.connect-info {
    flex: 1;
}

.connect-label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.connect-value {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive adjustments */

@media screen and (max-width: 767px) {

    .social-profiles-section,
    .engagement-rate-section,
    .lets-connect-section {
        padding: 25px;
    }

    .engagement-number {
        font-size: 60px;
    }

    .engagement-symbol {
        font-size: 40px;
    }

    .lets-connect-header h2 {
        font-size: 20px;
    }
}

@media screen and (max-width: 479px) {

    .social-profiles-section,
    .engagement-rate-section,
    .lets-connect-section {
        padding: 20px;
    }

    .engagement-number {
        font-size: 48px;
    }

    .engagement-symbol {
        font-size: 32px;
    }

    .connect-card {
        padding: 10px;
    }

    .connect-icon {
        width: 40px;
        height: 40px;
    }

    .connect-icon svg {
        width: 20px;
        height: 20px;
    }
}
