    /*CSS Table Of Content Ends Here*/
    
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
    @import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
    @import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
     :root {
        --body: #fff;
        --black: #000;
        --white: #fff;
        --theme: #6A47ED;
        --theme2: #C6F806;
        --header: #17012C;
        --text: #504E4E;
        --border: #E5E5E5;
        --bg: #F6F3FE;
        --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
    }
    
    .main-button {
        position: relative;
        display: flex;
        align-items: center;
    }
    
    .main-button .theme-btn {
        position: relative;
        z-index: 2;
        display: inline-block;
        border: none;
        text-transform: uppercase;
        text-align: center;
        background-color: var(--theme);
        color: var(--white);
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        padding: 16.5px 35px;
        border-radius: 30px;
    }
    
    @media (max-width: 575px) {
        .main-button .theme-btn {
            padding: 18px 30px;
            font-size: 14px;
        }
    }
    
    .main-button .arrow-btn {
        width: 51px;
        height: 51px;
        line-height: 51px;
        text-align: center;
        background: var(--theme);
        color: var(--white);
        border-radius: 50%;
        display: inline-block;
        transition: all 0.4s ease-in-out;
    }
    
    .main-button .arrow-btn:hover {
        background: var(--header);
        color: var(--white);
    }
    
    .main-button:hover .theme-btn,
    .main-button:hover .arrow-btn {
        background-color: var(--header);
    }
    
    .link-btn {
        color: var(--header);
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        display: inline-block;
    }
    
    .link-btn i {
        margin-left: 10px;
    }
    
    .link-btn:hover {
        color: var(--theme);
    }
    /* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
    
    .poppins-light {
        font-family: "Poppins", sans-serif;
        font-weight: 300;
        font-style: normal;
    }
    
    .poppins-regular {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-style: normal;
    }
    
    .poppins-medium {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-style: normal;
    }
    
    .poppins-semibold {
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        font-style: normal;
    }
    
    body {
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 30px;
        color: var(--text);
        background-color: var(--white);
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }
    
    ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    button {
        border: none;
        background-color: transparent;
        padding: 0;
    }
    
    input:focus {
        color: var(--text);
        outline: none;
    }
    
    input {
        color: var(--text);
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: "Poppins", sans-serif;
        margin: 0px;
        padding: 0;
        color: var(--header);
        text-transform: capitalize;
        transition: all 0.4s ease-in-out;
    }
    
    h1 {
        font-size: 90px;
        font-weight: 800;
        line-height: 125%;
    }
    
    @media (max-width: 991px) {
        h1 {
            font-size: 50px;
        }
    }
    
    @media (max-width: 767px) {
        h1 {
            font-size: 42px;
        }
    }
    
    @media (max-width: 575px) {
        h1 {
            font-size: 34px;
        }
    }
    
    h2 {
        font-size: 48px;
        font-weight: 800;
    }
    
    @media (max-width: 1199px) {
        h2 {
            font-size: 42px;
        }
    }
    
    @media (max-width: 767px) {
        h2 {
            font-size: 36px;
        }
    }
    
    @media (max-width: 575px) {
        h2 {
            font-size: 28px;
        }
    }
    
    h3 {
        font-size: 24px;
        font-weight: 700;
        line-height: 133%;
    }
    
    @media (max-width: 575px) {
        h3 {
            font-size: 20px;
        }
    }
    
    h4 {
        font-size: 22px;
        font-weight: 700;
    }
    
    h5 {
        font-size: 20px;
        font-weight: 800;
    }
    
    h6 {
        font-size: 16px;
        font-weight: 600;
        line-height: 145%;
    }
    
    a {
        text-decoration: none;
        outline: none !important;
        cursor: pointer;
        color: var(--header);
        transition: all 0.4s ease-in-out;
    }
    
    p {
        margin: 0px;
        transition: all 0.4s ease-in-out;
        font-family: "Poppins", sans-serif;
    }
    
    span {
        margin: 0px;
        transition: all 0.4s ease-in-out;
        font-family: "Poppins", sans-serif;
    }
    
    .about-wrapper {
        margin-top: 155px;
    }
    
    @media (max-width: 1899px) {
        .about-wrapper {
            margin-top: 0;
        }
    }
    
    .about-wrapper .about-image {
        position: relative;
        text-align: center;
        z-index: 2;
    }
    
    @media (max-width: 575px) {
        .about-wrapper .about-image {
            max-width: 400px;
        }
        .about-wrapper .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    
    .about-wrapper .about-image .bg-shape {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }
    
    @media (max-width: 575px) {
        .about-wrapper .about-image .bg-shape img {
            width: 100%;
            height: 100%;
        }
    }
    
    .about-wrapper .about-image .grap-shape {
        position: absolute;
        bottom: 40px;
        left: 35px;
    }
    
    @media (max-width: 575px) {
        .about-wrapper .about-image .grap-shape {
            display: none;
        }
    }
    
    .about-wrapper .about-image .box-shape {
        position: absolute;
        right: 25px;
        top: 32%;
    }
    
    @media (max-width: 575px) {
        .about-wrapper .about-image .box-shape {
            display: none;
        }
    }
    
    .about-wrapper .about-image .emoji-shape {
        position: absolute;
        top: 20%;
        left: 164px;
        animation: bounce-x 7s infinite linear;
    }
    
    @media (max-width: 575px) {
        .about-wrapper .about-image .emoji-shape {
            display: none;
        }
    }
    
    .about-wrapper .about-content {
        margin-left: 10px;
    }
    
    .about-wrapper .about-content .circle-progress-bar-wrapper {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-top: 50px;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    
    @media (max-width: 1399px) {
        .about-wrapper .about-content .circle-progress-bar-wrapper {
            gap: 30px;
        }
    }
    
    @media (max-width: 991px) {
        .about-wrapper .about-content .circle-progress-bar-wrapper {
            margin-top: 40px;
            gap: 70px;
        }
    }
    
    @media (max-width: 991px) {
        .about-wrapper .about-content .circle-progress-bar-wrapper {
            gap: 20px;
        }
    }
    
    @media (max-width: 575px) {
        .about-wrapper .about-content .circle-progress-bar-wrapper {
            margin-top: 30px;
            flex-wrap: wrap;
            gap: 10px;
        }
    }
    
    .about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar span {
        font-size: 16px;
        line-height: 1;
        font-weight: 700;
    }
    
    .about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .content h6 {
        display: block;
        margin-bottom: 0;
        font-weight: 700;
        font-size: 18px;
        line-height: 135%;
    }
    
    @media (max-width: 575px) {
        .about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .content br {
            display: block;
        }
    }
    
    .about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar {
        position: relative;
        height: 120px;
        width: 120px;
    }
    
    .about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div {
        position: absolute;
        height: 100px;
        width: 100px;
        border-radius: 50%;
    }
    
    .about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div span {
        position: absolute;
        font-size: 20px;
        line-height: 92px;
        height: 90px;
        width: 90px;
        left: 5px;
        top: 5px;
        font-weight: 600;
        text-align: center;
        border-radius: 50%;
        background-color: var(--bg);
        color: var(--header);
    }
    
    .about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .background {
        background-color: #DFE2FF !important;
    }
    
    .about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .rotate {
        clip: rect(0 50px 100px 0);
        background-color: var(--theme) !important;
    }
    
    .about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .left {
        clip: rect(0 50px 100px 0);
        opacity: 1;
        background-color: var(--bg) !important;
    }
    
    .about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .right {
        clip: rect(0 50px 100px 0);
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        opacity: 0;
        background-color: var(--theme) !important;
    }
    
    .about-section {
        background-repeat: no-repeat;
        position: relative;
    }
    
    @media (max-width: 1899px) {
        .about-section {
            background-color: var(--bg);
        }
    }
    
    .about-section .brand-wrapper {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        z-index: 9;
        max-width: 1200px;
    }
    
    @media (max-width: 1899px) {
        .about-section .brand-wrapper {
            max-width: initial;
            position: static;
            transform: initial;
            margin-bottom: 120px;
        }
    }
    
    @media (max-width: 1199px) {
        .about-section .brand-wrapper {
            margin-bottom: 100px;
        }
    }
    
    @media (max-width: 991px) {
        .about-section .brand-wrapper {
            margin-bottom: 80px;
        }
    }
    
    .about-section .brand-wrapper .brand-title {
        text-align: center;
        margin-bottom: 30px;
        position: relative;
    }
    
    .about-section .brand-wrapper .brand-title::before {
        position: absolute;
        top: 15px;
        left: 5%;
        content: "";
        height: 1px;
        width: 413px;
        background-color: #E5E5E5;
    }
    
    @media (max-width: 1399px) {
        .about-section .brand-wrapper .brand-title::before {
            display: none;
        }
    }
    
    .about-section .brand-wrapper .brand-title::after {
        position: absolute;
        top: 15px;
        right: 5%;
        content: "";
        height: 1px;
        width: 413px;
        background-color: #E5E5E5;
    }
    
    @media (max-width: 1399px) {
        .about-section .brand-wrapper .brand-title::after {
            display: none;
        }
    }
    
    .about-section .left-shape {
        position: absolute;
        bottom: 0;
        left: 0;
    }
    
    @media (max-width: 1399px) {
        .about-section .left-shape {
            display: none;
        }
    }
    
    .about-wrapper-2 .about-image {
        max-width: 537px;
        margin-left: 100px;
        position: relative;
    }
    
    @media (max-width: 1199px) {
        .about-wrapper-2 .about-image {
            margin-left: 0;
        }
    }
    
    .about-wrapper-2 .about-image img {
        border-radius: 300px 300px 0 0;
    }
    
    @media (max-width: 1399px) {
        .about-wrapper-2 .about-image img {
            width: 100%;
            height: 100%;
        }
    }
    
    .about-wrapper-2 .about-image .box-shape {
        position: absolute;
        top: 15%;
        left: -22%;
    }
    
    @media (max-width: 1199px) {
        .about-wrapper-2 .about-image .box-shape {
            display: none;
        }
    }
    
    @media (max-width: 991px) {
        .about-wrapper-2 .about-image .box-shape {
            display: block;
        }
    }
    
    @media (max-width: 575px) {
        .about-wrapper-2 .about-image .box-shape {
            display: none;
        }
    }
    
    .about-wrapper-2 .about-image .gap-shape {
        position: absolute;
        right: -35%;
        bottom: -30px;
    }
    
    @media (max-width: 1399px) {
        .about-wrapper-2 .about-image .gap-shape {
            right: -20%;
        }
    }
    
    @media (max-width: 1199px) {
        .about-wrapper-2 .about-image .gap-shape {
            display: none;
        }
    }
    
    @media (max-width: 991px) {
        .about-wrapper-2 .about-image .gap-shape {
            display: block;
        }
    }
    
    @media (max-width: 575px) {
        .about-wrapper-2 .about-image .gap-shape {
            display: none;
        }
    }
    
    .about-wrapper-2 .about-image .circle-button {
        position: absolute;
        right: 0;
        top: 5%;
        width: 122px;
        height: 122px;
        line-height: 122px;
        background-color: #FD8128;
        border-radius: 50%;
        text-align: center;
        font-size: 24px;
        color: var(--white);
        z-index: 99;
    }
    
    .about-wrapper-2 .about-image .circle-button::before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 20px solid rgba(255, 255, 255, 0.2);
        width: 148px;
        height: 148px;
        content: "";
        border-radius: 50%;
        z-index: 1;
    }
    
    .about-wrapper-2 .about-image .circle-button .text-circle {
        position: absolute;
        top: 1%;
        left: 8%;
        animation: cir36 10s linear infinite;
        z-index: 9;
    }
    
    .about-wrapper-2 .about-content {
        margin-left: 80px;
        position: relative;
        z-index: 3;
    }
    
    @media (max-width: 1399px) {
        .about-wrapper-2 .about-content {
            margin-left: 40px;
        }
    }
    
    @media (max-width: 1199px) {
        .about-wrapper-2 .about-content {
            margin-left: 0;
        }
    }
    
    .about-wrapper-2 .about-content .icon-items-area {
        margin-top: 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
    }
    
    @media (max-width: 1199px) {
        .about-wrapper-2 .about-content .icon-items-area {
            flex-wrap: wrap;
            gap: 25px;
        }
    }
    
    .about-wrapper-2 .about-content .icon-items-area .icon-items {
        max-width: 270px;
    }
    
    .about-wrapper-2 .about-content .icon-items-area .icon-items .icon {
        border-radius: 8px;
        border: 1px solid #D4DCFF;
        background: #F3F7FB;
        text-align: center;
        width: 70px;
        height: 70px;
        line-height: 58px;
        text-align: center;
        display: inline-block;
        font-size: 40px;
        color: var(--theme);
    }
    
    .about-wrapper-2 .about-content .icon-items-area .icon-items .content {
        margin-top: 20px;
    }
    
    .about-wrapper-2 .about-content .icon-items-area .icon-items .content h3 {
        margin-bottom: 10px;
    }
    
    .about-wrapper-2 .about-content .icon-items-area .icon-items .content p {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 400;
        line-height: 175%;
    }
    
    .about-wrapper-2 .about-content .about-button {
        display: flex;
        align-items: center;
        gap: 30px;
    }
    
    @media (max-width: 575px) {
        .about-wrapper-2 .about-content .about-button {
            flex-wrap: wrap;
            gap: 20px;
        }
    }
    
    .about-wrapper-2 .about-content .about-button .link-btn {
        font-size: 16px;
        font-weight: 700;
        display: inline-block;
        text-decoration: underline;
    }
    
    .about-section-2 {
        position: relative;
    }
    
    .about-section-2 .bg-shape {
        position: absolute;
        bottom: 0;
        left: 0;
    }
    
    .about-section-2 .right-shape {
        position: absolute;
        bottom: 0;
        right: 40px;
    }
    
    @media (max-width: 1600px) {
        .about-section-2 .right-shape {
            display: none;
        }
    }
    
    @-webkit-keyframes rippleOne {
        70% {
            -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
            box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        }
        100% {
            -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
            box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        }
    }
    
    @keyframes rippleOne {
        70% {
            -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
            box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        }
        100% {
            -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
            box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        }
    }
    
    @keyframes cir36 {
        100% {
            transform: rotate(360deg);
        }
    }
    
    @keyframes rounded {
        50% {
            transform: rotate(15deg);
        }
    }
    
    @keyframes up-down {
        0% {
            transform: translateY(10px);
        }
        100% {
            transform: translateY(-10px);
        }
    }
    
    @-webkit-keyframes spinner {
        to {
            -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
        }
    }
    
    @keyframes spinner {
        to {
            -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
        }
    }
    
    @-webkit-keyframes letters-loading {
        0%,
        75%,
        100% {
            opacity: 0;
            transform: rotateY(-90deg);
        }
        25%,
        50% {
            opacity: 1;
            transform: rotateY(0deg);
        }
    }
    
    @keyframes letters-loading {
        0%,
        75%,
        100% {
            opacity: 0;
            transform: rotateY(-90deg);
        }
        25%,
        50% {
            opacity: 1;
            transform: rotateY(0deg);
        }
    }
    
    @keyframes loaderspin {
        0% {
            transform: translate(-50%, -50%) rotate(0deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }
    
    @keyframes tpswing {
        0% {
            -webkit-transform: rotate(20deg);
            -ms-transform: rotate(20deg);
            transform: rotate(20deg);
        }
        100% {
            -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            transform: rotate(0deg);
        }
    }
    
    @keyframes width {
        0% {
            width: 0%;
        }
        100% {
            width: 100%;
        }
    }
    
    @-webkit-keyframes width {
        0% {
            width: 0%;
        }
        100% {
            width: 100%;
        }
    }
    
    @-webkit-keyframes loaderspin {
        0% {
            transform: translate(-50%, -50%) rotate(0deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }
    
    @keyframes loaderpulse {
        0% {
            transform: scale(1);
        }
        100% {
            transform: scale(1.2);
        }
    }
    
    @keyframes rounded {
        50% {
            transform: rotate(20deg);
        }
    }
    
    @keyframes cir36 {
        100% {
            transform: rotate(360deg);
        }
    }
    
    .float-bob-y {
        -webkit-animation-name: float-bob-y;
        animation-name: float-bob-y;
        -webkit-animation-duration: 3s;
        animation-duration: 3s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }
    
    @-webkit-keyframes float-bob-y {
        0% {
            -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
        }
        50% {
            -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
        }
        100% {
            -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
        }
    }
    
    @keyframes float-bob-y {
        0% {
            -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
        }
        50% {
            -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
        }
        100% {
            -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
        }
    }
    
    .float-bob-x {
        -webkit-animation-name: float-bob-x;
        animation-name: float-bob-x;
        -webkit-animation-duration: 3s;
        animation-duration: 3s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }
    
    @-webkit-keyframes float-bob-x {
        0% {
            -webkit-transform: translateX(0px);
            transform: translateX(30px);
        }
        50% {
            -webkit-transform: translateX(10px);
            transform: translateX(10px);
        }
        100% {
            -webkit-transform: translateX(30px);
            transform: translateX(30px);
        }
    }
    
    @keyframes float-bob-x {
        0% {
            -webkit-transform: translateX(30px);
            transform: translateX(30px);
        }
        50% {
            -webkit-transform: translateX(10px);
            transform: translateX(10px);
        }
        100% {
            -webkit-transform: translateX(30px);
            transform: translateX(30px);
        }
    }
    
    @keyframes bounce-x {
        0% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
        50% {
            -webkit-transform: translateX(30px);
            transform: translateX(30px);
        }
        100% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
    
    .bounce-x {
        -webkit-animation: bounce-x 7s infinite linear;
        animation: bounce-x 7s infinite linear;
    }
    
    @keyframes criss-cross-left {
        0% {
            left: -20px;
        }
        50% {
            left: 50%;
            width: 20px;
            height: 20px;
        }
        100% {
            left: 50%;
            width: 375px;
            height: 375px;
        }
    }
    
    @keyframes criss-cross-right {
        0% {
            right: -20px;
        }
        50% {
            right: 50%;
            width: 20px;
            height: 20px;
        }
        100% {
            right: 50%;
            width: 375px;
            height: 375px;
        }
    }
    
    @keyframes rotated2 {
        0% {
            transform: rotate(0);
        }
        100% {
            transform: rotate(-360deg);
        }
    }
    
    @keyframes wave {
        0% {
            transform: translateX(0);
        }
        50% {
            transform: translateX(-25%);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    /*img-animation**********************/
    
    .img-custom-anim-left {
        animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
        opacity: 0;
    }
    
    @keyframes img-anim-left {
        0% {
            transform: translateX(-5%);
            clip-path: inset(0 100% 0 0);
            opacity: 0;
        }
        100% {
            transform: translateX(0);
            clip-path: inset(0 0 0 0);
            opacity: 1;
        }
    }
    
    .img-custom-anim-right {
        animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
        opacity: 0;
    }
    
    @keyframes img-anim-right {
        0% {
            transform: translateX(5%);
            clip-path: inset(0 0 0 100%);
            opacity: 0;
        }
        100% {
            transform: translateX(0);
            clip-path: inset(0 0 0 0);
            opacity: 1;
        }
    }
    
    .img-custom-anim-left {
        animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
        opacity: 0;
    }
    
    @keyframes img-anim-left {
        0% {
            transform: translateX(-5%);
            clip-path: inset(0 100% 0 0);
            opacity: 0;
        }
        100% {
            transform: translateX(0);
            clip-path: inset(0 0 0 0);
            opacity: 1;
        }
    }
    
    .img-custom-anim-top {
        animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
        opacity: 0;
    }
    
    @keyframes img-anim-top {
        0% {
            transform: translateY(-5%);
            clip-path: inset(0 0 100% 0);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            clip-path: inset(0 0 0 0);
            opacity: 1;
        }
    }
    
    .img-custom-anim-bottom {
        animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
        opacity: 0;
    }
    
    @keyframes moving {
        0% {
            transform: translatey(0px);
        }
        20% {
            transform: translateX(-50px);
        }
        50% {
            transform: translatey(-40px);
        }
        100% {
            transform: translatey(0px);
        }
    }
    
    @keyframes translateX2 {
        0% {
            -webkit-transform: translateX(-30px);
            -moz-transform: translateX(-30px);
            -ms-transform: translateX(-30px);
            -o-transform: translateX(-30px);
            transform: translateX(-30px);
        }
        100% {
            -webkit-transform: translatXY(20px);
            -moz-transform: translateX(20px);
            -ms-transform: translateX(20px);
            -o-transform: translateX(20px);
            transform: translateX(20px);
        }
    }
    
    @keyframes translateY2 {
        0% {
            -webkit-transform: translateY(-30px);
            -moz-transform: translateY(-30px);
            -ms-transform: translateY(-30px);
            -o-transform: translateY(-30px);
            transform: translateY(-30px);
        }
        100% {
            -webkit-transform: translateY(20px);
            -moz-transform: translateY(20px);
            -ms-transform: translateY(20px);
            -o-transform: translateY(20px);
            transform: translateY(20px);
        }
    }
    
    .brand-section-22 {
        display: none;
    }
    
    @media (max-width: 1899px) {
        .brand-section-22 {
            display: block;
            margin-top: 115px;
        }
    }
    
    @media (max-width: 1199px) {
        .brand-section-22 {
            margin-top: 95px;
        }
    }
    
    @media (max-width: 991px) {
        .brand-section-22 {
            margin-top: 75px;
            margin-bottom: -5px;
        }
    }
    
    .brand-section-22 .brand-title {
        text-align: center;
        margin-bottom: 30px;
        position: relative;
    }
    
    .brand-section-22 .brand-title::before {
        position: absolute;
        top: 15px;
        left: 5%;
        content: "";
        height: 1px;
        width: 480px;
        background-color: #E5E5E5;
    }
    
    @media (max-width: 1399px) {
        .brand-section-22 .brand-title::before {
            display: none;
        }
    }
    
    .brand-section-22 .brand-title::after {
        position: absolute;
        top: 15px;
        right: 5%;
        content: "";
        height: 1px;
        width: 480px;
        background-color: #E5E5E5;
    }
    
    @media (max-width: 1399px) {
        .brand-section-22 .brand-title::after {
            display: none;
        }
    }
    
    .contact-section {
        position: relative;
    }
    
    .contact-section::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--theme);
        right: 50px;
        left: 50px;
        border-radius: 30px;
        width: calc(100% - 95px);
    }
    
    @media (max-width: 1899px) {
        .contact-section::before {
            width: calc(100% - 0px);
            left: 0;
        }
    }
    
    .contact-section::after {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--bg);
        top: 50%;
        z-index: -1;
    }
    
    .contact-wrapper {
        background-color: var(--white);
        padding: 60px;
        border-radius: 30px;
        position: relative;
        z-index: 9;
        margin-top: 30px;
    }
    
    @media (max-width: 1199px) {
        .contact-wrapper {
            padding: 50px;
        }
    }
    
    @media (max-width: 767px) {
        .contact-wrapper {
            padding: 40px;
        }
    }
    
    @media (max-width: 575px) {
        .contact-wrapper {
            padding: 30px;
        }
    }
    
    .contact-wrapper .contact-form-area {
        border-radius: 16px;
        border: 1px solid var(--border);
        padding: 40px;
    }
    
    @media (max-width: 575px) {
        .contact-wrapper .contact-form-area {
            padding: 30px;
        }
    }
    
    .contact-wrapper .contact-form-area h3 {
        font-size: 30px;
        margin-bottom: 25px;
    }
    
    .contact-wrapper .contact-form-area .form-clt input,
    .contact-wrapper .contact-form-area .form-clt textarea {
        outline: none;
        border: none;
        width: 100%;
        border-radius: 8px;
        border: 1px solid var(--border);
        padding: 20px 20px;
        line-height: 1;
        color: var(--text);
    }
    
    .contact-wrapper .contact-form-area .form-clt textarea {
        padding-bottom: 110px;
    }
    
    .contact-wrapper .contact-form-area .form-clt .single-select {
        width: 100%;
        height: 60px;
        padding: 15px 20px;
        border-radius: 8px;
        border: 1px solid var(--border);
        color: var(--text);
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
    }
    
    .contact-wrapper .contact-form-area .theme-btn {
        position: relative;
        z-index: 2;
        display: inline-block;
        border: none;
        text-transform: capitalize;
        text-align: center;
        background-color: var(--theme);
        color: var(--white);
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        padding: 19.5px 35px;
        border-radius: 8px;
        width: 100%;
        transition: all 0.4s ease-in-out;
    }
    
    @media (max-width: 575px) {
        .contact-wrapper .contact-form-area .theme-btn {
            padding: 18px 30px;
            font-size: 14px;
        }
    }
    
    .contact-wrapper .contact-form-area .theme-btn:hover {
        background-color: var(--header);
    }
    
    .contact-wrapper .contact-map {
        position: relative;
    }
    
    .contact-wrapper .contact-map iframe {
        width: 100%;
        height: 630px;
        border-radius: 20px;
    }
    
    .contact-wrapper .contact-info-wrapper {
        position: absolute;
        top: 0;
        left: 90px;
        right: 90px;
        max-width: 430px;
        margin: 0 auto;
        padding: 30px;
        background: var(--theme);
        border-radius: 0px 0px 8px 8px;
    }
    
    @media (max-width: 767px) {
        .contact-wrapper .contact-info-wrapper {
            left: 20px;
            right: 20px;
        }
    }
    
    .contact-wrapper .contact-info-wrapper .shape-left {
        position: absolute;
        top: 0;
        left: -28px;
    }
    
    .contact-wrapper .contact-info-wrapper .shape-right {
        position: absolute;
        top: 0;
        right: -28px;
    }
    
    .contact-wrapper .contact-info-wrapper h2 {
        color: var(--white);
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 30px;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .contact-wrapper .contact-info-wrapper .contact-info {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    @media (max-width: 767px) {
        .contact-wrapper .contact-info-wrapper .contact-info {
            flex-wrap: wrap;
        }
    }
    
    .contact-wrapper .contact-info-wrapper .contact-info .content h3 {
        color: var(--white);
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
    }
    
    .contact-wrapper .contact-info-wrapper .contact-info .content h3 a {
        color: var(--white);
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
    }
    
    .contact-wrapper .contact-info-wrapper .contact-info .icon {
        display: inline-block;
        width: 38px;
        height: 38px;
        line-height: 38px;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
    }
    
    .contact-wrapper-2 .map-items .googpemap iframe {
        width: 100%;
        border-radius: 16px;
        height: 660px;
    }
    
    @media (max-width: 767px) {
        .contact-wrapper-2 .map-items .googpemap iframe {
            height: 550px;
        }
    }
    
    @media (max-width: 575px) {
        .contact-wrapper-2 .map-items .googpemap iframe {
            height: 450px;
        }
    }
    
    .contact-wrapper-2 .contact-content {
        margin-left: 40px;
    }
    
    @media (max-width: 991px) {
        .contact-wrapper-2 .contact-content {
            margin-left: 0;
        }
    }
    
    .contact-wrapper-2 .contact-content h2 {
        margin-bottom: 10px;
    }
    
    .contact-wrapper-2 .contact-content .contact-form-items {
        margin-top: 30px;
    }
    
    .contact-wrapper-2 .contact-content .contact-form-items .form-clt span {
        color: var(--header);
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 15px;
        display: inline-block;
    }
    
    .contact-wrapper-2 .contact-content .contact-form-items .form-clt input,
    .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
        border: 1px solid #D4DCED;
        color: var(--text);
        padding: 18px 20px;
        border-radius: 5px;
        width: 100%;
        outline: none;
        background-color: transparent;
    }
    
    .contact-wrapper-2 .contact-content .contact-form-items .form-clt input::placeholder,
    .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea::placeholder {
        color: var(--text);
    }
    
    .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
        padding-bottom: 150px;
    }
    
    .contact-wrapper-2 .contact-content .contact-form-items .theme-btn {
        display: inline-block;
        padding: 18px 30px;
        background-color: var(--theme);
        color: var(--white);
        line-height: 1;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.4s ease-in-out;
    }
    
    .contact-wrapper-2 .contact-content .contact-form-items .theme-btn i {
        margin-left: 8px;
    }
    
    .contact-wrapper-2 .contact-content .contact-form-items .theme-btn:hover {
        background-color: var(--header);
    }
    
    .contact-info-items {
        padding: 40px 20px;
        text-align: center;
        border-radius: 10px;
        background: #FAF8FF;
    }
    
    .contact-info-items .icon {
        font-size: 80px;
        color: var(--theme);
    }
    
    .contact-info-items .content {
        margin-top: 30px;
    }
    
    .contact-info-items .content p {
        font-size: 18px;
        margin-top: 10px;
    }
    
    .cta-wrapper {
        border-radius: 30px;
        padding: 65px 65px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: -37px;
    }
    
    @media (max-width: 1199px) {
        .cta-wrapper {
            flex-wrap: wrap;
            gap: 30px;
            margin-top: -100px;
        }
    }
    
    @media (max-width: 991px) {
        .cta-wrapper {
            margin-top: -80px;
            justify-content: center;
            text-align: center;
        }
    }
    
    .cta-wrapper h2 {
        font-size: 32px;
        font-weight: 700;
        color: var(--white);
        margin-left: 450px;
    }
    
    @media (max-width: 1399px) {
        .cta-wrapper h2 {
            margin-left: 300px;
            position: relative;
            z-index: 9;
        }
    }
    
    @media (max-width: 1199px) {
        .cta-wrapper h2 {
            margin-left: 0;
        }
    }
    
    .cta-wrapper .cta-img {
        position: absolute;
        bottom: 0;
        left: 85px;
    }
    
    @media (max-width: 1199px) {
        .cta-wrapper .cta-img {
            display: none;
        }
    }
    
    .cta-wrapper .main-button .theme-btn,
    .cta-wrapper .main-button .arrow-btn {
        background-color: var(--white);
        color: var(--header);
    }
    
    .cta-wrapper .main-button:hover .theme-btn,
    .cta-wrapper .main-button:hover .arrow-btn {
        color: var(--white);
        background-color: var(--header);
    }
    
    .cta-section {
        position: relative;
    }
    
    .cta-section::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: #18185E;
        top: 60%;
        height: initial;
    }
    
    .cta-section .rokect-shape {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 99;
    }
    
    @media (max-width: 1199px) {
        .cta-section .rokect-shape {
            display: none;
        }
    }
    
    .cta-section.style-2::after {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--bg);
        height: 60%;
        z-index: -1;
    }
    
    .cta-counter-wrapper {
        height: 720px;
        border-radius: 30px;
        position: relative;
        z-index: 9;
    }
    
    .cta-counter-wrapper .counter-box-area {
        padding: 64px;
        background-color: var(--theme);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0 0 30px 30px;
        line-height: 1;
        display: flex;
        align-items: center;
        gap: 50px;
    }
    
    @media (max-width: 767px) {
        .cta-counter-wrapper .counter-box-area {
            flex-wrap: wrap;
            gap: 30px;
        }
    }
    
    .cta-counter-wrapper .counter-box-area .counter-text {
        position: relative;
    }
    
    .cta-counter-wrapper .counter-box-area .counter-text h2 {
        font-size: 40px;
        font-weight: 700;
        color: var(--white);
    }
    
    .cta-counter-wrapper .counter-box-area .counter-text p {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.9);
        margin-top: 10px;
    }
    
    .cta-counter-wrapper .shape-img {
        position: absolute;
        bottom: -140px;
        right: 0;
        z-index: 1;
    }
    
    .cta-counter-wrapper .circle-button {
        position: absolute;
        right: 60px;
        top: -65px;
        width: 122px;
        height: 122px;
        line-height: 122px;
        background-color: var(--theme2);
        border-radius: 50%;
        text-align: center;
        font-size: 24px;
    }
    
    .cta-counter-wrapper .circle-button::before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(255, 255, 255, 0.2);
        width: 148px;
        height: 148px;
        content: "";
        border-radius: 50%;
    }
    
    .cta-counter-wrapper .circle-button .text-circle {
        position: absolute;
        top: -1%;
        left: 9%;
        animation: cir36 10s linear infinite;
    }
    
    .cta-counter-section {
        position: relative;
        z-index: 9;
    }
    
    .cta-counter-section::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--bg);
        top: 50%;
    }
    
    .cta-counter-section::after {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--white);
        height: 50%;
    }
    
    .cta-counter-section .bg-shape {
        position: absolute;
        bottom: 0;
        left: 0;
    }
    
    .cta-marketing {
        position: relative;
        z-index: 9;
    }
    
    .cta-marketing::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--bg);
        height: 40%;
        z-index: -1;
    }
    
    .cta-marketing .shape-img {
        position: absolute;
        top: -90px;
        left: 0;
    }
    
    .cta-marketing-2 {
        position: relative;
    }
    
    .cta-marketing-2::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        top: 65%;
        background-color: var(--white);
    }
    
    .cta-marketing-wrapper {
        padding: 60px;
        border-radius: 20px;
        background-color: var(--theme);
        display: flex;
        align-items: center;
        gap: 112px;
        position: relative;
    }
    
    @media (max-width: 1199px) {
        .cta-marketing-wrapper {
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            justify-content: center;
        }
    }
    
    .cta-marketing-wrapper .content .section-title h2 {
        font-size: 36px;
    }
    
    .cta-marketing-wrapper .content .list {
        display: flex;
        align-items: center;
        gap: 30px;
    }
    
    @media (max-width: 1199px) {
        .cta-marketing-wrapper .content .list {
            flex-wrap: wrap;
            gap: 20px;
        }
    }
    
    .cta-marketing-wrapper .content .list li {
        font-weight: 600;
        color: var(--white);
    }
    
    .cta-marketing-wrapper .content .list li svg {
        margin-right: 5px;
    }
    
    .cta-marketing-wrapper .cta-input {
        position: relative;
        max-width: 435px;
        width: 100%;
    }
    
    .cta-marketing-wrapper .cta-input input {
        background: var(--white);
        border: none;
        outline: none;
        padding: 16px 20px;
        width: 100%;
        border-radius: 8px;
        color: var(--text);
        text-transform: capitalize;
    }
    
    .cta-marketing-wrapper .cta-input input::placeholder {
        color: var(--text);
    }
    
    .cta-marketing-wrapper .cta-input .newsletter-btn {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 46px;
        height: 46px;
        line-height: 46px;
        border-radius: 8px;
        text-align: center;
        background-color: var(--theme);
        color: var(--white);
        bottom: 5px;
    }
    
    .cta-marketing-wrapper .cta-input .newsletter-btn i {
        font-size: 18px;
    }
    
    .cta-marketing-wrapper .cta-marketing-image {
        position: absolute;
        bottom: 0;
        top: 0;
        right: 0;
    }
    
    @media (max-width: 1399px) {
        .cta-marketing-wrapper .cta-marketing-image {
            display: none;
        }
    }
    
    .cta-marketing-wrapper .cta-marketing-image img {
        width: 100%;
        height: 100%;
    }
    
    .cta-contact-wrapper {
        padding: 80px 90px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    @media (max-width: 1199px) {
        .cta-contact-wrapper {
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            text-align: center;
        }
    }
    
    @media (max-width: 767px) {
        .cta-contact-wrapper {
            padding: 50px;
        }
    }
    
    .cta-contact-wrapper .cta-image {
        position: absolute;
        top: 36px;
        left: 64px;
        bottom: 36px;
    }
    
    @media (max-width: 1399px) {
        .cta-contact-wrapper .cta-image {
            display: none;
        }
    }
    
    .cta-contact-wrapper .section-title {
        margin-left: 290px;
    }
    
    @media (max-width: 1399px) {
        .cta-contact-wrapper .section-title {
            margin-left: 0;
        }
    }
    
    .cta-contact-wrapper .section-title h2 {
        font-size: 36px;
    }
    
    .cta-contact-wrapper .main-button .theme-btn,
    .cta-contact-wrapper .main-button .arrow-btn {
        background-color: var(--white);
        color: var(--header);
    }
    
    .cta-contact-wrapper .main-button:hover .theme-btn,
    .cta-contact-wrapper .main-button:hover .arrow-btn {
        background-color: var(--header);
        color: var(--white);
    }
    
    .cta-contact-section {
        position: relative;
    }
    
    .cta-contact-section::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--bg);
        top: 50%;
    }
    
    .cta-counter-wrapper-2 .section-title-area {
        padding: 0 90px;
    }
    
    @media (max-width: 1199px) {
        .cta-counter-wrapper-2 .section-title-area {
            padding: 0 0;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
    }
    
    .cta-counter-wrapper-2 .section-title-area .counter-box-area {
        display: flex;
        align-items: center;
        gap: 50px;
        justify-content: center;
        text-align: center;
    }
    
    @media (max-width: 1199px) {
        .cta-counter-wrapper-2 .section-title-area .counter-box-area {
            flex-wrap: wrap;
            gap: 30px;
            justify-content: start;
        }
    }
    
    .cta-counter-wrapper-2 .section-title-area .counter-box-area .counter-text {
        position: relative;
    }
    
    .cta-counter-wrapper-2 .section-title-area .counter-box-area .counter-text h2 {
        font-size: 40px;
        font-weight: 700;
        color: var(--white);
    }
    
    .cta-counter-wrapper-2 .section-title-area .counter-box-area .counter-text p {
        font-size: 20px;
        color: var(--white);
        margin-top: 10px;
    }
    
    .cta-counter-wrapper-2 .cta-video-image {
        position: relative;
    }
    
    .cta-counter-wrapper-2 .cta-video-image img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }
    
    .cta-counter-wrapper-2 .cta-video-image .video-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: inline-block;
        width: 102px;
        height: 102px;
        line-height: 102px;
        color: var(--white);
        border-radius: 50%;
        border: 1px solid var(--white);
        background: radial-gradient(157.24% 123.22% at 47.19% -0.63%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
        backdrop-filter: blur(21px);
        text-align: center;
        font-size: 22px;
    }
    
    @media (max-width: 767px) {
        .cta-counter-wrapper-2 .cta-video-image .video-icon {
            font-size: 18px;
            width: 60px;
            height: 60px;
            line-height: 60px;
        }
    }
    
    .cta-counter-section-2 {
        position: relative;
    }
    
    .cta-counter-section-2::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--white);
        top: 60%;
    }
    
    @media (max-width: 767px) {
        .cta-counter-section-2::before {
            top: 80%;
        }
    }
    
    .cta-counter-section-3 {
        position: relative;
        z-index: 9;
    }
    
    .cta-counter-section-3::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--bg);
        top: 60%;
    }
    
    @media (max-width: 767px) {
        .cta-counter-section-3::before {
            top: 80%;
        }
    }
    
    .faq-wrapper .faq-content .faq-list {
        display: flex;
        align-items: center;
        gap: 25px;
        margin-top: 40px;
        border-top: 1px solid #CCD8FF;
        border-bottom: 1px solid #CCD8FF;
        padding: 30px 0;
    }
    
    .faq-wrapper .faq-content .faq-list li i {
        margin-right: 5px;
        color: var(--theme);
    }
    
    .faq-wrapper .accordion-item {
        border: 0;
        background-color: var(--white);
    }
    
    .faq-wrapper .accordion-item .accordion-header .accordion-button {
        font-weight: 600;
        color: var(--theme);
        letter-spacing: -0.2px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background-color: var(--white);
        padding: 25px 30px 0;
        text-transform: capitalize;
        font-size: 22px;
        border: 1px solid var(--border);
        border: 1px solid transparent;
        box-shadow: 12px -12px 24px 0px rgba(0, 0, 0, 0.06);
    }
    
    @media (max-width: 575px) {
        .faq-wrapper .accordion-item .accordion-header .accordion-button {
            font-size: 18px;
        }
    }
    
    .faq-wrapper .accordion-item .accordion-header .accordion-button::after {
        content: "\f324";
        font-family: "Font Awesome 6 Pro";
        background: transparent;
        font-weight: 500;
        transition: all 0.3s ease-in-out !important;
        color: var(--theme);
    }
    
    .faq-wrapper .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
        content: "\f322";
        font-family: "Font Awesome 6 Pro";
        background: transparent;
        font-weight: 500;
        color: var(--theme);
        transform: rotate(0);
    }
    
    .faq-wrapper .accordion-item .accordion-header .accordion-button.collapsed {
        background-color: var(--white);
        box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
        padding: 25px 30px;
        color: var(--header);
    }
    
    .faq-wrapper .accordion-item .accordion-collapse .accordion-body {
        padding-right: 20px;
        padding-left: 30px;
        padding-top: 15px;
        color: var(--text);
        background-color: var(--white);
        box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
    }
    
    @media (max-width: 1399px) {
        .faq-wrapper .accordion-item .accordion-collapse .accordion-body {
            padding-right: 50px;
        }
    }
    
    @media (max-width: 991px) {
        .faq-wrapper .accordion-item .accordion-collapse .accordion-body {
            padding-right: 30px;
        }
    }
    
    .faq-section {
        position: relative;
    }
    
    .faq-section .faq-overlay {
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .faq-section .faq-shape {
        position: absolute;
        bottom: -31%;
        right: 0;
    }
    
    @media (max-width: 1399px) {
        .faq-section .faq-shape {
            display: none;
        }
    }
    
    .audience-wrapper .audience-content .ratting-image {
        margin-top: 100px;
    }
    
    .audience-wrapper .audience-content .client-items {
        margin-top: 30px;
        position: relative;
        z-index: 9;
    }
    
    .audience-wrapper .audience-content .client-items .client-img {
        margin-top: 15px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .audience-wrapper .audience-content .client-items .client-img .star-icon .star {
        font-size: 14px;
        color: #FBB03B;
    }
    
    .audience-wrapper .audience-content .client-items .client-img .star-icon span {
        color: var(--white);
        font-size: 14px;
        line-height: 1;
    }
    
    .audience-wrapper .audience-right {
        display: flex;
        align-items: center;
    }
    
    @media (max-width: 1399px) {
        .audience-wrapper .audience-right {
            flex-wrap: wrap;
            gap: 30px;
        }
    }
    
    .audience-wrapper .audience-right .audience-img {
        max-width: 333px;
    }
    
    .audience-wrapper .audience-right .audience-img img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }
    
    .audience-wrapper .audience-right .counter-box-area {
        padding: 30px;
        border-radius: 0px 20px 10px 0px;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }
    
    @media (max-width: 575px) {
        .audience-wrapper .audience-right .counter-box-area {
            flex-wrap: wrap;
            gap: 30px;
        }
    }
    
    .audience-wrapper .audience-right .counter-box-area h2 {
        font-size: 40px;
        font-weight: 600;
    }
    
    .audience-wrapper .audience-right .counter-box-area .content {
        margin-top: 150px;
        max-width: 235px;
    }
    
    @media (max-width: 767px) {
        .audience-wrapper .audience-right .counter-box-area .content {
            margin-top: 30px;
        }
    }
    
    .audience-wrapper .audience-right .counter-box-area .content h4 {
        margin-bottom: 10px;
    }
    
    .audience-wrapper .audience-right .counter-box-area .content p {
        font-size: 16px;
    }
    
    .feature-box-items {
        margin-top: 30px;
        background-color: var(--white);
        box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
        padding: 40px 30px;
        position: relative;
        z-index: 9;
    }
    
    .feature-box-items .icon {
        border-radius: 8px;
        border: 1px solid #D4DCFF;
        background: #F3F7FB;
        width: 70px;
        height: 70px;
        line-height: 70px;
        text-align: center;
        font-size: 40px;
        color: var(--theme);
    }
    
    .feature-box-items .content {
        margin-top: 30px;
    }
    
    .feature-box-items .content h3 {
        margin-bottom: 10px;
    }
    
    .feature-box-image {
        margin-top: 30px;
        border-radius: 16px;
        max-width: 315px;
        text-align: center;
        margin: 30px auto 0;
        padding: 12px;
        position: relative;
        z-index: 9;
    }
    
    .feature-box-image img {
        width: 100%;
        height: 100%;
    }
    
    .feature-secton {
        position: relative;
    }
    
    .feature-secton .bg-shape {
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .value-box-items {
        margin-top: 30px;
        border-radius: 16px;
        background-color: var(--white);
        padding: 40px 30px;
    }
    
    .value-box-items .icon {
        border-radius: 8px;
        border: 1px solid #D4DCFF;
        background: #F3F7FB;
        width: 70px;
        height: 70px;
        line-height: 70px;
        text-align: center;
        font-size: 40px;
        color: var(--theme);
    }
    
    .value-box-items .content {
        margin-top: 25px;
    }
    
    .value-box-items .content h3 {
        margin-bottom: 15px;
    }
    
    .value-section {
        position: relative;
    }
    
    .value-section .value-shape {
        position: absolute;
        top: 0;
        left: 0;
    }
    
    @media (max-width: 1399px) {
        .value-section .value-shape {
            display: none;
        }
    }
    
    .value-section .value-shape-2 {
        position: absolute;
        top: 0;
        right: 0;
    }
    
    @media (max-width: 1399px) {
        .value-section .value-shape-2 {
            display: none;
        }
    }
    
    .footer-widgets-wrapper {
        padding: 50px 0 80px;
    }
    
    .footer-widgets-wrapper .single-footer-widget {
        margin-top: 30px;
    }
    
    .footer-widgets-wrapper .single-footer-widget .widget-head {
        margin-bottom: 30px;
    }
    
    @media (max-width: 575px) {
        .footer-widgets-wrapper .single-footer-widget .widget-head {
            margin-bottom: 20px;
        }
    }
    
    .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
        font-weight: bold;
        color: var(--white);
        font-size: 24px;
        display: inline-block;
        position: relative;
        padding-bottom: 20px;
    }
    
    .footer-widgets-wrapper .single-footer-widget .widget-head h3::before {
        position: absolute;
        bottom: 0;
        left: 0;
        content: "";
        width: 18px;
        height: 2px;
        background-color: var(--white);
    }
    
    .footer-widgets-wrapper .single-footer-widget .widget-head h3::after {
        position: absolute;
        bottom: 0;
        left: 25px;
        content: "";
        width: 83px;
        height: 2px;
        background-color: var(--theme);
    }
    
    @media (max-width: 767px) {
        .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
            font-size: 23px;
        }
    }
    
    @media (max-width: 575px) {
        .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
            font-size: 20px;
        }
    }
    
    .footer-widgets-wrapper .single-footer-widget .footer-content p {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
        margin-top: 40px;
        gap: 10px;
        position: relative;
        z-index: 9;
    }
    
    @media (max-width: 575px) {
        .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
            margin-top: 20px;
        }
    }
    
    .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
        width: 36px;
        height: 36px;
        line-height: 36px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.6);
        background-color: transparent;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
        background-color: var(--theme);
        color: var(--white);
        border: 1px solid var(--theme);
    }
    
    .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info {
        margin-top: 20px;
    }
    
    .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li {
        color: var(--text);
        font-weight: 400;
    }
    
    .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li:not(:last-child) {
        margin-bottom: 20px;
    }
    
    .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li i {
        font-size: 16px;
        color: var(--white);
        margin-right: 10px;
        font-size: 20px;
    }
    
    .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li a {
        color: var(--white);
    }
    
    .footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
        position: relative;
        margin-top: 40px;
    }
    
    .footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
        background: var(--white);
        border: none;
        outline: none;
        padding: 16px 20px;
        width: 100%;
        border-radius: 8px;
        color: var(--text);
        text-transform: capitalize;
    }
    
    .footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
        color: var(--text);
    }
    
    .footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 46px;
        height: 46px;
        line-height: 46px;
        border-radius: 8px;
        text-align: center;
        background-color: var(--theme);
        color: var(--white);
        bottom: 5px;
    }
    
    .footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn i {
        font-size: 18px;
    }
    
    .footer-widgets-wrapper .single-footer-widget .footer-content .form-check {
        color: rgba(255, 255, 255, 0.6);
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        margin-top: 25px;
    }
    
    .footer-widgets-wrapper .single-footer-widget .footer-content .form-check a {
        color: var(--white);
        text-decoration: underline;
    }
    
    .footer-widgets-wrapper .single-footer-widget .list-area li {
        transition: all 0.4s ease-in-out;
        font-weight: 500;
    }
    
    .footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
        margin-bottom: 20px;
    }
    
    .footer-widgets-wrapper .single-footer-widget .list-area li a {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-widgets-wrapper .single-footer-widget .list-area li a i {
        margin-right: 5px;
    }
    
    .footer-widgets-wrapper .single-footer-widget .list-area li:hover {
        margin-left: 5px;
    }
    
    .footer-widgets-wrapper .single-footer-widget .list-area li:hover a {
        color: var(--white);
    }
    
    .footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .thumb {
        width: 80px;
        height: 80px;
    }
    
    .footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .thumb img {
        width: 100%;
        height: 100%;
        border-radius: 8px;
    }
    
    .footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content .post-date {
        margin-bottom: 5px;
    }
    
    .footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content .post-date li {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
    }
    
    .footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 {
        font-size: 16px;
        font-weight: 700;
    }
    
    .footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 a {
        color: var(--white);
    }
    
    .footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 a:hover {
        color: var(--theme);
    }
    
    .footer-widgets-wrapper .single-footer-widget .contact-list li {
        color: #DADADA;
    }
    
    .footer-widgets-wrapper .single-footer-widget .contact-list li:not(:last-child) {
        margin-bottom: 20px;
    }
    
    .footer-widgets-wrapper .single-footer-widget .contact-list li a {
        color: #F5F5F5;
    }
    
    .footer-bottom {
        background-color: var(--theme);
        padding: 30px 0;
        position: relative;
        margin-top: 30px;
    }
    
    @media (max-width: 767px) {
        .footer-bottom .footer-wrapper {
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center !important;
            margin-top: 20px;
        }
    }
    
    .footer-bottom .footer-wrapper p {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-bottom .footer-wrapper .footer-menu {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .footer-bottom .footer-wrapper .footer-menu li a {
        color: rgba(255, 255, 255, 0.8);
        background-image: linear-gradient(var(--white), var(--white));
        background-position: 0 95%;
        background-repeat: no-repeat;
        background-size: 0% 2px;
        display: inline-block;
        transition: all 0.4s ease-in-out;
    }
    
    .footer-bottom .footer-wrapper .footer-menu li a:hover {
        background-size: 100% 1px;
        color: var(--white);
    }
    
    .footer-bottom .scroll-icon {
        position: absolute;
        left: 50%;
        top: -40px;
        transform: translateX(-50%);
        width: 70px;
        height: 70px;
        line-height: 60px;
        background-color: var(--theme);
        border-radius: 50%;
        text-align: center;
        color: var(--white);
        border: 5px solid var(--white);
        display: inline-block;
        z-index: 99;
    }
    
    @media (max-width: 1399px) {
        .footer-bottom .scroll-icon {
            left: 50%;
        }
    }
    
    @media (max-width: 1199px) {
        .menu-thumb {
            display: none !important;
        }
    }
    
    .header-main {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
    }
    
    .header-main .main-menu ul {
        margin-bottom: 0;
    }
    
    .header-main .main-menu ul li {
        position: relative;
        list-style: none;
        display: inline-block;
        margin-inline-end: 47px;
    }
    
    .header-main .main-menu ul li:last-child {
        margin-inline-end: 0;
    }
    
    .header-main .main-menu ul li a {
        display: inline-block;
        font-size: 16px;
        font-weight: 600;
        color: var(--white);
        padding: 20px 0;
        text-align: left;
        position: relative;
        text-transform: capitalize;
        transition: all 0.4s ease-in-out;
    }
    
    .header-main .main-menu ul li a i {
        margin-left: 4px;
        font-size: 14px;
    }
    
    .header-main .main-menu ul li a:hover {
        color: var(--theme2) !important;
    }
    
    .header-main .main-menu ul li .submenu {
        position: absolute;
        top: 115%;
        inset-inline-start: 0;
        min-width: 240px;
        background: var(--white);
        padding: 20px 0;
        z-index: 99999;
        visibility: hidden;
        opacity: 0;
        transform-origin: top center;
        color: var(--header);
        transform: translateY(-10px);
        transition: all 0.4s ease-in-out;
        border-top: 6px solid var(--theme);
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }
    
    .header-main .main-menu ul li .submenu li {
        display: block;
        width: 100%;
        margin: 0;
    }
    
    .header-main .main-menu ul li .submenu li a {
        position: relative;
        z-index: 11;
        font-size: 16px;
        font-weight: 600;
        color: var(--header);
        line-height: 38px;
        padding: 0px 0px 0px 32px;
        width: 100%;
    }
    
    .header-main .main-menu ul li .submenu li a::before {
        content: "";
        position: absolute;
        width: 0px;
        height: 2px;
        background: var(--theme);
        left: 14px;
        bottom: 18px;
        transition: all 0.4s ease-in-out;
    }
    
    .header-main .main-menu ul li .submenu li a:hover {
        color: var(--theme) !important;
    }
    
    .header-main .main-menu ul li .submenu li:last-child a {
        border: none;
    }
    
    .header-main .main-menu ul li .submenu li .submenu {
        inset-inline-start: 100%;
        top: 0;
        visibility: hidden;
        opacity: 0;
    }
    
    .header-main .main-menu ul li .submenu li:hover>a {
        color: var(--theme) !important;
        margin-left: 10px;
    }
    
    .header-main .main-menu ul li .submenu li:hover>a::before {
        width: 10px;
    }
    
    .header-main .main-menu ul li .submenu li:hover>a::after {
        color: var(--theme);
    }
    
    .header-main .main-menu ul li .submenu li:hover>.submenu {
        -webkit-transform: translateY(1);
        -moz-transform: translateY(1);
        -ms-transform: translateY(1);
        -o-transform: translateY(1);
        transform: translateY(1);
        visibility: visible;
        opacity: 1;
    }
    
    .header-main .main-menu ul li .submenu li.has-dropdown>a::after {
        position: absolute;
        top: 50%;
        inset-inline-end: 25px;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        color: var(--theme);
    }
    
    .header-main .main-menu ul li .has-homemenu {
        width: 800px;
        padding: 30px 30px 10px 30px;
        opacity: 0;
        left: -250px;
        visibility: hidden;
        padding: 30px 30px 10px 30px;
    }
    
    .header-main .main-menu ul li .has-homemenu .homemenu-items {
        display: flex;
        align-items: center;
        gap: 30px;
        justify-content: space-between;
    }
    
    @media (max-width: 991px) {
        .header-main .main-menu ul li .has-homemenu .homemenu-items {
            flex-wrap: wrap;
        }
    }
    
    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
        position: relative;
    }
    
    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
        position: relative;
    }
    
    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70%;
        gap: 10px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
        margin-top: 20px;
    }
    
    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
        padding: 14px 20px;
        color: var(--white) !important;
        width: initial;
        font-size: 16px;
        text-align: center;
        border-radius: 0px !important;
        background-color: var(--theme);
        line-height: initial;
    }
    
    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
        background-color: var(--header);
    }
    
    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
        background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        overflow: hidden;
        opacity: 0;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        content: "";
    }
    
    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
        visibility: visible;
        opacity: 1;
    }
    
    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }
    
    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
        opacity: 1;
        visibility: visible;
        bottom: 50%;
        transform: translateY(50%);
    }
    
    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
        width: 100%;
    }
    
    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
        text-align: center;
        margin: 15px auto;
        display: inline-block;
        font-size: 18px;
        font-weight: 600;
        font-family: "Plus Jakarta Sans", sans-serif;
    }
    
    .header-main .main-menu ul li:hover>a {
        color: var(--theme2);
    }
    
    .header-main .main-menu ul li:hover>a::after {
        color: var(--theme);
    }
    
    .header-main .main-menu ul li:hover>.submenu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0px);
    }
    
    .header-main .header-right {
        gap: 12px;
    }
    
    @media (max-width: 1399px) {
        .header-main .header-right {
            gap: 20px;
        }
    }
    
    .header-main .sidebar__toggle {
        cursor: pointer;
        font-size: 20px;
    }
    
    .header-1 {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 99;
        width: 100%;
    }
    
    .header-1 .container-fluid {
        padding: 0 150px;
    }
    
    @media (max-width: 1600px) {
        .header-1 .container-fluid {
            padding: 0 40px;
        }
    }
    
    @media (max-width: 1399px) {
        .header-1 .container-fluid {
            padding: 0 20px;
        }
    }
    
    @media (max-width: 1199px) {
        .header-1 .container-fluid {
            padding: 0 30px;
        }
    }
    
    .header-1 .header-logo-2 {
        display: none;
    }
    
    .header-1 .header-right .sidebar__toggle {
        color: var(--white);
    }
    
    @media (max-width: 1199px) {
        .header-1 .header-right .main-button {
            display: none;
        }
    }
    
    .header-1 .header-right .main-button .theme-btn,
    .header-1 .header-right .main-button .arrow-btn {
        background-color: var(--theme2);
        color: var(--header);
    }
    
    .header-1 .header-right .main-button:hover .theme-btn,
    .header-1 .header-right .main-button:hover .arrow-btn {
        background-color: var(--header);
        color: var(--white);
    }
    
    .header-1 .header-right .search-icon {
        color: var(--white);
    }
    
    .header-1.style-2 {
        position: relative;
    }
    
    .header-1.style-2 .header-right .sidebar__toggle {
        color: var(--header);
    }
    
    @media (max-width: 1199px) {
        .header-1.style-2 .header-right .main-button {
            display: none;
        }
    }
    
    .header-1.style-2 .header-right .main-button .theme-btn,
    .header-1.style-2 .header-right .main-button .arrow-btn {
        background-color: var(--theme);
        color: var(--white);
    }
    
    .header-1.style-2 .header-right .main-button:hover .theme-btn,
    .header-1.style-2 .header-right .main-button:hover .arrow-btn {
        background-color: var(--header);
        color: var(--white);
    }
    
    .header-1.style-2 .container-fluid {
        padding: 0px 250px;
    }
    
    @media (max-width: 1600px) {
        .header-1.style-2 .container-fluid {
            padding: 0 50px;
        }
    }
    
    @media (max-width: 1399px) {
        .header-1.style-2 .container-fluid {
            padding: 0 40px;
        }
    }
    
    @media (max-width: 1199px) {
        .header-1.style-2 .container-fluid {
            padding: 0 30px;
        }
    }
    
    .header-1.style-2 .main-menu ul li a {
        color: var(--header);
    }
    
    .header-1.style-2 .main-menu ul li a:hover {
        color: var(--theme) !important;
    }
    
    .header-1.style-2 .main-menu ul li:hover>a {
        color: var(--theme);
    }
    
    .header-1.style-2 .main-menu ul li:hover>a::after {
        color: var(--theme);
    }
    
    .sticky {
        position: fixed !important;
        top: 0 !important;
        left: 0;
        width: 100%;
        z-index: 100;
        transition: all 0.9s;
        background-color: var(--white);
        -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
        animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
    
    .sticky.header-1 .header-logo-2 {
        display: block;
    }
    
    .sticky.header-1 .header-logo {
        display: none;
    }
    
    .sticky.header-1 .header-right .sidebar__toggle {
        color: var(--header);
    }
    
    .sticky.header-1 .header-right .search-icon {
        color: var(--header);
    }
    
    .sticky.header-1 .main-menu ul li a {
        color: var(--header);
    }
    
    .sticky.header-1 .main-menu ul li a:hover {
        color: var(--theme) !important;
    }
    
    .sticky.header-1 .main-menu ul li:hover>a {
        color: var(--theme);
    }
    
    .sticky.header-1 .main-menu ul li:hover>a::after {
        color: var(--theme);
    }
    
    .offcanvas__info {
        background: var(--white) none repeat scroll 0 0;
        border-left: 2px solid var(--theme);
        position: fixed;
        right: 0;
        top: 0;
        width: 400px;
        height: 100%;
        -webkit-transform: translateX(calc(100% + 80px));
        -moz-transform: translateX(calc(100% + 80px));
        -ms-transform: translateX(calc(100% + 80px));
        -o-transform: translateX(calc(100% + 80px));
        transform: translateX(calc(100% + 80px));
        -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
        -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
        transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
        z-index: 99999;
        overflow-y: scroll;
        overscroll-behavior-y: contain;
        scrollbar-width: none;
    }
    
    .offcanvas__info::-webkit-scrollbar {
        display: none;
    }
    
    .offcanvas__info.info-open {
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    
    .offcanvas__wrapper {
        position: relative;
        height: 100%;
        padding: 30px 30px;
    }
    
    .offcanvas__wrapper .offcanvas__content .text {
        color: var(--text);
    }
    
    .offcanvas__wrapper .offcanvas__content .offcanvas__close {
        width: 45px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        border-radius: 50%;
        background-color: var(--theme);
        position: relative;
        z-index: 9;
        cursor: pointer;
    }
    
    .offcanvas__wrapper .offcanvas__content .offcanvas__close i {
        color: var(--white);
    }
    
    .offcanvas__wrapper .offcanvas__content .offcanvas__contact {
        margin-top: 20px;
    }
    
    .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
        margin-top: 20px;
    }
    
    .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
        font-size: 16px;
        font-weight: 600;
        text-transform: capitalize;
    }
    
    .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
        color: var(--text);
    }
    
    .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
        margin-bottom: 15px;
    }
    
    .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
        margin-right: 20px;
    }
    
    .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
        color: var(--theme);
    }
    
    .offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
        text-transform: initial;
    }
    
    .offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
        width: 100%;
        padding: 20px 40px;
        text-transform: capitalize !important;
    }
    
    .offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
        margin-top: 30px;
        gap: 10px;
    }
    
    .offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
        width: 45px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        font-size: 16px;
        display: block;
        background: transparent;
        color: var(--text);
        border-radius: 50%;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        text-align: center;
        border: 1px solid var(--border);
    }
    
    .offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
        background-color: var(--theme);
        color: var(--white);
    }
    
    .offcanvas__overlay {
        position: fixed;
        height: 100%;
        width: 100%;
        background: #151515;
        z-index: 900;
        top: 0;
        opacity: 0;
        visibility: hidden;
        right: 0;
    }
    
    .offcanvas__overlay.overlay-open {
        opacity: 0.8;
        visibility: visible;
    }
    
    @media (max-width: 450px) {
        .offcanvas__info {
            width: 300px;
        }
    }
    
    @media (max-width: 575px) {
        .offcanvas__wrapper {
            padding: 20px;
        }
    }
    
    .breadcrumb-wrapper {
        position: relative;
        overflow: hidden;
        z-index: 9;
        /* margin: 0 60px;
        border-radius: 30px; */
    }
    
    @media (max-width: 1199px) {
        .breadcrumb-wrapper {
            margin: 0;
            border-radius: 0;
        }
    }
    
    .breadcrumb-wrapper .left-shape {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    @media (max-width: 767px) {
        .breadcrumb-wrapper .left-shape {
            display: none;
        }
    }
    
    .breadcrumb-wrapper .right-shape {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    @media (max-width: 767px) {
        .breadcrumb-wrapper .right-shape {
            display: none;
        }
    }
    
    .breadcrumb-wrapper .page-heading {
        position: relative;
        padding: 40px 0px;
        z-index: 9;
        text-align: center;
    }
    
    @media (max-width: 767px) {
        .breadcrumb-wrapper .page-heading {
            flex-wrap: wrap;
            justify-content: center;
            gap: 50px;
            padding: 140px 0;
        }
    }
    
    .breadcrumb-wrapper .page-heading h1 {
        color: var(--header);
        font-size: 50px;
        position: relative;
        z-index: 9;
        font-weight: 800;
    }
    
    @media (max-width: 575px) {
        .breadcrumb-wrapper .page-heading h1 {
            font-size: 44px;
        }
    }
    
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
        display: inline-flex;
        justify-content: center;
        margin-top: 30px;
        gap: 10px;
        justify-content: center;
        border: 2px solid #BF20FC;
        padding: 14px 22px;
        border-radius: 100px;
        line-height: 1;
    }
    
    @media (max-width: 575px) {
        .breadcrumb-wrapper .page-heading .breadcrumb-items {
            margin-top: 15px;
        }
    }
    
    .breadcrumb-wrapper .page-heading .breadcrumb-items li {
        color: var(--header);
        text-transform: capitalize;
        font-weight: bold;
        font-size: 16px;
    }
    
    .breadcrumb-wrapper .page-heading .breadcrumb-items li a {
        color: var(--theme);
        transition: all 0.4s ease-in-out;
    }
    
    .breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
        color: var(--theme);
    }
    
    .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
        color: var(--header);
    }
    
    .error-items {
        text-align: center;
        margin: 0 auto;
    }
    
    .error-items .error-image {
        max-width: 985px;
    }
    
    .error-items .error-image img {
        width: 100%;
        height: 100%;
    }
    
    .error-items h2 {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .error-items h2 span {
        color: var(--theme);
        font-weight: 300;
    }
    
    .error-items p {
        font-size: 18px;
        margin-bottom: 50px;
    }
    
    .error-items .error-content {
        max-width: 530px;
        margin: 0 auto;
    }
    
     ::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }
    /* Track */
    
     ::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px var(--theme);
        border-radius: 5px;
    }
    /* Handle */
    
     ::-webkit-scrollbar-thumb {
        background: var(--theme);
        border-radius: 10px;
    }
    
    .fix {
        overflow: hidden;
    }
    
    .ralt {
        position: relative;
    }
    
    .ml-50 {
        margin-left: 50px;
    }
    
    @media (max-width: 1199px) {
        .ml-50 {
            margin-left: 0;
        }
    }
    
    .ripple {
        position: relative;
    }
    
    .ripple::before,
    .ripple::after {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 110px;
        height: 110px;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        border-radius: 50%;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
        -webkit-animation: rippleOne 3s infinite;
        animation: rippleOne 3s infinite;
    }
    
    .ripple::before {
        -webkit-animation-delay: 0.9s;
        animation-delay: 0.9s;
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
    }
    
    .ripple::after {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
    }
    
    .swiper-dot .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        transition: all 0.4s ease-in-out;
        background-color: var(--theme);
        opacity: 1;
        border-radius: 10px;
    }
    
    .swiper-dot .swiper-pagination-bullet:not(:last-child) {
        margin-right: 10px;
    }
    
    .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: var(--theme);
        transition: 0.6s;
        position: relative;
    }
    
    .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
        position: absolute;
        width: 22px;
        height: 22px;
        line-height: 22px;
        top: -6px;
        left: -6px;
        border-radius: 50%;
        background-color: transparent;
        border: 2px solid var(--theme);
        content: "";
    }
    
    .swiper-dot-2 {
        text-align: center;
    }
    
    .swiper-dot-2 .swiper-pagination-bullet {
        width: 32px;
        height: 8px;
        transition: 0.6s;
        background-color: rgba(213, 213, 213, 0.6);
        opacity: 1;
        border-radius: 10px;
        position: relative;
    }
    
    .swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: var(--theme);
        transition: 0.6s;
        position: relative;
        width: 50px;
    }
    
    .array-button {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .array-button .array-prev {
        width: 56px;
        height: 56px;
        line-height: 56px;
        text-align: center;
        background: var(--white);
        color: var(--header);
        border-radius: 50%;
        transition: all 0.4s ease-in-out;
        box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
    }
    
    .array-button .array-prev:hover {
        background-color: var(--theme);
        color: var(--white);
    }
    
    .array-button .array-next {
        width: 56px;
        height: 56px;
        line-height: 56px;
        text-align: center;
        background-color: var(--theme);
        color: var(--white);
        border-radius: 50%;
        transition: all 0.4s ease-in-out;
    }
    
    .array-button .array-next:hover {
        background-color: var(--header);
    }
    
    .mt-10 {
        margin-top: 10px;
    }
    
    @media (max-width: 767px) {
        br {
            display: none;
        }
    }
    
    .mt-60 {
        margin-top: 55px;
    }
    
    .mb-40 {
        margin-bottom: 40px;
    }
    /* background */
    
    .bg-cover {
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        background-position: center;
    }
    
    .bg-cover-2 {
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        background-position: center;
        width: 100%;
        height: 100%;
    }
    
    .nice-select {
        background-color: transparent;
        width: unset;
        outline: none;
        border-bottom: 2px solid var(--border) !important;
        padding-bottom: 20px !important;
        border: none;
        border-radius: 0;
        padding: 0;
    }
    
    .nice-select:hover {
        border-bottom: 2px solid transparent;
        border-color: var(--theme);
        border-bottom: 2px solid transparent;
        border-image-slice: 2;
    }
    
    .nice-select span {
        font-size: 16px;
        color: var(--text);
        text-transform: capitalize;
    }
    
    .nice-select .current {
        margin-right: 12px;
    }
    
    .nice-select.open .list {
        background: var(--bg);
        margin-top: 16px;
        width: 100%;
        text-transform: capitalize;
        color: var(--text);
    }
    
    .nice-select .option.selected.focus {
        background: var(--bg);
        outline: none;
        color: var(--text);
        text-transform: capitalize;
        font-weight: 400;
        font-size: 16px;
        border: none;
    }
    
    .nice-select .option {
        border: none;
    }
    
    .nice-select .option:hover {
        background: transparent;
    }
    
    .custom-container {
        max-width: 1680px;
    }
    
    .page-nav-wrap ul li {
        display: inline-block;
    }
    
    .page-nav-wrap ul li .page-numbers {
        display: inline-block;
        width: 50px;
        height: 50px;
        line-height: 50px;
        background: transparent;
        font-weight: 600;
        transition: all 0.3s ease-in-out;
        margin: 0 2px;
        border: 1px solid var(--border);
        color: var(--text);
    }
    
    .page-nav-wrap ul li .page-numbers.current {
        background-color: var(--theme);
        color: var(--white);
    }
    
    @media (max-width: 767px) {
        .page-nav-wrap ul li .page-numbers {
            margin-top: 10px;
            width: 50px;
            height: 50px;
            line-height: 50px;
            font-size: 14px;
        }
    }
    
    .page-nav-wrap ul li .page-numbers i {
        margin-top: 2px;
    }
    
    .page-nav-wrap ul li .page-numbers:hover {
        background-color: var(--theme);
        color: var(--white);
        border: 1px solid transparent;
    }
    
    .item-bg-color {
        background-color: #F4F6FA !important;
    }
    
    .bor-top {
        border-top: 1px solid rgba(255, 255, 255, 0.4);
    }
    
    .bor-bottom {
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }
    
    .sticky-style {
        position: sticky !important;
        top: 100px;
    }
    
    .hero-1 {
        padding: 190px 0 0;
        position: relative;
    }
    
    .hero-1 .mike-shape {
        position: absolute;
        top: 20%;
        left: 20px;
    }
    
    .hero-1 .mike-shape::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        width: 232px;
        height: 232px;
        background: linear-gradient(180deg, rgba(102, 166, 255, 0.5) -128.88%, rgba(255, 255, 255, 0) 83.84%);
        border-radius: 50%;
        top: 83%;
        left: 15%;
        transform: translate(-50%, -50%);
    }
    
    .hero-1 .mike-shape img {
        animation: bounce-x 7s infinite linear;
    }
    
    .hero-1 .arrow-shape {
        position: absolute;
        bottom: 5%;
        left: 3%;
        animation: moving 7s infinite linear;
    }
    
    .hero-1 .energy-shape {
        position: absolute;
        right: 40px;
        top: 15%;
    }
    
    .hero-1 .arrow-shape-2 {
        position: absolute;
        top: 50%;
        right: 30px;
        animation: moving 7s infinite linear;
    }
    
    .hero-1 .rocket-shape {
        position: absolute;
        bottom: 20px;
        right: 20px;
        z-index: 7;
    }
    
    .hero-1 .rocket-shape::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        width: 232px;
        height: 232px;
        background: linear-gradient(180deg, rgba(102, 166, 255, 0.5) -128.88%, rgba(255, 255, 255, 0) 83.84%);
        border-radius: 50%;
        top: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }
    
    .hero-1 .container-fluid {
        padding: 0 141px;
    }
    
    @media (max-width: 1600px) {
        .hero-1 .container-fluid {
            padding: 0 50px;
        }
    }
    
    @media (max-width: 1399px) {
        .hero-1 .container-fluid {
            padding: 0 40px;
        }
    }
    
    @media (max-width: 1199px) {
        .hero-1 .container-fluid {
            padding: 0 30px;
        }
    }
    
    .hero-1 .hero-title {
        text-align: center;
        position: relative;
        z-index: 9;
        margin-bottom: 50px;
    }
    
    @media (max-width: 1199px) {
        .hero-1 .hero-title img {
            width: 100%;
            height: 100%;
        }
    }
    
    .hero-1 .hero-content {
        position: relative;
        z-index: 9;
    }
    
    .hero-1 .hero-content span {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--white);
        display: inline-block;
        margin-bottom: 10px;
    }
    
    .hero-1 .hero-content h1 {
        color: var(--white);
        margin-bottom: 20px;
    }
    
    .hero-1 .hero-content p {
        color: var(--white);
        max-width: 510px;
    }
    
    .hero-1 .hero-image {
        position: relative;
        z-index: 8;
        margin-left: -70px;
    }
    
    @media (max-width: 1399px) {
        .hero-1 .hero-image {
            margin-left: 0;
        }
        .hero-1 .hero-image img {
            width: 100%;
            height: 100%;
        }
    }
    
    .hero-1 .hero-image .bg-shape {
        position: absolute;
        top: 70%;
        left: 30%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }
    
    .hero-1 .video-btn {
        position: relative;
        z-index: 9;
        display: inline-block;
        width: 151px;
        height: 151px;
        border: 0.5px solid var(--white);
        background: radial-gradient(157.24% 123.22% at 47.19% -0.63%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
        backdrop-filter: blur(25px);
        border-radius: 50%;
        text-align: center;
        line-height: 151px;
        font-size: 24px;
        color: var(--white);
    }
    
    .hero-1 .video-btn img {
        animation: cir36 10s linear infinite;
        position: absolute;
        top: 12px;
        left: 10px;
    }
    
    @media (max-width: 1199px) {
        .hero-1 .video-right {
            margin-bottom: 60px;
        }
    }
    
    .hero-1 .video-right p {
        font-weight: 500;
        font-style: italic;
        text-transform: capitalize;
        line-height: 175%;
        color: var(--white);
        margin-top: 30px;
    }
    
    .hero-1 .video-right .client-items {
        margin-top: 30px;
        position: relative;
        z-index: 9;
    }
    
    .hero-1 .video-right .client-items .client-img {
        margin-top: 15px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .hero-1 .video-right .client-items .client-img .star-icon .star {
        font-size: 14px;
        color: #FBB03B;
    }
    
    .hero-1 .video-right .client-items .client-img .star-icon span {
        color: var(--white);
        font-size: 14px;
        line-height: 1;
    }
    
    .hero-2 {
        padding: 150px 0 200px;
        background-position: bottom;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        margin-bottom: 90px;
    }
    
    @media (max-width: 1899px) {
        .hero-2 {
            margin-bottom: 0;
            background-position: center;
            background-image: none !important;
            background-color: var(--theme);
        }
    }
    
    @media (max-width: 991px) {
        .hero-2 {
            padding: 150px 0 0;
        }
    }
    
    .hero-2 .trophy-shape {
        position: absolute;
        top: 10%;
        left: 0;
    }
    
    @media (max-width: 1199px) {
        .hero-2 .trophy-shape {
            display: none;
        }
    }
    
    .hero-2 .left-shape {
        position: absolute;
        bottom: -20%;
        left: 0;
    }
    
    @media (max-width: 1199px) {
        .hero-2 .left-shape {
            display: none;
        }
    }
    
    .hero-2 .right-shape {
        position: absolute;
        bottom: -30%;
        right: 0;
    }
    
    @media (max-width: 1199px) {
        .hero-2 .right-shape {
            display: none;
        }
    }
    
    .hero-2 .rocket-shape {
        position: absolute;
        bottom: 0;
        right: 0;
    }
    
    @media (max-width: 1199px) {
        .hero-2 .rocket-shape {
            display: none;
        }
    }
    
    .hero-2 .container-fluid {
        padding: 0 200px;
    }
    
    @media (max-width: 1600px) {
        .hero-2 .container-fluid {
            padding: 0 50px;
        }
    }
    
    @media (max-width: 1399px) {
        .hero-2 .container-fluid {
            padding: 0 40px;
        }
    }
    
    @media (max-width: 1199px) {
        .hero-2 .container-fluid {
            padding: 0 30px;
        }
    }
    
    .hero-2 .hero-content {
        position: relative;
        z-index: 9;
    }
    
    .hero-2 .hero-content h6 {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--white);
        display: inline-block;
        margin-bottom: 10px;
    }
    
    .hero-2 .hero-content h1 {
        font-size: 72px;
        color: var(--white);
    }
    
    @media (max-width: 575px) {
        .hero-2 .hero-content h1 {
            font-size: 42px;
        }
    }
    
    .hero-2 .hero-content p {
        font-size: 16px;
        color: var(--white);
        font-weight: 500;
        max-width: 545px;
        margin-top: 20px;
    }
    
    .hero-2 .hero-content .hero-button {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-top: 50px;
    }
    
    @media (max-width: 767px) {
        .hero-2 .hero-content .hero-button {
            margin-top: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }
    }
    
    .hero-2 .hero-content .hero-button .main-button .theme-btn,
    .hero-2 .hero-content .hero-button .main-button .arrow-btn {
        background-color: var(--theme2);
        color: var(--header);
    }
    
    .hero-2 .hero-content .hero-button .main-button:hover .theme-btn,
    .hero-2 .hero-content .hero-button .main-button:hover .arrow-btn {
        background-color: var(--header);
        color: var(--white);
    }
    
    .hero-2 .hero-content .hero-button .link-btn {
        font-size: 16px;
        font-weight: 700;
        display: inline-block;
        text-decoration: underline;
        color: var(--white);
    }
    
    .hero-2 .hero-image {
        position: relative;
        z-index: 1;
        text-align: center;
    }
    
    .hero-2 .hero-image .bg-shape {
        position: absolute;
        bottom: 0;
        left: 53%;
        transform: translateX(-50%);
        z-index: -1;
    }
    
    @media (max-width: 1399px) {
        .hero-2 .hero-image .bg-shape {
            display: none;
        }
    }
    
    .hero-2 .hero-image img {
        text-align: center;
    }
    
    @media (max-width: 991px) {
        .hero-2 .hero-image img {
            width: 100%;
            height: 100%;
        }
    }
    
    .hero-2 .hero-image .box-shape {
        position: absolute;
        top: 30%;
        left: -20%;
        animation: translateX2 2s forwards infinite alternate;
    }
    
    @media (max-width: 1399px) {
        .hero-2 .hero-image .box-shape {
            display: none;
        }
    }
    
    .hero-2 .hero-image .gap-shape {
        position: absolute;
        bottom: -20px;
        left: -30%;
        animation: translateY2 2s forwards infinite alternate;
    }
    
    @media (max-width: 1399px) {
        .hero-2 .hero-image .gap-shape {
            display: none;
        }
    }
    
    .hero-2 .hero-image .cursor-shape {
        position: absolute;
        right: 50px;
        top: 28%;
        animation: moving 9s linear infinite;
    }
    
    @media (max-width: 1399px) {
        .hero-2 .hero-image .cursor-shape {
            display: none;
        }
    }
    
    .hero-2 .brand-wrapper-2 {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -90px;
        z-index: 9;
        max-width: 1170px;
        border-bottom: 1px solid var(--border);
        padding-bottom: 40px;
    }
    
    @media (max-width: 1899px) {
        .hero-2 .brand-wrapper-2 {
            display: none;
        }
    }
    
    .hero-2 .brand-wrapper-2 .brand-title {
        text-align: center;
        margin-bottom: 30px;
        position: relative;
    }
    
    .hero-2 .brand-wrapper-2 .brand-title::before {
        position: absolute;
        top: 15px;
        left: 5%;
        content: "";
        height: 1px;
        width: 413px;
        background-color: #E5E5E5;
    }
    
    @media (max-width: 1399px) {
        .hero-2 .brand-wrapper-2 .brand-title::before {
            display: none;
        }
    }
    
    .hero-2 .brand-wrapper-2 .brand-title::after {
        position: absolute;
        top: 15px;
        right: 5%;
        content: "";
        height: 1px;
        width: 413px;
        background-color: #E5E5E5;
    }
    
    @media (max-width: 1399px) {
        .hero-2 .brand-wrapper-2 .brand-title::after {
            display: none;
        }
    }
    
    .hero-3 {
        border-radius: 30px;
        padding: 120px 0 120px;
        margin: 0 60px;
        position: relative;
    }
    
    @media (max-width: 1600px) {
        .hero-3 {
            margin: 0 0;
        }
    }
    
    .hero-3 .line-shape {
        position: absolute;
        top: 46%;
        left: 48%;
        transform: translate(-50%, -50%);
    }
    
    @media (max-width: 1399px) {
        .hero-3 .line-shape {
            display: none;
        }
    }
    
    .hero-3 .container-fluid {
        padding: 0 190px;
    }
    
    @media (max-width: 1600px) {
        .hero-3 .container-fluid {
            padding: 0 50px;
        }
    }
    
    @media (max-width: 1399px) {
        .hero-3 .container-fluid {
            padding: 0 40px;
        }
    }
    
    @media (max-width: 1199px) {
        .hero-3 .container-fluid {
            padding: 0 30px;
        }
    }
    
    .hero-3 .hero-content {
        max-width: 580px;
    }
    
    .hero-3 .hero-content h6 {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--theme);
        display: inline-block;
        margin-bottom: 10px;
    }
    
    .hero-3 .hero-content h1 {
        font-size: 60px;
        color: var(--header);
        font-weight: 700;
    }
    
    @media (max-width: 1199px) {
        .hero-3 .hero-content h1 {
            font-size: 50px;
        }
    }
    
    @media (max-width: 767px) {
        .hero-3 .hero-content h1 {
            font-size: 42px;
        }
    }
    
    @media (max-width: 575px) {
        .hero-3 .hero-content h1 {
            font-size: 34px;
        }
    }
    
    .hero-3 .hero-content h1 span {
        background: linear-gradient(90deg, #6A47ED 35.31%, #FB17FF 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .hero-3 .hero-content p {
        font-size: 16px;
        font-weight: 500;
        max-width: 545px;
        margin-top: 100px;
    }
    
    @media (max-width: 1399px) {
        .hero-3 .hero-content p {
            margin-top: 15px;
        }
    }
    
    .hero-3 .hero-content .hero-button {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-top: 50px;
    }
    
    @media (max-width: 767px) {
        .hero-3 .hero-content .hero-button {
            margin-top: 30px;
            flex-wrap: wrap;
        }
    }
    
    .hero-3 .hero-content .hero-button .link-btn {
        font-size: 16px;
        font-weight: 700;
        display: inline-block;
        text-decoration: underline;
    }
    
    .hero-3 .hero-image {
        position: relative;
        z-index: 9;
    }
    
    .hero-3 .hero-image img {
        width: 100%;
        height: 100%;
    }
    
    .mean-container a.meanmenu-reveal {
        display: none;
    }
    
    .mean-container .mean-nav {
        background: none;
        margin-top: 0;
    }
    
    .mean-container .mean-bar {
        padding: 0;
        min-height: auto;
        background: none;
    }
    
    .mean-container .mean-nav>ul {
        padding: 0;
        margin: 0;
        width: 100%;
        list-style-type: none;
        display: block !important;
    }
    
    .mean-container .mean-nav>ul .homemenu-items {
        display: flex;
        align-items: center;
        gap: 30px;
        justify-content: space-between;
    }
    
    @media (max-width: 1199px) {
        .mean-container .mean-nav>ul .homemenu-items {
            flex-wrap: wrap;
        }
    }
    
    .mean-container .mean-nav>ul .homemenu-items .homemenu {
        position: relative;
    }
    
    @media (max-width: 1199px) {
        .mean-container .mean-nav>ul .homemenu-items .homemenu {
            max-width: 300px;
            text-align: center;
            margin: 0 auto;
            border: 1px solid var(--border);
            padding: 10px;
        }
    }
    
    .mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb {
        position: relative;
    }
    
    .mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;
        gap: 10px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
        margin-top: 20px;
    }
    
    .mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
        padding: 12px 20px;
        color: var(--white) !important;
        width: initial;
        font-size: 16px;
        text-align: center;
        border-radius: 0;
    }
    
    .mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
        color: var(--white) !important;
    }
    
    .mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb::before {
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
        background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        overflow: hidden;
        opacity: 0;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        content: "";
    }
    
    .mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
        visibility: visible;
        opacity: 1;
    }
    
    .mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }
    
    .mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
        opacity: 1;
        visibility: visible;
        bottom: 50%;
        transform: translateY(50%);
    }
    
    .mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb img {
        width: 100%;
    }
    
    .mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-title {
        text-align: center;
        margin: 15px auto;
        display: inline-block;
        font-size: 16px;
    }
    
    .mean-container a.meanmenu-reveal {
        display: none !important;
    }
    
    .mean-container .mean-nav ul li a {
        width: 100%;
        padding: 10px 0;
        color: var(--header);
        font-size: 16px;
        line-height: 1.5;
        font-weight: 600;
        text-transform: capitalize;
        border-bottom: 1px solid var(--border) !important;
        border: none;
    }
    
    .mean-container .mean-nav ul li a:hover {
        color: var(--theme);
    }
    
    .mean-container .mean-nav ul li a:last-child {
        border-bottom: 0;
    }
    
    .mean-container .mean-nav ul li a:hover {
        color: var(--theme);
    }
    
    .mean-container .mean-nav ul li a.mean-expand {
        margin-top: 5px;
        padding: 0 !important;
    }
    
    .mean-container .mean-nav ul li>a>i {
        display: none;
    }
    
    .mean-container .mean-nav ul li>a.mean-expand i {
        display: inline-block;
        font-size: 18px;
    }
    
    .mean-container .mean-nav>ul>li:first-child>a {
        border-top: 0;
    }
    
    .mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transition: all 0.4s ease-in-out;
    }
    
    .mean-container .mean-nav ul li .mega-menu li a {
        height: 200px;
        width: 100%;
        padding: 0;
        border-top: 0;
        margin-bottom: 20px;
    }
    
    .scrolling-wrap {
        overflow: hidden;
        white-space: nowrap;
        display: flex;
        gap: 20px;
        margin-top: -14px;
    }
    
    .scrolling-wrap .comm {
        display: flex;
        align-items: center;
        animation: scroll 60s linear infinite;
        gap: 30px;
        cursor: pointer;
    }
    
    .scrolling-wrap .comm .cmn-textslide {
        font-size: 60px;
        font-weight: 800;
        line-height: 80px;
        text-transform: capitalize;
        color: var(--header);
        font-family: "Plus Jakarta Sans", sans-serif;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .scrolling-wrap .comm .cmn-textslide img {
        margin-right: 10px;
    }
    
    .scrolling-wrap .comm .cmn-textslide.stroke-text {
        -webkit-text-stroke-width: 1;
        -webkit-text-stroke: 1px #17012C;
        -webkit-text-fill-color: transparent;
    }
    
    .scrolling-wrap:hover .comm {
        animation-play-state: paused;
    }
    
    @media (max-width: 1399px) {
        .scrolling-wrap .comm {
            gap: 20px;
        }
    }
    
    @media (max-width: 991px) {
        .scrolling-wrap {
            gap: 14px;
        }
        .scrolling-wrap .comm {
            gap: 14px;
        }
    }
    
    @media (max-width: 575px) {
        .scrolling-wrap .comm {
            gap: 12px;
        }
    }
    
    .marquee-section-1 {
        position: relative;
        z-index: 99;
    }
    
    .mycustom-marque.style-2 {
        border: 1px solid var(--header);
        background: var(--white);
        box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
        transform: rotate(1.913deg);
        margin-top: -15px;
        position: relative;
        z-index: 9;
    }
    
    @media (max-width: 1399px) {
        .mycustom-marque.style-2 {
            margin-top: 0;
            transform: rotate(0);
        }
    }
    
    .mycustom-marque.style-2 .scrolling-wrap .comm .cmn-textslide {
        font-size: 30px;
        font-weight: 800;
        text-transform: capitalize;
        color: var(--header);
        padding-top: 10px;
    }
    
    .mycustom-marque.style-2.bg-2 {
        background-color: var(--header);
        border: none;
        box-shadow: none;
        margin-top: 0;
    }
    
    .mycustom-marque.style-2.bg-2 .scrolling-wrap .comm .cmn-textslide {
        color: var(--white);
        padding-top: 0;
    }
    
    .mycustom-marque.style-3 {
        background: var(--theme2);
        transform: rotate(-2.772deg);
        margin-top: -52px;
        position: relative;
        z-index: 7;
    }
    
    @media (max-width: 1399px) {
        .mycustom-marque.style-3 {
            margin-top: 0;
            transform: rotate(0);
        }
    }
    
    @media (max-width: 1399px) {
        .mycustom-marque.style-3 .scrolling-wrap .comm {
            animation: scroll2 60s linear infinite;
        }
    }
    
    .mycustom-marque.style-3 .scrolling-wrap .comm .cmn-textslide {
        font-size: 30px;
        font-weight: 800;
        text-transform: capitalize;
        color: var(--header);
        padding-top: 0;
    }
    
    .mycustom-marque.style-3 .scrolling-wrap:hover .comm {
        animation-play-state: paused;
    }
    
    .mycustom-marque.style-3.bg-3 {
        background-color: var(--theme);
        border: none;
        box-shadow: none;
        margin-top: -70px;
    }
    
    @media (max-width: 1399px) {
        .mycustom-marque.style-3.bg-3 {
            margin-top: 0;
        }
    }
    
    .mycustom-marque.style-3.bg-3 .scrolling-wrap .comm .cmn-textslide {
        color: var(--white);
        padding-top: 0;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }
    
    @keyframes scroll3 {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(100%);
        }
    }
    
    @keyframes scroll2 {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-200%);
        }
    }
    
    .marquee-2 {
        margin-bottom: 30px;
    }
    
    @media (max-width: 1399px) {
        .marquee-2 {
            margin-bottom: 0;
        }
    }
    
    .news-box-items {
        margin-top: 30px;
        padding: 16px;
        background-color: var(--white);
        border-radius: 16px;
        box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.06);
    }
    
    .news-box-items .news-image {
        border-radius: 12px;
        overflow: hidden;
    }
    
    .news-box-items .news-image img {
        width: 100%;
        height: 100%;
        border-radius: 12px;
        transition: all 0.4s ease-in-out;
    }
    
    .news-box-items .news-content {
        padding: 25px 14px;
    }
    
    .news-box-items .news-content .post-cat {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-bottom: 10px;
    }
    
    @media (max-width: 1399px) {
        .news-box-items .news-content .post-cat {
            flex-wrap: wrap;
            gap: 10px;
        }
    }
    
    .news-box-items .news-content .post-cat li {
        font-size: 14px;
        font-weight: 400;
    }
    
    .news-box-items .news-content .post-cat li svg {
        margin-right: 5px;
    }
    
    .news-box-items .news-content h5 {
        line-height: 140%;
    }
    
    .news-box-items .news-content h5 a:hover {
        color: var(--theme);
    }
    
    .news-box-items .news-content .news-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 30px;
    }
    
    .news-box-items .news-content .news-btn .link-btn {
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
        color: #535353;
        text-transform: capitalize;
    }
    
    .news-box-items .news-content .news-btn .link-btn:hover {
        color: var(--theme);
    }
    
    .news-box-items:hover .news-image img {
        transform: scale(1.1);
    }
    
    .news-section {
        position: relative;
        z-index: 7;
    }
    
    .news-section .container-fluid {
        padding: 0 175px;
    }
    
    @media (max-width: 1600px) {
        .news-section .container-fluid {
            padding: 0 50px;
        }
    }
    
    @media (max-width: 1399px) {
        .news-section .container-fluid {
            padding: 0 40px;
        }
    }
    
    @media (max-width: 1199px) {
        .news-section .container-fluid {
            padding: 0 30px;
        }
    }
    
    .news-section .left-shape {
        position: absolute;
        top: -180px;
        left: 0;
        z-index: -1;
    }
    
    .news-card-items {
        margin-top: 30px;
        background-color: #FAF9F6;
    }
    
    .news-card-items .news-image {
        overflow: hidden;
    }
    
    .news-card-items .news-image img {
        width: 100%;
        height: 100%;
        transition: all 0.4s ease-in-out;
    }
    
    .news-card-items .news-content {
        padding: 20px;
        padding-left: 74px;
        position: relative;
        overflow: hidden;
    }
    
    @media (max-width: 1899px) {
        .news-card-items .news-content {
            padding-left: 20px;
        }
    }
    
    .news-card-items .news-content .post-cat {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 10px;
    }
    
    .news-card-items .news-content .post-cat li i {
        color: var(--theme);
        margin-right: 5px;
    }
    
    .news-card-items .news-content h5 {
        font-size: 20px;
        font-weight: 500;
    }
    
    .news-card-items .news-content h5 a:hover {
        color: var(--theme);
    }
    
    .news-card-items .news-content .link-btn {
        color: #535353;
        font-weight: 600;
        margin-top: 10px;
    }
    
    .news-card-items .news-content .link-btn:hover {
        color: var(--theme);
    }
    
    .news-card-items .news-content .post-date {
        font-size: 16px;
        font-weight: 500;
        color: var(--white);
        background-color: var(--theme);
        display: inline-block;
        padding: 10px 14px;
        line-height: 1;
        position: absolute;
        top: 60px;
        left: -169px;
        width: 100%;
        transform: rotate(90deg);
        text-align: center;
    }
    
    @media (max-width: 1899px) {
        .news-card-items .news-content .post-date {
            display: none;
        }
    }
    
    .news-card-items .news-content .post-date i {
        margin-right: 10px;
    }
    
    .news-card-items:hover .news-image img {
        transform: scale(1.1);
    }
    
    .news-standard-wrapper .news-standard-items {
        border: 1px solid #E3E3E3;
        padding: 30px;
        border-radius: 16px;
    }
    
    .news-standard-wrapper .news-standard-items:not(:last-child) {
        margin-bottom: 30px;
    }
    
    .news-standard-wrapper .news-standard-items .thumb {
        position: relative;
    }
    
    .news-standard-wrapper .news-standard-items .thumb img {
        width: 100%;
        height: 100%;
    }
    
    .news-standard-wrapper .news-standard-items .content {
        margin-top: 30px;
    }
    
    .news-standard-wrapper .news-standard-items .content .post-cat {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-bottom: 20px;
    }
    
    .news-standard-wrapper .news-standard-items .content .post-cat li i {
        color: var(--theme);
        margin-right: 5px;
    }
    
    .news-standard-wrapper .news-standard-items .content h3 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .news-standard-wrapper .news-standard-items .content h3 a:hover {
        color: var(--theme);
    }
    
    .news-standard-wrapper .news-standard-items .content .theme-btn {
        display: inline-block;
        padding: 18px 30px;
        background-color: var(--theme);
        color: var(--white);
        line-height: 1;
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        margin-top: 30px;
    }
    
    .news-standard-wrapper .news-standard-items .content .theme-btn i {
        margin-left: 8px;
    }
    
    .news-standard-wrapper .news-standard-items .content .theme-btn:hover {
        background-color: var(--header);
    }
    
    .main-sidebar .single-sidebar-widget {
        padding: 40px 30px;
        background-color: var(--bg);
        margin-bottom: 30px;
        border-radius: 10px;
    }
    
    .main-sidebar .single-sidebar-widget .wid-title {
        margin-bottom: 25px;
    }
    
    .main-sidebar .single-sidebar-widget .wid-title h4 {
        font-weight: 600;
    }
    
    .main-sidebar .single-sidebar-widget .search-widget form {
        width: 100%;
        position: relative;
    }
    
    .main-sidebar .single-sidebar-widget .search-widget form input {
        background-color: var(--white);
        font-size: 16px;
        padding: 20px;
        width: 100%;
        border: none;
        color: var(--text);
    }
    
    .main-sidebar .single-sidebar-widget .search-widget form button {
        position: absolute;
        right: 0;
        top: 0;
        width: 70px;
        font-size: 16px;
        height: 100%;
        background-color: var(--theme);
        color: var(--white);
        text-align: center;
        transition: all 0.3s ease-in-out;
    }
    
    .main-sidebar .single-sidebar-widget .search-widget form button:hover {
        background-color: var(--header);
    }
    
    .main-sidebar .single-sidebar-widget .news-widget-categories ul li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px 25px;
        background-color: var(--white);
        font-weight: 500;
        transition: all 0.4s ease-in-out;
        border-radius: 0;
        font-size: 16px;
        line-height: 1;
    }
    
    .main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
        color: var(--header);
    }
    
    .main-sidebar .single-sidebar-widget .news-widget-categories ul li span {
        transition: all 0.4s ease-in-out;
        color: var(--header);
    }
    
    .main-sidebar .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
        margin-bottom: 12px;
    }
    
    .main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover {
        background-color: var(--theme);
    }
    
    .main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a {
        color: var(--white);
    }
    
    .main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover span {
        color: var(--white);
    }
    
    .main-sidebar .single-sidebar-widget .news-widget-categories ul li.active {
        background-color: var(--theme);
    }
    
    .main-sidebar .single-sidebar-widget .news-widget-categories ul li.active a {
        color: var(--white);
    }
    
    .main-sidebar .single-sidebar-widget .news-widget-categories ul li.active span {
        color: var(--white);
    }
    
    .main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    
    .main-sidebar .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
        margin-bottom: 20px;
        border-bottom: 1px solid var(--border);
        padding-bottom: 20px;
    }
    
    .main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
        margin-bottom: 8px;
    }
    
    .main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
        color: var(--theme);
        margin-right: 8px;
    }
    
    .main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
        font-weight: 700;
    }
    
    .main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
        color: var(--theme);
    }
    
    .main-sidebar .single-sidebar-widget .tagcloud a {
        display: inline-block;
        padding: 11px 20px;
        line-height: 1;
        font-size: 16px;
        font-weight: 500;
        background: var(--white);
        margin-right: 5px;
        text-transform: capitalize;
        margin-bottom: 10px;
        border-radius: 0;
        transition: all 0.4s ease-in-out;
        color: var(--text);
    }
    
    .main-sidebar .single-sidebar-widget .tagcloud a:last-child {
        margin-right: 0;
    }
    
    .main-sidebar .single-sidebar-widget .tagcloud a:hover {
        background-color: var(--theme);
        color: var(--white);
    }
    
    .news-details-wrapper .news-post-details .single-news-post .post-featured-thumb img {
        width: 100%;
        height: 100%;
    }
    
    .news-details-wrapper .news-post-details .single-news-post .post-content {
        margin-top: 30px;
    }
    
    .news-details-wrapper .news-post-details .single-news-post .post-content .post-list {
        gap: 30px;
        margin-bottom: 20px;
        border-bottom: 1px solid #F2F5FA;
        padding-bottom: 20px;
    }
    
    .news-details-wrapper .news-post-details .single-news-post .post-content .post-list li {
        font-size: 14px;
        font-weight: 500;
    }
    
    .news-details-wrapper .news-post-details .single-news-post .post-content .post-list li i {
        color: var(--theme);
        margin-right: 5px;
    }
    
    .news-details-wrapper .news-post-details .single-news-post .post-content h3 {
        margin-bottom: 20px;
        font-size: 30px;
    }
    
    @media (max-width: 575px) {
        .news-details-wrapper .news-post-details .single-news-post .post-content h3 {
            font-size: 24px;
        }
    }
    
    .news-details-wrapper .news-post-details .single-news-post .post-content h3 a:hover {
        color: var(--theme);
    }
    
    .news-details-wrapper .news-post-details .single-news-post .post-content p {
        font-weight: 400;
    }
    
    .news-details-wrapper .news-post-details .single-news-post .post-content .hilight-text {
        border-left: 4px solid var(--theme);
        padding: 36px 40px;
        border-radius: 10px;
        background-color: var(--bg);
    }
    
    .news-details-wrapper .news-post-details .single-news-post .post-content .hilight-text p {
        font-weight: 400;
        text-transform: capitalize;
        font-style: italic;
        line-height: 26px;
        color: var(--header);
    }
    
    .news-details-wrapper .news-post-details .single-news-post .post-content .hilight-text svg {
        float: right;
        margin-top: -30px;
    }
    
    .news-details-wrapper .news-post-details .single-news-post .post-content .details-image img {
        width: 100%;
        height: 100%;
    }
    
    .news-details-wrapper .news-post-details .tag-share-wrap {
        border-top: 1px solid #F2F5FA;
        border-bottom: 1px solid #F2F5FA;
        padding: 30px 0;
    }
    
    .news-details-wrapper .news-post-details .tag-share-wrap .tagcloud span {
        display: inline-block;
        font-weight: 600;
        color: var(--header);
        margin-right: 15px;
    }
    
    .news-details-wrapper .news-post-details .tag-share-wrap .tagcloud a {
        display: inline-block;
        padding: 12px 26px;
        line-height: 1;
        background: transparent;
        border: 1px solid #F2F5FA;
        margin-right: 8px;
        text-transform: capitalize;
        font-weight: 500;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        border-radius: 0;
    }
    
    @media (max-width: 575px) {
        .news-details-wrapper .news-post-details .tag-share-wrap .tagcloud a {
            margin-bottom: 5px;
        }
    }
    
    .news-details-wrapper .news-post-details .tag-share-wrap .tagcloud a:hover {
        background-color: var(--theme);
        color: var(--white);
    }
    
    .news-details-wrapper .news-post-details .tag-share-wrap .social-share span {
        font-size: 16px;
        color: var(--header);
        font-weight: 600;
    }
    
    .news-details-wrapper .news-post-details .tag-share-wrap .social-share a {
        font-size: 16px;
        color: var(--header);
    }
    
    .news-details-wrapper .news-post-details .tag-share-wrap .social-share a:not(:last-child) {
        margin-right: 10px;
    }
    
    .news-details-wrapper .news-post-details .tag-share-wrap .social-share a:hover {
        color: var(--theme);
    }
    
    .news-details-wrapper .news-post-details .comments-area {
        margin-top: 40px;
    }
    
    .news-details-wrapper .news-post-details .comments-area .comments-heading {
        margin-bottom: 30px;
    }
    
    @media (max-width: 575px) {
        .news-details-wrapper .news-post-details .comments-area .comments-heading {
            margin-bottom: 20px;
        }
    }
    
    .news-details-wrapper .news-post-details .comments-area .comments-heading h3 {
        font-size: 24px;
        font-weight: 700;
    }
    
    @media (max-width: 575px) {
        .news-details-wrapper .news-post-details .comments-area .comments-heading h3 {
            font-size: 22px;
        }
    }
    
    .news-details-wrapper .news-post-details .comments-area .blog-single-comment {
        border-bottom: 1px solid #D4DCED;
    }
    
    @media (max-width: 575px) {
        .news-details-wrapper .news-post-details .comments-area .blog-single-comment {
            flex-wrap: wrap;
            gap: 20px;
        }
    }
    
    .news-details-wrapper .news-post-details .comments-area .blog-single-comment .content .head {
        margin-bottom: 10px;
    }
    
    .news-details-wrapper .news-post-details .comments-area .blog-single-comment .content .head .con h5 {
        margin-bottom: 5px;
        font-weight: 600;
    }
    
    .news-details-wrapper .news-post-details .comments-area .blog-single-comment .content .reply {
        padding: 6px 16px;
        font-weight: 400;
        border-radius: 50px;
        background-color: var(--theme);
        color: var(--white);
        transition: all 0.4s ease-in-out;
    }
    
    .news-details-wrapper .news-post-details .comments-area .blog-single-comment .content .reply:hover {
        background-color: var(--header);
    }
    
    .news-details-wrapper .news-post-details .comments-area .blog-single-comment .content .reply.color-2 {
        background-color: var(--header);
    }
    
    .news-details-wrapper .news-post-details .comments-area .blog-single-comment .content .reply.color-2:hover {
        background-color: var(--theme);
    }
    
    .news-details-wrapper .news-post-details .comment-form-wrap h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    @media (max-width: 575px) {
        .news-details-wrapper .news-post-details .comment-form-wrap h3 {
            margin-bottom: 20px;
        }
    }
    
    .news-details-wrapper .news-post-details .comment-form-wrap .form-clt span {
        color: var(--header);
        display: inline-block;
        margin-bottom: 10px;
    }
    
    .news-details-wrapper .news-post-details .comment-form-wrap .form-clt input,
    .news-details-wrapper .news-post-details .comment-form-wrap .form-clt textarea {
        width: 100%;
        outline: none;
        border: none;
        background-color: transparent;
        border: 1px solid #D4DCED;
        padding: 16px 20px;
        font-weight: 500;
        color: var(--text);
    }
    
    .news-details-wrapper .news-post-details .comment-form-wrap .form-clt input::placeholder,
    .news-details-wrapper .news-post-details .comment-form-wrap .form-clt textarea::placeholder {
        color: var(--text);
    }
    
    .news-details-wrapper .news-post-details .comment-form-wrap .form-clt textarea {
        padding-bottom: 100px;
    }
    
    .news-details-wrapper .news-post-details .comment-form-wrap .theme-btn {
        display: inline-block;
        padding: 18px 30px;
        background-color: var(--theme);
        color: var(--white);
        line-height: 1;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.4s ease-in-out;
    }
    
    .news-details-wrapper .news-post-details .comment-form-wrap .theme-btn i {
        margin-left: 8px;
    }
    
    .news-details-wrapper .news-post-details .comment-form-wrap .theme-btn:hover {
        background-color: var(--header);
    }
    
    .preloader {
        align-items: center;
        cursor: default;
        display: flex;
        height: 100%;
        justify-content: center;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 9999999;
    }
    
    .preloader .animation-preloader {
        z-index: 1000;
    }
    
    .preloader .animation-preloader .spinner {
        animation: spinner 1s infinite linear;
        border-radius: 50%;
        border: 3px solid rgba(0, 0, 0, 0.2);
        border-top-color: var(--theme);
        height: 9em;
        margin: 0 auto 3.5em auto;
        width: 9em;
    }
    
    @media (max-width: 767px) {
        .preloader .animation-preloader .spinner {
            width: 7.5em;
            height: 7.5em;
            margin: 0 auto 1.5em auto;
        }
    }
    
    .preloader .animation-preloader .txt-loading {
        font: bold 5em "Plus Jakarta Sans", sans-serif, "Plus Jakarta Sans", sans-serif;
        text-align: center;
        user-select: none;
    }
    
    @media (max-width: 767px) {
        .preloader .animation-preloader .txt-loading {
            font-size: 2.5em;
        }
    }
    
    .preloader .animation-preloader .txt-loading .letters-loading {
        color: var(--theme);
        position: relative;
    }
    
    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
        animation-delay: 0.2s;
    }
    
    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
        animation-delay: 0.4s;
    }
    
    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
        animation-delay: 0.6s;
    }
    
    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
        animation-delay: 0.8s;
    }
    
    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
        animation-delay: 1s;
    }
    
    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
        animation-delay: 1.2s;
    }
    
    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
        animation-delay: 1.4s;
    }
    
    .preloader .animation-preloader .txt-loading .letters-loading::before {
        animation: letters-loading 4s infinite;
        color: var(--header);
        content: attr(data-text-preloader);
        left: 0;
        opacity: 0;
        font-family: "Plus Jakarta Sans", sans-serif;
        position: absolute;
        top: -3px;
        transform: rotateY(-90deg);
    }
    
    .preloader p {
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 8px;
        color: var(--theme);
    }
    
    .preloader .loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        font-size: 0;
        z-index: 1;
        pointer-events: none;
    }
    
    .preloader .loader .row {
        height: 100%;
    }
    
    .preloader .loader .loader-section {
        padding: 0px;
    }
    
    .preloader .loader .loader-section .bg {
        background-color: var(--bg);
        height: 100%;
        left: 0;
        width: 100%;
        transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
    }
    
    .preloader.loaded .animation-preloader {
        opacity: 0;
        transition: 0.3s ease-out;
    }
    
    .preloader.loaded .loader-section .bg {
        width: 0;
        transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
    }
    
    .search-wrap {
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999999;
        background-color: rgba(255, 255, 255, 0.9);
    }
    
    .search-wrap .search-inner {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .search-wrap .search-cell {
        position: absolute;
        top: 50%;
        width: 100%;
        transform: translateY(-50%);
    }
    
    .search-wrap .search-field-holder {
        width: 50%;
        margin: auto;
        position: relative;
        animation: slideInUp 0.3s;
    }
    
    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .search-wrap .search-field-holder {
            width: 70%;
        }
    }
    
    @media (max-width: 575px) {
        .search-wrap .search-field-holder {
            width: 80%;
        }
    }
    
    .search-wrap .main-search-input {
        width: 100%;
        height: 70px;
        border: 0;
        padding: 0 50px;
        text-transform: capitalize;
        background: transparent;
        font-size: 25px;
        color: var(--theme);
        border-bottom: 2px solid var(--theme);
        text-align: center;
        letter-spacing: 2px;
    }
    
    @media (max-width: 575px) {
        .search-wrap .main-search-input {
            height: 50px;
            padding: 0 0;
            line-height: 50px;
            font-size: 18px;
        }
    }
    
    .search-wrap input.form-control,
    .search-wrap input.form-control:focus {
        background-color: var(--theme);
    }
    
    input.main-search-input::placeholder {
        color: var(--theme);
        opacity: 1;
        font-size: 25px;
    }
    
    @media (max-width: 575px) {
        input.main-search-input::placeholder {
            font-size: 18px;
        }
    }
    
    .search-close {
        position: absolute;
        top: 50px;
        right: 50px;
        font-size: 30px;
        color: var(--theme);
        cursor: pointer;
    }
    
    .mouse-cursor {
        position: fixed;
        left: 0;
        top: 0;
        pointer-events: none;
        border-radius: 50%;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        visibility: hidden;
    }
    
    .cursor-inner {
        width: 6px;
        height: 6px;
        z-index: 10000001;
        background-color: var(--theme);
        -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
        -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
        transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }
    
    .cursor-inner.cursor-hover {
        margin-left: -35px;
        margin-top: -35px;
        width: 70px;
        height: 70px;
        background-color: var(--theme);
        opacity: 0.3;
    }
    
    .cursor-outer {
        margin-left: -12px;
        margin-top: -12px;
        width: 30px;
        height: 30px;
        border: 1px solid var(--theme);
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        z-index: 10000000;
        opacity: 0.5;
        -webkit-transition: all 0.08s ease-out;
        -o-transition: all 0.08s ease-out;
        transition: all 0.08s ease-out;
    }
    
    .cursor-outer.cursor-hover {
        opacity: 0;
    }
    
    .back-to-top {
        border-radius: 50%;
        background-color: var(--theme);
        width: 50px;
        height: 50px;
        line-height: 50px;
        color: var(--white);
        font-size: 18px;
        position: fixed;
        display: inline-block;
        z-index: 999;
        right: 30px;
        bottom: 30px;
        transition: all 0.4s ease-in-out;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
    }
    
    .back-to-top:hover {
        background-color: var(--header);
        color: var(--white);
    }
    
    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translate(0);
    }
    
    .pricing-box-items {
        border-radius: 20px;
        border: 1px solid #D4DCFF;
        background: var(--white);
        padding: 30px;
    }
    
    .pricing-box-items .pricing-header {
        border-radius: 16px;
        background: #17012C;
        padding: 24px;
        position: relative;
    }
    
    .pricing-box-items .pricing-header .icon {
        position: absolute;
        top: 24px;
        right: 24px;
    }
    
    .pricing-box-items .pricing-header h4 {
        color: var(--white);
    }
    
    .pricing-box-items .pricing-header h2 {
        color: var(--white);
        font-size: 40px;
        margin-top: 20px;
    }
    
    .pricing-box-items .pricing-header h2 sub {
        color: var(--white);
        font-size: 16px;
        font-weight: 400;
        margin-left: -5px;
    }
    
    .pricing-box-items .price-list {
        margin-top: 30px;
    }
    
    .pricing-box-items .price-list li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .pricing-box-items .price-list li:not(:last-child) {
        margin-bottom: 10px;
    }
    
    .pricing-box-items .price-list li .price-1 {
        font-weight: 500;
    }
    
    .pricing-box-items .price-list li .price-1.color-2 i {
        color: #FF1010;
    }
    
    .pricing-box-items .price-list li .price-1 i {
        color: var(--theme);
        margin-right: 5px;
    }
    
    .pricing-box-items .price-button {
        margin-top: 40px;
    }
    
    .pricing-box-items .price-button .theme-btn {
        text-align: center;
        width: 100%;
        padding: 12px 20px;
        border-radius: 16px;
        background: #17012C;
        display: inline-block;
        color: var(--white);
        font-weight: 700;
    }
    
    .pricing-box-items .price-button .theme-btn i {
        margin-left: 10px;
    }
    
    .pricing-box-items .price-button .theme-btn:hover {
        background-color: var(--theme);
    }
    
    .pricing-box-items.style-2 .pricing-header {
        background: #6A47ED;
    }
    
    .pricing-box-items.style-2 .price-button .theme-btn {
        border: 1.5px solid var(--theme);
        display: inline-block;
        color: var(--theme);
        background: transparent;
    }
    
    .pricing-box-items.style-2 .price-button .theme-btn:hover {
        background-color: var(--theme);
        color: var(--white);
    }
    
    .pricing-content .pricing-tab-header {
        margin-top: 40px;
        margin-bottom: 30px;
        position: relative;
    }
    
    @media (max-width: 767px) {
        .pricing-content .pricing-tab-header {
            margin-bottom: 0;
        }
    }
    
    .pricing-content .pricing-tab-header .arrow-shape {
        position: absolute;
        left: 48.5%;
        top: 0;
        animation: rounded 5s linear infinite;
    }
    
    @media (max-width: 1199px) {
        .pricing-content .pricing-tab-header .arrow-shape {
            display: none;
        }
    }
    
    .pricing-content .pricing-tab-header .nav {
        display: flex;
        align-items: center;
        gap: 0;
        background-color: var(--white);
        border: 1px solid var(--border);
        border-radius: 100px;
        padding: 6px;
        max-width: 210px;
    }
    
    @media (max-width: 991px) {
        .pricing-content .pricing-tab-header .nav {
            max-width: 325px;
        }
    }
    
    @media (max-width: 575px) {
        .pricing-content .pricing-tab-header .nav {
            gap: 15px;
            max-width: 225px;
        }
    }
    
    .pricing-content .pricing-tab-header .nav .nav-link {
        text-align: center;
        padding: 14px 20px;
        border-radius: 100px;
        line-height: 1;
        font-weight: 600;
        font-size: 16px;
        text-transform: capitalize;
        color: var(--header);
        transition: all 0.3s ease-in-out;
    }
    
    @media (max-width: 991px) {
        .pricing-content .pricing-tab-header .nav .nav-link {
            padding: 14px 45px;
            font-size: 18px;
        }
    }
    
    @media (max-width: 575px) {
        .pricing-content .pricing-tab-header .nav .nav-link {
            padding: 12px 20px;
            font-size: 14px;
        }
    }
    
    .pricing-content .pricing-tab-header .nav .nav-link.active {
        position: relative;
        background-color: var(--theme);
        color: var(--white);
    }
    
    .pricing-content .pricing-tab-header .save-text {
        font-weight: 500;
        color: var(--theme);
        font-size: 18px;
        text-align: center;
        margin-left: 60%;
    }
    
    .pricing-section {
        position: relative;
    }
    
    .pricing-section .left-shape {
        position: absolute;
        bottom: 0;
        left: 0;
    }
    
    @media (max-width: 1399px) {
        .pricing-section .left-shape {
            display: none;
        }
    }
    
    .pricing-section .right-shape {
        position: absolute;
        bottom: 0;
        right: 0;
    }
    
    @media (max-width: 1399px) {
        .pricing-section .right-shape {
            display: none;
        }
    }
    
    .case-study-wrapper .case-study-box-items {
        margin-top: 30px;
    }
    
    .case-study-wrapper .case-study-box-items .thumb {
        position: relative;
    }
    
    .case-study-wrapper .case-study-box-items .thumb img {
        width: 100%;
        height: 100%;
        border-radius: 24px;
    }
    
    @media (max-width: 575px) {
        .case-study-wrapper .case-study-box-items .thumb {
            height: 450px;
        }
        .case-study-wrapper .case-study-box-items .thumb img {
            object-fit: cover;
        }
    }
    
    .case-study-wrapper .case-study-box-items .thumb .post-box-items {
        position: absolute;
        top: 30px;
        left: 30px;
    }
    
    .case-study-wrapper .case-study-box-items .thumb .post-box-items ul {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .case-study-wrapper .case-study-box-items .thumb .post-box-items ul li a {
        border-radius: 33px;
        border: 0.5px solid var(--white);
        background: radial-gradient(258.86% 216.49% at -18.48% -74.46%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
        backdrop-filter: blur(25px);
        font-size: 14px;
        font-weight: 500;
        color: var(--white);
        padding: 11px 15px;
        line-height: 1;
        display: inline-block;
    }
    
    .case-study-wrapper .case-study-box-items .thumb .post-box-items ul li a i {
        margin-left: 10px;
    }
    
    .case-study-wrapper .case-study-box-items .thumb .project-title {
        position: absolute;
        bottom: 30px;
        left: 30px;
    }
    
    .case-study-wrapper .case-study-box-items .thumb .project-title img {
        width: initial;
        height: initial;
        border-radius: 0;
        margin-right: 10px;
    }
    
    .case-study-wrapper .case-study-box-items .thumb .project-title a {
        color: var(--white);
    }
    
    .case-study-wrapper .case-study-box-items .thumb .number {
        right: 30px;
        bottom: 30px;
        position: absolute;
        width: 44px;
        height: 44px;
        line-height: 44px;
        text-align: center;
        border-radius: 50%;
        background-color: var(--white);
        font-size: 14px;
        font-weight: 500;
        color: var(--header);
    }
    
    .case-study-wrapper .main-box {
        padding: 0;
        gap: 30px;
        display: flex;
        align-items: center;
    }
    
    @media (max-width: 1399px) {
        .case-study-wrapper .main-box {
            flex-wrap: wrap;
            justify-content: center;
            gap: 0 30px;
        }
    }
    
    .case-study-wrapper .main-box .box {
        background-image: url(../../assets/img/case-studies/05.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 1;
        width: 92px !important;
        height: 328px;
        position: relative;
        overflow: hidden;
        list-style: none;
        border-radius: 24px;
        transition: all 0.4s ease-in-out;
        margin-top: 30px;
        overflow: hidden;
        background-color: var(--theme);
    }
    
    .case-study-wrapper .main-box .box .title-items {
        position: relative;
        z-index: 9;
        height: 100%;
        transition: all 0.4s ease-in-out;
    }
    
    @media (max-width: 1399px) {
        .case-study-wrapper .main-box .box .title-items {
            display: none;
        }
    }
    
    .case-study-wrapper .main-box .box .title-items h3 {
        position: absolute;
        top: 40%;
        left: 70%;
        transform: translate(-50%, -50%) rotate(-90deg);
    }
    
    .case-study-wrapper .main-box .box .title-items h3 a {
        color: var(--white);
        display: ruby-text;
    }
    
    .case-study-wrapper .main-box .box .title-items .number {
        width: 44px;
        height: 44px;
        line-height: 44px;
        text-align: center;
        border-radius: 50%;
        background-color: var(--white);
        font-size: 14px;
        font-weight: 600;
        color: var(--header);
        display: inline-block;
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    @media (max-width: 1399px) {
        .case-study-wrapper .main-box .box .title-items .number {
            display: none;
        }
    }
    
    .case-study-wrapper .main-box .box::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        border-radius: 24px;
        background: var(--theme);
    }
    
    @media (max-width: 1399px) {
        .case-study-wrapper .main-box .box::before {
            display: none;
        }
    }
    
    @media (max-width: 1399px) {
        .case-study-wrapper .main-box .box {
            width: initial !important;
        }
    }
    
    .case-study-wrapper .main-box .box .number-hover {
        width: 44px;
        height: 44px;
        line-height: 44px;
        text-align: center;
        border-radius: 50%;
        background-color: var(--white);
        font-size: 14px;
        font-weight: 600;
        color: var(--header);
        display: inline-block;
        position: absolute;
        top: 30px;
        left: 30px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
    }
    
    @media (max-width: 1399px) {
        .case-study-wrapper .main-box .box .number-hover {
            opacity: 1;
            visibility: visible;
        }
    }
    
    .case-study-wrapper .main-box .box .project-content {
        position: absolute;
        bottom: -100px;
        left: 30px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
        right: 30px;
    }
    
    @media (max-width: 1399px) {
        .case-study-wrapper .main-box .box .project-content {
            opacity: 1;
            visibility: visible;
            bottom: 30px;
        }
    }
    
    .case-study-wrapper .main-box .box .project-content h3 {
        margin-bottom: 10px;
    }
    
    .case-study-wrapper .main-box .box .project-content h3 a {
        color: var(--white);
    }
    
    .case-study-wrapper .main-box .box .project-content p {
        color: var(--white);
        line-height: 162%;
    }
    
    .case-study-wrapper .main-box .box .project-content .link-btn {
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
        color: var(--white);
        text-transform: capitalize;
    }
    
    .case-study-wrapper .main-box .box .project-content .icon {
        transform: rotate(-40deg);
        color: var(--theme);
        transition: all 0.4s ease-in-out;
    }
    
    .case-study-wrapper .main-box .box .project-content .icon:hover {
        transform: rotate(0);
    }
    
    @media (max-width: 1399px) {
        .case-study-wrapper .main-box .box {
            width: 328px !important;
        }
        .case-study-wrapper .main-box .box::before {
            border: 0.5px solid var(--white);
            background: radial-gradient(258.86% 216.49% at -18.48% -74.46%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
            backdrop-filter: blur(25px);
        }
        .case-study-wrapper .main-box .box .number-hover {
            opacity: 1;
            visibility: visible;
        }
        .case-study-wrapper .main-box .box .project-content {
            opacity: 1;
            visibility: visible;
            bottom: 20px;
        }
        .case-study-wrapper .main-box .box .title-items {
            opacity: 0;
            visibility: hidden;
        }
    }
    
    .case-study-wrapper .main-box .box.active {
        width: 328px !important;
    }
    
    .case-study-wrapper .main-box .box.active::before {
        border: 0.5px solid var(--white);
        background: radial-gradient(258.86% 216.49% at -18.48% -74.46%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
        backdrop-filter: blur(25px);
    }
    
    .case-study-wrapper .main-box .box.active .number-hover {
        opacity: 1;
        visibility: visible;
    }
    
    .case-study-wrapper .main-box .box.active .project-content {
        opacity: 1;
        visibility: visible;
        bottom: 30px;
    }
    
    .case-study-wrapper .main-box .box.active .title-items {
        opacity: 0;
        visibility: hidden;
    }
    
    .case-study-section {
        position: relative;
    }
    
    .case-study-section .overlay-shape {
        position: absolute;
        bottom: 0;
        left: 0;
    }
    
    .case-study-section .left-shape {
        position: absolute;
        bottom: 0;
        left: 40px;
    }
    
    @media (max-width: 1600px) {
        .case-study-section .left-shape {
            display: none;
        }
    }
    
    .case-study-section .right-shape {
        position: absolute;
        bottom: 0;
        right: 40px;
    }
    
    @media (max-width: 1600px) {
        .case-study-section .right-shape {
            display: none;
        }
    }
    
    .case-studies-section-2 .client-items {
        position: relative;
        z-index: 9;
    }
    
    .case-studies-section-2 .client-items .client-img {
        margin-top: 15px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .case-studies-section-2 .client-items .client-img .star-icon .star {
        font-size: 14px;
        color: #FBB03B;
    }
    
    .case-studies-section-2 .client-items .client-img .star-icon span {
        color: var(--white);
        font-size: 14px;
        line-height: 1;
    }
    
    .case-studies-wrapper-2 .case-studies-items {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 30px;
        padding: 35px 0;
        position: relative;
    }
    
    @media (max-width: 991px) {
        .case-studies-wrapper-2 .case-studies-items {
            flex-wrap: wrap;
            gap: 30px;
        }
    }
    
    .case-studies-wrapper-2 .case-studies-items .content {
        max-width: 570px;
    }
    
    .case-studies-wrapper-2 .case-studies-items .content h3 a {
        color: var(--white);
    }
    
    .case-studies-wrapper-2 .case-studies-items .content h3 a:hover {
        color: var(--theme);
    }
    
    .case-studies-wrapper-2 .case-studies-items .content span {
        color: var(--white);
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .case-studies-wrapper-2 .case-studies-items .content p {
        color: var(--white);
    }
    
    .case-studies-wrapper-2 .case-studies-items .main-button .theme-btn,
    .case-studies-wrapper-2 .case-studies-items .main-button .arrow-btn {
        background-color: var(--theme2);
        color: var(--header);
    }
    
    .case-studies-wrapper-2 .case-studies-items .main-button:hover .theme-btn,
    .case-studies-wrapper-2 .case-studies-items .main-button:hover .arrow-btn {
        background-color: var(--white);
    }
    
    .case-studies-wrapper-2 .case-studies-items .case-studies-hover {
        width: 379px;
        height: 256px;
        position: absolute;
        border-radius: 0;
        top: 50%;
        transform: translateY(-50%) rotate(-12.317deg);
        inset-inline-start: 0;
        background-size: cover;
        background-repeat: no-repeat;
        background-position-x: 75%;
        opacity: 0;
        transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
        margin: -200px 0 0 -50px;
        overflow: hidden;
        pointer-events: none;
        z-index: 2;
        visibility: hidden;
    }
    
    .case-studies-wrapper-2 .case-studies-items:hover .case-studies-hover {
        opacity: 1;
        visibility: visible;
    }
    
    .case-studies-section-3 {
        position: relative;
        z-index: 9;
    }
    
    .case-studies-section-3::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: #F8F8F8;
        top: 50%;
        z-index: -1;
    }
    
    .case-studies-section-3 .container-fluid {
        padding: 0 30px;
    }
    
    .case-studies-card-items {
        margin-top: 30px;
    }
    
    .case-studies-card-items .thumb img {
        width: 100%;
        height: 100%;
        border-radius: 30px;
    }
    
    .case-studies-card-items .content {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
    }
    
    .case-studies-card-items .content .title h3 a:hover {
        color: var(--theme);
    }
    
    .case-studies-card-items .content .title p {
        font-weight: 500;
        text-transform: capitalize;
    }
    
    .case-studies-card-items .content .icon {
        display: inline-block;
        width: 52px;
        height: 52px;
        line-height: 52px;
        background-color: var(--theme);
        color: var(--white);
        text-align: center;
        border-radius: 50%;
    }
    
    .case-studies-card-items .content .icon:hover {
        background-color: var(--header);
    }
    
    .project-details-wrapper .details-top-items {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #E5E5E5;
        padding-bottom: 40px;
    }
    
    @media (max-width: 1199px) {
        .project-details-wrapper .details-top-items {
            flex-wrap: wrap;
            gap: 20px;
        }
    }
    
    .project-details-wrapper .details-top-items .details-left h2 {
        font-size: 36px;
        font-weight: 700;
    }
    
    .project-details-wrapper .details-top-items .details-left .post-cat {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }
    
    .project-details-wrapper .details-top-items .details-left .post-cat li a {
        display: inline-block;
        font-size: 16px;
        font-weight: 500;
        color: var(--theme);
        text-transform: capitalize;
        border: 1px solid #E5E5E5;
        padding: 8px 15px;
        border-radius: 100px;
        line-height: 1;
    }
    
    .project-details-wrapper .details-top-items .details-right .client-details li {
        font-size: 16px;
        font-weight: 700;
        color: var(--header);
    }
    
    .project-details-wrapper .details-top-items .details-right .client-details li span {
        color: var(--text);
        font-weight: 400;
    }
    
    .project-details-wrapper .project-details-content {
        margin-top: 30px;
    }
    
    .project-details-wrapper .project-details-content h3 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    @media (max-width: 767px) {
        .project-details-wrapper .project-details-content h3 {
            font-size: 32px;
        }
    }
    
    @media (max-width: 575px) {
        .project-details-wrapper .project-details-content h3 {
            font-size: 28px;
        }
    }
    
    .project-details-wrapper .project-details-content .details-image img {
        width: 100%;
        height: 100%;
    }
    
    .project-details-wrapper .project-details-content .list-items {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    @media (max-width: 1399px) {
        .project-details-wrapper .project-details-content .list-items {
            flex-wrap: wrap;
            gap: 20px;
        }
    }
    
    .project-details-wrapper .project-details-content .list-items li {
        color: var(--header);
        text-transform: capitalize;
        position: relative;
    }
    
    .project-details-wrapper .project-details-content .list-items li span {
        padding-left: 25px;
        display: inline-block;
    }
    
    .project-details-wrapper .project-details-content .list-items li::before {
        position: absolute;
        top: 10px;
        left: 0;
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 6px;
        background-color: var(--theme);
    }
    
    .project-details-wrapper .project-details-content .list-items li:not(:last-child) {
        margin-bottom: 15px;
    }
    
    .project-details-wrapper .project-details-content .progress-wrap .pro-items {
        width: 100%;
    }
    
    .project-details-wrapper .project-details-content .progress-wrap .pro-items:not(:last-child) {
        margin-bottom: 20px;
    }
    
    .project-details-wrapper .project-details-content .progress-wrap .pro-items .pro-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
    }
    
    .project-details-wrapper .project-details-content .progress-wrap .pro-items .pro-head .title {
        font-size: 16px;
        color: var(--header);
        font-weight: 700;
    }
    
    .project-details-wrapper .project-details-content .progress-wrap .pro-items .pro-head .point {
        font-size: 16px;
        color: var(--header);
        font-weight: 700;
    }
    
    .project-details-wrapper .project-details-content .progress-wrap .pro-items .progress {
        background: #F6F3FE;
        justify-content: flex-start;
        border-radius: 0;
        align-items: center;
        position: relative;
        display: flex;
        height: 8px;
        width: 100%;
    }
    
    .project-details-wrapper .project-details-content .progress-wrap .pro-items .progress-value {
        animation: load 3s normal forwards;
        border-radius: 0;
        background: var(--theme);
        height: 8px;
        width: 0;
    }
    
    .project-details-wrapper .project-details-content .progress-wrap .pro-items .style-two {
        animation: load2 3s normal forwards;
    }
    
    @keyframes load {
        0% {
            width: 0;
        }
        100% {
            width: 76%;
        }
    }
    
    @keyframes load2 {
        0% {
            width: 0;
        }
        100% {
            width: 85%;
        }
    }
    
    .slider-button {
        border-top: 1px solid #E5E5E5;
        border-bottom: 1px solid #E5E5E5;
        margin-top: 65px;
        padding: 25px 0;
    }
    
    .slider-button .cmn-next,
    .slider-button .cmn-prev {
        width: 70px;
        height: 70px;
        line-height: 70px;
        text-align: center;
        border-radius: 50%;
        transition: all 0.4s;
        border: 1px solid #E5E5E5;
    }
    
    .slider-button .cmn-next i,
    .slider-button .cmn-prev i {
        color: #454750;
        font-size: 24px;
        transition: all 0.4s;
    }
    
    .slider-button .cmn-next:hover,
    .slider-button .cmn-prev:hover {
        background: var(--theme);
        border-color: var(--theme);
    }
    
    .slider-button .cmn-next:hover i,
    .slider-button .cmn-prev:hover i {
        color: var(--white);
    }
    
    @media (max-width: 1399px) {
        .slider-button .cmn-next,
        .slider-button .cmn-prev {
            width: 48px;
            height: 48px;
            line-height: 48px;
        }
        .slider-button .cmn-next i,
        .slider-button .cmn-prev i {
            font-size: 17px;
        }
    }
    
    @media (max-width: 1399px) {
        .slider-button .cmn-next,
        .slider-button .cmn-prev {
            width: 38px;
            height: 38px;
            line-height: 38px;
        }
        .slider-button .cmn-next i,
        .slider-button .cmn-prev i {
            font-size: 16px;
        }
    }
    
    .slider-button .previus-text {
        font-size: 22px;
        color: var(--header);
    }
    
    @media (max-width: 575px) {
        .slider-button .previus-text {
            font-size: 18px;
        }
        .slider-button .project-storke {
            font-size: 30px;
        }
    }
    
    @media (max-width: 575px) {
        .slider-button .previus-text {
            font-size: 16px;
        }
        .slider-button .project-storke {
            font-size: 24px;
        }
    }
    
    @media (max-width: 470px) {
        .slider-button .previus-text {
            font-size: 14px;
        }
        .slider-button .project-storke {
            display: none;
        }
    }
    
    .section-title {
        position: relative;
        z-index: 99;
        margin-bottom: 30px;
        margin-top: -1px;
    }
    
    @media (max-width: 767px) {
        .section-title {
            margin-bottom: 0;
        }
    }
    
    .section-title .sub-title {
        padding: 6px 20px;
        border-radius: 100px;
        display: inline-block;
        background: var(--bg);
        margin-bottom: 20px;
    }
    
    .section-title .sub-title span {
        background: linear-gradient(90deg, #240CF2 0%, #00A9B5 100%);
        display: inline-block;
        font-weight: 700;
        text-transform: uppercase;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 14px;
    }
    
    .section-title .sub-title.bg-color-2 {
        background: rgba(56, 75, 255, 0.1);
    }
    
    .section-title .sub-title.bg-color-3 {
        background: rgba(246, 243, 254, 0.1);
    }
    
    .section-title .sub-title.bg-color-3 span {
        color: var(--white);
        -webkit-text-fill-color: initial;
    }
    
    .section-title-area {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 9;
    }
    
    @media (max-width: 991px) {
        .section-title-area {
            flex-wrap: wrap;
            gap: 30px;
        }
    }
    
    .section-title-area p {
        font-size: 16px;
        font-weight: 600;
        line-height: 175%;
        color: var(--text);
        font-style: italic;
        border-left: 1px solid #6A47ED;
        padding-left: 20px;
    }
    
    .section-title-area p.white-text {
        color: var(--white);
        border-left: 1px solid var(--white);
        font-weight: 500;
    }
    
    .center {
        text-align: center;
        margin: 0 auto;
    }
    
    .section-bg {
        background-color: var(--bg);
    }
    
    .section-bg-black {
        background-color: var(--black);
    }
    
    .theme-bg {
        background-color: var(--theme);
    }
    
    .footer-bg {
        background-color: #18185E;
    }
    
    .section-padding {
        /* padding: 120px 0; */
    }
    
    @media (max-width: 1199px) {
        .section-padding {
            padding: 100px 0;
        }
    }
    
    @media (max-width: 991px) {
        .section-padding {
            padding: 80px 0;
        }
    }
    
    .service-box-items {
        margin-top: 30px;
        display: flex;
        gap: 17px;
        padding: 40px 20px;
        position: relative;
        border: 1px solid var(--border);
        border-radius: 20px;
    }
    
    .service-box-items .content h4 {
        margin-bottom: 5px;
    }
    
    .service-box-items .content h4 a:hover {
        color: var(--theme);
    }
    
    .service-box-items .content p {
        font-family: "DM Sans", sans-serif;
        margin-bottom: 5px;
    }
    
    .service-section {
        position: relative;
    }
    
    .service-section .left-shape {
        position: absolute;
        bottom: 100px;
        left: 0;
    }
    
    @media (max-width: 1899px) {
        .service-section .left-shape {
            display: none;
        }
    }
    
    .service-section .right-shape {
        position: absolute;
        top: 25%;
        right: 50px;
        animation: bounce-x 7s infinite linear;
    }
    
    @media (max-width: 1899px) {
        .service-section .right-shape {
            display: none;
        }
    }
    
    .service-section .bg-shape {
        position: absolute;
        top: 9px;
        right: 0;
        z-index: -1;
    }
    
    @media (max-width: 1199px) {
        .service-section .bg-shape {
            display: none;
        }
    }
    
    .service-section .bg-shape-2 {
        position: absolute;
        top: 15%;
        right: 0;
    }
    
    .service-section .right-shape-3 {
        position: absolute;
        bottom: 0;
        right: 0;
    }
    
    @media (max-width: 1399px) {
        .service-section .right-shape-3 {
            display: none;
        }
    }
    
    .service-card-items {
        margin-top: 30px;
        padding: 50px;
        border: 1px solid #DDE0E9;
        background-color: var(--white);
        border-radius: 20px;
        text-align: center;
        position: relative;
        z-index: 99;
    }
    
    .service-card-items .title {
        margin-bottom: 20px;
    }
    
    .service-card-items .title a:hover {
        color: var(--theme);
    }
    
    @media (max-width: 1199px) {
        .service-card-items .service-thumb img {
            width: 100%;
            height: 100%;
        }
    }
    
    .service-card-items .thumb img {
        width: 100%;
        height: 100%;
    }
    
    .service-card-items .content {
        margin-top: 20px;
    }
    
    .service-card-items .content .service-btn {
        display: inline-block;
        font-size: 16px;
        font-weight: 500;
        line-height: 1;
        border-radius: 24px;
        border: 1px solid #DDE0E9;
        padding: 16px 30px;
        color: var(--text);
        margin-top: 30px;
    }
    
    .service-card-items .content .service-btn i {
        margin-left: 10px;
    }
    
    .service-card-items .content .service-btn:hover {
        background-color: var(--theme);
        color: var(--white);
        border: 1px solid var(--theme);
    }
    
    .service-card-items.style-2 .service-thumb img {
        width: 100%;
        height: 100%;
    }
    
    .service-card-items.style-2 .content .title-2 {
        margin-bottom: 20px;
    }
    
    .service-card-items.style-2 .content .title-2 a:hover {
        color: var(--theme);
    }
    
    .service-details-wrapper .details-image {
        margin-bottom: 50px;
    }
    
    .service-details-wrapper .details-image img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }
    
    .service-details-wrapper .main-sidebar .single-sidebar-widget {
        padding: 40px 30px;
        background-color: var(--bg);
        margin-bottom: 30px;
        border-radius: 10px;
    }
    
    .service-details-wrapper .main-sidebar .single-sidebar-widget .wid-title {
        margin-bottom: 25px;
    }
    
    .service-details-wrapper .main-sidebar .single-sidebar-widget .wid-title h4 {
        position: relative;
        padding-bottom: 15px;
        display: inline-block;
    }
    
    .service-details-wrapper .main-sidebar .single-sidebar-widget .wid-title h4::after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 20px;
        height: 2px;
        content: "";
        background-color: var(--theme);
    }
    
    .service-details-wrapper .main-sidebar .single-sidebar-widget .wid-title h4::before {
        position: absolute;
        bottom: 0;
        left: 30px;
        width: 63px;
        height: 2px;
        content: "";
        background-color: var(--theme);
    }
    
    .service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px 25px;
        background-color: var(--white);
        font-weight: 500;
        transition: all 0.4s ease-in-out;
        border-radius: 0;
        font-size: 16px;
        line-height: 1;
    }
    
    .service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li a {
        color: var(--header);
    }
    
    .service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li span {
        transition: all 0.4s ease-in-out;
        color: var(--header);
    }
    
    .service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li:not(:last-child) {
        margin-bottom: 12px;
    }
    
    .service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li:hover {
        background-color: var(--theme);
    }
    
    .service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li:hover a {
        color: var(--white);
    }
    
    .service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li:hover span {
        color: var(--white);
    }
    
    .service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li.active {
        background-color: var(--theme);
    }
    
    .service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li.active a {
        color: var(--white);
    }
    
    .service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li.active span {
        color: var(--white);
    }
    
    .service-details-wrapper .service-details-content h3 {
        font-size: 30px;
        font-weight: 800;
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .service-details-wrapper .service-details-content .thumb {
        margin-bottom: 40px;
    }
    
    .service-details-wrapper .service-details-content .thumb img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }
    
    .service-details-wrapper .service-details-content .details-list-items {
        margin-top: 30px;
        display: flex;
        align-items: center;
        gap: 100px;
    }
    
    @media (max-width: 1199px) {
        .service-details-wrapper .service-details-content .details-list-items {
            flex-wrap: wrap;
            gap: 30px;
        }
    }
    
    .service-details-wrapper .service-details-content .details-list-items .details-list li {
        font-weight: 500;
        font-size: 16px;
        color: var(--header);
    }
    
    .service-details-wrapper .service-details-content .details-list-items .details-list li:not(:last-child) {
        margin-bottom: 15px;
    }
    
    .service-details-wrapper .service-details-content .details-list-items .details-list li i {
        color: var(--theme);
        margin-right: 8px;
    }
    
    .team-wrapper {
        max-width: 1240px;
        margin: 0 auto;
    }
    
    .team-wrapper .team-image {
        text-align: center;
        position: relative;
    }
    
    .team-wrapper .team-image .shape-image {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }
    
    @media (max-width: 1199px) {
        .team-wrapper .team-image .shape-image {
            display: none;
        }
    }
    
    @media (max-width: 991px) {
        .team-wrapper .team-image .shape-image {
            display: block;
        }
    }
    
    @media (max-width: 575px) {
        .team-wrapper .team-image .shape-image {
            display: none;
        }
    }
    
    .team-wrapper .team-content p {
        font-weight: 500;
    }
    
    .team-wrapper .team-content .list-items {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-top: 30px;
        margin-bottom: 40px;
    }
    
    @media (max-width: 1199px) {
        .team-wrapper .team-content .list-items {
            flex-wrap: wrap;
            gap: 20px;
        }
    }
    
    .team-wrapper .team-content .list-items ul li {
        font-weight: 600;
        color: var(--header);
    }
    
    .team-wrapper .team-content .list-items ul li:not(:last-child) {
        margin-bottom: 15px;
    }
    
    .team-wrapper .team-content .list-items ul li svg {
        margin-right: 5px;
    }
    
    .team-wrapper .team-image-2 {
        text-align: center;
        position: relative;
        z-index: 1;
        max-width: 495px;
    }
    
    .team-wrapper .team-image-2::before {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 495px;
        height: 503px;
        content: "";
        border-radius: 250px 250px 0px 0px;
        background: #EED9FF;
        z-index: -1;
    }
    
    @media (max-width: 470px) {
        .team-wrapper .team-image-2::before {
            display: none;
        }
    }
    
    .team-wrapper .team-image-2 .client-shape {
        position: absolute;
        top: 17%;
        left: -25%;
    }
    
    @media (max-width: 575px) {
        .team-wrapper .team-image-2 .client-shape {
            display: none;
        }
    }
    
    .team-wrapper .team-image-2 .box-shape {
        position: absolute;
        bottom: 30px;
        right: -18%;
    }
    
    @media (max-width: 1399px) {
        .team-wrapper .team-image-2 .box-shape {
            right: -10%;
        }
    }
    
    @media (max-width: 1199px) {
        .team-wrapper .team-image-2 .box-shape {
            right: 0;
        }
    }
    
    @media (max-width: 575px) {
        .team-wrapper .team-image-2 .box-shape {
            display: none;
        }
    }
    
    .team-wrapper .team-image-2 .circle-button {
        position: absolute;
        right: 0;
        top: 5%;
        width: 122px;
        height: 122px;
        line-height: 122px;
        background-color: #FD8128;
        border-radius: 50%;
        text-align: center;
        font-size: 24px;
        color: var(--white);
        z-index: 99;
    }
    
    @media (max-width: 470px) {
        .team-wrapper .team-image-2 .circle-button {
            display: none;
        }
    }
    
    .team-wrapper .team-image-2 .circle-button::before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 20px solidrgba(255, 255, 255, 0.2);
        width: 148px;
        height: 148px;
        content: "";
        border-radius: 50%;
        z-index: 1;
    }
    
    .team-wrapper .team-image-2 .circle-button .text-circle {
        position: absolute;
        top: 1%;
        left: 8%;
        animation: cir36 10s linear infinite;
        z-index: 9;
    }
    
    .team-wrapper.style-3 {
        padding-bottom: 35px;
    }
    
    @media (max-width: 1399px) {
        .team-wrapper.style-3 {
            padding-bottom: 0;
        }
    }
    
    @media (max-width: 1399px) {
        .team-wrapper.style-3 {
            padding-bottom: 15px;
        }
    }
    
    .team-wrapper.style-4 {
        max-width: 1220px;
    }
    
    .team-wrapper.style-4 .results-left-items {
        background-color: rgba(149, 120, 255, 0.2);
        display: flex;
        align-items: center;
        padding: 40px;
        gap: 30px;
        border-radius: 16px;
    }
    
    @media (max-width: 575px) {
        .team-wrapper.style-4 .results-left-items {
            flex-wrap: wrap;
        }
    }
    
    .team-wrapper.style-4 .results-left-items .content {
        border-radius: 10px;
        background-color: var(--white);
        max-width: 295px;
        padding: 30px;
    }
    
    .team-wrapper.style-4 .results-left-items .content h2 {
        font-size: 40px;
        font-weight: 600;
        margin-bottom: 110px;
    }
    
    .team-wrapper.style-4 .results-left-items .content h3 {
        margin-bottom: 20px;
        margin-bottom: 10px;
    }
    
    .team-wrapper.style-4 .results-left-items .thumb img {
        border-radius: 10px;
    }
    
    .team-wrapper.style-4 .team-content {
        margin-left: 50px;
    }
    
    @media (max-width: 1199px) {
        .team-wrapper.style-4 .team-content {
            margin-left: 0;
        }
    }
    
    .team-section {
        position: relative;
    }
    
    .team-section .shape-img {
        position: absolute;
        bottom: 0;
        left: 0;
    }
    
    @media (max-width: 1399px) {
        .team-section .shape-img {
            display: none;
        }
    }
    
    .team-section .shape-img-2 {
        position: absolute;
        bottom: 0;
        right: 0;
    }
    
    @media (max-width: 1399px) {
        .team-section .shape-img-2 {
            display: none;
        }
    }
    
    .team-section-3 .container-fluid {
        padding: 0 175px;
    }
    
    @media (max-width: 1600px) {
        .team-section-3 .container-fluid {
            padding: 0 50px;
        }
    }
    
    @media (max-width: 1399px) {
        .team-section-3 .container-fluid {
            padding: 0 40px;
        }
    }
    
    @media (max-width: 1199px) {
        .team-section-3 .container-fluid {
            padding: 0 30px;
        }
    }
    
    .team-card-items {
        margin-top: 30px;
        border-radius: 20px;
        background: var(--white);
        box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.08);
        position: relative;
    }
    
    .team-card-items .icon-shape {
        position: absolute;
        bottom: 30px;
        right: 0;
    }
    
    .team-card-items .social-profile {
        transition: all 0.6s ease-in-out;
        position: absolute;
        top: -153%;
        left: 31%;
        transform: translate(-50%, -50%);
        display: grid;
        gap: 10px;
    }
    
    .team-card-items .social-profile ul {
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
    }
    
    .team-card-items .social-profile ul li {
        margin-bottom: 10px;
    }
    
    .team-card-items .social-profile ul li a {
        width: 36px;
        height: 36px;
        line-height: 36px;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        display: block;
        background: var(--white);
        color: var(--header);
        box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.08);
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        text-align: center;
        margin: 0 auto;
        border-radius: 50%;
    }
    
    .team-card-items .social-profile ul li a:hover {
        background: var(--theme);
        color: var(--white);
    }
    
    .team-card-items .social-profile .plus-btn {
        z-index: 2;
        cursor: pointer;
        width: 36px;
        height: 36px;
        line-height: 36px;
        text-align: center;
        font-size: 18px;
        font-weight: 500;
        display: inline-block;
        background: var(--white);
        color: var(--header);
        transition: all 0.4s ease-in-out;
        border-radius: 50%;
    }
    
    .team-card-items .social-profile:hover ul {
        opacity: 1;
        visibility: visible;
    }
    
    .team-card-items .team-image {
        padding: 16px 16px 0 16px;
    }
    
    .team-card-items .team-image img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        transition: all 0.4s ease-in-out;
    }
    
    .team-card-items .team-content {
        padding: 20px 20px;
    }
    
    .team-card-items .team-content h3 a:hover {
        color: var(--theme);
    }
    
    .team-details-wrapper .team-details-items {
        border: 1px solid #E5E5E5;
        padding: 30px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    @media (max-width: 1399px) {
        .team-details-wrapper .team-details-items {
            flex-wrap: wrap;
            gap: 30px;
        }
    }
    
    .team-details-wrapper .team-details-items .thumb {
        max-width: 390px;
    }
    
    .team-details-wrapper .team-details-items .thumb img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }
    
    .team-details-wrapper .team-details-items .content {
        max-width: 900px;
    }
    
    .team-details-wrapper .team-details-items .content .cont {
        border-bottom: 1px solid var(--border);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .team-details-wrapper .team-details-items .content .signature {
        margin-top: 30px;
    }
    
    .team-details-wrapper .team-details-items .content .team-contact-info {
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 30px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 30px;
    }
    
    @media (max-width: 1199px) {
        .team-details-wrapper .team-details-items .content .team-contact-info {
            padding: 20px 20px;
            flex-wrap: wrap;
            gap: 30px;
        }
    }
    
    .team-details-wrapper .team-details-items .content .team-contact-info .icon-items {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    @media (max-width: 1199px) {
        .team-details-wrapper .team-details-items .content .team-contact-info .icon-items {
            flex-wrap: wrap;
        }
    }
    
    @media (max-width: 767px) {
        .team-details-wrapper .team-details-items .content .team-contact-info .icon-items {
            flex-wrap: nowrap;
            justify-content: space-between;
        }
    }
    
    .team-details-wrapper .team-details-items .content .team-contact-info .icon-items .icon {
        width: 36px;
        height: 36px;
        line-height: 36px;
        border-radius: 50%;
        text-align: center;
        background-color: #F6F3FE;
        color: var(--theme);
    }
    
    .team-details-wrapper .team-details-items .content .team-contact-info .icon-items h5 {
        font-size: 16px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 400;
        text-transform: initial;
    }
    
    .team-details-wrapper .team-details-items .content .team-contact-info .icon-items h5 a {
        color: var(--text);
    }
    
    .team-details-wrapper .team-details-items .content .team-contact-info .icon-items h5 a:hover {
        color: var(--theme);
    }
    
    .personal-information-area {
        background: #F6F3FE;
        padding-top: 60px;
        margin-top: 60px;
    }
    
    .personal-information-wrapper .personal-skill-wrapper {
        padding: 28px 30px;
        background-color: var(--white);
        margin-top: 60px;
    }
    
    .personal-information-wrapper .personal-skill-wrapper h4 {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items {
        width: 100%;
    }
    
    .personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items:not(:last-child) {
        margin-bottom: 20px;
    }
    
    .personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items .pro-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
    }
    
    .personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items .pro-head .title {
        font-size: 16px;
        color: var(--header);
        font-weight: 700;
    }
    
    .personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items .pro-head .point {
        font-size: 16px;
        color: var(--header);
        font-weight: 700;
    }
    
    .personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items .progress {
        background: #F6F3FE;
        justify-content: flex-start;
        border-radius: 0;
        align-items: center;
        position: relative;
        display: flex;
        height: 15px;
        width: 100%;
    }
    
    .personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items .progress-value {
        animation: load 3s normal forwards;
        border-radius: 0;
        background: var(--theme);
        height: 15px;
        width: 0;
    }
    
    .personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items .style-two {
        animation: load2 3s normal forwards;
    }
    
    @keyframes load {
        0% {
            width: 0;
        }
        100% {
            width: 76%;
        }
    }
    
    @keyframes load2 {
        0% {
            width: 0;
        }
        100% {
            width: 85%;
        }
    }
    
    .team-section-33 {
        margin-bottom: -40px;
    }
    
    .team-section-33 .team-card-items {
        margin-bottom: 40px;
    }
    
    .testimonial-box-items {
        margin-top: 30px;
        padding: 40px 30px;
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        padding-left: 0;
        gap: 30px;
        position: relative;
    }
    
    @media (max-width: 470px) {
        .testimonial-box-items {
            flex-wrap: wrap;
            gap: 20px;
            padding-left: 30px;
        }
    }
    
    .testimonial-box-items .icon {
        top: 40px;
        right: 30px;
        position: absolute;
    }
    
    .testimonial-box-items::before {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--bg);
        border-radius: 16px;
        z-index: -1;
        left: 48px;
        width: calc(100% - 48px);
    }
    
    @media (max-width: 470px) {
        .testimonial-box-items::before {
            width: calc(100% - 0px);
            left: 0;
        }
    }
    
    .testimonial-box-items .testimonial-img {
        border: 4px solid var(--white);
        box-shadow: var(--box-shadow);
        display: inline-block;
        border-radius: 50%;
        position: relative;
        background-color: var(--white);
        position: relative;
        z-index: 9;
    }
    
    .testimonial-box-items .testimonial-img .shape-img {
        position: absolute;
        top: 50%;
        left: 72%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }
    
    @media (max-width: 470px) {
        .testimonial-box-items .testimonial-img .shape-img {
            display: none;
        }
    }
    
    .testimonial-box-items .content {
        max-width: 370px;
    }
    
    .testimonial-box-items .content .client-info {
        margin-bottom: 10px;
    }
    
    .testimonial-box-items .content .client-info .star {
        color: #F68B21;
    }
    
    .testimonial-box-items .content .client-info h5 {
        font-weight: 600;
    }
    
    .testimonial-box-items .content p {
        font-weight: 400;
    }
    
    .testimonial-wrapper .testimonial-left {
        margin-top: 30px;
    }
    
    .testimonial-wrapper .testimonial-left .client-img {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 70px;
    }
    
    .testimonial-wrapper .testimonial-left .client-img .content .star {
        color: #F68B21;
    }
    
    .testimonial-wrapper .testimonial-left .client-img .content p {
        font-weight: 700;
    }
    
    .testimonial-wrapper-2 .testimonial-image {
        position: relative;
        text-align: center;
        z-index: 9;
    }
    
    .testimonial-wrapper-2 .testimonial-image .rocket-shape {
        position: absolute;
        top: 12%;
        left: 15%;
        animation: bounce-x 7s infinite linear;
    }
    
    @media (max-width: 1199px) {
        .testimonial-wrapper-2 .testimonial-image .rocket-shape {
            display: none;
        }
    }
    
    .testimonial-wrapper-2 .testimonial-image .msg-shape {
        position: absolute;
        top: 23%;
        right: 15%;
    }
    
    @media (max-width: 1199px) {
        .testimonial-wrapper-2 .testimonial-image .msg-shape {
            display: none;
        }
    }
    
    .testimonial-wrapper-2 .testimonial-image::before {
        position: absolute;
        bottom: 0;
        left: 50%;
        content: "";
        transform: translateX(-50%);
        width: 562px;
        height: 543px;
        border-radius: 1000px 1000px 0px 0px;
        background-color: rgba(6, 51, 71, 0.06);
        z-index: -1;
    }
    
    @media (max-width: 1199px) {
        .testimonial-wrapper-2 .testimonial-image::before {
            display: none;
        }
    }
    
    @media (max-width: 991px) {
        .testimonial-wrapper-2 .testimonial-image::before {
            display: block;
        }
    }
    
    @media (max-width: 575px) {
        .testimonial-wrapper-2 .testimonial-image::before {
            display: none;
        }
    }
    
    .testimonial-wrapper-2 .testimonial-image img {
        text-align: center;
    }
    
    .testimonial-wrapper-2 .testimonial-card-items {
        margin-top: 30px;
        background-color: var(--white);
        border-radius: 16px;
        border: 1px solid #DDE0E9;
        padding: 40px 30px;
        margin-top: 40px;
        max-width: 585px;
        position: relative;
    }
    
    .testimonial-wrapper-2 .testimonial-card-items .client-info {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .testimonial-wrapper-2 .testimonial-card-items .client-info .client-content h5 {
        font-size: 20px;
        font-weight: 600;
    }
    
    .testimonial-wrapper-2 .testimonial-card-items .icon {
        position: absolute;
        right: 30px;
        top: 40px;
    }
    
    .testimonial-wrapper-2 .testimonial-content {
        position: relative;
    }
    
    .testimonial-wrapper-2 .testimonial-content .array-button {
        position: absolute;
        right: 0;
        top: 68%;
        transform: translateY(-50%);
        z-index: 9;
        display: grid;
    }
    
    @media (max-width: 1399px) {
        .testimonial-wrapper-2 .testimonial-content .array-button {
            display: none;
        }
    }
    
    .testimonial-wrapper-3 {
        border: 1px solid var(--border);
        border-radius: 50px;
        padding: 100px 50px;
        position: relative;
    }
    
    .testimonial-wrapper-3.style-2 {
        margin-top: 60px;
    }
    
    @media (max-width: 767px) {
        .testimonial-wrapper-3.style-2 {
            margin-top: 30px;
        }
    }
    
    @media (max-width: 767px) {
        .testimonial-wrapper-3 {
            padding: 50px 35px;
        }
    }
    
    .testimonial-wrapper-3 .client-1 {
        position: absolute;
        top: 46px;
        left: 15%;
    }
    
    @media (max-width: 1199px) {
        .testimonial-wrapper-3 .client-1 {
            display: none;
        }
    }
    
    .testimonial-wrapper-3 .client-2 {
        position: absolute;
        bottom: 89px;
        left: 73px;
    }
    
    @media (max-width: 1199px) {
        .testimonial-wrapper-3 .client-2 {
            display: none;
        }
    }
    
    .testimonial-wrapper-3 .client-3 {
        position: absolute;
        top: 46px;
        right: 15%;
    }
    
    @media (max-width: 1199px) {
        .testimonial-wrapper-3 .client-3 {
            display: none;
        }
    }
    
    .testimonial-wrapper-3 .client-4 {
        position: absolute;
        bottom: 89px;
        right: 73px;
    }
    
    @media (max-width: 1199px) {
        .testimonial-wrapper-3 .client-4 {
            display: none;
        }
    }
    
    .testimonial-wrapper-3 .testimonial-content {
        max-width: 740px;
        margin: 0 auto;
    }
    
    .testimonial-wrapper-3 .testimonial-content .icon {
        width: 120px;
        height: 120px;
        line-height: 120px;
        border-radius: 50%;
        background-color: var(--white);
        box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin: 0 auto 25px;
    }
    
    .testimonial-wrapper-3 .testimonial-content p {
        font-size: 22px;
        font-style: italic;
        color: var(--header);
        font-weight: 500;
        line-height: 182%;
        text-align: center;
    }
    
    .testimonial-wrapper-3 .testimonial-content .client-info {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
        margin-top: 50px;
    }
    
    .testimonial-wrapper-3 .testimonial-content .client-info .content h6 {
        font-size: 16px;
    }
    
    .testimonial-wrapper-3 .testimonial-content .client-info .content span {
        font-size: 15px;
        font-weight: 400;
    }
    
    .testimonial-section-3 {
        position: relative;
    }
    
    .testimonial-section-3 .overlay-shape {
        position: absolute;
        left: 0;
        bottom: 0;
    }
    
    .testimonial-section-3 .overlay-shape-2 {
        position: absolute;
        top: -30%;
        right: 0;
    }
    
    .testimonial-section-3 .left-shape {
        position: absolute;
        left: 0;
        bottom: 10%;
    }
    
    @media (max-width: 1199px) {
        .testimonial-section-3 .left-shape {
            display: none;
        }
    }
    
    .testimonial-section-3 .right-shape {
        position: absolute;
        right: 0;
        top: 15%;
    }
    
    @media (max-width: 1199px) {
        .testimonial-section-3 .right-shape {
            display: none;
        }
    }
    /*# sourceMappingURL=main.css.map */
    
    .form-card {
        background-color: #fff;
        width: 100%;
        max-width: 480px;
        padding: 45px 35px;
        margin: auto;
    }
    
    .form-label {
        color: #202020;
        font-weight: 500;
        font-family: "Poppins", sans-serif !important;
        font-size: 13px;
    }
    
    .form-control {
        height: 45px;
        border-radius: 12px;
        font-size: 13px;
        padding-left: 34px;
    }
    
    .btn-submit {
        background-color: #6a47ed;
        border-radius: 12px;
        color: #fff;
        width: 100%;
        height: 45px;
        font-size: 13px;
    }
    
    .btn-submit:hover {
        background-color: #6a47ed;
        border-radius: 12px;
        color: #fff;
    }
    /************************************************/
    
    .profile-left {
        background-color: #fff;
    }
    
    .sidebar {
        position: sticky;
        top: 0;
        /* height: 100vh; */
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        transition: all 0.3s ease-in-out;
    }
    
    .side_nav_profile {
        background-color: #ffffff1a;
        border-color: #fff3;
        border-radius: .5rem;
        padding: 5px 8px;
    }
    
    .sidebar_nav {
        padding: 0px 6px;
        margin: 0;
        list-style: none;
    }
    
    .dashbaord_icon {
        font-size: 0.65rem;
        font-weight: 500;
        letter-spacing: 0.05rem;
        font-family: "Poppins", sans-serif;
        color: #202020;
        margin-left: 3px;
        margin-bottom: 5px;
    }
    
    .sidebar_nav {
        padding: 0px 6px;
        margin: 0;
        list-style: none;
    }
    
    .sidebar_nav li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #3f3f3f;
        text-decoration: none;
        padding: 10px 4px;
        font-size: 13px;
        border-radius: 5px;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        vertical-align: middle;
    }
    
    .breadcrumb ul {
        padding: 0;
        margin: 0;
    }
    
    .breadcrumb ul li {
        display: inline-block;
        color: #fff;
        font-size: 14px;
    }
    
    .breadcrumb ul li a {
        color: #fff;
        font-size: 14px;
    }
    
    .profile-right {
        background-color: #fff;
        padding: 25px;
    }