        /*@charset "UTF-8";*/
    
        /*@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&amp;display=swap");*/

        @charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

        
        
        @keyframes shape-animaiton1 {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(100px);
            }
        }
        
        @keyframes shape-animaiton2 {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(30px);
            }
        }
        
        @keyframes shape-animaiton3 {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(10px);
            }
        }
        
        @keyframes shape-animaiton4 {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(1000deg);
            }
        }
        
        @keyframes animate1 {
            0% {
                transform: translateY(0px);
            }
            100% {
                transform: translateY(-20px);
            }
        }
        
        @keyframes animate2 {
            0% {
                transform: translateY(0px);
            }
            100% {
                transform: translateY(20px);
            }
        }
        
        @keyframes animate3 {
            0% {
                transform: translateY(0px);
            }
            100% {
                transform: translateY(15px);
            }
        }
        
        @keyframes animate4 {
            0% {
                transform: translateY(0px);
            }
            100% {
                transform: translateY(-25px);
            }
        }
        
        @keyframes animate5 {
            0% {
                transform: scale(0.5);
            }
            100% {
                transform: scale(1);
            }
        }
        
        @keyframes animate6 {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.1);
            }
        }
        
        @keyframes round-circle2 {
            0% {
                transform: rotate(-20deg);
            }
            100% {
                transform: rotate(20deg);
            }
        }
        
        .round-circle2 {
            position: relative;
            animation-name: round-circle2;
            animation-duration: 2s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: ease-in-out;
        }
        
        .shape-animaiton1 {
            position: relative;
            animation-name: shape-animaiton1;
            animation-duration: 2s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
        }
        
        .shape-animaiton2 {
            position: relative;
            animation-name: shape-animaiton2;
            animation-duration: 2s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: ease-in-out;
        }
        
        .shape-animaiton3 {
            position: relative;
            animation-name: shape-animaiton3;
            animation-duration: 2s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: ease-in-out;
        }
        
        .shape-animaiton4 {
            position: relative;
            animation-name: shape-animaiton4;
            animation-duration: 62s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: linear;
        }
        
        .animate1 {
            position: relative;
            animation-name: animate1;
            animation-duration: 2s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: ease-in-out;
        }
        
        .animate2 {
            position: relative;
            animation-name: animate2;
            animation-duration: 2s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: ease-in-out;
        }
        
        .animate3 {
            position: relative;
            animation-name: animate3;
            animation-duration: 4s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: ease-in-out;
        }
        
        .animate4 {
            position: relative;
            animation-name: animate4;
            animation-duration: 4s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: ease-in-out;
        }
        
        .animate5 {
            position: relative;
            animation-name: animate5;
            animation-duration: 4s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: ease-in-out;
        }
        
        .animate6 {
            position: relative;
            animation-name: animate6;
            animation-duration: 2s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: ease-in-out;
        }
        /*
::::::::::::::::::::::::::
ANIMATION AREA CSS
::::::::::::::::::::::::::
*/
        
        body.body,
        html {
            overflow-x: hidden;
        }
        
        body {
            font-family: "Figtree", sans-serif;
            font-size: var(--f-fs-font-fs16);
        }
        
        .body2 {
            background-image: url(../img/bg/body2.png);
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            z-index: -33;
        }
        
        .comon-body {
            background-image: url(../img/bg/comon-bg.png);
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            z-index: -33;
        }
        
        @media screen and (min-width: 769px) {
            body.body2.body.unic-body {
                overflow-x: initial !important;
            }
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        input,
        textarea,
        select,
        option {
            max-width: 100%;
        }
        
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            padding: 0;
            margin: 0;
        }
        
        ul {
            padding: 0;
            margin: 0;
            list-style: none;
        }
        
        p {
            padding: 0;
            margin: 0;
        }
        
        img {
            max-width: 100%;
            max-height: 100%;
        }
        
        a,
        a:hover,
        a:focus {
            outline: none;
            text-decoration: none;
        }
        
        body.body {
            font-size: 16px;
            font-weight: 400;
            line-height: 26px;
            overflow-x: hidden;
            z-index: -33;
            position: relative;
        }
        
        .sp {
            padding: 60px 0px 0 0;
        }
        
        .sp2 {
            padding: 120px 0px;
        }
        
        .pt100 {
            padding-top: 100px;
        }
        
        .pt140 {
            padding-top: 140px;
        }
        
        .pb120 {
            padding-bottom: 120px;
        }
        
        .pl60 {
            padding-left: 60px;
        }
        
        .pb40 {
            padding-bottom: 40px;
        }
        
        .pr60 {
            padding-right: 60px;
        }
        
        @media (max-width: 768px) {
            .sp {
                padding: 30px 0 0 0px;
            }
            .pt100 {
                padding-top: 50px;
            }
            .pt140 {
                padding-top: 70px;
            }
            .pb120 {
                padding-bottom: 60px;
            }
            .sp2 {
                padding: 60px 0px;
            }
            .pl60 {
                padding-left: 0;
            }
            .pr60 {
                padding-right: 0;
            }
        }
        
        .space4 {
            height: 4px;
        }
        
        .space6 {
            height: 6px;
        }
        
        .space28 {
            height: 28px;
        }
        
        .space8 {
            height: 8px;
        }
        
        .space12 {
            height: 12px;
        }
        
        .space14 {
            height: 14px;
        }
        
        .space16 {
            height: 16px;
        }
        
        .space24 {
            height: 24px;
        }
        
        .space32 {
            height: 32px;
        }
        
        .space10 {
            height: 10px;
        }
        
        .space5 {
            height: 5px;
        }
        
        .space5 {
            height: 5px;
        }
        
        @media (max-width: 767px) {
            .space10 {
                height: 5px;
            }
            .sp5 {
                padding-bottom: 50px;
            }
        }
        
        .space20 {
            height: 20px;
        }
        
        @media (max-width: 767px) {
            .space20 {
                height: 10px;
            }
        }
        
        .space30 {
            height: 30px;
        }
        
        @media (max-width: 767px) {
            .space30 {
                height: 15px;
            }
        }
        
        .space40 {
            height: 40px;
        }
        
        @media (max-width: 767px) {
            .space40 {
                height: 20px;
            }
        }
        
        .space50 {
            height: 50px;
        }
        
        .space45 {
            height: 45px;
        }
        
        @media (max-width: 767px) {
            .space50 {
                height: 25px;
            }
            .space70 {
                height: 35px !important;
            }
            .space100 {
                height: 50px !important;
            }
        }
        
        .space60 {
            height: 60px;
        }
        
        .space55 {
            height: 55px;
        }
        
        .space70 {
            height: 70px;
        }
        
        .space80 {
            height: 80px;
        }
        
        .space90 {
            height: 90px;
        }
        
        .space100 {
            height: 100px;
        }
        
        .space120 {
            height: 120px;
        }
        
        .text-right {
            text-align: right;
        }
        
        .section-padding {
            padding: 120px 0;
        }
        
        @media (max-width: 991px) {
            .section-padding {
                padding: 60px 0;
            }
        }
        
        .section-padding2 {
            padding: 120px 0 90px;
        }
        
        @media (max-width: 991px) {
            .section-padding2 {
                padding: 60px 0 30px;
            }
        }
        
        .padding-bottom {
            padding-bottom: 120px;
        }
        
        @media (max-width: 991px) {
            .padding-bottom {
                padding-bottom: 60px;
            }
        }
        
        .padding-bottom2 {
            padding-bottom: 90px;
        }
        
        @media (max-width: 991px) {
            .padding-bottom2 {
                padding-bottom: 30px;
            }
        }
        
        .padding-top {
            padding-top: 120px;
        }
        
        @media (max-width: 991px) {
            .padding-top {
                padding-top: 60px;
            }
        }
        
        .padding-top2 {
            padding-top: 90px;
        }
        
        @media (max-width: 991px) {
            .padding-top2 {
                padding-top: 30px;
            }
        }
        
        .padding-90 {
            padding: 90px 0;
        }
        
        @media (max-width: 991px) {
            .padding-90 {
                padding: 50px 0;
            }
        }
        
        .w-full {
            width: 100%;
        }
        
        @media (min-width: 992px) {
            .w-lg-full {
                width: 100%;
            }
        }
        
        .text-center {
            text-align: center;
        }
        
        @media (min-width: 992px) {
            .text-lg-center {
                text-align: center;
            }
        }
        
        .text-left {
            text-align: left !important;
        }
        
        .weight-400 {
            font-weight: 400 !important;
        }
        
        .weight-500 {
            font-weight: 500 !important;
        }
        
        .weight-600 {
            font-weight: 600 !important;
        }
        
        .weight-700 {
            font-weight: 700 !important;
        }
        
        .weight-800 {
            font-weight: 800 !important;
        }
        
        .weight-900 {
            font-weight: 900 !important;
        }
        
        .font-f-1 {
            font-family: "Hind", sans-serif !important;
        }
        
        .font-f-2 {
            font-family: "Plus Jakarta Sans", sans-serif !important;
        }
        
        .font-f-3 {
            font-family: "Spline Sans", sans-serif !important;
        }
        
        .font-f-4 {
            font-family: "Catamaran", sans-serif !important;
        }
        
        .font-12 {
            font-size: 12px;
        }
        
        .font-14 {
            font-size: 14px;
        }
        
        .font-16 {
            font-size: 16px;
        }
        
        .font-18 {
            font-size: 18px;
        }
        
        .font-20 {
            font-size: 20px;
        }
        
        .font-22 {
            font-size: 22px;
        }
        
        .font-24 {
            font-size: 24px;
        }
        
        .font-26 {
            font-size: 26px;
        }
        
        .font-28 {
            font-size: 28px;
        }
        
        .font-30 {
            font-size: 30px;
        }
        
        .font-32 {
            font-size: 32px;
        }
        
        .font-34 {
            font-size: 34px;
        }
        
        .font-36 {
            font-size: 36px;
        }
        
        .font-40 {
            font-size: 40px;
        }
        
        .font-42 {
            font-size: 42px;
        }
        
        .font-44 {
            font-size: 44px;
        }
        
        .font-46 {
            font-size: 48px;
        }
        
        .font-48 {
            font-size: 48px;
        }
        
        .font-50 {
            font-size: 60px;
        }
        
        .font-52 {
            font-size: 52px;
        }
        
        .font-54 {
            font-size: 54px;
        }
        
        .font-56 {
            font-size: 56px;
        }
        
        .font-58 {
            font-size: 58px;
        }
        
        .font-60 {
            font-size: 60px;
        }
        
        .font-62 {
            font-size: 62px;
        }
        
        .font-70 {
            font-size: 70px;
        }
        
        .font-72 {
            font-size: 72px;
        }
        
        .font-74 {
            font-size: 74px;
        }
        
        .font-76 {
            font-size: 76px;
        }
        
        .font-78 {
            font-size: 78px;
        }
        
        .font-80 {
            font-size: 80px;
        }
        
        .font-82 {
            font-size: 82px;
        }
        
        .font-84 {
            font-size: 84px;
        }
        
        .font-86 {
            font-size: 86px;
        }
        
        .font-88 {
            font-size: 88px;
        }
        
        .font-90 {
            font-size: 90px;
        }
        
        .font-92 {
            font-size: 92px;
        }
        
        .font-94 {
            font-size: 94px;
        }
        
        .font-96 {
            font-size: 96px;
        }
        
        .font-98 {
            font-size: 98px;
        }
        
        .font-100 {
            font-size: 100px;
        }
        
        @media screen and (min-width: 1024px) {
            .text-md-right {
                text-align: right;
            }
            .text-md-center {
                text-align: center;
            }
            .text-md-left {
                text-align: left;
            }
            .font-lg-12 {
                font-size: 12px;
            }
            .font-lg-14 {
                font-size: 14px;
            }
            .font-lg-16 {
                font-size: 16px;
            }
            .font-lg-18 {
                font-size: 18px;
            }
            .font-lg-20 {
                font-size: 20px;
            }
            .font-lg-22 {
                font-size: 22px;
            }
            .font-lg-24 {
                font-size: 24px;
            }
            .font-lg-26 {
                font-size: 26px;
            }
            .font-lg-28 {
                font-size: 28px;
            }
            .font-lg-30 {
                font-size: 30px;
            }
            .font-lg-32 {
                font-size: 32px;
            }
            .font-lg-34 {
                font-size: 34px;
            }
            .font-lg-36 {
                font-size: 36px;
            }
            .font-lg-40 {
                font-size: 40px;
            }
            .font-lg-42 {
                font-size: 42px;
            }
            .font-lg-44 {
                font-size: 44px;
            }
            .font-lg-45 {
                font-size: 45px;
            }
            .font-lg-46 {
                font-size: 48px;
            }
            .font-lg-48 {
                font-size: 48px;
            }
            .font-lg-50 {
                font-size: 60px;
            }
            .font-lg-52 {
                font-size: 52px;
            }
            .font-lg-54 {
                font-size: 54px;
            }
            .font-lg-56 {
                font-size: 56px;
            }
            .font-lg-58 {
                font-size: 58px;
            }
            .font-lg-60 {
                font-size: 60px;
            }
            .font-lg-62 {
                font-size: 62px;
            }
            .font-lg-66 {
                font-size: 66px;
            }
            .font-lg-70 {
                font-size: 70px;
            }
            .font-lg-72 {
                font-size: 72px;
            }
            .font-lg-74 {
                font-size: 74px;
            }
            .font-lg-76 {
                font-size: 76px;
            }
            .font-lg-78 {
                font-size: 78px;
            }
            .font-lg-80 {
                font-size: 80px;
            }
            .font-lg-82 {
                font-size: 82px;
            }
            .font-lg-84 {
                font-size: 84px;
            }
            .font-lg-86 {
                font-size: 86px;
            }
            .font-lg-88 {
                font-size: 88px;
            }
            .font-lg-90 {
                font-size: 90px;
            }
            .font-lg-92 {
                font-size: 92px;
            }
            .font-lg-94 {
                font-size: 94px;
            }
            .font-lg-96 {
                font-size: 96px;
            }
            .font-lg-98 {
                font-size: 98px;
            }
            .font-lg-100 {
                font-size: 100px;
            }
            .line-height-lg-14 {
                line-height: 14px;
            }
            .line-height-lg-16 {
                line-height: 16px;
            }
            .line-height-lg-18 {
                line-height: 18px;
            }
            .line-height-lg-20 {
                line-height: 20px;
            }
            .line-height-lg-22 {
                line-height: 22px;
            }
            .line-height-lg-24 {
                line-height: 24px;
            }
            .line-height-lg-26 {
                line-height: 26px;
            }
            .line-height-lg-28 {
                line-height: 28px;
            }
            .line-height-lg-30 {
                line-height: 30px;
            }
            .line-height-lg-32 {
                line-height: 32px;
            }
            .line-height-lg-34 {
                line-height: 34px;
            }
            .line-height-lg-36 {
                line-height: 36px;
            }
            .line-height-lg-38 {
                line-height: 38px;
            }
            .line-height-lg-40 {
                line-height: 40px;
            }
            .line-height-lg-42 {
                line-height: 42px;
            }
            .line-height-lg-44 {
                line-height: 44px;
            }
            .line-height-lg-48 {
                line-height: 48px;
            }
            .line-height-lg-50 {
                line-height: 50px;
            }
            .line-height-lg-52 {
                line-height: 52px;
            }
            .line-height-lg-54 {
                line-height: 54px;
            }
            .line-height-lg-56 {
                line-height: 56px;
            }
            .line-height-lg-58 {
                line-height: 58px;
            }
            .line-height-lg-60 {
                line-height: 60px;
            }
            .line-height-lg-62 {
                line-height: 62px;
            }
            .line-height-lg-64 {
                line-height: 64px;
            }
            .line-height-lg-66 {
                line-height: 66px;
            }
            .line-height-lg-68 {
                line-height: 68px;
            }
            .line-height-lg-70 {
                line-height: 70px;
            }
            .line-height-lg-72 {
                line-height: 72px;
            }
            .line-height-lg-74 {
                line-height: 74px;
            }
            .line-height-lg-76 {
                line-height: 76px;
            }
            .line-height-lg-78 {
                line-height: 78px;
            }
            .line-height-lg-80 {
                line-height: 80px;
            }
            .line-height-lg-82 {
                line-height: 82px;
            }
            .line-height-lg-84 {
                line-height: 84px;
            }
            .line-height-lg-86 {
                line-height: 86px;
            }
            .line-height-lg-88 {
                line-height: 88px;
            }
            .line-height-lg-90 {
                line-height: 90px;
            }
            .line-height-lg-92 {
                line-height: 92px;
            }
            .line-height-lg-94 {
                line-height: 94px;
            }
            .line-height-lg-96 {
                line-height: 96px;
            }
            .line-height-lg-98 {
                line-height: 98px;
            }
            .line-height-lg-100 {
                line-height: 100px;
            }
        }
        
        @media screen and (min-width: 768px) {
            .font-md-12 {
                font-size: 12px;
            }
            .font-md-14 {
                font-size: 14px;
            }
            .font-md-16 {
                font-size: 16px;
            }
            .font-md-18 {
                font-size: 18px;
            }
            .font-md-20 {
                font-size: 20px;
            }
            .font-md-22 {
                font-size: 22px;
            }
            .font-md-24 {
                font-size: 24px;
            }
            .font-md-26 {
                font-size: 26px;
            }
            .font-md-28 {
                font-size: 28px;
            }
            .font-md-30 {
                font-size: 30px;
            }
            .font-md-32 {
                font-size: 32px;
            }
            .font-md-34 {
                font-size: 34px;
            }
            .font-md-36 {
                font-size: 36px;
            }
            .font-md-40 {
                font-size: 40px;
            }
            .font-md-42 {
                font-size: 42px;
            }
            .font-md-44 {
                font-size: 44px;
            }
            .font-md-46 {
                font-size: 48px;
            }
            .font-md-48 {
                font-size: 48px;
            }
            .font-md-50 {
                font-size: 60px;
            }
            .font-md-52 {
                font-size: 52px;
            }
            .font-md-54 {
                font-size: 54px;
            }
            .font-md-56 {
                font-size: 56px;
            }
            .font-md-58 {
                font-size: 58px;
            }
            .font-md-60 {
                font-size: 60px;
            }
            .font-md-62 {
                font-size: 62px;
            }
            .font-md-74 {
                font-size: 74px;
            }
            .font-md-76 {
                font-size: 76px;
            }
            .font-md-78 {
                font-size: 78px;
            }
            .font-md-80 {
                font-size: 80px;
            }
            .font-md-82 {
                font-size: 82px;
            }
            .font-md-84 {
                font-size: 84px;
            }
            .font-md-86 {
                font-size: 86px;
            }
            .font-md-88 {
                font-size: 88px;
            }
            .font-md-90 {
                font-size: 90px;
            }
            .font-md-92 {
                font-size: 92px;
            }
            .font-md-94 {
                font-size: 94px;
            }
            .font-md-96 {
                font-size: 96px;
            }
            .font-md-98 {
                font-size: 98px;
            }
            .font-md-100 {
                font-size: 100px;
            }
            .line-height-md-12 {
                line-height: 12px;
            }
            .line-height-md-14 {
                line-height: 14px;
            }
            .line-height-md-16 {
                line-height: 16px;
            }
            .line-height-md-18 {
                line-height: 18px;
            }
            .line-height-md-20 {
                line-height: 20px;
            }
            .line-height-md-22 {
                line-height: 22px;
            }
            .line-height-md-24 {
                line-height: 24px;
            }
            .line-height-md-26 {
                line-height: 26px;
            }
            .line-height-md-28 {
                line-height: 28px;
            }
            .line-height-md-30 {
                line-height: 30px;
            }
            .line-height-md-32 {
                line-height: 32px;
            }
            .line-height-md-34 {
                line-height: 34px;
            }
            .line-height-md-36 {
                line-height: 36px;
            }
            .line-height-md-38 {
                line-height: 38px;
            }
            .line-height-md-40 {
                line-height: 40px;
            }
            .line-height-md-42 {
                line-height: 42px;
            }
            .line-height-md-44 {
                line-height: 44px;
            }
            .line-height-md-48 {
                line-height: 48px;
            }
            .line-height-md-50 {
                line-height: 50px;
            }
            .line-height-md-52 {
                line-height: 52px;
            }
            .line-height-md-54 {
                line-height: 54px;
            }
            .line-height-md-56 {
                line-height: 56px;
            }
            .line-height-md-58 {
                line-height: 58px;
            }
            .line-height-md-60 {
                line-height: 60px;
            }
            .line-height-md-62 {
                line-height: 62px;
            }
            .line-height-md-64 {
                line-height: 64px;
            }
            .line-height-md-66 {
                line-height: 66px;
            }
            .line-height-md-68 {
                line-height: 68px;
            }
            .line-height-md-70 {
                line-height: 70px;
            }
            .line-height-md-72 {
                line-height: 72px;
            }
            .line-height-md-74 {
                line-height: 74px;
            }
            .line-height-md-76 {
                line-height: 76px;
            }
            .line-height-md-78 {
                line-height: 78px;
            }
            .line-height-md-80 {
                line-height: 80px;
            }
            .line-height-md-82 {
                line-height: 82px;
            }
            .line-height-md-84 {
                line-height: 84px;
            }
            .line-height-md-86 {
                line-height: 86px;
            }
            .line-height-md-88 {
                line-height: 88px;
            }
            .line-height-md-90 {
                line-height: 90px;
            }
            .line-height-md-92 {
                line-height: 92px;
            }
            .line-height-md-94 {
                line-height: 94px;
            }
            .line-height-md-96 {
                line-height: 96px;
            }
            .line-height-md-98 {
                line-height: 98px;
            }
            .line-height-md-100 {
                line-height: 100px;
            }
        }
        
        @media screen and (min-width: 576px) {
            .font-sm-12 {
                font-size: 12px;
            }
            .font-sm-14 {
                font-size: 14px;
            }
            .font-sm-16 {
                font-size: 16px;
            }
            .font-sm-18 {
                font-size: 18px;
            }
            .font-sm-20 {
                font-size: 20px;
            }
            .font-sm-22 {
                font-size: 22px;
            }
            .font-sm-24 {
                font-size: 24px;
            }
            .font-sm-26 {
                font-size: 26px;
            }
            .font-sm-28 {
                font-size: 28px;
            }
            .font-sm-30 {
                font-size: 30px;
            }
            .font-sm-32 {
                font-size: 32px;
            }
            .font-sm-34 {
                font-size: 34px;
            }
            .font-sm-36 {
                font-size: 36px;
            }
            .font-sm-40 {
                font-size: 40px;
            }
            .font-sm-42 {
                font-size: 42px;
            }
            .font-sm-44 {
                font-size: 44px;
            }
            .font-sm-46 {
                font-size: 48px;
            }
            .font-sm-48 {
                font-size: 48px;
            }
            .font-sm-50 {
                font-size: 60px;
            }
            .font-sm-52 {
                font-size: 52px;
            }
            .font-sm-54 {
                font-size: 54px;
            }
            .font-sm-56 {
                font-size: 56px;
            }
            .font-sm-58 {
                font-size: 58px;
            }
            .font-sm-60 {
                font-size: 60px;
            }
            .font-sm-62 {
                font-size: 62px;
            }
            .font-sm-74 {
                font-size: 74px;
            }
            .font-sm-76 {
                font-size: 76px;
            }
            .font-sm-78 {
                font-size: 78px;
            }
            .font-sm-80 {
                font-size: 80px;
            }
            .font-sm-82 {
                font-size: 82px;
            }
            .font-sm-84 {
                font-size: 84px;
            }
            .font-sm-86 {
                font-size: 86px;
            }
            .font-sm-88 {
                font-size: 88px;
            }
            .font-sm-90 {
                font-size: 90px;
            }
            .font-sm-92 {
                font-size: 92px;
            }
            .font-sm-94 {
                font-size: 94px;
            }
            .font-sm-96 {
                font-size: 96px;
            }
            .font-sm-98 {
                font-size: 98px;
            }
            .font-sm-100 {
                font-size: 100px;
            }
            .line-height-sm-12 {
                line-height: 12px;
            }
            .line-height-sm-14 {
                line-height: 14px;
            }
            .line-height-sm-16 {
                line-height: 16px;
            }
            .line-height-sm-18 {
                line-height: 18px;
            }
            .line-height-sm-20 {
                line-height: 20px;
            }
            .line-height-sm-22 {
                line-height: 22px;
            }
            .line-height-sm-24 {
                line-height: 24px;
            }
            .line-height-sm-26 {
                line-height: 26px;
            }
            .line-height-sm-28 {
                line-height: 28px;
            }
            .line-height-sm-30 {
                line-height: 30px;
            }
            .line-height-sm-32 {
                line-height: 32px;
            }
            .line-height-sm-34 {
                line-height: 34px;
            }
            .line-height-sm-36 {
                line-height: 36px;
            }
            .line-height-sm-38 {
                line-height: 38px;
            }
            .line-height-sm-40 {
                line-height: 40px;
            }
            .line-height-sm-42 {
                line-height: 42px;
            }
            .line-height-sm-44 {
                line-height: 44px;
            }
            .line-height-sm-48 {
                line-height: 48px;
            }
            .line-height-sm-50 {
                line-height: 50px;
            }
            .line-height-sm-52 {
                line-height: 52px;
            }
            .line-height-sm-54 {
                line-height: 54px;
            }
            .line-height-sm-56 {
                line-height: 56px;
            }
            .line-height-sm-58 {
                line-height: 58px;
            }
            .line-height-sm-60 {
                line-height: 60px;
            }
            .line-height-sm-62 {
                line-height: 62px;
            }
            .line-height-sm-64 {
                line-height: 64px;
            }
            .line-height-sm-66 {
                line-height: 66px;
            }
            .line-height-sm-68 {
                line-height: 68px;
            }
            .line-height-sm-70 {
                line-height: 70px;
            }
            .line-height-sm-72 {
                line-height: 72px;
            }
            .line-height-sm-74 {
                line-height: 74px;
            }
            .line-height-sm-76 {
                line-height: 76px;
            }
            .line-height-sm-78 {
                line-height: 78px;
            }
            .line-height-sm-80 {
                line-height: 80px;
            }
            .line-height-sm-82 {
                line-height: 82px;
            }
            .line-height-sm-84 {
                line-height: 84px;
            }
            .line-height-sm-86 {
                line-height: 86px;
            }
            .line-height-sm-88 {
                line-height: 88px;
            }
            .line-height-sm-90 {
                line-height: 90px;
            }
            .line-height-sm-92 {
                line-height: 92px;
            }
            .line-height-sm-94 {
                line-height: 94px;
            }
            .line-height-sm-96 {
                line-height: 96px;
            }
            .line-height-sm-98 {
                line-height: 98px;
            }
            .line-height-sm-100 {
                line-height: 100px;
            }
        }
        
        .mr-2 {
            margin-right: 8px;
        }
        
        @media (max-width: 767px) {
            .mobile-hidden {
                display: none;
            }
        }
        
        .mb-30 {
            margin-bottom: 30px;
        }
        
        .mobile-sidebar .single-footer h3 {
            color: #ffffff;
        }
        
        .mobile-sidebar .single-contact a {
            color: #ffffff;
        }
        
        .lg-ml-15 {
            margin-left: 15px;
        }
        
        @media (max-width: 767px) {
            .lg-ml-15 {
                margin-left: 0;
            }
        }
        
        .lg-mr-15 {
            margin-right: 15px;
        }
        
        @media (max-width: 767px) {
            .lg-mr-15 {
                margin-right: 0;
            }
        }
        
        ._relative {
            position: relative;
        }
        
        ._absolute {
            position: absolute;
        }
        
        .bg-cover {
            background-size: cover;
            background-position: center center;
        }
        
        .bg-contain {
            background-size: contain;
            background-position: center center;
        }
        
        .img-cover img,
        .img-cover {
            -o-object-fit: cover;
            object-fit: cover;
        }
        
        .width100 img {
            width: 100%;
        }
        /*
 ::::::::::::::::::::::::::
  fonts area css
 ::::::::::::::::::::::::::
 */
        
         :root {
            --ztc-text-text-1: #0D0E10;
            --ztc-text-text-2: #fff;
            --ztc-text-pera-text-1: #676879;
            --ztc-text-pera-text-2: #D2D1D5;
            --ztc-bg-main-bg-1: #c92829;
            --ztc-bg-main-bg-2: #6E18EF;
            --ztc-bg-main-bg-3: #c92829;
            --ztc-bg-main-bg-4: #A1E934;
            --ztc-bg-bg-1: #F8F9FA;
            --ztc-bg-color-w: #fff;
            --ztc-bg-bg-2: #E7EBF7;
            --ztc-bg-bg-3: #f5f5f8;
            --ztc-bg-bg-4: #1E182D;
            --ztc-bg-bg-5: #342F42;
            --ztc-bg-bg-6: #F2F4F7;
            --ztc-border-border-1: #f0f0f0;
            --ztc-border-border-2: #dfdcdc;
            --f-fw-regular: 400;
            --f-fw-medium: 500;
            --f-fw-semibold: 600;
            --f-fw-blod: 700;
            --f-fw-ex-bold: 800;
            --f-ff-font-1: 'Figtree', sans-serif;
            --f-fs-font-fs16: 16px;
            --f-fs-font-fs18: 18px;
            --f-fs-font-fs20: 20px;
            --f-fs-font-fs22: 22px;
            --f-fs-font-fs24: 24px;
            --f-fs-font-fs26: 26px;
            --f-fs-font-fs28: 28px;
            --f-fs-font-fs30: 30px;
            --f-fs-font-fs32: 32px;
            --f-fs-font-fs34: 34px;
            --f-fs-font-fs36: 36px;
            --f-fs-font-fs40: 40px;
            --f-fs-font-fs42: 42px;
            --f-fs-font-fs44: 44px;
            --f-fs-font-fs48: 48px;
            --f-fs-font-fs50: 50px;
            --f-fs-font-fs52: 52px;
            --f-fs-font-fs54: 54px;
            --f-fs-font-fs56: 56px;
            --f-fs-font-fs58: 58px;
            --f-fs-font-fs60: 60px;
            --f-fs-font-fs62: 62px;
            --f-fs-font-fs64: 64px;
            --f-fs-font-fs66: 66px;
            --f-fs-font-fs68: 68px;
            --f-fs-font-fs70: 70px;
            --f-fs-font-fs72: 72px;
            --f-fs-font-fs74: 74px;
            --f-fs-font-fs76: 76px;
            --f-fs-font-fs78: 78px;
            --f-fs-font-fs80: 80px;
            --f-fs-font-fs82: 82px;
            --f-fs-font-fs84: 84px;
            --f-fs-font-fs86: 86px;
            --f-fs-font-fs88: 88px;
        }
        /*
::::::::::::::::::::::::::
 COMMON AREA CSS
::::::::::::::::::::::::::
*/
        
        .heading1 span.span {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-main-bg-1);
            margin-bottom: 16px;
        }
        
        .heading1 span.span img {
            margin-top: -3px;
            margin-right: 2px;
        }
        
        .heading1 h2 {
            font-size: var(--f-fs-font-fs44);
            line-height: var(--f-fs-font-fs52);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-text-text-1);
        }
        .tg-element-title{
             font-size: var(--f-fs-font-fs32);
            line-height: var(--f-fs-font-fs52);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-text-text-1);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .heading1 h2 {
                font-size: var(--f-fs-font-fs32);
                line-height: var(--f-fs-font-fs40);
            }
        }
        
        @media (max-width: 767px) {
            .heading1 h2 {
                font-size: var(--f-fs-font-fs32);
                line-height: var(--f-fs-font-fs40);
            }
        }
        
        .heading1 h3 a {
            color: var(--Text-Color, #0D0E10);
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 20px;
            /* 100% */
        }
        
        .heading1 h4 a {
            display: inline-block;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-blod);
            transition: all 0.4s;
        }
        
        .heading1 h4 a:hover {
            color: var(--ztc-bg-main-bg-1);
            transition: all 0.4s;
        }
        
        .heading1 h5 {
            color: var(--Text-Color, #0D0E10);
            font-size: 32px;
            font-style: normal;
            font-weight: 600;
            line-height: 32px;
            /* 100% */
        }
        
        .heading1 p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            transition: all 0.4s;
        }
        
        .heading1-w h2 {
            font-size: var(--f-fs-font-fs44);
            line-height: var(--f-fs-font-fs52);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-bg-color-w);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .heading1-w h2 {
                font-size: var(--f-fs-font-fs32);
                line-height: var(--f-fs-font-fs40);
            }
        }
        
        @media (max-width: 767px) {
            .heading1-w h2 {
                font-size: var(--f-fs-font-fs32);
                line-height: var(--f-fs-font-fs40);
            }
        }
        
        .heading1-w p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-bg-color-w);
        }
        
        .heading2 h2 {
            font-size: var(--f-fs-font-fs44);
            line-height: var(--f-fs-font-fs52);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-bg-color-w);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .heading2 h2 {
                font-size: var(--f-fs-font-fs32);
                line-height: var(--f-fs-font-fs40);
            }
        }
        
        @media (max-width: 767px) {
            .heading2 h2 {
                font-size: var(--f-fs-font-fs32);
                line-height: var(--f-fs-font-fs40);
            }
        }
        
        .heading2 p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-2);
        }
        
        .heading2 span.span {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-main-bg-4);
            margin-bottom: 16px;
        }
        
        .heading2 span.span img {
            margin-top: -3px;
            margin-right: 2px;
        }
        
        .heading2 h4 a {
            display: inline-block;
            color: var(--ztc-text-text-2);
            line-height: var(--f-fs-font-fs24);
            font-size: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            transition: all 0.4s;
        }
        
        .heading2 h4 a:hover {
            color: var(--ztc-bg-main-bg-4);
        }
        
        .heading2 h3 a {
            display: inline-block;
            color: var(--ztc-text-text-2);
            line-height: var(--f-fs-font-fs20);
            font-size: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-blod);
            transition: all 0.4s;
        }
        
        .heading2 h3 a:hover {
            color: var(--ztc-bg-main-bg-4);
        }
        
        .heading2 h5 {
            font-size: var(--f-fs-font-fs32);
            line-height: var(--f-fs-font-fs32);
            color: var(--ztc-bg-color-w);
            font-weight: var(--f-fw-semibold);
        }
        
        .heading3-w h4 {
            padding: 0;
            margin: 0;
        }
        
        .heading3-w h4 a {
            display: inline-block;
            color: var(--ztc-text-text-2);
            line-height: var(--f-fs-font-fs20);
            font-size: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-blod);
            text-align: start;
        }
        
        .heading3-w p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-2);
        }
        
        .heading3 span.span {
            display: inline-block;
            color: var(--ztc-bg-main-bg-3);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-semibold);
            padding-left: 16px;
            position: relative;
            margin-bottom: 16px;
        }
        
        .heading3 span.span::after {
            content: "";
            position: absolute;
            left: 2px;
            top: 6px;
            height: 2px;
            width: 10px;
            background-color: var(--ztc-bg-main-bg-3);
        }
        
        .heading3 h2 {
            font-size: var(--f-fs-font-fs44);
            line-height: var(--f-fs-font-fs52);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-text-text-1);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .heading3 h2 {
                font-size: var(--f-fs-font-fs32);
                line-height: var(--f-fs-font-fs40);
            }
        }
        
        @media (max-width: 767px) {
            .heading3 h2 {
                font-size: var(--f-fs-font-fs32);
                line-height: var(--f-fs-font-fs40);
            }
        }
        
        .heading3 h3 a {
            display: inline-block;
            font-size: var(--f-fs-font-fs24);
            line-height: var(--f-fs-font-fs32);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            transition: all 0.4s;
        }
        
        .heading3 h3 a:hover {
            color: var(--ztc-bg-main-bg-3);
            transition: all 0.4s;
        }
        
        .heading3 h5 {
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
        }
        
        .heading3 p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            transition: all 0.4s;
        }
        
        .heading3 h4 a {
            display: inline-block;
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            transition: all 0.4s;
        }
        
        .heading3 h4 a:hover {
            color: var(--ztc-bg-main-bg-3);
        }
        
        .heading4 span.span {
            display: inline-block;
            color: var(--ztc-bg-main-bg-2);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            position: relative;
            padding-left: 12px;
            margin-bottom: 16px;
        }
        
        .heading4 span.span::after {
            content: "";
            position: absolute;
            height: 6px;
            width: 6px;
            left: 0;
            top: 4px;
            background-color: var(--ztc-bg-main-bg-2);
            border-radius: 50%;
        }
        
        .heading4 h2 {
            font-size: var(--f-fs-font-fs44);
            line-height: var(--f-fs-font-fs52);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-text-text-1);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .heading4 h2 {
                font-size: var(--f-fs-font-fs32);
                line-height: var(--f-fs-font-fs40);
            }
        }
        
        @media (max-width: 767px) {
            .heading4 h2 {
                font-size: var(--f-fs-font-fs32);
                line-height: var(--f-fs-font-fs40);
            }
        }
        
        .heading4 p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            transition: all 0.4s;
        }
        
        .heading4 h4 a {
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs28);
            color: var(--ztc-text-text-1);
            font-weight: var(--f-fw-blod);
            display: inline-block;
            transition: all 0.4s;
        }
        
        .heading4 h4 a:hover {
            color: var(--ztc-bg-main-bg-2);
            transition: all 0.4s;
        }
        
        .heading4 h3 a {
            font-size: var(--f-fs-font-fs24);
            line-height: var(--f-fs-font-fs32);
            color: var(--ztc-text-text-1);
            font-weight: var(--f-fw-blod);
            display: inline-block;
            transition: all 0.4s;
        }
        
        .heading4 h3 a:hover {
            color: var(--ztc-bg-main-bg-2);
            transition: all 0.4s;
        }
        
        .heading4-w span.span {
            display: inline-block;
            color: var(--ztc-text-pera-text-2);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            position: relative;
            padding-left: 12px;
            margin-bottom: 16px;
        }
        
        .heading4-w span.span::after {
            content: "";
            position: absolute;
            height: 6px;
            width: 6px;
            left: 0;
            top: 4px;
            background-color: var(--ztc-text-pera-text-2);
            border-radius: 50%;
        }
        
        .heading4-w h2 {
            font-size: var(--f-fs-font-fs44);
            line-height: var(--f-fs-font-fs52);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-text-text-2);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .heading4-w h2 {
                font-size: var(--f-fs-font-fs32);
                line-height: var(--f-fs-font-fs40);
            }
        }
        
        @media (max-width: 767px) {
            .heading4-w h2 {
                font-size: var(--f-fs-font-fs32);
                line-height: var(--f-fs-font-fs40);
            }
        }
        
        .heading4-w h4 a {
            display: inline-block;
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-2);
            transition: all 0.4s;
        }
        
        .heading4-w h4 a:hover {
            color: var(--ztc-bg-main-bg-3);
        }
        
        .heading4-w p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-2);
            transition: all 0.4s;
        }
        
        .heading5 .title {
            background: linear-gradient(90deg, rgba(59, 50, 246, 0.1) 0%, rgba(73, 166, 255, 0.1) 100%);
            padding: 6px 12px;
            display: inline-block;
            border-radius: 4px;
            margin-bottom: 16px;
        }
        
        .heading5 .title span {
            display: inline-block;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .heading5 h2 {
            color: var(--Home-Page-4-Text-colors, #05092B);
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: 48px;
            /* 120% */
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .heading5 h2 {
                font-size: 30px;
                line-height: 38px;
            }
        }
        
        @media (max-width: 767px) {
            .heading5 h2 {
                font-size: 30px;
                line-height: 38px;
            }
        }
        
        .heading5 p {
            color: var(--Home-Page-4-paragraph, #5A5D73);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            /* 150% */
            transition: all 0.4s;
        }
        
        .heading5 h4 a {
            display: inline-block;
            color: var(--Home-Page-4-Text-colors, #05092B);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            /* 100% */
            transition: all 0.4s;
        }
        
        .heading5 h4 a:hover {
            transition: all 0.4s;
            color: coral;
        }
        
        .heading5-w .title {
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
            padding: 6px 12px;
            display: inline-block;
            border-radius: 4px;
            margin-bottom: 16px;
        }
        
        .heading5-w .title span {
            display: inline-block;
            color: var(--White-colors, #FFF);
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
        }
        
        .heading5-w h2 {
            color: #FFF;
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: 40px;
            /* 100% */
        }
        
        .heading5-w h4 a {
            display: inline-block;
            color: var(--White-colors, #FFF);
            font-size: 24px;
            font-style: normal;
            font-weight: 600;
            line-height: 24px;
            /* 100% */
            transition: all 0.4s;
        }
        
        .heading5-w h4 a:hover {
            transition: all 0.4s;
            color: #FA7D3C;
        }
        
        .heading5-w p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            /* 150% */
        }
        
        .heading6 span.span {
            display: inline-block;
            color: #FA6444;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            background: rgba(250, 100, 68, 0.1);
            padding: 8px 12px;
            margin-bottom: 16px;
        }
        
        .heading6 h2 {
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: 48px;
            /* 100% */
        }
        
        .heading6 h2 span {
            display: inline-block;
            color: #FA6444;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .heading6 h2 {
                font-size: 30px;
                line-height: 38px;
            }
        }
        
        @media (max-width: 767px) {
            .heading6 h2 {
                font-size: 30px;
                line-height: 38px;
            }
        }
        
        .heading6 p {
            color: var(--Home-Page-3-paragraph, #5B5855);
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            /* 150% */
        }
        
        .heading6 h4 a {
            display: inline-block;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 28px;
            /* 140% */
            transition: all 0.4s;
        }
        
        .heading6 h4 a:hover {
            transition: all 0.4s;
            color: #FA6444;
        }
        
        .heading7 span.span {
            display: inline-block;
            color: #0061FF;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            background: #E5EFFF;
            padding: 8px 12px;
            margin-bottom: 16px;
        }
        
        .heading7 h2 {
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: 48px;
            /* 100% */
        }
        
        .heading7 h2 span {
            display: inline-block;
            color: #0061FF;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .heading7 h2 {
                font-size: 30px;
                line-height: 38px;
            }
        }
        
        @media (max-width: 767px) {
            .heading7 h2 {
                font-size: 30px;
                line-height: 38px;
            }
        }
        
        .heading7 p {
            color: var(--Home-Page-3-paragraph, #5B5855);
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            /* 150% */
        }
        
        .heading7 h4 a {
            display: inline-block;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 28px;
            /* 140% */
            transition: all 0.4s;
        }
        
        .heading7 h4 a:hover {
            transition: all 0.4s;
            color: #0061FF;
        }
        
        .heading8 span.span {
            display: inline-block;
            color: #4D32A5;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            background: #EDEBF6;
            padding: 8px 12px;
            margin-bottom: 16px;
        }
        
        .heading8 h2 {
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: 48px;
            /* 100% */
        }
        
        .heading8 h2 span {
            display: inline-block;
            color: #4D32A5;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .heading8 h2 {
                font-size: 30px;
                line-height: 38px;
            }
        }
        
        @media (max-width: 767px) {
            .heading8 h2 {
                font-size: 30px;
                line-height: 38px;
            }
        }
        
        .heading8 p {
            color: var(--Home-Page-3-paragraph, #5B5855);
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            /* 150% */
        }
        
        .heading8 h4 a {
            display: inline-block;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 28px;
            /* 140% */
            transition: all 0.4s;
        }
        
        .heading8 h4 a:hover {
            transition: all 0.4s;
            color: #4D32A5;
        }
        
        .heading6-w span.span {
            display: inline-block;
            color: #fff;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.151);
            padding: 8px 12px;
            margin-bottom: 16px;
        }
        
        .heading6-w h2 {
            color: var(--Home-Page-3-text-Colors, #fff);
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: 48px;
            /* 100% */
        }
        
        .heading6-w h2 span {
            display: inline-block;
            color: #FA6444;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .heading6-w h2 {
                font-size: 30px;
                line-height: 38px;
            }
        }
        
        @media (max-width: 767px) {
            .heading6-w h2 {
                font-size: 30px;
                line-height: 38px;
            }
        }
        
        .heading6-w p {
            color: var(--White-colors, rgba(255, 255, 255, 0.6901960784));
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            /* 150% */
        }
        
        .heading9 span.span {
            display: inline-block;
            color: #325D28;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            text-transform: uppercase;
            border-radius: 4px;
            background: #E0E6DE;
            padding: 9px 12px 6px 12px;
            margin-bottom: 16px;
        }
        
        .heading9 span.span img {
            transform: translateY(-2px);
        }
        
        .heading9 p {
            color: var(--Home-Page-3-paragraph, #5B5855);
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            /* 150% */
        }
        
        .heading9 h2 {
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: 48px;
            /* 100% */
        }
        
        .heading9 h2 span {
            display: inline-block;
            color: #325D28;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .heading9 h2 {
                font-size: 30px;
                line-height: 38px;
            }
        }
        
        @media (max-width: 767px) {
            .heading9 h2 {
                font-size: 30px;
                line-height: 38px;
            }
        }
        
        .heading10 span.span {
            display: inline-block;
            color: #24908D;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            background: #E9F4F4;
            padding: 8px 12px;
            margin-bottom: 16px;
        }
        
        .heading10 h2 {
            color: #011313;
            font-size: 44px;
            font-style: normal;
            font-weight: 700;
            line-height: 52px;
            /* 118.182% */
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .heading10 h2 {
                font-size: 30px;
                line-height: 38px;
            }
        }
        
        @media (max-width: 767px) {
            .heading10 h2 {
                font-size: 30px;
                line-height: 38px;
            }
        }
        
        .heading10 p {
            color: #5F6464;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 28px;
            /* 175% */
        }
        /*============================
++++PAGE-PROGRESS-SATRT+++++
=============================*/
        
        .blok:nth-of-type(odd) {
            background-color: white;
        }
        
        .blok:nth-of-type(even) {
            background-color: black;
        }
        /* #Progress
================================================== */
        
        .progress-wrap {
            position: fixed;
            right: 30px;
            bottom: 30px;
            height: 56px;
            width: 56px;
            cursor: pointer;
            display: block;
            border-radius: 50px;
            box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
            z-index: 1;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 200ms linear;
        }
        
        .progress-wrap.active-progress {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            z-index: 99;
        }
        
        .progress-wrap::after {
            position: absolute;
            font-family: "FontAwesome";
            content: "\f062";
            text-align: center;
            line-height: 56px;
            font-size: 18px;
            color: #03256c;
            left: 0;
            top: 0;
            height: 56px;
            width: 56px;
            cursor: pointer;
            display: block;
            z-index: 1;
            transition: all 200ms linear;
        }
        
        .progress-wrap:hover::after {
            opacity: 0;
        }
        
        .progress-wrap::before {
            position: absolute;
            font-family: "FontAwesome";
            content: "\f062";
            text-align: center;
            line-height: 56px;
            font-size: 18px;
            opacity: 0;
            left: 0;
            top: 0;
            height: 56px;
            width: 56px;
            cursor: pointer;
            display: block;
            z-index: 2;
            transition: all 200ms linear;
        }
        
        .progress-wrap:hover::before {
            opacity: 1;
        }
        
        .progress-wrap svg path {
            fill: none;
        }
        
        .progress-wrap svg.progress-circle path {
            stroke: #03256c;
            /* --- Lijn progres kleur --- */
            stroke-width: 4;
            box-sizing: border-box;
            transition: all 200ms linear;
        }
        /*============================
++++PAGE-PROGRESS-END+++++
=============================*/
        
        .progress-wrap.progress-wrap2 {
            position: fixed;
            right: 30px;
            bottom: 30px;
            height: 56px;
            width: 56px;
            cursor: pointer;
            display: block;
            border-radius: 50px;
            box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.267);
            z-index: 1;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 200ms linear;
        }
        
        .progress-wrap.progress-wrap2.active-progress {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            z-index: 99;
            color: rgb(255, 255, 255);
        }
        
        .progress-wrap.progress-wrap2::after {
            position: absolute;
            font-family: "FontAwesome";
            content: "\f062";
            text-align: center;
            line-height: 56px;
            font-size: 18px;
            color: #f7f7f7;
            left: 0;
            top: 0;
            height: 56px;
            width: 56px;
            cursor: pointer;
            display: block;
            z-index: 1;
            transition: all 200ms linear;
        }
        
        .progress-wrap.progress-wrap2:hover::after {
            opacity: 0;
        }
        
        .progress-wrap.progress-wrap2::before {
            position: absolute;
            font-family: "FontAwesome";
            content: "\f062";
            text-align: center;
            line-height: 56px;
            font-size: 18px;
            opacity: 0;
            left: 0;
            top: 0;
            height: 56px;
            width: 56px;
            cursor: pointer;
            display: block;
            z-index: 2;
            transition: all 200ms linear;
        }
        
        .progress-wrap.progress-wrap2:hover::before {
            opacity: 1;
        }
        
        .progress-wrap.progress-wrap2 svg path {
            fill: none;
        }
        
        .progress-wrap.progress-wrap2 svg.progress-circle path {
            stroke: #ffffff;
            /* --- Lijn progres kleur --- */
            stroke-width: 4;
            box-sizing: border-box;
            transition: all 200ms linear;
        }
        /*Pagination*/
        
        .theme-pagination ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        
        .theme-pagination li {
            display: inline-block;
            color: #0D0E10;
        }
        
        .theme-pagination li a {
            width: 55px;
            height: 55px;
            text-align: center;
            line-height: 55px;
            background-color: #F8F9FA;
            margin: 0 4px;
            transition: all 0.3s;
            display: block;
            color: var(--ztc-text-text-1);
            border-radius: 7px;
            font-weight: var(--f-fw-blod);
        }
        
        .recent-post-content {
            padding-right: 20px;
        }
        
        .theme-pagination li a:hover,
        .theme-pagination li a.active {
            background: var(--ztc-bg-main-bg-1);
            box-shadow: 0px 4px 10px 0px rgba(122, 120, 198, 0.2);
            transition: all 0.3s;
            color: var(--ztc-bg-color-w);
        }
        /* video button  */
        
        .video-play-button {
            position: relative;
            z-index: 10;
            margin: 0px 30px;
            box-sizing: content-box;
            display: block;
            width: 32px;
            height: 44px;
            /* background: #fa183d; */
            border-radius: 50%;
            padding: 18px 20px 18px 28px;
            cursor: pointer;
        }
        
        .video-play-button:before {
            content: "";
            position: absolute;
            z-index: 0;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 60px;
            height: 60px;
            background: #0E38B1;
            border-radius: 50%;
            animation: pulse-border 1500ms ease-out infinite;
        }
        
        .video-play-button:after {
            content: "";
            position: absolute;
            z-index: 1;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 60px;
            height: 60px;
            background: #0E38B1;
            border-radius: 50%;
            transition: all 200ms;
        }
        
        .video-play-button:hover:after {
            background-color: #0a2982;
        }
        
        .video-play-button img {
            position: relative;
            z-index: 3;
            max-width: 100%;
            width: auto;
            height: auto;
        }
        
        .video-play-button span {
            display: block;
            position: relative;
            z-index: 3;
            margin-top: 12px;
            margin-left: 8px;
            width: 0;
            height: 0;
            border-left: 12px solid #fff;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
        }
        
        @keyframes pulse-border {
            0% {
                transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
                opacity: 1;
            }
            100% {
                transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
                opacity: 0;
            }
        }
        
        .pl-5 {
            padding-left: 36px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .pl-5 {
                padding-left: 0;
            }
        }
        
        @media (max-width: 767px) {
            .pl-5 {
                padding-left: 0;
            }
        }
        
        @media screen and (min-width: 768px) {
            .reveal {
                position: relative;
                display: inline-flex;
                visibility: hidden;
                overflow: hidden;
            }
            .reveal img {
                height: 100%;
                width: 100%;
                -o-object-fit: cover;
                object-fit: cover;
                transform-origin: left;
            }
        }
        
        .image-anime {
            position: relative;
            overflow: hidden;
        }
        
        .image-anime:after {
            content: "";
            position: absolute;
            width: 200%;
            height: 0%;
            left: 50%;
            top: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%) rotate(-45deg);
            z-index: 1;
        }
        
        .image-anime:hover:after {
            height: 250%;
            transition: all 600ms linear;
            background-color: transparent;
        }
        /*
::::::::::::::::::::::::::
 COMMON AREA CSS
::::::::::::::::::::::::::
*/
        
        .comon-body {
            /*Pagination*/
            /* video button  */
        }
        
        .comon-body .theme-pagination ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        
        .comon-body .theme-pagination li {
            display: inline-block;
            color: var(--ztc-bg-color-w);
        }
        
        .comon-body .theme-pagination li a {
            width: 55px;
            height: 55px;
            text-align: center;
            line-height: 55px;
            background-color: var(--ztc-bg-bg-4);
            border: 1px solid var(--ztc-bg-bg-5);
            margin: 0 4px;
            transition: all 0.3s;
            display: block;
            color: var(--ztc-bg-color-w);
            border-radius: 7px;
            font-weight: var(--f-fw-blod);
        }
        
        .comon-body .recent-post-content {
            padding-right: 20px;
        }
        
        .comon-body .theme-pagination li a:hover,
        .comon-body .theme-pagination li a.active {
            background: var(--ztc-bg-main-bg-4);
            box-shadow: 0px 4px 10px 0px rgba(122, 120, 198, 0.2);
            transition: all 0.3s;
            color: var(--ztc-text-text-1);
        }
        
        .comon-body .video-play-button {
            position: relative;
            z-index: 10;
            margin: 0px 30px;
            box-sizing: content-box;
            display: block;
            width: 32px;
            height: 44px;
            /* background: #fa183d; */
            border-radius: 50%;
            padding: 18px 20px 18px 28px;
            cursor: pointer;
        }
        
        .comon-body .video-play-button:before {
            content: "";
            position: absolute;
            z-index: 0;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 60px;
            height: 60px;
            background: #A1E934;
            border-radius: 50%;
            animation: pulse-border 1500ms ease-out infinite;
        }
        
        .comon-body .video-play-button:after {
            content: "";
            position: absolute;
            z-index: 1;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 60px;
            height: 60px;
            background: #A1E934;
            border-radius: 50%;
            transition: all 200ms;
        }
        
        .comon-body .video-play-button:hover:after {
            background-color: #88d317;
        }
        
        .comon-body .video-play-button img {
            position: relative;
            z-index: 3;
            max-width: 100%;
            width: auto;
            height: auto;
        }
        
        .comon-body .video-play-button span {
            display: block;
            position: relative;
            z-index: 3;
            margin-top: 12px;
            margin-left: 8px;
            width: 0;
            height: 0;
            border-left: 12px solid #251717;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
        }
        
        .video-buttton9 {
            /* video button  */
        }
        
        .video-buttton9 .video-play-button {
            position: relative;
            z-index: 10;
            margin: 0px 30px;
            box-sizing: content-box;
            display: block;
            width: 32px;
            height: 44px;
            /* background: #fa183d; */
            border-radius: 50%;
            padding: 18px 20px 18px 28px;
            cursor: pointer;
        }
        
        .video-buttton9 .video-play-button:before {
            content: "";
            position: absolute;
            z-index: 0;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 40px;
            height: 40px;
            background: #A2EA61;
            border-radius: 50%;
            animation: pulse-border 1500ms ease-out infinite;
        }
        
        .video-buttton9 .video-play-button:after {
            content: "";
            position: absolute;
            z-index: 1;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 40px;
            height: 40px;
            background: #A2EA61;
            border-radius: 50%;
            transition: all 200ms;
        }
        
        .video-buttton9 .video-play-button:hover:after {
            background-color: #88e434;
        }
        
        .video-buttton9 .video-play-button img {
            position: relative;
            z-index: 3;
            max-width: 100%;
            width: auto;
            height: auto;
        }
        
        .video-buttton9 .video-play-button span {
            display: block;
            position: relative;
            z-index: 3;
            margin-top: 12px;
            margin-left: 8px;
            width: 0;
            height: 0;
            border-left: 12px solid #181818;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
        }
        
        @keyframes pulse-border {
            0% {
                transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
                opacity: 1;
            }
            100% {
                transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
                opacity: 0;
            }
        }
        
        .video-paly10 {
            /* video button  */
        }
        
        .video-paly10 .video-play-button {
            position: relative;
            z-index: 10;
            margin: 0px 30px;
            box-sizing: content-box;
            display: block;
            width: 32px;
            height: 44px;
            /* background: #fa183d; */
            border-radius: 50%;
            padding: 18px 20px 18px 28px;
            cursor: pointer;
        }
        
        .video-paly10 .video-play-button:before {
            content: "";
            position: absolute;
            z-index: 0;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 40px;
            height: 40px;
            background: #24908D;
            border-radius: 50%;
            animation: pulse-border 1500ms ease-out infinite;
        }
        
        .video-paly10 .video-play-button:after {
            content: "";
            position: absolute;
            z-index: 1;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 40px;
            height: 40px;
            background: #24908D;
            border-radius: 50%;
            transition: all 200ms;
        }
        
        .video-paly10 .video-play-button:hover:after {
            background-color: #1a6765;
        }
        
        .video-paly10 .video-play-button img {
            position: relative;
            z-index: 3;
            max-width: 100%;
            width: auto;
            height: auto;
        }
        
        .video-paly10 .video-play-button span {
            display: block;
            position: relative;
            z-index: 3;
            margin-top: 12px;
            margin-left: 8px;
            width: 0;
            height: 0;
            border-left: 12px solid #ffffff;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
        }
        
        @keyframes pulse-border {
            0% {
                transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
                opacity: 1;
            }
            100% {
                transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
                opacity: 0;
            }
        }
        /*----------------------------------------*/
        /*  02. header
/*----------------------------------------*/
        
        .site-header {
            z-index: 3;
            position: relative;
        }
        
        .header__top {
            padding: 7px 0;
            text-transform: uppercase;
            font-size: 12px;
            font-weight: 500;
            color: var(--color-white);
            margin-top: -10px;
        }
        
        .header__bar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            border: 1px solid #f1f1f1;
            display: inline-block;
            margin-right: 94px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .header__bar span {
            width: 100%;
            height: 2px;
            background-color: #fff;
            border-radius: 48px;
            -webkit-border-radius: 48px;
            -moz-border-radius: 48px;
            -ms-border-radius: 48px;
            -o-border-radius: 48px;
            display: inline-block;
            position: absolute;
            transition: 0.3s;
        }
        
        .header__bar span:nth-child(1) {
            top: 0;
        }
        
        .header__bar span:nth-child(2) {
            top: 50%;
            width: 11px;
            margin-top: -1px;
        }
        
        .header__bar span:nth-child(3) {
            bottom: 0;
        }
        
        .header__bar:hover span:nth-child(2) {
            width: 100%;
        }
        
        .header__bar-icon {
            height: 14px;
            width: 18px;
            position: relative;
        }
        
        .header__search {
            margin-right: 16px;
            padding-right: 16px;
            position: relative;
        }
        
        .slide-bar .tx-close {
            width: 45px;
            height: 45px;
            border-width: 14px;
        }
        /*----------------------------------------*/
        /*  09. sidebar
/*----------------------------------------*/
        
        .sidebar-info .sidebar-logo {
            transition: 0.3s;
            transform: translateY(30px);
            opacity: 0;
        }
        
        .sidebar-info .sidebar-content {
            transition: 0.3s;
            transform: translateY(30px);
            opacity: 0;
        }
        
        .sidebar-info .sidebar-menu {
            transition: 0.3s;
            transform: translateY(30px);
            opacity: 0;
        }
        
        .sidebar-info .ct-content-wrap {
            transition: 0.3s;
            transform: translateY(30px);
            opacity: 0;
        }
        
        .sidebar-info .sidebar-socials-wrap {
            transition: 0.3s;
            transform: translateY(30px);
            opacity: 0;
        }
        
        .slide-bar.show .sidebar-info .sidebar-logo {
            transform: translateY(0);
            transition-delay: 0.2s;
            opacity: 1;
        }
        
        .slide-bar.show .sidebar-info .sidebar-content {
            transform: translateY(0);
            transition-delay: 0.3s;
            opacity: 1;
        }
        
        .slide-bar.show .sidebar-info .sidebar-menu {
            transform: translateY(0);
            transition-delay: 0.4s;
            opacity: 1;
        }
        
        .slide-bar.show .sidebar-info .ct-content-wrap {
            transform: translateY(0);
            transition-delay: 0.5s;
            opacity: 1;
        }
        
        .slide-bar.show .sidebar-info .sidebar-socials-wrap {
            transform: translateY(0);
            transition-delay: 0.6s;
            opacity: 1;
        }
        
        .sidebar-content {
            max-width: 360px;
            margin-bottom: 65px;
        }
        
        .sidebar-menu li:not(:last-child) {
            margin-bottom: 30px;
        }
        
        .sidebar-menu li a {
            font-size: 36px;
            text-transform: capitalize;
            color: var(--color-heading);
        }
        
        .sidebar-menu li a:hover {
            color: #000;
        }
        /* search css */
        
        .header-search-form-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: 400px;
            z-index: 9999;
            background-color: #fff;
            transform: translate3d(0, -100%, 0);
            transition: transform 0.85s cubic-bezier(0.175, 1, 0.275, 1), visibility 0.8s step-end;
        }
        
        .header-search-form-wrapper.open {
            transition: transform 0.85s cubic-bezier(0.175, 1, 0.275, 1), visibility 0.8s step-start;
            transform: translate3d(0, 0, 0);
        }
        
        .header-search-form-wrapper .search-form {
            margin: 0 auto;
            position: relative;
            text-align: center;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }
        
        .header-search-form-wrapper .search-form input[type=search] {
            height: 65px;
            line-height: 65px;
            font-size: 28px;
            background-color: transparent;
            text-align: left;
            color: balck;
            border: none;
            border-bottom: 1px solid #ccc;
            padding-left: 0;
            border-radius: 0;
            width: 100%;
            color: #000;
        }
        
        .header-search-form-wrapper .search-form input[type=search]:focus {
            outline: none;
        }
        
        .header-search-form-wrapper .search-form input[type=search]::-moz-placeholder {
            color: #a4a4a4;
            opacity: 1;
        }
        
        .header-search-form-wrapper .search-form input[type=search]::placeholder {
            color: #a4a4a4;
            opacity: 1;
        }
        
        .header-search-form-wrapper .search-form input[type=search]:-ms-input-placeholder {
            color: #a4a4a4;
        }
        
        .header-search-form-wrapper .search-form input[type=search]::-ms-input-placeholder {
            color: #a4a4a4;
        }
        
        .header-search-form-wrapper .search-submit {
            position: absolute;
            height: 50px;
            width: 50px;
            bottom: 0;
            right: 0;
            background-color: transparent;
            color: #9f9f9f;
            font-size: 24px;
            border: none;
        }
        
        .header-search-form-wrapper .tx-search-close {
            background: rgba(204, 204, 204, 0.2705882353);
            width: 54px;
            height: 54px;
            border-width: 18px;
            position: absolute;
            top: 0;
            right: 0;
            z-index: 2;
            text-align: center;
            line-height: 50px;
            font-size: 20px;
            cursor: pointer;
        }
        
        .header-search-form-wrapper .tx-search-close::before,
        .header-search-form-wrapper .tx-search-close::after {
            background-color: var(--color-black);
        }
        
        .header-search-container {
            width: 100%;
            height: 100%;
            max-width: 1170px;
            border: 0;
            padding: 0;
            background: 0 0;
            transform: translate3d(0, calc(100% - 100px), 0);
            transition: transform 0.85s cubic-bezier(0.175, 1, 0.275, 1);
            margin: auto;
            opacity: 0;
            visibility: hidden;
        }
        
        .header-search-form-wrapper.open .header-search-container {
            transform: translate3d(0, 0, 0);
            opacity: 1;
            visibility: visible;
        }
        
        header.site-header {
            background: #538b60;
            padding: 20px 0;
            color: #fff;
        }
        
        header.site-header span {
            color: #fff;
        }
        
        a.header__search.header-search-btn p {
            color: #fff;
        }
        /*!
* metismenu https://github.com/onokumus/metismenu#readme
* A jQuery menu plugin
* @version 3.0.6
* @author Osman Nuri Okumus <onokumus@gmail.com> (https://github.com/onokumus)
* @license: MIT 
*/
        
        .metismenu .arrow {
            float: right;
            line-height: 1.42857;
        }
        
        *[dir=rtl] .metismenu .arrow {
            float: left;
        }
        /*
   * Require Bootstrap 3.x
   * https://github.com/twbs/bootstrap
  */
        
        .metismenu .glyphicon.arrow:before {
            content: "\e079";
        }
        
        .metismenu .mm-active>a>.glyphicon.arrow:before {
            content: "\e114";
        }
        /*
   * Require Font-Awesome
   * http://fortawesome.github.io/Font-Awesome/
  */
        
        .metismenu .fa.arrow:before {
            content: "\f104";
        }
        
        .metismenu .mm-active>a>.fa.arrow:before {
            content: "\f107";
        }
        /*
   * Require Ionicons
   * http://ionicons.com/
  */
        
        .metismenu .ion.arrow:before {
            content: "\f3d2";
        }
        
        .metismenu .mm-active>a>.ion.arrow:before {
            content: "\f3d0";
        }
        
        .metismenu .plus-times {
            float: right;
        }
        
        *[dir=rtl] .metismenu .plus-times {
            float: left;
        }
        
        .metismenu .fa.plus-times:before {
            content: "\f067";
        }
        
        .metismenu .mm-active>a>.fa.plus-times {
            transform: rotate(45deg);
        }
        
        .metismenu .plus-minus {
            float: right;
        }
        
        *[dir=rtl] .metismenu .plus-minus {
            float: left;
        }
        
        .metismenu .fa.plus-minus:before {
            content: "\f067";
        }
        
        .metismenu .mm-active>a>.fa.plus-minus:before {
            content: "\f068";
        }
        
        .metismenu .mm-collapse:not(.mm-show) {
            display: none;
        }
        
        .metismenu .mm-collapsing {
            position: relative;
            height: 0;
            overflow: hidden;
            transition-timing-function: ease;
            transition-duration: 0.35s;
            transition-property: height, visibility;
        }
        
        .metismenu .has-arrow {
            position: relative;
        }
        
        .metismenu .has-arrow::after {
            position: absolute;
            content: "";
            width: 0.5em;
            height: 0.5em;
            border-width: 1px 0 0 1px;
            border-style: solid;
            border-color: currentColor;
            border-color: initial;
            right: 1em;
            transform: rotate(-45deg) translate(0, -50%);
            transform-origin: top;
            top: 50%;
            transition: all 0.3s ease-out;
        }
        
        *[dir=rtl] .metismenu .has-arrow::after {
            right: auto;
            left: 1em;
            transform: rotate(135deg) translate(0, -50%);
        }
        
        .metismenu .mm-active>.has-arrow::after,
        .metismenu .has-arrow[aria-expanded=true]::after {
            transform: rotate(-135deg) translate(0, -50%);
        }
        
        *[dir=rtl] .metismenu .mm-active>.has-arrow::after,
        *[dir=rtl] .metismenu .has-arrow[aria-expanded=true]::after {
            transform: rotate(225deg) translate(0, -50%);
        }
        /* custom code */
        
        .hamburger-menu {
            display: inline-block;
        }
        
        .hamburger-menu a {
            display: inline-block;
        }
        
        .body-overlay {
            background-color: #000000;
            height: 100%;
            width: 100%;
            position: fixed;
            top: 0;
            z-index: 1010;
            left: 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s linear 0s;
            transition: all 600ms ease;
            -webkit-transition: all 600ms ease;
            -moz-transition: all 600ms ease;
            -ms-transition: all 600ms ease;
            -o-transition: all 600ms ease;
        }
        
        .body-overlay.active {
            opacity: 0.5;
            visibility: visible;
        }
        /*
::::::::::::::::::::::::::
 BUTTONS AREA CSS
::::::::::::::::::::::::::
*/
        
        .theme-btn1 {
            display: inline-block;
            background-color: var(--ztc-bg-main-bg-1);
            border-radius: 7px;
            padding: 16px 20px;
            color: var(--ztc-text-text-2);
            font-weight: var(--f-fw-blod);
            overflow: hidden;
            position: relative;
            z-index: 1;
            transition: all 0.4s;
            border: none;
        }
        /* .theme-btn1::after {
  content: "";
  position: absolute;
  background-image: url(../img/icons/button-img.png);
  height: 100%;
  width: 0%;
  top: 0;
  left: auto;
  right: 0;
  z-index: 2;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(1.5);
  transition: all 0.4s;
  animation-name: shape-animaiton4;
  animation-duration: 52s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
} */
        
        .theme-btn1 span {
            display: inline-block;
            padding-left: 4px;
        }
        
        .theme-btn1:hover {
            color: #fff;
            transform: translateY(-4px);
            transition: all 0.4s;
            background-color: #3059CE;
        }
        
        .theme-btn1:hover::after {
            width: 100%;
            transition: all 0.4s;
            left: 0;
            right: auto;
        }
        
        .cta-btn1 {
            display: inline-block;
            background-color: var(--ztc-text-text-2);
            border-radius: 5px;
            padding: 16px 20px;
            color: var(--ztc-bg-main-bg-1);
            font-weight: var(--f-fw-blod);
            overflow: hidden;
            position: relative;
            z-index: 1;
            transition: all 0.4s;
        }
        
        .cta-btn1::after {
            content: "";
            position: absolute;
            background-image: url(../img/icons/button-img.png);
            height: 100%;
            width: 0%;
            top: 0;
            left: auto;
            right: 0;
            z-index: 2;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: contain;
            transform: scale(1.5);
            transition: all 0.4s;
            animation-name: shape-animaiton4;
            animation-duration: 52s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: ease-in-out;
        }
        
        .cta-btn1 span {
            display: inline-block;
            padding-left: 4px;
        }
        
        .cta-btn1:hover {
            color: #fff;
            transform: translateY(-4px);
            transition: all 0.4s;
            background-color: #3059CE;
        }
        
        .cta-btn1:hover::after {
            width: 100%;
            transition: all 0.4s;
            left: 0;
            right: auto;
        }
        
        .cta-btn2 {
            display: inline-block;
            border-radius: 7px;
            padding: 16px 20px;
            color: var(--ztc-text-text-2);
            font-weight: var(--f-fw-blod);
            overflow: hidden;
            position: relative;
            z-index: 1;
            transition: all 0.4s;
            margin-left: 20px;
            border: 1px solid var(--ztc-text-text-2);
        }
        
        @media (max-width: 767px) {
            .cta-btn2 {
                margin-left: 0;
            }
        }
        
        .cta-btn2::after {
            content: "";
            position: absolute;
            background-image: url(../img/icons/button-img.png);
            height: 100%;
            width: 0%;
            top: 0;
            left: auto;
            right: 0;
            z-index: 2;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: contain;
            transform: scale(1.5);
            transition: all 0.4s;
            animation-name: shape-animaiton4;
            animation-duration: 52s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: ease-in-out;
        }
        
        .cta-btn2 span {
            display: inline-block;
            padding-left: 4px;
        }
        
        .cta-btn2:hover {
            color: #fff;
            transform: translateY(-4px);
            transition: all 0.4s;
            background-color: #3059CE;
            border: 1px solid #3059CE;
        }
        
        .cta-btn2:hover::after {
            width: 100%;
            transition: all 0.4s;
            left: 0;
            right: auto;
        }
        
        .theme-btn2 {
            display: inline-block;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-blod);
            padding: 16px 10px 16px 22px;
            border-radius: 25px;
            background-color: var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
            border: none;
            position: relative;
            z-index: 2;
        }
        
        .theme-btn2 span {
            display: inline-block;
            transform: rotate(-45deg) translateX(0px);
            font-size: 17px;
        }
        
        .theme-btn2 .arrow2 {
            transform: translateY(-8px) rotate(-45deg) translateX(-52px);
            transition: all 0.4s;
            opacity: 0;
        }
        
        .theme-btn2 .arrow1 {
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn2:hover .arrow2 {
            transform: translateY(-15px) rotate(-45deg) translateX(-21px);
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn2:hover .arrow1 {
            transition: all 0.4s;
            transform: translateY(-7px) rotate(-45deg) translateX(45px);
            opacity: 0;
        }
        
        .theme-btn2::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: #99ff00;
            border-radius: 25px;
            z-index: -1;
            transform: rotateY(90deg);
            transition: all 0.4s;
            animation-timing-function: linear;
        }
        
        .theme-btn2:hover {
            color: var(--ztc-text-text-1);
            transition: all 0.4s;
            transform: translateY(-5px);
        }
        
        .theme-btn2:hover::after {
            transform: rotateY(0deg);
            transition: all 0.4s;
            animation-timing-function: linear;
        }
        
        .theme-btn3 {
            display: inline-block;
            color: var();
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-blod);
            padding: 18px 22px;
            border-radius: 4px;
            background-color: var(--ztc-text-text-2);
            transition: all 0.4s;
            border: none;
        }
        
        .theme-btn3 span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .theme-btn3:hover {
            color: var(--ztc-text-text-2);
            transition: all 0.4s;
            transform: translateY(-5px);
            background-color: var(--ztc-bg-main-bg-3);
        }
        
        .theme-btn4 {
            display: inline-block;
            color: var(--ztc-text-text-2);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            padding: 14px 16px;
            border-radius: 7px;
            background-color: var(--ztc-bg-main-bg-3);
            transition: all 0.4s;
            border: none;
        }
        
        .theme-btn4 i {
            display: inline-block;
            transform: rotate(-45deg);
            margin-left: 2px;
        }
        
        .theme-btn4:hover {
            color: var(--ztc-text-text-2);
            transition: all 0.4s;
            transform: translateY(0px);
            background-color: #139155;
        }
        
        .theme-btn5 {
            display: inline-block;
            color: var(--ztc-text-text-2);
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-blod);
            padding: 8px 10px 8px 18px;
            border-radius: 30px;
            background-color: var(--ztc-bg-main-bg-2);
            transition: all 0.4s;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .theme-btn5 span {
            height: 40px;
            width: 40px;
            background-color: #fff;
            border-radius: 50%;
            display: inline-block;
            color: var(--ztc-text-text-1);
            text-align: center;
            line-height: 40px;
            margin-left: 4px;
            transform: rotate(-45deg);
        }
        
        .theme-btn5::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background-color: #4d03bd;
            border-radius: 30px;
            z-index: -1;
            transition: all 0.4s;
        }
        
        .theme-btn5:hover {
            color: var(--ztc-text-text-2);
            transition: all 0.4s;
            transform: translateY(-5px);
            background-color: #7323eb;
        }
        
        .theme-btn5:hover::after {
            width: 100%;
            transition: all 0.4s;
        }
        
        @media xs {
            br {
                display: none;
            }
        }
        
        .theme-btn6 {
            display: inline-block;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-blod);
            padding: 8px 10px 8px 18px;
            border-radius: 30px;
            background-color: #E7EAF3;
            transition: all 0.4s;
            border: none;
            margin-left: 16px;
            position: relative;
            overflow: hidden;
        }
        
        .theme-btn6 span {
            height: 40px;
            width: 40px;
            background-color: #fff;
            border-radius: 50%;
            display: inline-block;
            color: var(--ztc-text-text-1);
            text-align: center;
            line-height: 40px;
            margin-left: 4px;
            transform: rotate(-45deg);
        }
        
        .theme-btn6::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background-color: #6E18EF;
            border-radius: 30px;
            z-index: -1;
            transition: all 0.4s;
        }
        
        .theme-btn6:hover {
            color: var(--ztc-text-text-2);
            transition: all 0.4s;
            transform: translateY(-5px);
        }
        
        .theme-btn6:hover::after {
            width: 100%;
            transition: all 0.4s;
        }
        
        @media (max-width: 767px) {
            .theme-btn6 {
                margin-left: 0;
                margin-top: 20px;
            }
        }
        
        .theme-btn7 {
            display: inline-block;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-blod);
            padding: 8px 10px 8px 18px;
            border-radius: 30px;
            background-color: #fff;
            transition: all 0.4s;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .theme-btn7 span {
            height: 40px;
            width: 40px;
            background-color: var(--ztc-bg-main-bg-2);
            border-radius: 50%;
            display: inline-block;
            color: var(--ztc-text-text-2);
            text-align: center;
            line-height: 40px;
            margin-left: 4px;
            transform: rotate(-45deg);
            transition: all 0.4s;
        }
        
        .theme-btn7::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background-color: #6E18EF;
            border-radius: 30px;
            z-index: -1;
            transition: all 0.4s;
        }
        
        .theme-btn7:hover {
            color: var(--ztc-text-text-2);
            transition: all 0.4s;
            transform: translateY(-5px);
        }
        
        .theme-btn7:hover::after {
            width: 100%;
            transition: all 0.4s;
        }
        
        .theme-btn7:hover span {
            background-color: var(--ztc-text-text-2);
            color: var(--ztc-text-text-1);
            transition: all 0.4s;
        }
        
        .get-started-btn {
            display: inline-block;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-blod);
            padding: 16px 22px;
            border-radius: 7px;
            background-color: var(--ztc-text-text-2);
            transition: all 0.4s;
            border: none;
        }
        
        .get-started-btn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .get-started-btn:hover {
            transition: all 0.4s;
            transform: translateY(-5px);
        }
        
        .btn {
            position: relative;
            display: inline-block;
            outline: none;
            color: var(--ztc-text-text-2);
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-blod);
            padding: 18px 22px;
            border-radius: 4px;
            background-color: var(--ztc-bg-main-bg-3);
            transition: all 0.4s;
            border: none;
            cursor: pointer;
            text-transform: capitalize;
            box-sizing: border-box;
            position: relative;
            z-index: 99;
            line-height: var(--f-fs-font-fs16);
        }
        
        .btn:hover {
            color: var(--qt-bg-bg-w);
        }
        
        .btn--ripple {
            border-radius: 7px;
            background-color: var(--ztc-bg-main-bg-3);
            overflow: hidden;
        }
        
        .btn--ripple span {
            position: absolute;
            background: #fff;
            transform: translate(-50%, -50%);
            pointer-events: none;
            border-radius: 50%;
            animation: rippleAnimation 1s linear infinite;
            z-index: 98;
        }
        
        @keyframes rippleAnimation {
            0% {
                width: 0px;
                height: 0px;
                opacity: 0.5;
            }
            100% {
                width: 500px;
                height: 500px;
                opacity: 0;
            }
        }
        
        .btn--hoverEffect3 {
            display: inline-block;
            background: #fff;
            color: #333;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn--hoverEffect3::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 101%;
            width: 101%;
            -webkit-clip-path: polygon(0 0, 100% 0, 10% 25%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 10% 25%, 0 100%);
            background: #444;
            border-radius: 5px;
            transition: 0.3s cubic-bezier(0.38, 1.15, 0.7, 1.12);
            box-sizing: border-box;
            z-index: 1000;
        }
        
        .btn--hoverEffect3:hover::before {
            -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
        
        .btn--hoverEffect3:hover {
            color: var(--qt-bg-bg-w);
        }
        
        .btn2 {
            position: relative;
            display: inline-block;
            outline: none;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-blod);
            padding: 18px 22px;
            border-radius: 4px;
            background-color: var(--ztc-bg-main-bg-3);
            transition: all 0.4s;
            border: none;
            cursor: pointer;
            text-transform: capitalize;
            box-sizing: border-box;
            position: relative;
            z-index: 99;
            line-height: var(--f-fs-font-fs16);
        }
        
        .btn2:hover {
            color: var(--qt-bg-bg-w);
        }
        
        .btn2--ripple {
            border-radius: 7px;
            background-color: var(--ztc-text-text-2);
            overflow: hidden;
            color: #113ADC;
        }
        
        .btn2--ripple span {
            position: absolute;
            background: #fff;
            transform: translate(-50%, -50%);
            pointer-events: none;
            border-radius: 50%;
            animation: rippleAnimation 1s linear infinite;
            z-index: 98;
        }
        
        @keyframes rippleAnimation {
            0% {
                width: 0px;
                height: 0px;
                opacity: 0.5;
            }
            100% {
                width: 500px;
                height: 500px;
                opacity: 0;
            }
        }
        
        .btn2--hoverEffect3 {
            display: inline-block;
            background: #fff;
            color: #333;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn2--hoverEffect3::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 101%;
            width: 101%;
            -webkit-clip-path: polygon(0 0, 100% 0, 10% 25%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 10% 25%, 0 100%);
            background: #444;
            border-radius: 5px;
            transition: 0.3s cubic-bezier(0.38, 1.15, 0.7, 1.12);
            box-sizing: border-box;
            z-index: 1000;
        }
        
        .btn2--hoverEffect3:hover::before {
            -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
        
        .btn2--hoverEffect3:hover {
            color: var(--qt-bg-bg-w);
            transition: all 0.4s;
        }
        
        .theme-btn8 {
            display: inline-block;
            padding: 12px 17px;
            color: #FFF;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            position: relative;
            z-index: 2;
            border: none;
        }
        
        .theme-btn8 span.text {
            display: inline-block;
            transform: translateY(-8px);
        }
        
        .theme-btn8 span.arrows {
            display: inline-block;
            transform: rotate(-45deg) translateX(0px);
            font-size: 17px;
            height: 32px;
            width: 32px;
            background-color: #fff;
            border-radius: 50%;
            overflow: hidden;
            line-height: 32px;
            text-align: center;
            color: #FA7D3C;
            margin-left: 7px;
        }
        
        .theme-btn8 .arrow2 {
            transform: translateY(-8px) rotate(-45deg) translateX(-52px);
            transition: all 0.4s;
            display: inline-block;
        }
        
        .theme-btn8 .arrow1 {
            transition: all 0.4s;
            display: inline-block;
            transform: translateX(7px);
        }
        
        .theme-btn8:hover .arrow2 {
            transform: translateY(-2px) rotate(-20deg) translateX(-8px);
            transition: all 0.4s;
        }
        
        .theme-btn8:hover .arrow1 {
            transition: all 0.4s;
            transform: translateY(-7px) rotate(-45deg) translateX(45px);
        }
        
        .theme-btn8:hover {
            color: #fff;
        }
        
        .theme-btn8::after {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            border-radius: 4px;
            background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
            z-index: -2;
        }
        
        .theme-btn8::before {
            content: "";
            position: absolute;
            height: 100%;
            width: 0%;
            top: 0;
            left: 0;
            border-radius: 4px;
            background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FA7D3C 0%, #FB3F52 100%));
            z-index: -1;
            transition: all 0.4s;
        }
        
        .theme-btn8:hover {
            transition: all 0.4s;
        }
        
        .theme-btn8:hover::before {
            width: 100%;
            transition: all 0.4s;
        }
        
        .theme-btn9 {
            display: inline-block;
            padding: 14px 18px;
            color: #000;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            position: relative;
            z-index: 2;
            border: none;
        }
        
        .theme-btn9 span.text {
            display: inline-block;
            transform: translateY(-8px);
        }
        
        .theme-btn9 span.arrows {
            display: inline-block;
            transform: rotate(-45deg) translateX(0px);
            font-size: 17px;
            height: 32px;
            width: 32px;
            background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
            border-radius: 50%;
            overflow: hidden;
            line-height: 32px;
            text-align: center;
            color: #fff;
            margin-left: 7px;
            transition: all 0.4s;
        }
        
        .theme-btn9 .arrow2 {
            transform: translateY(-8px) rotate(-45deg) translateX(-52px);
            transition: all 0.4s;
            display: inline-block;
        }
        
        .theme-btn9 .arrow1 {
            transition: all 0.4s;
            display: inline-block;
            transform: translateX(7px);
        }
        
        .theme-btn9:hover span.arrows {
            background: #fff;
            color: #FA7D3C;
        }
        
        .theme-btn9:hover .arrow2 {
            transform: translateY(-2px) rotate(-20deg) translateX(-8px);
            transition: all 0.4s;
        }
        
        .theme-btn9:hover .arrow1 {
            transition: all 0.4s;
            transform: translateY(-7px) rotate(-45deg) translateX(45px);
        }
        
        .theme-btn9:hover {
            color: #fff;
        }
        
        .theme-btn9::after {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            border-radius: 4px;
            background: #fff;
            z-index: -2;
        }
        
        .theme-btn9::before {
            content: "";
            position: absolute;
            height: 100%;
            width: 0%;
            top: 0;
            left: 0;
            border-radius: 4px;
            background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FA7D3C 0%, #FB3F52 100%));
            z-index: -1;
            transition: all 0.4s;
        }
        
        .theme-btn9:hover {
            transition: all 0.4s;
        }
        
        .theme-btn9:hover::before {
            width: 100%;
            transition: all 0.4s;
        }
        
        .theme-btn10 {
            display: inline-block;
            padding: 18px 10px 18px 24px;
            color: #FFF;
            font-size: 19px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            position: relative;
            z-index: 2;
            border: none;
            overflow: hidden;
        }
        
        .theme-btn10 span {
            display: inline-block;
            transform: rotate(-45deg) translateX(0px);
            font-size: 17px;
        }
        
        .theme-btn10 .arrow2 {
            transform: translateY(-8px) rotate(-45deg) translateX(-52px);
            transition: all 0.4s;
            opacity: 0;
        }
        
        .theme-btn10 .arrow1 {
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn10:hover .arrow2 {
            transform: translateY(-15px) rotate(-45deg) translateX(-21px);
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn10:hover .arrow1 {
            transition: all 0.4s;
            transform: translateY(-7px) rotate(-45deg) translateX(45px);
            opacity: 0;
        }
        
        .theme-btn10:hover {
            color: #fff;
        }
        
        .theme-btn10::after {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            border-radius: 4px;
            background: #FA6444;
            z-index: -2;
        }
        
        .theme-btn10::before {
            content: "";
            position: absolute;
            height: 100%;
            width: 0%;
            top: 0;
            left: auto;
            right: 0;
            border-radius: 4px;
            background: #180D03;
            z-index: -1;
            transition: all 0.4s;
        }
        
        .theme-btn10:hover {
            transition: all 0.4s;
        }
        
        .theme-btn10:hover::before {
            width: 100%;
            transition: all 0.4s;
            left: 0;
            right: auto;
        }
        
        .theme-btn10:hover span {
            transition: all 0.4s;
        }
        
        .theme-btn11 {
            display: inline-block;
            padding: 18px 10px 18px 24px;
            color: #FFF;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            position: relative;
            z-index: 2;
            border: none;
            overflow: hidden;
            margin-left: 16px;
        }
        
        @media (max-width: 767px) {
            .theme-btn11 {
                margin-left: 0;
                margin-right: 16px;
                margin-top: 20px;
            }
        }
        
        .theme-btn11 span {
            display: inline-block;
            transform: rotate(-45deg) translateX(0px);
            font-size: 17px;
        }
        
        .theme-btn11 .arrow2 {
            transform: translateY(-8px) rotate(-45deg) translateX(-52px);
            transition: all 0.4s;
            opacity: 0;
        }
        
        .theme-btn11 .arrow1 {
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn11:hover .arrow2 {
            transform: translateY(-15px) rotate(-45deg) translateX(-21px);
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn11:hover .arrow1 {
            transition: all 0.4s;
            transform: translateY(-7px) rotate(-45deg) translateX(45px);
            opacity: 0;
        }
        
        .theme-btn11:hover {
            color: #fff;
        }
        
        .theme-btn11::after {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            border-radius: 4px;
            border: 1px solid #fff;
            z-index: -2;
        }
        
        .theme-btn11::before {
            content: "";
            position: absolute;
            height: 100%;
            width: 0%;
            top: 0;
            left: auto;
            right: 0;
            border-radius: 4px;
            background: #FA6444;
            z-index: -1;
            transition: all 0.4s;
        }
        
        .theme-btn11:hover {
            transition: all 0.4s;
        }
        
        .theme-btn11:hover::before {
            width: 100%;
            transition: all 0.4s;
            left: 0;
            right: auto;
        }
        
        .theme-btn11:hover span {
            transition: all 0.4s;
        }
        
        .theme-btn12 {
            display: inline-block;
            padding: 12px 16px;
            color: #111111;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            position: relative;
            z-index: 2;
            border: none;
            overflow: hidden;
            border-radius: 111px;
        }
        
        .theme-btn12 span.text {
            display: inline-block;
            transform: translateY(-8px);
        }
        
        .theme-btn12 span.arrows {
            display: inline-block;
            transform: rotate(-45deg) translateX(0px);
            font-size: 17px;
            height: 32px;
            width: 32px;
            background-color: #0061FF;
            border-radius: 50%;
            overflow: hidden;
            line-height: 32px;
            text-align: center;
            color: #fff;
            margin-left: 7px;
        }
        
        .theme-btn12 .arrow2 {
            transform: translateY(-8px) rotate(-45deg) translateX(-52px);
            transition: all 0.4s;
            display: inline-block;
        }
        
        .theme-btn12 .arrow1 {
            transition: all 0.4s;
            display: inline-block;
            transform: translateX(7px);
        }
        
        .theme-btn12:hover .arrow2 {
            transform: translateY(-2px) rotate(-20deg) translateX(-8px);
            transition: all 0.4s;
        }
        
        .theme-btn12:hover .arrow1 {
            transition: all 0.4s;
            transform: translateY(-7px) rotate(-45deg) translateX(45px);
        }
        
        .theme-btn12:hover {
            color: #fff;
        }
        
        .theme-btn12::after {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            border-radius: 111px;
            background: #fff;
            z-index: -2;
        }
        
        .theme-btn12::before {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            border-radius: 111px;
            background: #111111;
            z-index: -1;
            transition: all 0.4s;
            transform: rotateY(80deg);
            opacity: 0;
        }
        
        .theme-btn12:hover {
            transition: all 0.4s;
        }
        
        .theme-btn12:hover::before {
            width: 100%;
            transition: all 0.4s;
            transform: rotateY(0deg);
            opacity: 1;
        }
        
        .theme-btn13 {
            display: inline-block;
            padding: 12px 16px;
            color: #fff;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            position: relative;
            z-index: 2;
            border: none;
            overflow: hidden;
            border-radius: 111px;
        }
        
        .theme-btn13 span.text {
            display: inline-block;
            transform: translateY(-8px);
        }
        
        .theme-btn13 span.arrows {
            display: inline-block;
            transform: rotate(-45deg) translateX(0px);
            font-size: 17px;
            height: 32px;
            width: 32px;
            background-color: #fff;
            border-radius: 50%;
            overflow: hidden;
            line-height: 32px;
            text-align: center;
            color: #0061FF;
            margin-left: 7px;
        }
        
        .theme-btn13 .arrow2 {
            transform: translateY(-8px) rotate(-45deg) translateX(-52px);
            transition: all 0.4s;
            display: inline-block;
        }
        
        .theme-btn13 .arrow1 {
            transition: all 0.4s;
            display: inline-block;
            transform: translateX(7px);
        }
        
        .theme-btn13:hover .arrow2 {
            transform: translateY(-2px) rotate(-20deg) translateX(-8px);
            transition: all 0.4s;
        }
        
        .theme-btn13:hover .arrow1 {
            transition: all 0.4s;
            transform: translateY(-7px) rotate(-45deg) translateX(45px);
        }
        
        .theme-btn13:hover {
            color: #fff;
        }
        
        .theme-btn13::after {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            border-radius: 111px;
            background: #0061FF;
            z-index: -2;
        }
        
        .theme-btn13::before {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            border-radius: 111px;
            background: #111111;
            z-index: -1;
            transition: all 0.4s;
            transform: rotateY(80deg);
            opacity: 0;
        }
        
        .theme-btn13:hover {
            transition: all 0.4s;
        }
        
        .theme-btn13:hover::before {
            width: 100%;
            transition: all 0.4s;
            transform: rotateY(0deg);
            opacity: 1;
        }
        
        .theme-btn14 {
            display: inline-block;
            padding: 18px 10px 18px 24px;
            color: #FFF;
            font-size: 19px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            position: relative;
            z-index: 2;
            border: none;
            overflow: hidden;
        }
        
        .theme-btn14 span {
            display: inline-block;
            transform: rotate(-45deg) translateX(0px);
            font-size: 17px;
        }
        
        .theme-btn14 .arrow2 {
            transform: translateY(-8px) rotate(-45deg) translateX(-52px);
            transition: all 0.4s;
            opacity: 0;
        }
        
        .theme-btn14 .arrow1 {
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn14:hover .arrow2 {
            transform: translateY(-15px) rotate(-45deg) translateX(-21px);
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn14:hover .arrow1 {
            transition: all 0.4s;
            transform: translateY(-7px) rotate(-45deg) translateX(45px);
            opacity: 0;
        }
        
        .theme-btn14:hover {
            color: #fff;
        }
        
        .theme-btn14::after {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            border-radius: 4px;
            background: #4D32A5;
            z-index: -2;
        }
        
        .theme-btn14::before {
            content: "";
            position: absolute;
            height: 100%;
            width: 0%;
            top: 0;
            left: auto;
            right: 0;
            border-radius: 4px;
            background: #180D03;
            z-index: -1;
            transition: all 0.4s;
        }
        
        .theme-btn14:hover {
            transition: all 0.4s;
        }
        
        .theme-btn14:hover::before {
            width: 100%;
            transition: all 0.4s;
            left: 0;
            right: auto;
        }
        
        .theme-btn14:hover span {
            transition: all 0.4s;
        }
        
        .theme-btn15 {
            display: inline-block;
            padding: 18px 10px 18px 18px;
            color: #4D32A5;
            font-size: 19px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            position: relative;
            z-index: 2;
            border: none;
            overflow: hidden;
            margin-left: 16px;
        }
        
        .theme-btn15 span {
            display: inline-block;
            transform: rotate(-45deg) translateX(0px);
            font-size: 17px;
        }
        
        .theme-btn15 .arrow2 {
            transform: translateY(-8px) rotate(-45deg) translateX(-52px);
            transition: all 0.4s;
            opacity: 0;
        }
        
        .theme-btn15 .arrow1 {
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn15:hover .arrow2 {
            transform: translateY(-15px) rotate(-45deg) translateX(-21px);
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn15:hover .arrow1 {
            transition: all 0.4s;
            transform: translateY(-7px) rotate(-45deg) translateX(45px);
            opacity: 0;
        }
        
        .theme-btn15:hover {
            color: #fff;
        }
        
        .theme-btn15::after {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            border-radius: 4px;
            border: 2px solid #4D32A5;
            z-index: -2;
        }
        
        .theme-btn15::before {
            content: "";
            position: absolute;
            height: 100%;
            width: 0%;
            top: 0;
            left: auto;
            right: 0;
            border-radius: 4px;
            background: #180D03;
            z-index: -1;
            transition: all 0.4s;
        }
        
        .theme-btn15:hover {
            transition: all 0.4s;
        }
        
        .theme-btn15:hover::before {
            width: 100%;
            transition: all 0.4s;
            left: 0;
            right: auto;
        }
        
        .theme-btn15:hover span {
            transition: all 0.4s;
        }
        
        .theme-btn16 {
            display: inline-block;
            padding: 18px 10px 18px 24px;
            color: #181818;
            font-size: 19px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 111px;
            position: relative;
            z-index: 2;
            border: none;
            overflow: hidden;
            transition: all 0.4s;
        }
        
        .theme-btn16 span {
            display: inline-block;
            transform: rotate(-45deg) translateX(0px);
            font-size: 16px;
        }
        
        .theme-btn16 .arrow2 {
            transform: translateY(-8px) rotate(-45deg) translateX(-52px);
            transition: all 0.4s;
            opacity: 0;
        }
        
        .theme-btn16 .arrow1 {
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn16:hover .arrow2 {
            transform: translateY(-15px) rotate(-45deg) translateX(-21px);
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn16:hover .arrow1 {
            transition: all 0.4s;
            transform: translateY(-7px) rotate(-45deg) translateX(45px);
            opacity: 0;
        }
        
        .theme-btn16::after {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            border-radius: 111px;
            background: #A2EA61;
            z-index: -2;
        }
        
        .theme-btn16::before {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: auto;
            right: 0;
            border-radius: 111px;
            background: #bbff80;
            transform: rotateY(90deg);
            z-index: -1;
            transition: all 0.4s;
            opacity: 0;
        }
        
        .theme-btn16:hover {
            transition: all 0.4s;
            transform: translateY(-5px);
            color: #181818;
        }
        
        .theme-btn16:hover::before {
            width: 100%;
            transition: all 0.4s;
            left: 0;
            right: auto;
            transform: rotateY(0deg);
            opacity: 1;
        }
        
        .theme-btn17 {
            display: inline-block;
            padding: 19px 10px 19px 24px;
            color: #fff;
            font-size: 19px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            position: relative;
            z-index: 2;
            border: none;
            overflow: hidden;
        }
        
        .theme-btn17 span {
            display: inline-block;
            transform: rotate(-45deg) translateX(0px);
            font-size: 16px;
        }
        
        .theme-btn17 .arrow2 {
            transform: translateY(-8px) rotate(-45deg) translateX(-52px);
            transition: all 0.4s;
            opacity: 0;
        }
        
        .theme-btn17 .arrow1 {
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn17:hover .arrow2 {
            transform: translateY(-15px) rotate(-45deg) translateX(-21px);
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn17:hover .arrow1 {
            transition: all 0.4s;
            transform: translateY(-7px) rotate(-45deg) translateX(45px);
            opacity: 0;
        }
        
        .theme-btn17:hover {
            color: #fff;
        }
        
        .theme-btn17::after {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            border-radius: 4px;
            background: #259EA6;
            z-index: -2;
        }
        
        .theme-btn17::before {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: auto;
            right: 0;
            border-radius: 4px;
            background: #180D03;
            transform: rotateY(90deg);
            z-index: -1;
            transition: all 0.4s;
            opacity: 0;
        }
        
        .theme-btn17:hover {
            transition: all 0.4s;
        }
        
        .theme-btn17:hover::before {
            width: 100%;
            transition: all 0.4s;
            left: 0;
            right: auto;
            transform: rotateY(0deg);
            opacity: 1;
        }
        
        .theme-btn18 {
            display: inline-block;
            padding: 19px 10px 19px 24px;
            color: #259EA6;
            font-size: 19px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            position: relative;
            z-index: 2;
            border: none;
            overflow: hidden;
        }
        
        .theme-btn18 span {
            display: inline-block;
            transform: rotate(-45deg) translateX(0px);
            font-size: 16px;
        }
        
        .theme-btn18 .arrow2 {
            transform: translateY(-8px) rotate(-45deg) translateX(-52px);
            transition: all 0.4s;
            opacity: 0;
        }
        
        .theme-btn18 .arrow1 {
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn18:hover .arrow2 {
            transform: translateY(-15px) rotate(-45deg) translateX(-21px);
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn18:hover .arrow1 {
            transition: all 0.4s;
            transform: translateY(-7px) rotate(-45deg) translateX(45px);
            opacity: 0;
        }
        
        .theme-btn18:hover {
            color: #fff;
        }
        
        .theme-btn18::after {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            border-radius: 4px;
            background: #fff;
            z-index: -2;
        }
        
        .theme-btn18::before {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: auto;
            right: 0;
            border-radius: 4px;
            background: #180D03;
            transform: rotateY(90deg);
            z-index: -1;
            transition: all 0.4s;
            opacity: 0;
        }
        
        .theme-btn18:hover {
            transition: all 0.4s;
        }
        
        .theme-btn18:hover::before {
            width: 100%;
            transition: all 0.4s;
            left: 0;
            right: auto;
            transform: rotateY(0deg);
            opacity: 1;
        }
        
        .theme-btn19 {
            display: inline-block;
            padding: 19px 10px 19px 24px;
            color: #fff;
            font-size: 19px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            position: relative;
            z-index: 2;
            border: none;
            overflow: hidden;
            margin-left: 20px;
        }
        
        @media (max-width: 767px) {
            .theme-btn19 {
                margin-left: 0;
                margin-top: 20px;
                margin-right: 20px;
            }
        }
        
        .theme-btn19 span {
            display: inline-block;
            transform: rotate(-45deg) translateX(0px);
            font-size: 16px;
        }
        
        .theme-btn19 .arrow2 {
            transform: translateY(-8px) rotate(-45deg) translateX(-52px);
            transition: all 0.4s;
            opacity: 0;
        }
        
        .theme-btn19 .arrow1 {
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn19:hover .arrow2 {
            transform: translateY(-15px) rotate(-45deg) translateX(-21px);
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn19:hover .arrow1 {
            transition: all 0.4s;
            transform: translateY(-7px) rotate(-45deg) translateX(45px);
            opacity: 0;
        }
        
        .theme-btn19:hover {
            color: #fff;
        }
        
        .theme-btn19::after {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            border-radius: 4px;
            border: 1px solid #fff;
            z-index: -2;
        }
        
        .theme-btn19::before {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: auto;
            right: 0;
            border-radius: 4px;
            background: #180D03;
            transform: rotateY(90deg);
            z-index: -1;
            transition: all 0.4s;
            opacity: 0;
        }
        
        .theme-btn19:hover {
            transition: all 0.4s;
        }
        
        .theme-btn19:hover::before {
            width: 100%;
            transition: all 0.4s;
            left: 0;
            right: auto;
            transform: rotateY(0deg);
            opacity: 1;
        }
        
        .theme-btn21 {
            display: inline-block;
            padding: 19px 10px 19px 24px;
            color: #011313;
            font-size: 19px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            position: relative;
            z-index: 2;
            border: none;
            overflow: hidden;
        }
        
        .theme-btn21 span {
            display: inline-block;
            transform: rotate(-45deg) translateX(0px);
            font-size: 16px;
        }
        
        .theme-btn21 .arrow2 {
            transform: translateY(-8px) rotate(-45deg) translateX(-52px);
            transition: all 0.4s;
            opacity: 0;
        }
        
        .theme-btn21 .arrow1 {
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn21:hover .arrow2 {
            transform: translateY(-15px) rotate(-45deg) translateX(-21px);
            transition: all 0.4s;
            opacity: 1;
        }
        
        .theme-btn21:hover .arrow1 {
            transition: all 0.4s;
            transform: translateY(-7px) rotate(-45deg) translateX(45px);
            opacity: 0;
        }
        
        .theme-btn21:hover {
            color: #011313;
        }
        
        .theme-btn21::after {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            border-radius: 4px;
            background: #fff;
            z-index: -2;
        }
        
        .theme-btn21::before {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: auto;
            right: 0;
            border-radius: 4px;
            background: #180D03;
            transform: rotateY(90deg);
            z-index: -1;
            transition: all 0.4s;
            opacity: 0;
        }
        
        .theme-btn21:hover {
            transition: all 0.4s;
            color: #fff;
        }
        
        .theme-btn21:hover::before {
            width: 100%;
            transition: all 0.4s;
            left: 0;
            right: auto;
            transform: rotateY(0deg);
            opacity: 1;
        }
        /*
::::::::::::::::::::::::::
    BUTOTNS AREA CSS
::::::::::::::::::::::::::
*/
        /*
::::::::::::::::::::::::::
 ABOUT AREA CSS
::::::::::::::::::::::::::
*/
        
        .about1 .about-image {
            position: relative;
        }
        
        .about1 .about-image img {
            width: 100%;
        }
        
        .single-slider h3 {
            font-size: 16px;
            margin-top: 10px;
            color: #ffffff;
            background: #c92829;
            padding: 6px;
            margin: 0;
        }
        
        .about1 .about-image .icon-box {
            background-color: var(--ztc-bg-main-bg-1);
            padding: 16px 20px;
            border-radius: 7px;
            width: 200px;
            text-align: center;
            position: absolute;
            bottom: 50px;
        }
        
        .about1 .about-image .icon-box h4 {
            font-size: var(--f-fs-font-fs24);
            line-height: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-color-w);
            padding: 16px 0px;
        }
        
        .about1 .about-image .icon-box p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-bg-color-w);
        }
        
        .about1 .heading1 {
            padding-left: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .about1 .heading1 {
                padding-left: 0;
                padding-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .about1 .heading1 {
                padding-left: 0;
                padding-top: 0px;
            }
        }
        
        @media (max-width: 767px) {
            .about1 .heading1 .list {
                margin-bottom: 10px;
            }
        }
        
        .about1 .heading1 .list li {
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-text-text-1);
            padding-top: 20px;
            display: flex;
            align-items: center;
        }
        
        @media (max-width: 767px) {
            .about1 .heading1 .list li {
                line-height: var(--f-fs-font-fs28);
                display: block;
            }
        }
        
        .about1 .heading1 .list li span {
            display: inline-block;
            height: 20px;
            width: 20px;
            text-align: center;
            line-height: 20px;
            background-color: var(--ztc-bg-main-bg-1);
            border-radius: 50%;
            font-size: 12px;
            color: var(--ztc-bg-color-w);
            margin-top: 0px;
            margin-right: 10px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .about2 {
                padding-top: 100px;
            }
        }
        
        @media (max-width: 767px) {
            .about2 {
                padding-top: 60px;
            }
        }
        
        .about2 .about2-images {
            position: relative;
            height: 500px;
            text-align: center;
        }
        
        @media (max-width: 767px) {
            .about2 .about2-images {
                height: 600px;
            }
        }
        
        .about2 .about2-images .image1 {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 9;
        }
        
        @media (max-width: 767px) {
            .about2 .about2-images .image1 {
                position: absolute;
                top: 140px;
                left: 0;
                z-index: 9;
            }
        }
        
        .about2 .about2-images .image2 {
            padding-top: 50px;
        }
        
        @media (max-width: 767px) {
            .about2 .about2-images .image2 {
                padding-top: 50px;
                position: absolute;
                bottom: 50px;
            }
        }
        
        .about2 .about2-images .image3 {
            position: absolute;
            bottom: 0;
            right: 0;
            z-index: 2;
        }
        
        .about2 .about2-images .counter-box {
            background-color: var(--ztc-bg-main-bg-4);
            width: 200px;
            padding: 20px;
            border-radius: 7px;
            display: flex;
            align-items: center;
            position: absolute;
            top: 0;
            right: 0;
        }
        
        .about2 .about2-images .counter-box h3 {
            font-size: var(--f-fs-font-fs44);
            line-height: var(--f-fs-font-fs52);
            color: var(--ztc-text-text-1);
            font-weight: var(--f-fw-blod);
        }
        
        .about2 .about2-images .counter-box p {
            text-align: start;
            padding-left: 16px;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-text-1);
        }
        
        .about2 .porgress-line-all {
            background-color: var(--ztc-bg-bg-4);
            border: 1px solid var(--ztc-bg-bg-5);
            border-radius: 7px;
            padding: 32px;
            margin-top: 20px;
        }
        
        .about2 .porgress-line-all .progress-line {
            margin-top: 32px;
            position: relative;
        }
        
        .about2 .porgress-line-all .progress-line:nth-child(1) {
            margin-top: 0;
        }
        
        .about2 .porgress-line-all .progress-line h6 {
            color: var(--ztc-bg-color-w);
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-blod);
        }
        
        .about2 .porgress-line-all .progress-line .percentCount {
            position: absolute;
            right: 0;
            top: 0;
            color: var(--ztc-bg-color-w);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
        }
        
        .about2 .porgress-line-all .progress-line .progressbar {
            margin-top: 20px;
            color: red;
        }
        
        .about2 .heading2 {
            padding-left: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .about2 .heading2 {
                padding-left: 0;
                padding-top: 40px;
            }
        }
        
        @media (max-width: 767px) {
            .about2 .heading2 {
                padding-left: 0;
                padding-top: 40px;
            }
        }
        
        .about2.about-page-sec .porgress-line-all {
            background: #F8F9FA;
            border: none;
        }
        
        .about2.about-page-sec .porgress-line-all .progress {
            height: 10px;
        }
        
        .about2.about-page-sec .porgress-line-all .progress .progress-bar {
            background: var(--ztc-bg-main-bg-1);
        }
        
        .about2.about-page-sec .porgress-line-all .heading {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 12px;
        }
        
        .about2.about-page-sec .porgress-line-all h6 {
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-blod);
        }
        
        .about2.about-page-sec .counter-box {
            background-color: var(--ztc-bg-main-bg-1);
            width: 200px;
            padding: 20px;
            border-radius: 7px;
            display: flex;
            align-items: center;
            position: absolute;
            top: 0;
            right: 0;
        }
        
        .about2.about-page-sec .counter-box h3 {
            font-size: var(--f-fs-font-fs44);
            line-height: var(--f-fs-font-fs52);
            color: #fff;
            font-weight: var(--f-fw-blod);
        }
        
        .about2.about-page-sec .counter-box p {
            text-align: start;
            padding-left: 16px;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-regular);
            color: #fff;
        }
        
        .about3 .about3-images {
            margin-left: 50px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .about3 .about3-images {
                margin-left: 0;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .about3 .about3-images {
                margin-left: 0;
                margin-top: 30px;
            }
        }
        
        .about3 .about3-box {
            margin-top: 30px;
        }
        
        @media (max-width: 767px) {
            .about3 .cs_case_study.cs_style_1.cs_hover_active {
                margin-top: 30px;
            }
        }
        
        .about4 .images {
            position: relative;
            height: 560px;
            text-align: center;
        }
        
        .about4 .images .img1 {
            position: absolute;
            z-index: -3;
        }
        
        .about4 .images .img2 {
            position: absolute;
            bottom: 0;
            left: 0;
            z-index: 4;
        }
        
        @media (max-width: 767px) {
            .about4 .images .img2 {
                display: none;
            }
        }
        
        .about4 .images .img3 {
            position: absolute;
            right: 125px;
            top: 0;
            z-index: 2;
        }
        
        .about4 .images .img4 {
            position: absolute;
            right: 0;
            bottom: 0;
            z-index: 2;
        }
        
        .about4 .images .img5 {
            position: absolute;
            right: 40px;
            top: 60px;
            z-index: 7;
        }
        
        .about4 .counter-box {
            text-align: start;
            border-right: 2px solid rgba(86, 95, 118, 0.096);
        }
        
        @media (max-width: 767px) {
            .about4 .counter-box {
                text-align: start;
            }
        }
        
        .about4 .counter-box h3 {
            color: var(--ztc-bg-main-bg-2);
            font-size: var(--f-fs-font-fs56);
            line-height: var(--f-fs-font-fs56);
            font-weight: var(--f-fw-blod);
        }
        
        .about4 .counter-box p {
            padding-top: 6px;
        }
        
        @media (max-width: 767px) {
            .about4 .list {
                margin: 16px 0px;
            }
        }
        
        .about4 .list li {
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-text-text-1);
            padding: 5px 0px;
        }
        
        .about4 .list li span {
            display: inline-block;
            margin-right: 6px;
            height: 20px;
            width: 20px;
            font-size: 12px;
            background-color: var(--ztc-bg-main-bg-2);
            text-align: center;
            line-height: 20px;
            border-radius: 50%;
            color: var(--ztc-bg-color-w);
        }
        
        .about4 .heading4 {
            padding-left: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .about4 .heading4 {
                padding-left: 0;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .about4 .heading4 {
                padding-left: 0;
                margin-top: 30px;
            }
        }
        
        .about5 {
            padding: 180px 0px 100px 0px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .about5 {
                padding: 100px 0px 50px 0px;
            }
        }
        
        @media (max-width: 767px) {
            .about5 {
                padding: 100px 0px 50px 0px;
            }
        }
        
        .about5 .images {
            position: relative;
            margin-right: 50px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .about5 .images {
                margin-right: 0px;
            }
        }
        
        @media (max-width: 767px) {
            .about5 .images {
                margin-right: 0px;
            }
        }
        
        .about5 .images .img img {
            width: 100%;
        }
        
        .about5 .images .shape {
            position: absolute;
            bottom: 30px;
            left: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .about5 .heading5 {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .about5 .heading5 {
                margin-top: 30px;
            }
        }
        
        .about5 .items-area {
            display: flex;
            align-items: center;
            margin-top: 40px;
        }
        
        .about5 .items-area .icon {
            margin-right: 20px;
            height: 80px;
            width: 80px;
            border-radius: 50%;
            background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
            text-align: center;
            line-height: 80px;
        }
        
        .about5 .items-area .icon img {
            transition: all 0.4s;
        }
        
        .about5 .items-area:hover .icon img {
            transform: rotateY(180deg);
            transition: all 0.4s;
        }
        
        .about6 .image img {
            width: 100%;
        }
        
        .about6 .image2 {
            background-color: #FA6444;
            padding: 16px;
            border-radius: 4px;
            display: inline-block;
            position: absolute;
            bottom: 50px;
            right: 100px;
        }
        
        .about6 .image2 h4 {
            color: var(--Home-Page-3-white-colors, #FFF);
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: 40px;
            /* 100% */
        }
        
        .about6 .image2 p {
            color: var(--Home-Page-3-white-colors, rgba(255, 255, 255, 0.862745098));
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            padding-top: 8px;
        }
        
        .about6 .heading6 {
            padding-left: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .about6 .heading6 {
                padding-left: 0;
                padding-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .about6 .heading6 {
                padding-left: 0;
                padding-top: 30px;
            }
        }
        
        .about6 .heading6 .about-list ul li {
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 18px;
            /* 100% */
            padding-top: 20px;
        }
        
        .about6 .heading6 .about-list ul li .check {
            display: inline-block;
            height: 20px;
            width: 20px;
            text-align: center;
            line-height: 20px;
            font-size: 12px;
            background-color: #FA6444;
            border-radius: 50%;
            color: #fff;
            transform: translateY(-2px);
            margin-right: 5px;
        }
        
        .about7 .images-all {
            position: relative;
        }
        
        .about7 .images-all .image1 img {
            width: 100%;
        }
        
        .about7 .images-all .image2 {
            background-color: #0061FF;
            padding: 20px;
            border-radius: 4px;
            display: inline-block;
            position: absolute;
            top: 10px;
            right: 10px;
        }
        
        .about7 .images-all .image2 h4 {
            color: var(--White-colors, #FFF);
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: 40px;
            /* 100% */
        }
        
        .about7 .images-all .image2 p {
            color: var(--White-colors, rgba(255, 255, 255, 0.7882352941));
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            padding-top: 10px;
        }
        
        .about7 .heading7 {
            padding-left: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .about7 .heading7 {
                padding-left: 0;
                padding-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .about7 .heading7 {
                padding-left: 0;
                padding-top: 30px;
            }
        }
        
        .about7 .heading7 .about-list ul li {
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 18px;
            /* 100% */
            padding-top: 20px;
        }
        
        .about7 .heading7 .about-list ul li .check {
            display: inline-block;
            height: 20px;
            width: 20px;
            text-align: center;
            line-height: 20px;
            font-size: 12px;
            background-color: #0061FF;
            border-radius: 50%;
            color: #fff;
            transform: translateY(-2px);
            margin-right: 5px;
        }
        
        .about7 .about-counter {
            background-color: #F2F7FF;
            transition: all 0.4s;
            padding: 32px;
            margin-top: 30px;
            border-radius: 4px;
            text-align: center;
        }
        
        .about7 .about-counter h4 {
            color: var(--Home-Page-1-text-colors, #02000E);
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: 40px;
            /* 100% */
            transition: all 0.4s;
        }
        
        .about7 .about-counter p {
            color: var(--Home-Page-1-pargraph, #5C5A64);
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 16px;
            /* 100% */
            padding-top: 12px;
            transition: all 0.4s;
        }
        
        .about7 .about-counter:hover {
            transition: all 0.4s;
            transform: translateY(-10px);
            background-color: #0061FF;
        }
        
        .about7 .about-counter:hover h4 {
            color: #fff;
            transition: all 0.4s;
        }
        
        .about7 .about-counter:hover p {
            color: rgba(255, 255, 255, 0.8274509804);
            transition: all 0.4s;
        }
        
        .skill7 {
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center center;
        }
        
        .skill7 .image {
            margin-left: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .skill7 .image {
                margin-left: 0;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .skill7 .image {
                margin-left: 0;
                margin-top: 30px;
            }
        }
        
        .skill7 .image img {
            width: 100%;
        }
        
        .skill7 .porgress-line-all {
            border: none;
        }
        
        .skill7 .porgress-line-all .progress-line {
            margin-top: 30px;
        }
        
        .skill7 .porgress-line-all .progress {
            --bs-progress-height: 1rem;
            --bs-progress-font-size: 0.75rem;
            --bs-progress-bg: #ffffff70;
            --bs-progress-border-radius: 0.375rem;
            --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
            --bs-progress-bar-color: #fff;
            --bs-progress-bar-bg: #0d6efd;
            --bs-progress-bar-transition: width 0.6s ease;
            display: flex;
            height: var(--bs-progress-height);
            overflow: hidden;
            font-size: var(--bs-progress-font-size);
            background-color: var(--bs-progress-bg);
            border-radius: var(--bs-progress-border-radius);
        }
        
        .skill7 .porgress-line-all .progress {
            height: 7px;
        }
        
        .skill7 .porgress-line-all .progress .progress-bar {
            background: #fff;
        }
        
        .skill7 .porgress-line-all .heading {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 12px;
        }
        
        .skill7 .porgress-line-all h6 {
            color: var(--White-colors, #FFF);
            text-align: center;
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: 20px;
            /* 100% */
        }
        
        .skill7 .porgress-line-all p {
            color: var(--White-colors, #FFF);
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: 20px;
            /* 100% */
        }
        
        .about9 .counter-box {
            margin-top: 30px;
            text-align: center;
            margin-right: 24px;
        }
        
        .about9 .counter-box h3 {
            color: var(--Text-Color, #181818);
            font-size: 36px;
            font-style: normal;
            font-weight: 600;
            line-height: 36px;
            /* 100% */
        }
        
        .about9 .counter-box p {
            color: var(--Paragraph-Color, #646375);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            padding-top: 10px;
        }
        
        .about10 .heading10 {
            padding-left: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .about10 .heading10 {
                padding-left: 0;
                padding-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .about10 .heading10 {
                padding-left: 0;
                padding-top: 30px;
            }
        }
        
        .about10 .heading10 .about-list ul li {
            color: #011313;
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            /* 100% */
            margin-top: 24px;
        }
        
        .about10 .heading10 .about-list ul li .check {
            background-color: #24908D;
            height: 20px;
            width: 20px;
            text-align: center;
            line-height: 20px;
            color: #fff;
            display: inline-block;
            font-size: 12px;
            border-radius: 50%;
            margin-right: 2px;
            transform: translateY(-3px);
        }
        
        .about10 .work-images {
            position: relative;
        }
        
        .about10 .work-images .counter-box {
            text-align: center;
            background-color: #24908D;
            width: 186px;
            padding: 24px;
            border-radius: 8px;
            position: absolute;
            top: 50%;
            left: 210px;
            margin-top: -70px;
            z-index: 3;
        }
        
        .about10 .work-images .counter-box h3 {
            color: #FFF;
            font-size: 56px;
            font-style: normal;
            font-weight: 700;
            line-height: 56px;
            /* 100% */
        }
        
        .about10 .work-images .counter-box p {
            color: #FFF;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 16px;
            /* 100% */
            padding-top: 10px;
        }
        
        .about-solution .images img {
            width: 100%;
            border-radius: 7px;
        }
        
        .about-solution .item-box .icon {
            background: #E7EBF7 !important;
        }
        
        .about-solution .heading1 {
            padding-left: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .about-solution .heading1 {
                padding-left: 0;
            }
        }
        
        @media (max-width: 767px) {
            .about-solution .heading1 {
                padding-left: 0;
            }
        }
        
        .about-tabs .tab-header-all {
            background-color: #fff;
            padding: 12px 24px;
            border-radius: 240px;
            margin-top: 60px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .about-tabs .tab-header-all {
                border-radius: 4px;
            }
        }
        
        @media (max-width: 767px) {
            .about-tabs .tab-header-all {
                border-radius: 4px;
            }
        }
        
        .about-tabs .tab-header-all li button {
            color: var(--Text-Color, #0D0E10);
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 16px;
            /* 100% */
            padding: 16px 44px;
            border-radius: 144px;
            background-color: #F8F9FA;
            margin: 12px 10px 12px 10px;
        }
        
        .about-tabs .tab-header-all li button.active {
            background-color: var(--ztc-bg-main-bg-1);
            color: #fff;
        }
        
        .about-tabs .tab-content-box {
            background-color: #fff;
            border-radius: 7px;
            padding: 55px 32px;
        }
        
        .about-tabs .tab-content-box .heading1 h5 {
            color: var(--Text-Color, #0D0E10);
            font-size: 32px;
            font-style: normal;
            font-weight: 600;
            line-height: 32px;
            /* 100% */
        }
        
        .about-tabs .tab-content-box .heading1 p span.text {
            color: var(--ztc-bg-main-bg-1);
            font-weight: var(--f-fw-semibold);
        }
        
        .about10 .work-images {
            position: relative;
        }
        
        .about10 .work-images .image {
            margin-top: 30px;
        }
        
        .about10 .work-images .image img {
            width: 100%;
            border-radius: 7px;
        }
        
        .about10 .work-images .bg-image {
            position: absolute;
            top: 160px;
            right: 50px;
            z-index: -1;
        }
        /*
::::::::::::::::::::::::::
 ABOUT AREA CSS
::::::::::::::::::::::::::
*/
        /*--------------------------------------------------------------
  19. Casestudie
----------------------------------------------------------------*/
        
        .cs_case_study_1_list {
            display: flex;
        }
        
        @media (max-width: 767px) {
            .cs_case_study_1_list {
                flex-direction: column;
            }
        }
        
        .cs_case_study_1_list>.cs_case_study.cs_style_1 {
            flex: 1;
        }
        
        .cs_case_study_1_list .cs_case_study.cs_style_1 {
            min-height: 400px;
        }
        
        .cs_case_study_1_list .cs_case_study.cs_style_1 .cs_case_study_in {
            transition: all 0.2s ease;
            left: 80px;
            opacity: 0;
        }
        
        @media (max-width: 767px) {
            .cs_case_study_1_list .cs_case_study.cs_style_1 .cs_case_study_in {
                left: 0;
                opacity: 1;
            }
        }
        
        .cs_case_study_1_list .cs_case_study.cs_style_1.active {
            flex: 3;
        }
        
        .cs_case_study_1_list .cs_case_study.cs_style_1.active .cs_case_study_in {
            opacity: 1;
            left: 0;
            transition: all 0.6s ease;
            transition-delay: 0.3s;
        }
        
        .cs_case_study_1_list .cs_case_study.cs_style_1.active .cs_case_study_icon {
            transform: scale(0) rotate(360deg);
            transition-delay: 0.1s;
        }
        
        .cs_case_study.cs_style_1 {
            height: 700px;
            display: flex;
            align-items: flex-end;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        @media (max-width: 1400px) {
            .cs_case_study.cs_style_1 {
                height: 600px;
            }
        }
        
        .cs_case_study.cs_style_1 .cs_case_study_title a {
            text-decoration: none;
            background-image: linear-gradient(currentColor, currentColor);
            background-repeat: no-repeat;
            background-position: bottom left;
            background-size: 100% 3px;
        }
        
        .cs_case_study.cs_style_1 .cs_case_study_number {
            left: 70px;
            top: 70px;
            z-index: 1;
        }
        
        @media (max-width: 767px) {
            .cs_case_study.cs_style_1 .cs_case_study_number {
                left: 30px;
                top: 40px;
            }
        }
        
        .cs_case_study.cs_style_1 .cs_case_study_category {
            margin-bottom: 15px;
        }
        
        .cs_case_study.cs_style_1 .cs_case_study_thumb {
            position: absolute;
            height: 100%;
            width: 100%;
            left: 0;
            top: 0;
        }
        
        .cs_case_study.cs_style_1 .cs_case_study_in {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 88px 72px;
        }
        
        @media (max-width: 1400px) {
            .cs_case_study.cs_style_1 .cs_case_study_in {
                padding: 50px;
            }
        }
        
        @media (max-width: 767px) {
            .cs_case_study.cs_style_1 .cs_case_study_in {
                padding: 30px;
            }
        }
        
        .cs_case_study.cs_style_1 .cs_case_study_icon {
            left: 70px;
            bottom: 86px;
            z-index: 1;
            background-color: #4f4747;
            color: #fff;
            height: 55px;
            width: 55px;
            font-size: 20px;
            transition: all 0.6s ease;
        }
        
        @media (max-width: 1400px) {
            .cs_case_study.cs_style_1 .cs_case_study_icon {
                left: 40px;
                bottom: 50px;
            }
        }
        
        @media (max-width: 767px) {
            .cs_case_study.cs_style_1 .cs_case_study_icon {
                display: none;
            }
        }
        
        .cs_case_study_thumb {
            background-image: url(../img/about/about3-image1.png);
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }
        
        .cs_case_study_thumb.cs_case_study_thumb2 {
            background-image: url(../img/about/about3-image2.png);
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }
        
        .cs_case_study_thumb.cs_case_study_thumb3 {
            background-image: url(../img/about/about3-image3.png);
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }
        
        .cs_case_study.cs_style_1.cs_hover_active {
            margin: 0px 12px;
            border-radius: 55px;
            height: 550px;
        }
        
        .about-page-team .team-box .heading1 h4 a {
            font-size: var(--f-fs-font-fs24);
        }
        
        .about-page-team .team-box .icon-area ul li a:hover {
            background: var(--ztc-bg-main-bg-1) !important;
            color: #fff !important;
        }
        
        .bg1 {
            background-color: #F8F9FA;
        }
        
        .comon-body .solution .item-box .icon {
            background-color: #10171E !important;
            transition: all 0.4s;
        }
        
        .comon-body .solution .item-box:hover .icon {
            background: #A1E934 !important;
        }
        
        .about9 .cs_case_study_1_list {
            display: flex;
        }
        
        @media (max-width: 767px) {
            .about9 .cs_case_study_1_list {
                flex-direction: column;
            }
        }
        
        .about9 .cs_case_study_1_list>.cs_case_study.cs_style_1 {
            flex: 1;
        }
        
        .about9 .cs_case_study_1_list .cs_case_study.cs_style_1 {
            min-height: 400px;
        }
        
        .about9 .cs_case_study_1_list .cs_case_study.cs_style_1 .cs_case_study_in {
            transition: all 0.2s ease;
            left: 80px;
            opacity: 0;
        }
        
        @media (max-width: 767px) {
            .about9 .cs_case_study_1_list .cs_case_study.cs_style_1 .cs_case_study_in {
                left: 0;
                opacity: 1;
            }
        }
        
        .about9 .cs_case_study_1_list .cs_case_study.cs_style_1.active {
            flex: 3;
        }
        
        .about9 .cs_case_study_1_list .cs_case_study.cs_style_1.active .cs_case_study_in {
            opacity: 1;
            left: 0;
            transition: all 0.6s ease;
            transition-delay: 0.3s;
        }
        
        .about9 .cs_case_study_1_list .cs_case_study.cs_style_1.active .cs_case_study_icon {
            transform: scale(0) rotate(360deg);
            transition-delay: 0.1s;
        }
        
        .about9 .cs_case_study.cs_style_1 {
            height: 700px;
            display: flex;
            align-items: flex-end;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        @media (max-width: 1400px) {
            .about9 .cs_case_study.cs_style_1 {
                height: 600px;
            }
        }
        
        .about9 .cs_case_study.cs_style_1 .cs_case_study_title a {
            text-decoration: none;
            background-image: linear-gradient(currentColor, currentColor);
            background-repeat: no-repeat;
            background-position: bottom left;
            background-size: 100% 3px;
        }
        
        .about9 .cs_case_study.cs_style_1 .cs_case_study_number {
            left: 70px;
            top: 70px;
            z-index: 1;
        }
        
        @media (max-width: 767px) {
            .about9 .cs_case_study.cs_style_1 .cs_case_study_number {
                left: 30px;
                top: 40px;
            }
        }
        
        .about9 .cs_case_study.cs_style_1 .cs_case_study_category {
            margin-bottom: 15px;
        }
        
        .about9 .cs_case_study.cs_style_1 .cs_case_study_thumb {
            position: absolute;
            height: 100%;
            width: 100%;
            left: 0;
            top: 0;
        }
        
        .about9 .cs_case_study.cs_style_1 .cs_case_study_in {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 88px 72px;
        }
        
        @media (max-width: 1400px) {
            .about9 .cs_case_study.cs_style_1 .cs_case_study_in {
                padding: 50px;
            }
        }
        
        @media (max-width: 767px) {
            .about9 .cs_case_study.cs_style_1 .cs_case_study_in {
                padding: 30px;
            }
        }
        
        .about9 .cs_case_study.cs_style_1 .cs_case_study_icon {
            left: 70px;
            bottom: 86px;
            z-index: 1;
            background-color: #4f4747;
            color: #fff;
            height: 55px;
            width: 55px;
            font-size: 20px;
            transition: all 0.6s ease;
        }
        
        @media (max-width: 1400px) {
            .about9 .cs_case_study.cs_style_1 .cs_case_study_icon {
                left: 40px;
                bottom: 50px;
            }
        }
        
        @media (max-width: 767px) {
            .about9 .cs_case_study.cs_style_1 .cs_case_study_icon {
                display: none;
            }
        }
        
        .about9 .cs_case_study_thumb {
            background-image: url(../img/about/about9-img1.png);
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }
        
        .about9 .cs_case_study_thumb.cs_case_study_thumb2 {
            background-image: url(../img/about/about9-img2.png);
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }
        
        .about9 .cs_case_study_thumb.cs_case_study_thumb3 {
            background-image: url(../img/about/about9-img3.png);
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }
        
        .about9 .cs_case_study.cs_style_1.cs_hover_active {
            margin: 0px 12px;
            border-radius: 8px;
            height: 500px;
        }
        
        .industris-slider1 {
            margin-top: 40px;
        }
        
        .industris-slider1 .single-slider {
            text-align: center;
            display: flex;
            justify-content: center;
            padding: 0 12px;
        }
        
        .industris-slider2 {
            margin-top: 40px;
        }
        
        .industris-slider2 .single-slider {
            text-align: center;
            display: flex;
            justify-content: center;
        }
        /*
::::::::::::::::::::::::::
 SERVICE AREA CSS
::::::::::::::::::::::::::
*/
        
        .service {
            background-color: var(--ztc-bg-bg-1);
        }
        
        .service .single-box {
            background-color: var(--ztc-bg-color-w);
            border-radius: 7px;
            /* padding: 32px 24px; */
            /* margin-top: 30px; */
            transition: all 0.4s;
        }
        .service .single-box img{
            width:100%;
            height:280px;
            object-fit:contain;
        }
        
        .service .single-box .card-title {
            color: var(--ztc-bg-main-bg-1);
            font-size:18px;
        }
        
        .service .single-box .icon {
            background-color: var(--ztc-bg-bg-2);
            height: 80px;
            width: 80px;
            text-align: center;
            line-height: 80px;
            border-radius: 50%;
            margin-bottom: 24px;
            transition: all 0.4s;
        }
        
        .service .single-box .learn {
            transition: all 0.4s;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-blod);
            display: inline-block;
        }
        
        .service .single-box .learn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .service .single-box .learn:hover {
            color: var(--ztc-bg-main-bg-1);
            transition: all 0.4s;
        }
        
        .service .single-box:hover {
            transition: all 0.4s;
            transform: translateY(-10px);
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            /* background-color: var(--ztc-bg-main-bg-1); */
        }
        
        .service .single-box:hover .icon {
            background-color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .service .single-box:hover .heading1 h4 a {
            display: inline-block;
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .service .single-box:hover .heading1 p {
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.4s;
        }
        
        .service .single-box:hover .learn {
            transition: all 0.4s;
            color: var(--ztc-bg-color-w);
        }
        
        .servcie2 .servcie2-box {
            background-color: var(--ztc-bg-bg-4);
            border: 1px solid var(--ztc-bg-bg-5);
            padding: 24px;
            position: relative;
            margin-top: 30px;
            transition: all 0.4s;
            border-radius: 7px;
        }
        
        .servcie2 .servcie2-box .heading2 h4 a {
            font-size: var(--f-fs-font-fs20);
        }
        
        .servcie2 .servcie2-box .icon {
            height: 50px;
            margin-bottom: 24px;
            width: 50px;
            line-height: 50px;
            text-align: center;
            border-radius: 50%;
            border: 1px solid var(--ztc-bg-bg-5);
            background-color: #000120;
        }
        
        .servcie2 .servcie2-box .arrow {
            display: inline-block;
            height: 40px;
            width: 40px;
            border-radius: 50%;
            color: var(--ztc-text-text-2);
            border: 1px solid var(--ztc-bg-main-bg-4);
            transform: rotate(-45deg) scale(0.4);
            line-height: 40px;
            text-align: center;
            transition: all 0.4s;
            position: absolute;
            right: 24px;
            top: 24px;
            background-color: rgba(161, 233, 52, 0.137254902);
            opacity: 0;
        }
        
        .servcie2 .servcie2-box .arrow:hover {
            background-color: rgba(161, 233, 52, 0.137254902);
            transition: all 0.4s;
        }
        
        .servcie2 .servcie2-box:hover {
            transition: all 0.4s;
            transform: translateY(-10px);
            border: 1px solid var(--ztc-bg-main-bg-4);
        }
        
        .servcie2 .servcie2-box:hover .arrow {
            opacity: 1;
            transform: rotate(-45deg) scale(1);
            transition: all 0.4s;
        }
        
        .servcie2 .servcie2-box.active {
            transition: all 0.4s;
            transform: translateY(-10px);
            border: 1px solid var(--ztc-bg-main-bg-4);
        }
        
        .servcie2 .servcie2-box.active .arrow {
            opacity: 1;
            transform: rotate(-45deg) scale(1);
            transition: all 0.4s;
        }
        
        .servcie2.service-page-sec .servcie2-box {
            background-color: #F8F9FA;
            border: none;
            padding: 24px;
            position: relative;
            margin-top: 30px;
            transition: all 0.4s;
            border-radius: 7px;
        }
        
        .servcie2.service-page-sec .servcie2-box .heading2 h4 a {
            font-size: var(--f-fs-font-fs20);
        }
        
        .servcie2.service-page-sec .servcie2-box .icon {
            height: 50px;
            margin-bottom: 24px;
            width: 50px;
            line-height: 50px;
            text-align: center;
            border-radius: 50%;
            background-color: #E7EBF7;
            border: none;
        }
        
        .servcie2.service-page-sec .servcie2-box .arrow {
            display: inline-block;
            height: 40px;
            width: 40px;
            border-radius: 50%;
            color: var(--ztc-bg-main-bg-1);
            border: none;
            transform: rotate(-45deg) scale(0.4);
            line-height: 40px;
            text-align: center;
            transition: all 0.4s;
            position: absolute;
            right: 24px;
            top: 24px;
            background-color: #fff;
            opacity: 0;
        }
        
        .servcie2.service-page-sec .servcie2-box .arrow:hover {
            background-color: rgba(161, 233, 52, 0.137254902);
            transition: all 0.4s;
        }
        
        .servcie2.service-page-sec .servcie2-box:hover {
            transition: all 0.4s;
            transform: translateY(-10px);
            background-color: var(--ztc-bg-main-bg-1);
        }
        
        .servcie2.service-page-sec .servcie2-box:hover .heading1 h4 a {
            transition: all 0.4s;
            color: var(--ztc-bg-color-w);
        }
        
        .servcie2.service-page-sec .servcie2-box:hover .heading1 p {
            color: #fff;
            transition: all 0.4s;
        }
        
        .servcie2.service-page-sec .servcie2-box:hover .arrow {
            opacity: 1;
            transform: rotate(-45deg) scale(1);
            transition: all 0.4s;
        }
        
        .service3 {
            background-color: var(--ztc-bg-bg-6);
        }
        
        .service3 .service3-box {
            margin-top: 30px;
            background-color: var(--ztc-bg-color-w);
            padding: 24px;
            border-radius: 7px;
            display: flex;
            align-items: start;
            transition: all 0.4s;
        }
        
        .service3 .service3-box .icon {
            height: 48px;
            width: 48px;
            background-color: rgba(17, 58, 220, 0.1450980392);
            margin-right: 20px;
            text-align: center;
            line-height: 48px;
            border-radius: 50%;
            transition: all 0.4s;
        }
        
        .service3 .service3-box:hover {
            transform: translateY(-10px);
            transition: all 0.4s;
            background-color: var(--ztc-bg-main-bg-3);
        }
        
        .service3 .service3-box:hover .icon {
            background-color: rgba(255, 255, 255, 0.8705882353);
        }
        
        .service3 .service3-box:hover .heading3 h4 a {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .service3 .service3-box:hover .heading3 p {
            color: rgba(255, 255, 255, 0.7725490196);
        }
        
        .service3 .main-image {
            margin-top: 30px;
        }
        
        .service3 .main-image img {
            width: 100%;
            border-radius: 7px;
        }
        
        .service4 {
            background-color: var(--ztc-bg-bg-1);
        }
        
        .service4 .service4-box.active {
            background: var(--ztc-bg-color-w);
            transform: translateY(-10px);
            border: 1px solid var(--ztc-bg-color-w);
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
        }
        
        .service4 .service4-box {
            border-radius: 7px;
            border: 1px solid #E8EAED;
            padding: 24px;
            margin-top: 30px;
            transition: all 0.4s;
        }
        
        .service4 .service4-box .icon {
            height: 80px;
            width: 80px;
            background-color: #EAE3F9;
            text-align: center;
            line-height: 80px;
            border-radius: 50%;
            margin-bottom: 20px;
            transition: all 0.4s;
        }
        
        .service4 .service4-box .heading4 .learn-btn {
            display: inline-block;
            color: var(--ztc-text-text-1);
            line-height: var(--f-fs-font-fs18);
            font-size: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-blod);
            transition: all 0.4s;
        }
        
        .service4 .service4-box .heading4 .learn-btn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .service4 .service4-box .heading4 .learn-btn:hover {
            color: var(--ztc-bg-main-bg-2);
            transition: all 0.4s;
        }
        
        .service4 .service4-box:hover {
            background: var(--ztc-bg-color-w);
            transform: translateY(-10px);
            border: 1px solid var(--ztc-bg-color-w);
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
        }
        
        .service5 .service-box {
            position: relative;
            padding: 32px;
            border-radius: 8px;
            text-align: center;
            margin-top: 30px;
        }
        
        .service5 .service-box .learn {
            display: inline-block;
            color: var(--Home-Page-4-Text-colors, #05092B);
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 16px;
            /* 100% */
            margin-top: 24px;
            transition: all 0.4s;
        }
        
        .service5 .service-box .learn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .service5 .service-box .icon {
            height: 70px;
            width: 70px;
            line-height: 70px;
            text-align: center;
            border-radius: 50%;
            margin: auto;
            position: relative;
        }
        
        .service5 .service-box .icon::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
            border-radius: 50%;
            z-index: -1;
        }
        
        .service5 .service-box .icon::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background: #fff;
            border-radius: 50%;
            z-index: 0;
            transform: rotateY(80deg);
            opacity: 0;
            transition: all 0.4s;
        }
        
        .service5 .service-box .icon img {
            filter: brightness(0) invert(1);
            transition: all 0.4s;
            position: relative;
            z-index: 2;
        }
        
        .service5 .service-box .heading5 {
            margin-top: 24px;
        }
        
        .service5 .service-box::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background: #fff;
            border-radius: 4px;
            z-index: -2;
        }
        
        .service5 .service-box::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
            border-radius: 4px;
            z-index: -1;
            transform: rotateY(80deg);
            opacity: 0;
            transition: all 0.4s;
        }
        
        .service5 .service-box:hover {
            transition: all 0.4s;
        }
        
        .service5 .service-box:hover::before {
            transition: all 0.4s;
            transform: rotateY(0deg);
            opacity: 1;
        }
        
        .service5 .service-box:hover .heading5 h4 a {
            transition: all 0.4s;
            color: #fff;
        }
        
        .service5 .service-box:hover .heading5 p {
            transition: all 0.4s;
            color: rgba(255, 255, 255, 0.6901960784);
        }
        
        .service5 .service-box:hover .learn {
            transition: all 0.4s;
            color: #fff;
        }
        
        .service5 .service-box:hover .icon img {
            filter: none;
            transition: all 0.4s;
        }
        
        .service5 .service-box:hover .icon::before {
            transition: all 0.4s;
            transform: rotateY(0deg);
            opacity: 1;
        }
        
        .sidebar-bg {
            background-color: #F8F9FA;
            border-radius: 7px;
            padding: 24px;
        }
        
        .details-left-space {
            padding-left: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .details-left-space {
                padding-left: 0;
            }
        }
        
        @media (max-width: 767px) {
            .details-left-space {
                padding-left: 0;
            }
        }
        
        .details-right-space {
            padding-right: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .details-right-space {
                padding-right: 0;
            }
        }
        
        @media (max-width: 767px) {
            .details-right-space {
                padding-right: 0;
            }
        }
        
        .mb-40 {
            margin-bottom: 40px;
        }
        
        .sidebar-box-area h3 {
            font-size: var(--f-fs-font-fs24);
            line-height: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            padding-bottom: 24px;
        }
        .sidebar-box-area .related_side_heading {
            font-size: var(--f-fs-font-fs24);
            line-height: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            padding-bottom: 24px;
        }
        
        .sidebar-box-area p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
        }
        
        .sidebar-box-area .search {
            position: relative;
        }
        
        .sidebar-box-area .search input {
            padding: 16px 22px;
            border-radius: 7px;
            border: none;
            border: 1px solid var(--ztc-bg-main-bg-1);
            background: none;
            width: 100%;
            color: var(--ztc-text-text-1);
        }
        
        .sidebar-box-area .search input::-moz-placeholder {
            color: var(--Paragraph-Color, #676879);
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 16px;
            /* 100% */
        }
        
        .sidebar-box-area .search input::placeholder {
            color: var(--Paragraph-Color, #676879);
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 16px;
            /* 100% */
        }
        
        .sidebar-box-area .search input:focus {
            outline: none;
        }
        
        .sidebar-box-area .search .button button {
            background: none;
            font-size: 22px;
            color: var(--ztc-text-text-1);
            border: none;
            position: absolute;
            right: 20px;
            top: 18px;
        }
        
        .sidebar-box-area .features-list li a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs18);
            color: var(--ztc-text-text-1);
            background-color: #fff;
            padding: 20px 22px;
            border-radius: 7px;
            margin-bottom: 16px;
            transition: all 0.4s;
            font-weight: var(--f-fw-medium);
        }
        
        .sidebar-box-area .features-list li a:hover {
            background-color: var(--ztc-bg-main-bg-1);
            transition: all 0.4s;
            color: var(--ztc-bg-color-w);
        }
        
        .sidebar-box-area .tags li {
            display: inline-block;
        }
        
        .sidebar-box-area .tags li a {
            display: inline-block;
            background-color: #fff;
            border-radius: 30px;
            padding: 10px 16px;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            margin: 8px 4px;
            transition: all 0.4s;
        }
        
        .sidebar-box-area .tags li a:hover {
            background-color: var(--ztc-bg-main-bg-1);
            transition: all 0.4s;
            color: var(--ztc-bg-color-w);
        }
        
        .sidebar-box-area .download-btns a {
            display: inline-block;
            width: 100%;
            padding: 20px;
            text-align: center;
            margin-top: 16px;
            border-radius: 7px;
            transition: all 0.4s;
            font-weight: var(--f-fw-blod);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
        }
        
        .sidebar-box-area .download-btns a img {
            margin-top: -3px;
            margin-left: 3px;
        }
        
        .sidebar-box-area .download-btns a:hover {
            transition: all 0.4s;
            transform: translateY(-5px);
        }
        
        .sidebar-box-area .download-btns .daownload1 {
            background-color: var(--ztc-bg-main-bg-1);
            color: var(--ztc-bg-color-w);
        }
        
        .sidebar-box-area .download-btns .daownload1 img {
            filter: brightness(40);
        }
        
        .sidebar-box-area .download-btns .daownload2 {
            background-color: #fff;
            color: var(--ztc-text-text-1);
        }
        
        .sidebar-box-area .contact-form .single-input input,
        .sidebar-box-area .contact-form .single-input textarea {
            padding: 16px 22px;
            border-radius: 4px;
            border: none;
            background-color: #fff;
            width: 100%;
            margin-bottom: 16px;
            color: var(--ztc-text-pera-text-1);
        }
        
        .sidebar-box-area .contact-form .single-input input:focus,
        .sidebar-box-area .contact-form .single-input textarea:focus {
            outline: none;
        }
        
        .sidebar-box-area .contact-form .single-input input::-moz-placeholder,
        .sidebar-box-area .contact-form .single-input textarea::-moz-placeholder {
            color: var(--Paragraph-Color, #676879);
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 16px;
            /* 100% */
        }
        
        .sidebar-box-area .contact-form .single-input input::placeholder,
        .sidebar-box-area .contact-form .single-input textarea::placeholder {
            color: var(--Paragraph-Color, #676879);
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 16px;
            /* 100% */
        }
        
        .details-post-area .image img {
            width: 100%;
            height:320px;
            object-fit:contain;
        }
        
        .details-post-area .expart-list li {
            color: var(--Paragraph-Color, #676879);
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 16px;
            padding-top: 16px;
        }
        
        .details-post-area .expart-list li span.check {
            display: inline-block;
            font-size: 12px;
            height: 20px;
            width: 20px;
            border-radius: 50%;
            color: var(--ztc-bg-color-w);
            background-color: var(--ztc-bg-main-bg-1);
            text-align: center;
            line-height: 20px;
            margin-right: 6px;
        }
        
        .details-post-area .expart-list li span.text {
            color: var(--Text-Color, #0D0E10);
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 16px;
            /* 100% */
        }
        
        .details-post-area .boxs-area ul {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .details-post-area .boxs-area ul li {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: #0D0E10;
            padding: 18px 16px;
            background-color: #F8F9FA;
            border-radius: 7px;
            margin-top: 20px;
            min-width: 250px;
            transition: all 0.4s;
        }
        
        .details-post-area .boxs-area ul li span.check {
            display: inline-block;
            font-size: 12px;
            height: 20px;
            width: 20px;
            border-radius: 50%;
            color: var(--ztc-bg-color-w);
            background-color: var(--ztc-bg-main-bg-1);
            text-align: center;
            line-height: 20px;
            margin-right: 6px;
            transition: all 0.4s;
        }
        
        .details-post-area .boxs-area ul li:hover {
            transition: all 0.4s;
            transform: translateY(-6px);
            background-color: var(--ztc-bg-main-bg-1);
            color: #fff;
        }
        
        .details-post-area .boxs-area ul li:hover span.check {
            background-color: var(--ztc-bg-color-w);
            color: var(--ztc-bg-main-bg-1);
            transition: all 0.4s;
        }
        
        .servcie2-box {
            background-color: var(--ztc-bg-bg-4);
            border: 1px solid var(--ztc-bg-bg-5);
            padding: 24px;
            position: relative;
            margin-top: 30px;
            transition: all 0.4s;
            border-radius: 7px;
        }
        
        .servcie2-box .heading2 h4 a {
            font-size: var(--f-fs-font-fs20);
        }
        
        .servcie2-box .icon {
            height: 50px;
            margin-bottom: 24px;
            width: 50px;
            line-height: 50px;
            text-align: center;
            border-radius: 50%;
            border: 1px solid var(--ztc-bg-bg-5);
            background-color: #000120;
        }
        
        .servcie2-box .arrow {
            display: inline-block;
            height: 40px;
            width: 40px;
            border-radius: 50%;
            color: var(--ztc-text-text-2);
            border: 1px solid var(--ztc-bg-main-bg-4);
            transform: rotate(-45deg) scale(0.4);
            line-height: 40px;
            text-align: center;
            transition: all 0.4s;
            position: absolute;
            right: 24px;
            top: 24px;
            background-color: rgba(161, 233, 52, 0.137254902);
            opacity: 0;
        }
        
        .servcie2-box .arrow:hover {
            background-color: rgba(161, 233, 52, 0.137254902);
            transition: all 0.4s;
        }
        
        .servcie2-box:hover {
            transition: all 0.4s;
            transform: translateY(-10px);
            border: 1px solid var(--ztc-bg-main-bg-4);
        }
        
        .servcie2-box:hover .arrow {
            opacity: 1;
            transform: rotate(-45deg) scale(1);
            transition: all 0.4s;
        }
        
        .service6 {
            position: relative;
        }
        
        .service6 .service-box {
            margin-top: 30px;
            padding: 24px;
            position: relative;
            display: flex;
            align-items: start;
            overflow: hidden;
            border-radius: 4px;
        }
        
        .service6 .service-box .icon {
            height: 70px;
            width: 70px;
            border-radius: 70px;
            background: var(--Home-Page-3-white-colors, #FFF);
            box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.09);
            line-height: 70px;
            text-align: center;
            transition: all 0.4s;
        }
        
        .service6 .service-box .heading6 {
            padding-left: 20px;
        }
        
        .service6 .service-box .heading6 p {
            padding: 14px 0px;
            transition: all 0.4s;
        }
        
        .service6 .service-box .heading6 .learn {
            display: inline-block;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 16px;
            /* 100% */
            transition: all 0.4s;
        }
        
        .service6 .service-box .heading6 .learn span {
            display: inline-block;
            transform: rotate(-54deg);
        }
        
        .service6 .service-box::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background-color: #fff;
            border-radius: 4px;
            z-index: -2;
        }
        
        .service6 .service-box::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 500px;
            width: 500px;
            background-color: #FA6444;
            border-radius: 4px;
            z-index: -1;
            transform: rotate(45deg) translateX(-565px);
            transition: all 0.4s;
        }
        
        .service6 .service-box:hover {
            transition: all 0.4s;
        }
        
        .service6 .service-box:hover .heading6 h4 a {
            transition: all 0.4s;
            color: #fff;
        }
        
        .service6 .service-box:hover .heading6 p {
            transition: all 0.4s;
            color: rgba(255, 255, 255, 0.7176470588);
        }
        
        .service6 .service-box:hover .heading6 .learn {
            color: #fff;
            transition: all 0.4s;
        }
        
        .service6 .service-box:hover::before {
            transition: all 0.4s;
            transform: rotate(45deg) translateX(-106px);
            top: -66px;
        }
        
        .service7 {
            position: relative;
        }
        
        .service7 .service7-box {
            margin-top: 30px;
            border-radius: 4px;
            transition: all 0.4s;
        }
        
        .service7 .service7-box .heading-area {
            background-color: #E9EFF9;
            padding: 32px;
            border-radius: 4px 4px 0px 0px;
            transition: all 0.4s;
        }
        
        .service7 .service7-box .heading-area .icon {
            height: 56px;
            width: 56px;
            background-color: #D2E1FA;
            text-align: center;
            line-height: 56px;
            border-radius: 50%;
            margin-bottom: 16px;
        }
        
        .service7 .service7-box .heading-area p {
            padding: 16px 0px;
            transition: all 0.4s;
        }
        
        .service7 .service7-box .heading-area .learn {
            display: inline-block;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 16px;
            /* 100% */
            transition: all 0.4s;
        }
        
        .service7 .service7-box .heading-area .learn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .service7 .service7-box .heading-area .learn:hover {
            transition: all 0.4s;
            color: #0061FF;
        }
        
        .service7 .service7-box .image {
            overflow: hidden;
            border-radius: 0px 0px 4px 4px;
        }
        
        .service7 .service7-box .image img {
            width: 100%;
            transition: all 0.4s;
        }
        
        .service7 .service7-box:hover {
            transition: all 0.4s;
            transform: translateY(-10px);
        }
        
        .service7 .service7-box:hover .heading-area {
            transition: all 0.4s;
            background-color: #0061FF;
        }
        
        .service7 .service7-box:hover .heading-area .icon {
            background-color: #fff;
            transition: all 0.4s;
        }
        
        .service7 .service7-box:hover .heading-area h4 a {
            color: #fff;
            transition: all 0.4s;
        }
        
        .service7 .service7-box:hover .heading-area p {
            color: rgba(255, 255, 255, 0.8078431373);
            transition: all 0.4s;
        }
        
        .service7 .service7-box:hover .heading-area .learn {
            color: #fff;
            transition: all 0.4s;
        }
        
        .service7 .service7-box:hover .image img {
            transform: scale(1.1) rotate(2deg);
        }
        
        .service8 {
            position: relative;
        }
        
        .service8 .service8-heading {
            padding-left: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .service8 .service8-heading {
                padding-left: 0px;
                padding-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .service8 .service8-heading {
                padding-left: 0px;
                padding-top: 30px;
            }
        }
        
        .service8 .service-box {
            background-color: #F5F5FD;
            border-radius: 4px;
            padding: 32px;
            transition: all 0.4s;
            text-align: center;
        }
        
        .service8 .service-box.top {
            margin-bottom: 30px;
        }
        
        .service8 .service-box .icon {
            height: 70px;
            width: 70px;
            line-height: 70px;
            text-align: center;
            border-radius: 50%;
            background-color: #4D32A5;
            transition: all 0.4s;
            margin: auto;
        }
        
        .service8 .service-box .icon img {
            filter: brightness(40);
            transition: all 0.4s;
        }
        
        .service8 .service-box .heading8 p {
            padding: 16px 0px 24px 0px;
        }
        
        .service8 .service-box .heading8 .learn {
            display: inline-block;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 16px;
            /* 100% */
            transition: all 0.4s;
        }
        
        .service8 .service-box .heading8 .learn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .service8 .service-box .heading8 .learn:hover {
            transition: all 0.4s;
            color: #4D32A5;
        }
        
        .service8 .service-box:hover {
            transition: all 0.4s;
            transform: translateY(-10px);
            background-color: #4D32A5;
        }
        
        .service8 .service-box:hover .icon {
            background-color: #fff;
            transition: all 0.4s;
        }
        
        .service8 .service-box:hover .icon img {
            transition: all 0.4s;
            filter: none;
            transform: rotateY(180deg);
        }
        
        .service8 .service-box:hover .heading8 h4 a {
            transition: all 0.4s;
            color: #fff;
        }
        
        .service8 .service-box:hover .heading8 p {
            color: rgba(255, 255, 255, 0.8705882353);
            transition: all 0.4s;
        }
        
        .service8 .service-box:hover .heading8 .learn {
            color: #fff;
            transition: all 0.4s;
        }
        
        .service10::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 40%;
            background-image: url(../img/service/service10-bg.png);
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
            z-index: -2;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .service10::before {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .service10::before {
                display: none;
            }
        }
        
        .service10 .service10-slider {
            margin-top: 60px;
        }
        
        .service10 .service10-slider .single-slider {
            background: #fff;
            padding: 28px 24px;
            border-radius: 8px;
            margin: 0px 10px;
            transition: all 0.4s;
        }
        
        .service10 .service10-slider .single-slider .icon {
            background-color: #E9F4F4;
            height: 80px;
            width: 80px;
            text-align: center;
            line-height: 80px;
            border-radius: 50%;
            text-align: center;
            transition: all 0.4s;
        }
        
        .service10 .service10-slider .single-slider .icon img {
            display: inline-block;
            transition: all 0.4s;
        }
        
        .service10 .service10-slider .single-slider .heading h4 a {
            display: inline-block;
            color: #011313;
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 20px;
            /* 100% */
            padding: 24px 0px 16px 0px;
            transition: all 0.4s;
        }
        
        .service10 .service10-slider .single-slider .heading p {
            color: #5F6464;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            /* 150% */
            transition: all 0.4s;
        }
        
        .service10 .service10-slider .single-slider .heading .learn {
            display: inline-block;
            color: #011313;
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            line-height: 18px;
            /* 100% */
            padding-top: 24px;
            transition: all 0.4s;
        }
        
        .service10 .service10-slider .single-slider .heading .learn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .service10 .service10-slider .single-slider.slick-current.slick-active {
            background-color: #24908D;
            transition: all 0.4s;
        }
        
        .service10 .service10-slider .single-slider.slick-current.slick-active .heading h4 a {
            transition: all 0.4s;
            color: #fff;
        }
        
        .service10 .service10-slider .single-slider.slick-current.slick-active .heading p {
            color: rgba(255, 255, 255, 0.7882352941);
            transition: all 0.4s;
        }
        
        .service10 .service10-slider .single-slider.slick-current.slick-active .heading .learn {
            transition: all 0.4s;
            color: #fff;
        }
        
        .service10 .service10-slider .single-slider:hover {
            background-color: #24908D;
            transition: all 0.4s;
        }
        
        .service10 .service10-slider .single-slider:hover .heading h4 a {
            transition: all 0.4s;
            color: #fff;
        }
        
        .service10 .service10-slider .single-slider:hover .heading p {
            color: rgba(255, 255, 255, 0.7882352941);
            transition: all 0.4s;
        }
        
        .service10 .service10-slider .single-slider:hover .heading .learn {
            transition: all 0.4s;
            color: #fff;
        }
        
        .service10 .arrows-button {
            text-align: end;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .service10 .arrows-button {
                text-align: start;
                margin-top: 20px;
            }
        }
        
        @media (max-width: 767px) {
            .service10 .arrows-button {
                text-align: start;
                margin-top: 20px;
            }
        }
        
        .service10 .arrows-button button {
            border: none;
            font-size: 20px;
            height: 50px;
            line-height: 50px;
            width: 50px;
            text-align: center;
            border-radius: 50%;
            color: #000120;
            transition: all 0.4s;
            background-color: #fff;
            margin-left: 5px;
        }
        
        .service10 .arrows-button button:hover {
            background-color: #24908D;
            color: #fff;
            transition: all 0.4s;
        }
        /*
::::::::::::::::::::::::::
 SERVICE AREA CSS
::::::::::::::::::::::::::
*/
        
        .service-details-area-all .faq-area-all .accordion {
            border: none;
        }
        
        .service-details-area-all .faq-area-all .accordion .accordion-item {
            margin-top: 20px;
            border: none;
            border-radius: 7px;
            padding: 6px;
            border: none;
            background-color: #F8F9FA;
        }
        
        .service-details-area-all .faq-area-all .accordion .accordion-item button {
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-text-text-1);
            background-color: #F8F9FA;
        }
        
        .service-details-area-all .faq-area-all .accordion .accordion-item button:focus {
            box-shadow: none;
        }
        
        .service-details-area-all .faq-area-all .accordion .accordion-item .accordion-body {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-2);
            padding: 0px 16px 16px 16px;
            background-color: #0E38B1;
        }
        
        .service-details-area-all .faq-area-all .accordion .accordion-item.active {
            background: var(--ztc-bg-main-bg-1);
        }
        
        .service-details-area-all .faq-area-all .accordion .accordion-item.active button {
            background: var(--ztc-bg-main-bg-1);
            color: var(--ztc-bg-color-w);
        }
        
        .service-details-area-all .faq-area-all .accordion .accordion-item.active .accordion-button:not(.collapsed)::after {
            background-image: var(--bs-accordion-btn-active-icon);
            transform: var(--bs-accordion-btn-icon-transform);
            filter: brightness(0) invert(1) !important;
        }
        
        .service-details-area-all .faq-area-all .accordion .accordion-button:not(.collapsed)::after {
            background-image: var(--bs-accordion-btn-active-icon);
            transform: var(--bs-accordion-btn-icon-transform);
        }
        
        .service-details-area-all .faq-area-all .accordion-button:not(.collapsed) {
            color: var(--ztc-text-text-1);
            background-color: #0E38B1;
            border: none;
            box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
        }
        
        .service-details-area-all .faq-area-all .accordion {
            --bs-accordion-color: #000;
            --bs-accordion-bg: #fff;
            --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
            --bs-accordion-border-color: #dee2e600;
            --bs-accordion-border-width: 1px;
            --bs-accordion-border-radius: 0.375rem;
            --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
            --bs-accordion-btn-padding-x: 1.25rem;
            --bs-accordion-btn-padding-y: 1rem;
            --bs-accordion-btn-color: var(--bs-body-color);
            --bs-accordion-btn-bg: var(--bs-accordion-bg);
            --bs-accordion-btn-icon: url(data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="var%28--bs-body-color%29"%3e%3cpath fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/%3e%3c/svg%3e);
            --bs-accordion-btn-icon-width: 1.25rem;
            --bs-accordion-btn-icon-transform: rotate(-180deg);
            --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
            --bs-accordion-btn-active-icon: url(data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="%230c63e4"%3e%3cpath fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/%3e%3c/svg%3e);
            --bs-accordion-btn-focus-border-color: #86b7fe;
            --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
            --bs-accordion-body-padding-x: 1.25rem;
            --bs-accordion-body-padding-y: 1rem;
            --bs-accordion-active-color: #0c63e4;
            --bs-accordion-active-bg: #e7f1ff;
        }
        
        .servcie2-box.servcie2-box-2 {
            background-color: #F8F9FA;
            border: none;
            padding: 24px;
            position: relative;
            margin-top: 30px;
            transition: all 0.4s;
            border-radius: 7px;
        }
        
        .servcie2-box.servcie2-box-2 .heading2 h4 a {
            font-size: var(--f-fs-font-fs20);
        }
        
        .servcie2-box.servcie2-box-2 .icon {
            height: 50px;
            margin-bottom: 24px;
            width: 50px;
            line-height: 50px;
            text-align: center;
            border-radius: 50%;
            background-color: #E7EBF7;
            border: none;
        }
        
        .servcie2-box.servcie2-box-2 .arrow {
            display: inline-block;
            height: 40px;
            width: 40px;
            border-radius: 50%;
            color: var(--ztc-bg-main-bg-1);
            border: none;
            transform: rotate(-45deg) scale(0.4);
            line-height: 40px;
            text-align: center;
            transition: all 0.4s;
            position: absolute;
            right: 24px;
            top: 24px;
            background-color: #fff;
            opacity: 0;
        }
        
        .servcie2-box.servcie2-box-2 .arrow:hover {
            background-color: #fff;
            transition: all 0.4s;
        }
        
        .servcie2-box.servcie2-box-2:hover {
            transition: all 0.4s;
            transform: translateY(-10px);
            background-color: var(--ztc-bg-main-bg-1);
            border: none;
        }
        
        .servcie2-box.servcie2-box-2:hover .heading1 h4 a {
            transition: all 0.4s;
            color: var(--ztc-bg-color-w);
        }
        
        .servcie2-box.servcie2-box-2:hover .heading1 p {
            color: #fff;
            transition: all 0.4s;
        }
        
        .servcie2-box.servcie2-box-2:hover .arrow {
            opacity: 1;
            transform: rotate(-45deg) scale(1);
            transition: all 0.4s;
        }
        
        .bg1 .servcie2-box.servcie2-box-2 {
            background-color: #fff;
        }
        
        .bg1 .servcie2-box.servcie2-box-2:hover {
            transition: all 0.4s;
            transform: translateY(-10px);
            background-color: var(--ztc-bg-main-bg-1);
            border: none;
        }
        
        .bg1 .servcie2-box.servcie2-box-2:hover .heading1 h4 a {
            transition: all 0.4s;
            color: var(--ztc-bg-color-w);
        }
        
        .bg1 .servcie2-box.servcie2-box-2:hover .heading1 p {
            color: #fff;
            transition: all 0.4s;
        }
        
        .bg1 .servcie2-box.servcie2-box-2:hover .arrow {
            opacity: 1;
            transform: rotate(-45deg) scale(1);
            transition: all 0.4s;
        }
        
        .comon-body .sidebar-bg {
            background-color: var(--ztc-bg-bg-4);
            border-radius: 7px;
            padding: 24px;
            border: 1px solid var(--ztc-bg-bg-5);
        }
        
        .comon-body .sidebar-box-area h3 {
            font-size: var(--f-fs-font-fs24);
            line-height: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-color-w);
            padding-bottom: 24px;
        }
        
        .comon-body .sidebar-box-area p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-2);
        }
        
        .comon-body .sidebar-box-area .search {
            position: relative;
        }
        
        .comon-body .sidebar-box-area .search input {
            padding: 16px 22px;
            border-radius: 30px;
            border: none;
            border: 1px solid var(--ztc-bg-main-bg-4);
            background: none;
            width: 100%;
            color: var(--ztc-bg-color-w);
        }
        
        .comon-body .sidebar-box-area .search input::-moz-placeholder {
            color: rgba(255, 255, 255, 0.6352941176);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
        }
        
        .comon-body .sidebar-box-area .search input::placeholder {
            color: rgba(255, 255, 255, 0.6352941176);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
        }
        
        .comon-body .sidebar-box-area .search .button button {
            background: none;
            font-size: 22px;
            color: var(--ztc-bg-color-w);
            border: none;
            position: absolute;
            right: 20px;
            top: 18px;
        }
        
        .comon-body .sidebar-box-area .features-list li a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            color: var(--ztc-bg-color-w);
            background-color: #342F42;
            padding: 20px 22px;
            border-radius: 30px;
            border: 1px solid #484455;
            margin-bottom: 16px;
            transition: all 0.4s;
            font-weight: var(--f-fw-blod);
        }
        
        .comon-body .sidebar-box-area .features-list li a:hover {
            background-color: var(--ztc-bg-main-bg-4);
            border: 1px solid var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
            color: var(--ztc-text-text-1);
        }
        
        .comon-body .sidebar-box-area .tags li {
            display: inline-block;
        }
        
        .comon-body .sidebar-box-area .tags li a {
            display: inline-block;
            border: 1px solid #484455;
            background-color: #342F42;
            border-radius: 30px;
            padding: 10px 16px;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-color-w);
            margin: 8px 4px;
            transition: all 0.4s;
        }
        
        .comon-body .sidebar-box-area .tags li a:hover {
            background-color: var(--ztc-bg-main-bg-4);
            border: 1px solid var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
            color: var(--ztc-text-text-1);
        }
        
        .comon-body .sidebar-box-area .download-btns a {
            display: inline-block;
            width: 100%;
            padding: 20px;
            text-align: center;
            margin-top: 16px;
            border-radius: 30px;
            transition: all 0.4s;
            font-weight: var(--f-fw-blod);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
        }
        
        .comon-body .sidebar-box-area .download-btns a img {
            margin-top: -3px;
            margin-left: 3px;
        }
        
        .comon-body .sidebar-box-area .download-btns a:hover {
            transition: all 0.4s;
            transform: translateY(-5px);
        }
        
        .comon-body .sidebar-box-area .download-btns .daownload1 {
            background-color: var(--ztc-bg-main-bg-4);
            color: var(--ztc-text-text-1);
        }
        
        .comon-body .sidebar-box-area .download-btns .daownload2 {
            border: 1px solid #484455;
            background-color: #342F42;
            color: var(--ztc-bg-color-w);
        }
        
        .comon-body .sidebar-box-area .download-btns .daownload2 img {
            filter: brightness(40);
        }
        
        .comon-body .sidebar-box-area .contact-form .single-input input,
        .comon-body .sidebar-box-area .contact-form .single-input textarea {
            padding: 16px 22px;
            border-radius: 4px;
            border: none;
            border: 1px solid #484455;
            background-color: #342F42;
            width: 100%;
            margin-bottom: 16px;
            color: var(--ztc-bg-color-w);
        }
        
        .comon-body .sidebar-box-area .contact-form .single-input input:focus,
        .comon-body .sidebar-box-area .contact-form .single-input textarea:focus {
            outline: none;
        }
        
        .comon-body .sidebar-box-area .contact-form .single-input input::-moz-placeholder,
        .comon-body .sidebar-box-area .contact-form .single-input textarea::-moz-placeholder {
            color: var(--ztc-bg-color-w);
        }
        
        .comon-body .sidebar-box-area .contact-form .single-input input::placeholder,
        .comon-body .sidebar-box-area .contact-form .single-input textarea::placeholder {
            color: var(--ztc-bg-color-w);
        }
        
        .comon-body .service-details-area-all .faq-area-all .accordion-button::after {
            filter: brightness(0) invert(1);
        }
        
        .comon-body .service-details-area-all .faq-area-all .accordion {
            border: none;
        }
        
        .comon-body .service-details-area-all .faq-area-all .accordion .accordion-item {
            margin-top: 20px;
            border: none;
            border-radius: 7px;
            padding: 6px;
            border: none;
            background-color: #1A1B37;
            border: 1px solid #31314D;
        }
        
        .comon-body .service-details-area-all .faq-area-all .accordion .accordion-item button {
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-text-text-2);
            background-color: #1A1B37;
        }
        
        .comon-body .service-details-area-all .faq-area-all .accordion .accordion-item button:focus {
            box-shadow: none;
        }
        
        .comon-body .service-details-area-all .faq-area-all .accordion .accordion-item .accordion-body {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-2);
            padding: 0px 16px 16px 16px;
            background-color: #1A1B37;
        }
        
        .comon-body .service-details-area-all .faq-area-all .accordion .accordion-item.active {
            border: 1px solid var(--ztc-bg-main-bg-4);
        }
        
        .comon-body .service-details-area-all .faq-area-all .accordion .accordion-button:not(.collapsed)::after {
            background-image: var(--bs-accordion-btn-active-icon);
            transform: var(--bs-accordion-btn-icon-transform);
            filter: brightness(0) invert(1);
        }
        
        .comon-body .service-details-area-all .faq-area-all .accordion-button:not(.collapsed) {
            color: var(--ztc-text-text-1);
            background-color: #1A1B37;
            border: none;
            box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
        }
        
        .comon-body .service-details-area-all .faq-area-all .accordion {
            --bs-accordion-color: #000;
            --bs-accordion-bg: #fff;
            --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
            --bs-accordion-border-color: #dee2e600;
            --bs-accordion-border-width: 1px;
            --bs-accordion-border-radius: 0.375rem;
            --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
            --bs-accordion-btn-padding-x: 1.25rem;
            --bs-accordion-btn-padding-y: 1rem;
            --bs-accordion-btn-color: var(--bs-body-color);
            --bs-accordion-btn-bg: var(--bs-accordion-bg);
            --bs-accordion-btn-icon: url(data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="var%28--bs-body-color%29"%3e%3cpath fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/%3e%3c/svg%3e);
            --bs-accordion-btn-icon-width: 1.25rem;
            --bs-accordion-btn-icon-transform: rotate(-180deg);
            --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
            --bs-accordion-btn-active-icon: url(data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="%230c63e4"%3e%3cpath fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/%3e%3c/svg%3e);
            --bs-accordion-btn-focus-border-color: #86b7fe;
            --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
            --bs-accordion-body-padding-x: 1.25rem;
            --bs-accordion-body-padding-y: 1rem;
            --bs-accordion-active-color: #0c63e4;
            --bs-accordion-active-bg: #e7f1ff;
        }
        
        .comon-body .expart-list li {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            color: rgba(255, 255, 255, 0.7725490196);
            padding-top: 16px;
        }
        
        .comon-body .expart-list li span.check {
            display: inline-block;
            font-size: 12px;
            height: 20px;
            width: 20px;
            border-radius: 50%;
            color: var(--ztc-text-text-1);
            background-color: var(--ztc-bg-main-bg-4);
            text-align: center;
            line-height: 20px;
            margin-right: 6px;
        }
        
        .comon-body .expart-list li span.text {
            font-weight: var(--f-fw-semibold);
            display: inline-block;
            color: var(--ztc-bg-color-w);
        }
        
        .bg5 {
            position: relative;
        }
        
        .bg5::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            z-index: -3;
            background-color: #F5F6F9;
        }
        
        .bg9 {
            position: relative;
        }
        
        .bg9::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            z-index: -3;
            background-color: #F3F5F2;
        }
        /*
::::::::::::::::::::::::::
 CHOOSE AREA CSS
::::::::::::::::::::::::::
*/
        
        .choose8 {
            position: relative;
        }
        
        .choose8::after {
            content: "";
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 70%;
            background-color: #0B0103;
            z-index: -3;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .choose8::after {
                width: 100%;
            }
        }
        
        @media (max-width: 767px) {
            .choose8::after {
                width: 100%;
            }
        }
        
        .choose8::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 30%;
            background-color: var( --ztc-bg-main-bg-1);
            z-index: -3;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .choose8::before {
                width: 0%;
            }
        }
        
        @media (max-width: 767px) {
            .choose8::before {
                width: 0%;
            }
        }
        
        .choose8 .heading6-w {
            padding-left: 40px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .choose8 .heading6-w {
                padding-left: 0px;
                padding-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .choose8 .heading6-w {
                padding-left: 0px;
                padding-top: 30px;
            }
        }
        
        .choose8 .choose8-images {
            position: relative;
        }
        
        .choose8 .choose8-images .shape {
            background-color: #fff;
            padding: 24px 32px;
            border-radius: 4px;
            text-align: center;
            display: inline-block;
            position: absolute;
            bottom: 150px;
            right: 0;
        }
        
        .choose8 .choose8-images .shape h5 {
            color: #4D32A5;
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: 40px;
            /* 100% */
        }
        
        .choose8 .choose8-images .shape p {
            color: var(--Home-Page-2-paragraph, #5A5556);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            padding-top: 12px;
        }
        
        .choose8 .choose-box {
            display: flex;
            align-items: center;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.1);
            padding: 20px 24px;
            margin-top: 20px;
            transition: all 0.4s;
        }
        
        .choose8 .choose-box .icon {
            width: 130px;
        }
        
        .choose8 .choose-box .icon img {
            transition: all 0.4s;
        }
        /* .choose8 .choose-box .heading {
  padding-left: 30px;
} */
        
        .choose8 .choose-box .heading h4 a {
            display: inline-block;
            color: var(--White-colors, #FFF);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            /* 100% */
        }
        
        .choose8 .choose-box:hover {
            transition: all 0.4s;
            transform: translateY(-10px);
        }
        
        .choose8 .choose-box:hover .icon img {
            transform: rotateY(180deg);
            transition: all 0.4s;
        }
        /*
 ::::::::::::::::::::::::::
  CHOOSE AREA CSS
 ::::::::::::::::::::::::::
 */
        /*
::::::::::::::::::::::::::
 CTA AREA CSS
::::::::::::::::::::::::::
*/
        
        .cta {
            background-color: var(--ztc-bg-main-bg-1);
            padding: 80px 0px;
        }
        
        .cta .buttons {
            text-align: end;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta .buttons {
                text-align: start;
                margin-top: 20px;
            }
        }
        
        @media (max-width: 767px) {
            .cta .buttons {
                text-align: start;
                margin-top: 20px;
            }
        }
        
        .cta2 .subscribe-form {
            position: relative;
            padding-right: 160px;
            margin-top: 32px;
        }
        
        .cta2 .subscribe-form input {
            padding: 12px 18px 13px 18px;
            border-radius: 25px;
            border: none;
            width: 100%;
            margin-right: 130px;
            background-color: var(--ztc-bg-bg-4);
            border: 1px solid var(--ztc-bg-bg-5);
            color: #fff;
        }
        
        .cta2 .subscribe-form input::-moz-placeholder {
            color: #C7C6CB;
        }
        
        .cta2 .subscribe-form input::placeholder {
            color: #C7C6CB;
        }
        
        .cta2 .subscribe-form input:focus {
            outline-color: #A1E934;
            outline-width: 1px;
            outline-style: solid;
        }
        
        .cta2 .subscribe-form .button {
            position: absolute;
            top: 0;
            right: 0;
        }
        
        .cta3 {
            padding-top: 100px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta3 {
                padding-top: 50px;
            }
        }
        
        @media (max-width: 767px) {
            .cta3 {
                padding-top: 50px;
            }
        }
        
        .cta3 .subscribe-form {
            position: relative;
            padding-right: 160px;
            margin-top: 32px;
        }
        
        .cta3 .subscribe-form input {
            padding: 14px 18px 14px 18px;
            border-radius: 4px;
            border: none;
            width: 100%;
            margin-right: 130px;
        }
        
        .cta3 .subscribe-form input:focus {
            outline: none;
        }
        
        .cta3 .subscribe-form .button {
            position: absolute;
            top: 0;
            right: 0;
        }
        
        .cta-bg-area {
            background-color: var(--ztc-text-text-1);
            padding: 60px 30px;
            position: relative;
            border-radius: 7px;
            margin-bottom: 100px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta-bg-area {
                margin-bottom: 50px;
            }
        }
        
        @media (max-width: 767px) {
            .cta-bg-area {
                margin-bottom: 50px;
            }
        }
        
        .cta-bg-area .subscribe-form {
            position: relative;
            margin-top: 30px;
        }
        
        .cta-bg-area .subscribe-form input {
            background-color: #313234;
            border-radius: 56px;
            border: none;
            padding: 17px 24px;
            color: #fff;
        }
        
        .cta-bg-area .subscribe-form input::-moz-placeholder {
            color: #D6D6D6;
        }
        
        .cta-bg-area .subscribe-form input::placeholder {
            color: #D6D6D6;
        }
        
        .cta-bg-area .subscribe-form input:focus {
            outline: none;
        }
        
        .cta-bg-area .subscribe-form .button {
            position: absolute;
            right: -16px;
            top: 0;
        }
        
        .cta-bg-area::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 50%;
            background-image: url(../img/others/cta4-image.png);
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            z-index: 1;
            border-radius: 4px;
        }
        
        @media (max-width: 767px) {
            .cta-bg-area::after {
                width: 0%;
            }
        }
        
        .cta-bg-area .shape1 {
            position: absolute;
            right: 50%;
            z-index: 3;
            top: 100px;
            margin-right: -50px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta-bg-area .shape1 {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .cta-bg-area .shape1 {
                display: none;
            }
        }
        
        .cta-bg-area .shape2 {
            position: absolute;
            right: -100px;
            top: -100px;
            z-index: 3;
        }
        
        .cta5 {
            margin-bottom: -100px;
            position: relative;
            z-index: 1;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta5 {
                margin-bottom: 0px;
            }
        }
        
        @media (max-width: 767px) {
            .cta5 {
                margin-bottom: 0px;
            }
        }
        
        .cta5 .bg {
            border-radius: 4px;
            background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
            padding: 60px 48px;
        }
        
        @media (max-width: 767px) {
            .cta5 .bg {
                padding: 32px;
            }
        }
        
        .cta5 .bg .form-area {
            position: relative;
            text-align: end;
        }
        
        .cta5 .bg .form-area input {
            padding: 21px;
            border: none;
            background: #fff;
            border-radius: 4px;
            width: 70%;
        }
        
        .cta5 .bg .form-area input:focus {
            outline: none;
        }
        
        .cta5 .bg .form-area input::-moz-placeholder {
            color: var(--Home-Page-4-paragraph, #5A5D73);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        .cta5 .bg .form-area input::placeholder {
            color: var(--Home-Page-4-paragraph, #5A5D73);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta5 .bg .form-area input {
                width: 100%;
            }
        }
        
        @media (max-width: 767px) {
            .cta5 .bg .form-area input {
                width: 100%;
            }
        }
        
        .cta5 .bg .form-area .button {
            position: absolute;
            top: 4px;
            right: 4px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta5 .bg .form-area {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .cta5 .bg .form-area {
                margin-top: 30px;
            }
        }
        
        .cta6 {
            margin-bottom: -100px;
            position: relative;
            z-index: 1;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta6 {
                margin-bottom: 0px;
            }
        }
        
        @media (max-width: 767px) {
            .cta6 {
                margin-bottom: 0px;
            }
        }
        
        .cta6 .bg {
            border-radius: 4px;
            background: #FA6444;
            padding: 60px 48px;
        }
        
        @media (max-width: 767px) {
            .cta6 .bg {
                padding: 32px;
            }
        }
        
        .cta6 .bg .form-area {
            position: relative;
            text-align: end;
        }
        
        .cta6 .bg .form-area input {
            padding: 19px;
            border: none;
            background: #fff;
            border-radius: 4px;
            width: 70%;
        }
        
        .cta6 .bg .form-area input:focus {
            outline: none;
        }
        
        .cta6 .bg .form-area input::-moz-placeholder {
            color: var(--Home-Page-4-paragraph, #5A5D73);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        .cta6 .bg .form-area input::placeholder {
            color: var(--Home-Page-4-paragraph, #5A5D73);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta6 .bg .form-area input {
                width: 100%;
            }
        }
        
        @media (max-width: 767px) {
            .cta6 .bg .form-area input {
                width: 100%;
            }
        }
        
        .cta6 .bg .form-area .button {
            position: absolute;
            top: 4px;
            right: 4px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta6 .bg .form-area {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .cta6 .bg .form-area {
                margin-top: 30px;
            }
        }
        
        .cta7 {
            margin-bottom: -100px;
            position: relative;
            z-index: 1;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta7 {
                margin-bottom: 0px;
            }
        }
        
        @media (max-width: 767px) {
            .cta7 {
                margin-bottom: 0px;
            }
        }
        
        .cta7 .bg {
            border-radius: 4px;
            background: #307FFF;
            padding: 60px 48px;
        }
        
        @media (max-width: 767px) {
            .cta7 .bg {
                padding: 32px;
            }
        }
        
        .cta7 .bg .form-area {
            position: relative;
            text-align: end;
        }
        
        .cta7 .bg .form-area input {
            padding: 19px;
            border: none;
            background: #fff;
            border-radius: 111px;
            width: 70%;
        }
        
        .cta7 .bg .form-area input:focus {
            outline: none;
        }
        
        .cta7 .bg .form-area input::-moz-placeholder {
            color: var(--Home-Page-4-paragraph, #5A5D73);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        .cta7 .bg .form-area input::placeholder {
            color: var(--Home-Page-4-paragraph, #5A5D73);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta7 .bg .form-area input {
                width: 100%;
            }
        }
        
        @media (max-width: 767px) {
            .cta7 .bg .form-area input {
                width: 100%;
            }
        }
        
        .cta7 .bg .form-area .button {
            position: absolute;
            top: 4px;
            right: 4px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta7 .bg .form-area {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .cta7 .bg .form-area {
                margin-top: 30px;
            }
        }
        
        .cta8 {
            margin-bottom: -100px;
            position: relative;
            z-index: 1;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta8 {
                margin-bottom: 0px;
            }
        }
        
        @media (max-width: 767px) {
            .cta8 {
                margin-bottom: 0px;
            }
        }
        
        .cta8 .bg {
            border-radius: 4px;
            background: #4D32A5;
            padding: 60px 48px;
        }
        
        @media (max-width: 767px) {
            .cta8 .bg {
                padding: 32px;
            }
        }
        
        .cta8 .bg .form-area {
            position: relative;
            text-align: end;
        }
        
        .cta8 .bg .form-area input {
            padding: 19px;
            border: none;
            background: #fff;
            border-radius: 4px;
            width: 70%;
        }
        
        .cta8 .bg .form-area input:focus {
            outline: none;
        }
        
        .cta8 .bg .form-area input::-moz-placeholder {
            color: var(--Home-Page-4-paragraph, #5A5D73);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        .cta8 .bg .form-area input::placeholder {
            color: var(--Home-Page-4-paragraph, #5A5D73);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta8 .bg .form-area input {
                width: 100%;
            }
        }
        
        @media (max-width: 767px) {
            .cta8 .bg .form-area input {
                width: 100%;
            }
        }
        
        .cta8 .bg .form-area .button {
            position: absolute;
            top: 4px;
            right: 4px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta8 .bg .form-area {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .cta8 .bg .form-area {
                margin-top: 30px;
            }
        }
        
        .cta9 {
            background-color: #325D28;
        }
        
        .cta9 .images {
            text-align: end;
            position: relative;
        }
        
        .cta9 .images .img1 {
            position: absolute;
            top: 60px;
            right: 0;
        }
        
        .cta9 .images .img2 {
            position: absolute;
            top: 0;
            right: 80px;
        }
        
        .cta9 .heading6-w {
            padding: 60px 0px;
        }
        
        .cta9 .heading6-w .form-area {
            position: relative;
            margin-top: 30px;
            margin-right: 40px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta9 .heading6-w .form-area {
                margin-right: 0;
            }
        }
        
        @media (max-width: 767px) {
            .cta9 .heading6-w .form-area {
                margin-right: 0;
            }
        }
        
        .cta9 .heading6-w .form-area .button {
            position: absolute;
            bottom: 3px;
            right: 3px;
        }
        
        .cta9 .heading6-w .form-area input {
            width: 100%;
            border-radius: 111px;
            border: none;
            padding: 18px;
        }
        
        .cta9 .heading6-w .form-area input:focus {
            outline: none;
        }
        
        .cta9 .heading6-w .form-area input::-moz-placeholder {
            color: var(--Paragraph-Color, #646375);
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 18px;
            /* 100% */
        }
        
        .cta9 .heading6-w .form-area input::placeholder {
            color: var(--Paragraph-Color, #646375);
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 18px;
            /* 100% */
        }
        
        .cta10 .cta-bg-area {
            background-color: #24908D;
            padding: 60px 30px;
            position: relative;
            border-radius: 7px;
            margin-bottom: 100px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta10 .cta-bg-area {
                margin-bottom: 50px;
            }
        }
        
        @media (max-width: 767px) {
            .cta10 .cta-bg-area {
                margin-bottom: 50px;
            }
        }
        
        .cta10 .cta-bg-area .subscribe-form {
            position: relative;
            margin-top: 30px;
        }
        
        .cta10 .cta-bg-area .subscribe-form input {
            background-color: rgba(255, 255, 255, 0.0901960784);
            border-radius: 8px;
            border: none;
            padding: 17px 24px;
            color: #fff;
        }
        
        .cta10 .cta-bg-area .subscribe-form input::-moz-placeholder {
            color: rgba(255, 255, 255, 0.5607843137);
        }
        
        .cta10 .cta-bg-area .subscribe-form input::placeholder {
            color: rgba(255, 255, 255, 0.5607843137);
        }
        
        .cta10 .cta-bg-area .subscribe-form input:focus {
            outline: none;
        }
        
        .cta10 .cta-bg-area .subscribe-form .button {
            position: absolute;
            right: -16px;
            top: 0;
        }
        
        .cta10 .cta-bg-area::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 50%;
            background-image: url(../img/others/cta4-image.png);
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            z-index: 1;
            border-radius: 4px;
        }
        
        @media (max-width: 767px) {
            .cta10 .cta-bg-area::after {
                width: 0%;
            }
        }
        
        .cta10 .cta-bg-area .shape1 {
            position: absolute;
            right: 50%;
            z-index: 3;
            top: 100px;
            margin-right: -50px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .cta10 .cta-bg-area .shape1 {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .cta10 .cta-bg-area .shape1 {
                display: none;
            }
        }
        
        .cta10 .cta-bg-area .shape2 {
            position: absolute;
            right: -100px;
            top: -100px;
            z-index: 3;
        }
        /*
::::::::::::::::::::::::::
 CTA AREA CSS
::::::::::::::::::::::::::
*/
        /*
::::::::::::::::::::::::::
 FAQ AREA CSS
::::::::::::::::::::::::::
*/
        
        .faq3 {
            background-color: var(--ztc-bg-bg-6);
        }
        
        .faq3 .accordion-item.active {
            background-color: #113ADC;
            transition: all 0.4s;
        }
        
        .faq3 .accordion-item.active button {
            background-color: #113ADC;
            color: #fff !important;
            transition: all 0.4s;
        }
        
        .faq3 .accordion-item.active .accordion-body {
            color: rgba(255, 255, 255, 0.6980392157) !important;
        }
        
        .faq3 .accordion-item.active .accordion-button:not(.collapsed)::after {
            background-image: var(--bs-accordion-btn-active-icon);
            transform: var(--bs-accordion-btn-icon-transform);
            filter: brightness(0) invert(1);
        }
        
        .faq3 .accordion {
            border: none;
        }
        
        .faq3 .accordion .accordion-item {
            margin-top: 20px;
            border: none;
            border-radius: 7px;
            padding: 2px;
            border: none;
        }
        
        .faq3 .accordion .accordion-item button {
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-text-text-1);
            padding: 20px;
        }
        
        .faq3 .accordion .accordion-item button:focus {
            box-shadow: none;
        }
        
        .faq3 .accordion .accordion-item .accordion-body {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            padding: 0px 16px 16px 16px;
        }
        
        .faq3 .accordion .accordion-button:not(.collapsed)::after {
            background-image: var(--bs-accordion-btn-active-icon);
            transform: var(--bs-accordion-btn-icon-transform);
            filter: brightness(0);
        }
        
        .faq3 .accordion-button:not(.collapsed) {
            color: var(--ztc-text-text-1);
            background-color: #fff;
            border: none;
            box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
        }
        
        .faq3 .accordion {
            --bs-accordion-color: #000;
            --bs-accordion-bg: #fff;
            --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
            --bs-accordion-border-color: #dee2e600;
            --bs-accordion-border-width: 1px;
            --bs-accordion-border-radius: 0.375rem;
            --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
            --bs-accordion-btn-padding-x: 1.25rem;
            --bs-accordion-btn-padding-y: 1rem;
            --bs-accordion-btn-color: var(--bs-body-color);
            --bs-accordion-btn-bg: var(--bs-accordion-bg);
            --bs-accordion-btn-icon: url(data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="var%28--bs-body-color%29"%3e%3cpath fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/%3e%3c/svg%3e);
            --bs-accordion-btn-icon-width: 1.25rem;
            --bs-accordion-btn-icon-transform: rotate(-180deg);
            --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
            --bs-accordion-btn-active-icon: url(data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="%230c63e4"%3e%3cpath fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/%3e%3c/svg%3e);
            --bs-accordion-btn-focus-border-color: #86b7fe;
            --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
            --bs-accordion-body-padding-x: 1.25rem;
            --bs-accordion-body-padding-y: 1rem;
            --bs-accordion-active-color: #0c63e4;
            --bs-accordion-active-bg: #e7f1ff;
        }
        
        .faq6 .faq-area .accordion-button:not(.collapsed) {
            box-shadow: none;
        }
        
        .faq6 .faq-area .accordion {
            border: none;
            border-radius: 0;
            box-shadow: none;
        }
        
        .faq6 .faq-area .accordion .accordion-item {
            padding: 0;
            margin-top: 20px;
            border: none;
            border-radius: 4px;
            box-shadow: none;
            border: 2px solid rgba(236, 129, 28, 0.0901960784);
        }
        
        .faq6 .faq-area .accordion .accordion-item button {
            padding: 24px;
            border: none;
            background: none;
            border-radius: 0 !important;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
        }
        
        .faq6 .faq-area .accordion .accordion-item button:focus {
            box-shadow: none;
        }
        
        .faq6 .faq-area .accordion .accordion-item .accordion-body {
            padding: 0px 24px 24px 24px;
            color: var(--Home-Page-3-white-colors, #FFF);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            /* 150% */
        }
        
        .faq6 .faq-area .accordion .accordion-item.active {
            background-color: #FA6444;
        }
        
        .faq6 .faq-area .accordion .accordion-item.active button {
            color: #fff;
        }
        
        .faq6 .faq-area .accordion .accordion-item.active button::after {
            filter: brightness(0) invert(1);
        }
        
        .faq6 .faq-image {
            margin-left: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .faq6 .faq-image {
                margin-left: 0px;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .faq6 .faq-image {
                margin-left: 0px;
                margin-top: 30px;
            }
        }
        
        .faq6 .faq-image img {
            width: 100%;
        }
        
        .faq7 .faq-area .accordion-button:not(.collapsed) {
            box-shadow: none;
        }
        
        .faq7 .faq-area .accordion {
            border: none;
            border-radius: 0;
            box-shadow: none;
        }
        
        .faq7 .faq-area .accordion .accordion-item {
            padding: 0;
            margin-top: 20px;
            border: none;
            border-radius: 4px;
            box-shadow: none;
            border: 2px solid #CFD7EF;
        }
        
        .faq7 .faq-area .accordion .accordion-item button {
            padding: 24px;
            border: none;
            background: none;
            border-radius: 0 !important;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
        }
        
        .faq7 .faq-area .accordion .accordion-item button:focus {
            box-shadow: none;
        }
        
        .faq7 .faq-area .accordion .accordion-item .accordion-body {
            padding: 0px 24px 24px 24px;
            color: var(--Home-Page-3-white-colors, #5C5A64);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            /* 150% */
        }
        
        .faq7 .faq-area .accordion .accordion-item.active button {
            color: #0c63e4;
        }
        
        .faq7 .faq-area .accordion .accordion-item.active button::after {
            filter: brightness(0);
        }
        
        .faq7 .faq-image {
            margin-left: 30px;
        }
        
        .faq7 .faq-image img {
            width: 100%;
        }
        /*
::::::::::::::::::::::::::
 FAQ AREA CSS
::::::::::::::::::::::::::
*/
        /*
::::::::::::::::::::::::::
 OTHERS AREA CSS
::::::::::::::::::::::::::
*/
        
        .solution .item-box {
            display: flex;
            align-items: start;
            margin-top: 30px;
        }
        
        .solution .item-box .icon {
            margin-right: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            line-height: 60px;
            background-color: rgba(161, 233, 52, 0.0941176471);
            transition: all 0.4s;
        }
        
        .solution .item-box .icon img {
            height: auto;
            transition: all 0.4s;
        }
        
        .solution .item-box:hover .icon {
            background-color: var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
        }
        
        .solution .item-box:hover .icon img {
            filter: brightness(0);
            transition: all 0.4s;
        }
        
        .solution .solution-images {
            text-align: center;
            height: 500px;
            position: relative;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .solution .solution-images {
                margin-top: 40px;
            }
        }
        
        @media (max-width: 767px) {
            .solution .solution-images {
                margin-top: 40px;
            }
        }
        
        .solution .solution-images .image1 {
            position: absolute;
            right: 0;
            top: 0;
            z-index: 9;
        }
        
        .solution .solution-images .image2 {
            padding-top: 50px;
        }
        
        .solution .solution-images .image3 {
            position: absolute;
            left: 0;
            bottom: 0;
        }
        
        .project4 {
            background-color: var(--ztc-bg-bg-1);
        }
        
        .project4 .image-area {
            position: relative;
            overflow: hidden;
            border-radius: 7px;
        }
        
        @media (max-width: 767px) {
            .project4 .image-area {
                height: 300px;
            }
        }
        
        .project4 .image-area .heading4-w {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.4s;
            z-index: 9;
        }
        
        .project4 .image-area:hover .heading4-w {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.4s;
        }
        
        .project4 .image-area:hover::after {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.4s;
        }
        
        .project4 .image-area::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(187deg, rgba(0, 0, 0, 0) 49.94%, rgba(0, 0, 0, 0.8) 72.55%), url(_path-to-image.html>) rgba(211, 211, 211, 0) 50%/cover no-repeat;
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.4s;
        }
        
        .project4 .image-area.active .heading4-w {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.4s;
        }
        
        .project4 .image-area.active::after {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.4s;
        }
        
        .project4 .image {
            margin-top: 30px;
        }
        
        .project4 .image img {
            width: 100%;
        }
        
        .project-page-box {
            position: relative;
            margin-bottom: 40px;
        }
        
        .project-page-box .image {
            overflow: hidden;
            border-radius: 7px;
        }
        
        .project-page-box .image img {
            width: 100%;
            transition: all 0.4s;
        }
        
        .project-page-box .heading2 {
            padding: 24px;
            border-radius: 7px;
            background-color: var(--ztc-bg-main-bg-1);
            position: absolute;
            bottom: 24px;
            margin: 0px 24px;
            transform: translateY(60px) scale(0.4);
            opacity: 0;
            transition: all 0.4s;
        }
        
        .project-page-box .heading2 h4 a {
            line-height: 28px;
        }
        
        .project-page-box .heading2 h4 a:hover {
            color: #fff;
        }
        
        .project-page-box .heading2 a.learn {
            display: inline-block;
            color: #fff;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
        }
        
        .project-page-box .heading2 a.learn span {
            display: inline-block;
            transform: rotate(-45deg);
            margin-top: 16px;
        }
        
        .project-page-box:hover .heading2 {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition: all 0.4s;
        }
        
        .project-page-box:hover .image img {
            transition: all 0.4s;
            transform: scale(1.1) rotate(2deg);
        }
        
        .comon-body .project-page-box {
            position: relative;
            margin-bottom: 40px;
        }
        
        .comon-body .project-page-box .image {
            overflow: hidden;
            border-radius: 7px;
        }
        
        .comon-body .project-page-box .image img {
            width: 100%;
            transition: all 0.4s;
        }
        
        .comon-body .project-page-box .heading2 {
            padding: 24px;
            border-radius: 7px;
            background-color: var(--ztc-bg-bg-4);
            border: 1px solid var(--ztc-bg-bg-5);
            position: absolute;
            bottom: 24px;
            margin: 0px 24px;
            transform: translateY(60px) scale(0.4);
            opacity: 0;
            transition: all 0.4s;
        }
        
        .comon-body .project-page-box .heading2 h4 a {
            line-height: 28px;
        }
        
        .comon-body .project-page-box .heading2 a.learn {
            display: inline-block;
            color: var(--ztc-bg-main-bg-4);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
        }
        
        .comon-body .project-page-box .heading2 a.learn span {
            display: inline-block;
            transform: rotate(-45deg);
            margin-top: 16px;
        }
        
        .comon-body .project-page-box:hover .heading2 {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition: all 0.4s;
        }
        
        .comon-body .project-page-box:hover .image img {
            transition: all 0.4s;
            transform: scale(1.1) rotate(2deg);
        }
        
        .comon-body .details-post-area .image img {
            width: 100%;
        }
        
        .comon-body .details-post-area .expart-list li {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            color: rgba(255, 255, 255, 0.7725490196);
            padding-top: 16px;
        }
        
        .comon-body .details-post-area .expart-list li span.check {
            display: inline-block;
            font-size: 12px;
            height: 20px;
            width: 20px;
            border-radius: 50%;
            color: var(--ztc-text-text-1);
            background-color: var(--ztc-bg-main-bg-4);
            text-align: center;
            line-height: 20px;
            margin-right: 6px;
        }
        
        .comon-body .details-post-area .expart-list li span.text {
            font-weight: var(--f-fw-semibold);
            display: inline-block;
            color: var(--ztc-bg-color-w);
        }
        
        .comon-body .details-post-area .boxs-area ul {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .comon-body .details-post-area .boxs-area ul li {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-color-w);
            padding: 18px 16px;
            background-color: var(--ztc-bg-bg-4);
            border: 1px solid var(--ztc-bg-bg-5);
            border-radius: 7px;
            margin-top: 20px;
            min-width: 250px;
            transition: all 0.4s;
        }
        
        .comon-body .details-post-area .boxs-area ul li span.check {
            display: inline-block;
            font-size: 12px;
            height: 20px;
            width: 20px;
            border-radius: 50%;
            color: var(--ztc-text-text-1);
            background-color: var(--ztc-bg-main-bg-4);
            text-align: center;
            line-height: 20px;
            margin-right: 6px;
        }
        
        .comon-body .details-post-area .boxs-area ul li:hover {
            border: 1px solid var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
            transform: translateY(-6px);
        }
        
        .comon-body .project-details-box {
            background-color: var(--ztc-bg-bg-4);
            border-radius: 7px;
            border: 1px solid var(--ztc-bg-bg-5);
            margin-top: 30px;
            padding: 24px;
            transition: all 0.4s;
        }
        
        .comon-body .project-details-box:hover {
            border: 1px solid var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
            transform: translateY(-5px);
        }
        
        .comon-body .get-started-box {
            background-color: var(--ztc-bg-main-bg-4);
            border-radius: 4px;
            padding: 24px;
        }
        
        .comon-body .get-started-box h3 {
            font-size: var(--f-fs-font-fs32);
            line-height: var(--f-fs-font-fs32);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-text-text-1);
        }
        
        .comon-body .get-started-box p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-text-1);
        }
        
        .brands6 {
            padding: 80px 0px;
            background-color: #180D03;
        }
        
        .brands6 .brands-area-all {
            text-align: center;
        }
        
        .brands6 .brands-area-all p {
            color: var(--Home-Page-3-white-colors, #FFF);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            /* 100% */
            padding-bottom: 50px;
            position: relative;
        }
        
        .brands6 .brands-area-all p::after {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            width: 400px;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.2470588235);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .brands6 .brands-area-all p::after {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .brands6 .brands-area-all p::after {
                display: none;
            }
        }
        
        .brands6 .brands-area-all p::before {
            content: "";
            position: absolute;
            right: 0;
            top: 10px;
            width: 400px;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.2470588235);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .brands6 .brands-area-all p::before {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .brands6 .brands-area-all p::before {
                display: none;
            }
        }
        
        .brands6 .brands-area-all .brands6-slider .single-slider {
            width: 150px;
            text-align: center;
            margin: auto;
        }
        
        .c-bg1 {
            position: relative;
        }
        
        .c-bg1::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background-color: #F5F6F9;
            z-index: -4;
        }
        
        .case8 {
            position: relative;
        }
        
        .case8 .case8-box {
            margin-top: 60px;
            position: relative;
        }
        
        .case8 .case8-box .image {
            border-radius: 4px;
            overflow: hidden;
        }
        
        .case8 .case8-box .image img {
            width: 100%;
            transition: all 0.4s;
        }
        
        .case8 .case8-box .hover-area {
            background-color: #F5F6F9;
            border-radius: 4px;
            padding: 20px;
            overflow: hidden;
            position: absolute;
            height: 68px;
            bottom: -30px;
            margin: 0px 30px;
            transition: all 0.4s;
        }
        
        .case8 .case8-box .hover-area .hover-heaer {
            display: flex;
            align-items: center;
        }
        
        .case8 .case8-box .hover-area .hover-heaer .icon img {
            transition: all 0.4s;
        }
        
        .case8 .case8-box .hover-area .hover-heaer a {
            display: inline-block;
            color: var(--Home-Page-2-Text-Colors, #0B0103);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            /* 100% */
            padding-left: 12px;
            transition: all 0.4s;
        }
        
        .case8 .case8-box .hover-area p {
            color: var(--White-colors, #0B0103);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            /* 150% */
            padding: 16px 0px 24px 0px;
            transition: all 0.4s;
        }
        
        .case8 .case8-box .hover-area .learn {
            display: inline-block;
            color: var(--White-colors, #FFF);
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 16px;
            /* 100% */
        }
        
        .case8 .case8-box .hover-area .learn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .case8 .case8-box:hover .image img {
            transform: rotate(2deg) scale(1.1);
            transition: all 0.4s;
        }
        
        .case8 .case8-box:hover .hover-area {
            height: 200px;
            transition: all 0.4s;
            background-color: #4D32A5;
        }
        
        .case8 .case8-box:hover .hover-area .hover-heaer .icon img {
            transition: all 0.4s;
            filter: brightness(0) invert(1);
        }
        
        .case8 .case8-box:hover .hover-area .hover-heaer a {
            transition: all 0.4s;
            color: #fff;
        }
        
        .case8 .case8-box:hover .hover-area p {
            color: #fff;
            transition: all 0.4s;
        }
        /*
::::::::::::::::::::::::::
 OTHERS AREA CSS
::::::::::::::::::::::::::
*/
        /*
::::::::::::::::::::::::::
 PRICING AREA CSS
::::::::::::::::::::::::::
*/
        
        .pricing .single-pricing-box {
            background-color: var(--ztc-bg-bg-3);
            padding: 32px 24px;
            border-radius: 4px;
            min-height: 572px;
            position: relative;
            transition: all 0.4s;
            margin-top: 7px;
            margin-top: 40px;
        }
        
        .pricing .single-pricing-box .most-popular {
            background-color: var(--ztc-bg-color-w);
            border-radius: 7px;
            border: 1px solid var(--ztc-bg-main-bg-1);
            padding: 8px;
            width: 120px;
            text-align: center;
            margin: auto;
            position: absolute;
            top: -20px;
            left: 50%;
            margin-left: -60px;
        }
        
        .pricing .single-pricing-box .most-popular p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-main-bg-1);
        }
        
        .pricing .single-pricing-box .title {
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box h2 {
            font-size: var(--f-fs-font-fs56);
            line-height: var(--f-fs-font-fs56);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            margin: 20px 0px;
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box h2 span {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box p.pera {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            padding-bottom: 20px;
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box h4 {
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            padding-top: 20px;
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box .button a {
            width: 89% !important;
            text-align: center;
            position: absolute;
            bottom: 22px;
        }
        
        .pricing .single-pricing-box .list li {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-text-1);
            padding-top: 20px;
            display: flex;
            align-items: center;
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box .list li span {
            display: inline-block;
            height: 20px;
            width: 20px;
            text-align: center;
            line-height: 20px;
            background-color: var(--ztc-bg-main-bg-1);
            border-radius: 50%;
            font-size: 12px;
            color: var(--ztc-bg-color-w);
            margin-top: 0px;
            margin-right: 10px;
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box:hover {
            background-color: var(--ztc-bg-main-bg-1);
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box:hover .title {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box:hover h2 {
            font-size: var(--f-fs-font-fs56);
            line-height: var(--f-fs-font-fs56);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-color-w);
            margin: 20px 0px;
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box:hover h2 span {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box:hover .button a {
            width: 89% !important;
            text-align: center;
            position: absolute;
            bottom: 22px;
            background-color: var(--ztc-bg-color-w);
            color: var(--ztc-bg-main-bg-1);
        }
        
        .pricing .single-pricing-box:hover h4 {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box:hover p.pera {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box:hover .list li {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-bg-color-w);
            padding-top: 20px;
            display: flex;
            align-items: center;
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box:hover .list li span {
            display: inline-block;
            height: 20px;
            width: 20px;
            text-align: center;
            line-height: 20px;
            background-color: var(--ztc-bg-color-w);
            border-radius: 50%;
            font-size: 12px;
            color: var(--ztc-bg-main-bg-1);
            margin-top: 0px;
            margin-right: 10px;
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box.active {
            background-color: var(--ztc-bg-main-bg-1);
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box.active .title {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box.active h2 {
            font-size: var(--f-fs-font-fs56);
            line-height: var(--f-fs-font-fs56);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-color-w);
            margin: 20px 0px;
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box.active h2 span {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box.active .button a {
            width: 89% !important;
            text-align: center;
            position: absolute;
            bottom: 22px;
            background-color: var(--ztc-bg-color-w);
            color: var(--ztc-bg-main-bg-1);
        }
        
        .pricing .single-pricing-box.active h4 {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box.active p.pera {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box.active .list li {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-bg-color-w);
            padding-top: 20px;
            display: flex;
            align-items: center;
            transition: all 0.4s;
        }
        
        .pricing .single-pricing-box.active .list li span {
            display: inline-block;
            height: 20px;
            width: 20px;
            text-align: center;
            line-height: 20px;
            background-color: var(--ztc-bg-color-w);
            border-radius: 50%;
            font-size: 12px;
            color: var(--ztc-bg-main-bg-1);
            margin-top: 0px;
            margin-right: 10px;
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box {
            background-color: var(--ztc-bg-bg-3);
            padding: 32px 24px;
            border-radius: 4px;
            min-height: 572px;
            position: relative;
            transition: all 0.4s;
            margin-top: 30px;
        }
        
        .pricing4 .single-pricing-box .most-popular {
            background-color: var(--ztc-bg-color-w);
            border-radius: 4px;
            border: 1px solid var(--ztc-bg-main-bg-2);
            padding: 8px;
            width: 120px;
            text-align: center;
            margin: auto;
            position: absolute;
            top: -20px;
            left: 50%;
            margin-left: -60px;
        }
        
        .pricing4 .single-pricing-box .most-popular p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-main-bg-2);
        }
        
        .pricing4 .single-pricing-box .title {
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box h2 {
            font-size: var(--f-fs-font-fs56);
            line-height: var(--f-fs-font-fs56);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            margin: 20px 0px;
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box h2 span {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box p.pera {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            padding-bottom: 20px;
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box h4 {
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            padding-top: 20px;
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box .button a {
            width: 89% !important;
            text-align: center;
            position: absolute;
            bottom: 22px;
            background-color: var(--ztc-bg-main-bg-2);
            border-radius: 36px;
        }
        
        .pricing4 .single-pricing-box .list li {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-text-1);
            padding-top: 20px;
            display: flex;
            align-items: center;
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box .list li span {
            display: inline-block;
            height: 20px;
            width: 20px;
            text-align: center;
            line-height: 20px;
            background-color: var(--ztc-bg-main-bg-1);
            border-radius: 50%;
            font-size: 12px;
            color: var(--ztc-bg-color-w);
            margin-top: 0px;
            margin-right: 10px;
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box:hover {
            background-color: var(--ztc-bg-main-bg-2);
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box:hover .title {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box:hover h2 {
            font-size: var(--f-fs-font-fs56);
            line-height: var(--f-fs-font-fs56);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-color-w);
            margin: 20px 0px;
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box:hover h2 span {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box:hover .button a {
            width: 89% !important;
            text-align: center;
            position: absolute;
            bottom: 22px;
            background-color: var(--ztc-bg-color-w);
            color: var(--ztc-bg-main-bg-1);
        }
        
        .pricing4 .single-pricing-box:hover h4 {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box:hover p.pera {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box:hover .list li {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-bg-color-w);
            padding-top: 20px;
            display: flex;
            align-items: center;
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box:hover .list li span {
            display: inline-block;
            height: 20px;
            width: 20px;
            text-align: center;
            line-height: 20px;
            background-color: var(--ztc-bg-color-w);
            border-radius: 50%;
            font-size: 12px;
            color: var(--ztc-bg-main-bg-1);
            margin-top: 0px;
            margin-right: 10px;
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box.active {
            background-color: var(--ztc-bg-main-bg-2);
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box.active .title {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box.active h2 {
            font-size: var(--f-fs-font-fs56);
            line-height: var(--f-fs-font-fs56);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-color-w);
            margin: 20px 0px;
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box.active h2 span {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box.active .button a {
            width: 89% !important;
            text-align: center;
            position: absolute;
            bottom: 22px;
            background-color: var(--ztc-bg-color-w);
            color: var(--ztc-bg-main-bg-2);
        }
        
        .pricing4 .single-pricing-box.active h4 {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box.active p.pera {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box.active .list li {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-bg-color-w);
            padding-top: 20px;
            display: flex;
            align-items: center;
            transition: all 0.4s;
        }
        
        .pricing4 .single-pricing-box.active .list li span {
            display: inline-block;
            height: 20px;
            width: 20px;
            text-align: center;
            line-height: 20px;
            background-color: var(--ztc-bg-color-w);
            border-radius: 50%;
            font-size: 12px;
            color: var(--ztc-bg-main-bg-2);
            margin-top: 0px;
            margin-right: 10px;
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box {
            background-color: #fff;
            padding: 32px 24px;
            border-radius: 4px;
            min-height: 572px;
            position: relative;
            transition: all 0.4s;
            margin-top: 7px;
            margin-top: 40px;
        }
        
        .pricing8 .single-pricing-box .most-popular {
            background-color: var(--ztc-bg-color-w);
            border-radius: 7px;
            border: 1px solid #4D32A5;
            padding: 8px;
            width: 120px;
            text-align: center;
            margin: auto;
            position: absolute;
            top: -20px;
            left: 50%;
            margin-left: -60px;
        }
        
        .pricing8 .single-pricing-box .most-popular p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: #4D32A5;
        }
        
        .pricing8 .single-pricing-box .title {
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box h2 {
            font-size: var(--f-fs-font-fs56);
            line-height: var(--f-fs-font-fs56);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            margin: 20px 0px;
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box h2 span {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box p.pera {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            padding-bottom: 20px;
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box h4 {
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            padding-top: 20px;
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box .button a {
            width: 89% !important;
            text-align: center;
            position: absolute;
            bottom: 22px;
            background: #4D32A5;
        }
        
        .pricing8 .single-pricing-box .button a span {
            transform: rotate(-45deg);
            display: inline-block;
        }
        
        .pricing8 .single-pricing-box .list li {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-text-1);
            padding-top: 20px;
            display: flex;
            align-items: center;
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box .list li span {
            display: inline-block;
            height: 20px;
            width: 20px;
            text-align: center;
            line-height: 20px;
            background-color: #4D32A5;
            border-radius: 50%;
            font-size: 12px;
            color: var(--ztc-bg-color-w);
            margin-top: 0px;
            margin-right: 10px;
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box:hover {
            background-color: #4D32A5;
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box:hover .title {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box:hover h2 {
            font-size: var(--f-fs-font-fs56);
            line-height: var(--f-fs-font-fs56);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-color-w);
            margin: 20px 0px;
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box:hover h2 span {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box:hover .button a {
            width: 89% !important;
            text-align: center;
            position: absolute;
            bottom: 22px;
            background-color: #fff;
            color: #4D32A5;
        }
        
        .pricing8 .single-pricing-box:hover h4 {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box:hover p.pera {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box:hover .list li {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-bg-color-w);
            padding-top: 20px;
            display: flex;
            align-items: center;
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box:hover .list li span {
            display: inline-block;
            height: 20px;
            width: 20px;
            text-align: center;
            line-height: 20px;
            background-color: var(--ztc-bg-color-w);
            border-radius: 50%;
            font-size: 12px;
            color: var(--ztc-bg-main-bg-1);
            margin-top: 0px;
            margin-right: 10px;
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box.active {
            background-color: #4D32A5;
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box.active .title {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box.active h2 {
            font-size: var(--f-fs-font-fs56);
            line-height: var(--f-fs-font-fs56);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-color-w);
            margin: 20px 0px;
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box.active h2 span {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box.active .button a {
            width: 89% !important;
            text-align: center;
            position: absolute;
            bottom: 22px;
            background-color: var(--ztc-bg-color-w);
            color: var(--ztc-bg-main-bg-1);
        }
        
        .pricing8 .single-pricing-box.active h4 {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box.active p.pera {
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box.active .list li {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-bg-color-w);
            padding-top: 20px;
            display: flex;
            align-items: center;
            transition: all 0.4s;
        }
        
        .pricing8 .single-pricing-box.active .list li span {
            display: inline-block;
            height: 20px;
            width: 20px;
            text-align: center;
            line-height: 20px;
            background-color: var(--ztc-bg-color-w);
            border-radius: 50%;
            font-size: 12px;
            color: var(--ztc-bg-main-bg-1);
            margin-top: 0px;
            margin-right: 10px;
            transition: all 0.4s;
        }
        /*
::::::::::::::::::::::::::
 OTHERS AREA CSS
::::::::::::::::::::::::::
*/
        /*
 ::::::::::::::::::::::::::
  CONTACT AREA CSS
 ::::::::::::::::::::::::::
 */
        
        .contact-page .contact-boxs {
            padding-right: 60px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .contact-page .contact-boxs {
                padding-right: 0;
            }
        }
        
        @media (max-width: 767px) {
            .contact-page .contact-boxs {
                padding-right: 0;
            }
        }
        
        .contact-page .contact-boxs .contact-box {
            display: flex;
            align-items: center;
            background-color: #F8F9FA;
            border-radius: 7px;
            padding: 20px 24px;
            margin-top: 30px;
            transition: all 0.4s;
        }
        
        .contact-page .contact-boxs .contact-box .icon {
            height: 60px;
            width: 60px;
            background-color: rgba(14, 55, 177, 0.1725490196);
            border-radius: 50%;
            text-align: center;
            line-height: 60px;
        }
        
        .contact-page .contact-boxs .contact-box .heading {
            padding-left: 16px;
        }
        
        .contact-page .contact-boxs .contact-box .heading h5 {
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
        }
        
        .contact-page .contact-boxs .contact-box .heading a {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            padding-top: 14px;
            display: inline-block;
        }
        
        .contact-page .contact-boxs .contact-box:hover {
            transition: all 0.4s;
            transform: translateY(-6px);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .contact-page .contact-form-details {
                margin-top: 40px;
            }
        }
        
        @media (max-width: 767px) {
            .contact-page .contact-form-details {
                margin-top: 40px;
            }
        }
        
        .contact-map-page iframe {
            width: 100%;
            margin-bottom: -10px;
        }
        
        .comon-body .contact-page .contact-boxs {
            padding-right: 60px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .comon-body .contact-page .contact-boxs {
                padding-right: 0;
            }
        }
        
        @media (max-width: 767px) {
            .comon-body .contact-page .contact-boxs {
                padding-right: 0;
            }
        }
        
        .comon-body .contact-page .contact-boxs .contact-box {
            display: flex;
            align-items: center;
            background-color: var(--ztc-bg-bg-4);
            border: 1px solid var(--ztc-bg-bg-5);
            border-radius: 7px;
            padding: 16px 20px;
            margin-top: 30px;
            transition: all 0.4s;
        }
        
        .comon-body .contact-page .contact-boxs .contact-box .icon {
            height: 60px;
            width: 60px;
            background-color: rgba(161, 233, 52, 0.1843137255);
            border-radius: 50%;
            text-align: center;
            line-height: 60px;
        }
        
        .comon-body .contact-page .contact-boxs .contact-box .heading {
            padding-left: 16px;
        }
        
        .comon-body .contact-page .contact-boxs .contact-box .heading h5 {
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-2);
        }
        
        .comon-body .contact-page .contact-boxs .contact-box .heading a {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: rgba(255, 255, 255, 0.7176470588);
            padding-top: 14px;
            display: inline-block;
        }
        
        .comon-body .contact-page .contact-boxs .contact-box:hover {
            border: 1px solid var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
            transform: translateY(-6px);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .comon-body .contact-page .contact-form-details {
                margin-top: 40px;
            }
        }
        
        @media (max-width: 767px) {
            .comon-body .contact-page .contact-form-details {
                margin-top: 40px;
            }
        }
        
        .comon-body .contact-map-page iframe {
            width: 100%;
        }
        
        .contact5 .heading5 {
            padding-right: 40px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .contact5 .heading5 {
                padding-right: 0px;
            }
        }
        
        @media (max-width: 767px) {
            .contact5 .heading5 {
                padding-right: 0px;
            }
        }
        
        .contact5 .contact-box {
            position: relative;
            padding: 24px 16px;
            display: flex;
            align-items: center;
            margin-top: 30px;
        }
        
        .contact5 .contact-box .icon {
            height: 50px;
            width: 50px;
            background-color: #F5F6F9;
            border-radius: 50%;
            line-height: 50px;
            text-align: center;
        }
        
        .contact5 .contact-box .heading {
            padding-left: 16px;
        }
        
        .contact5 .contact-box .heading h4 {
            color: var(--Home-Page-4-Text-colors, #05092B);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            /* 100% */
            transition: all 0.4s;
        }
        
        .contact5 .contact-box .heading a {
            display: inline-block;
            color: var(--Home-Page-4-paragraph, #5A5D73);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            transition: all 0.4s;
            padding-top: 14px;
        }
        
        .contact5 .contact-box::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: #fff;
            border-radius: 4px;
            z-index: -2;
        }
        
        .contact5 .contact-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
            border-radius: 4px;
            z-index: -1;
            transform: rotateY(80deg);
            opacity: 0;
            transition: all 0.4s;
        }
        
        .contact5 .contact-box:hover::before {
            opacity: 1;
            transition: all 0.4s;
            transform: rotateY(0deg);
        }
        
        .contact5 .contact-box:hover .heading h4 {
            color: #fff;
            transition: all 0.4s;
        }
        
        .contact5 .contact-box:hover .heading a {
            color: #fff;
            transition: all 0.4s;
        }
        
        .contact5 .form-area {
            border-radius: 4px;
            background: var(--White-colors, #FFF);
            -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
            padding: 32px;
        }
        
        .contact5 .form-area h3 {
            color: var(--Home-Page-4-Text-colors, #05092B);
            font-size: 32px;
            font-style: normal;
            font-weight: 600;
            line-height: 32px;
            /* 100% */
        }
        
        .contact5 .form-area .single-input {
            padding-top: 20px;
        }
        
        .contact5 .form-area .single-input label {
            color: var(--Home-Page-4-Text-colors, #05092B);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            margin-bottom: 16px;
        }
        
        .contact5 .form-area .single-input input,
        .contact5 .form-area .single-input textarea {
            border: none;
            padding: 16px;
            width: 100%;
            border-radius: 4px;
            border: 1px solid rgba(5, 9, 43, 0.1);
            background: #F5F6F9;
        }
        
        .contact5 .form-area .single-input input:focus,
        .contact5 .form-area .single-input textarea:focus {
            outline: none;
        }
        
        .contact5 .form-area .single-input input::-moz-placeholder,
        .contact5 .form-area .single-input textarea::-moz-placeholder {
            color: var(--Home-Page-4-Text-colors, rgba(5, 9, 43, 0.4941176471));
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        .contact5 .form-area .single-input input::placeholder,
        .contact5 .form-area .single-input textarea::placeholder {
            color: var(--Home-Page-4-Text-colors, rgba(5, 9, 43, 0.4941176471));
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        .contact6 {
            position: relative;
        }
        
        .contact6 .contact6-box {
            margin-top: 16px;
            background-color: #F5F6F9;
            border-radius: 4px;
            padding: 24px 16px;
            display: flex;
            align-items: start;
            transition: all 0.4s;
        }
        
        .contact6 .contact6-box .icon {
            height: 50px;
            width: 50px;
            line-height: 50px;
            text-align: center;
            border-radius: 50%;
            background-color: #F5EFF0;
            transition: all 0.4s;
        }
        
        .contact6 .contact6-box .heading {
            padding-left: 16px;
        }
        
        .contact6 .contact6-box .heading h3 {
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            /* 100% */
            transition: all 0.4s;
            padding-bottom: 10px;
        }
        
        .contact6 .contact6-box .heading a {
            display: inline-block;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            transition: all 0.4s;
        }
        
        .contact6 .contact6-box:hover {
            background-color: #FA6444;
            transition: all 0.4s;
            transform: translateY(-7px);
        }
        
        .contact6 .contact6-box:hover .icon {
            background: #fff;
            transition: all 0.4s;
        }
        
        .contact6 .contact6-box:hover .heading h3 {
            color: #fff;
            transition: all 0.4s;
        }
        
        .contact6 .contact6-box:hover .heading a {
            transition: all 0.4s;
            color: rgba(255, 255, 255, 0.8901960784);
        }
        
        .contact6 .form-area {
            background-color: #F5F6F9;
            border-radius: 4px;
            padding: 32px;
            margin-left: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .contact6 .form-area {
                margin-top: 30px;
                margin-left: 0px;
            }
        }
        
        @media (max-width: 767px) {
            .contact6 .form-area {
                margin-top: 30px;
                padding: 16px;
                margin-left: 0px;
            }
        }
        
        .contact6 .form-area h3 {
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 32px;
            font-style: normal;
            font-weight: 600;
            line-height: 32px;
            /* 100% */
            margin-bottom: 10px;
        }
        
        .contact6 .form-area .single-input {
            margin-top: 20px;
        }
        
        .contact6 .form-area .single-input label {
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            margin-bottom: 14px;
        }
        
        .contact6 .form-area .single-input input,
        .contact6 .form-area .single-input textarea {
            width: 100%;
            padding: 16px;
            border-radius: 4px;
            border: none;
        }
        
        .contact6 .form-area .single-input input::-moz-placeholder,
        .contact6 .form-area .single-input textarea::-moz-placeholder {
            color: var(--Home-Page-3-text-Colors, rgba(24, 13, 3, 0.4941176471));
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        .contact6 .form-area .single-input input::placeholder,
        .contact6 .form-area .single-input textarea::placeholder {
            color: var(--Home-Page-3-text-Colors, rgba(24, 13, 3, 0.4941176471));
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        .contact6 .form-area .single-input input:focus,
        .contact6 .form-area .single-input textarea:focus {
            outline: none;
        }
        
        .contact6 .form-area .check-box-area {
            padding-top: 14px;
        }
        
        .contact6 .form-area .check-box-area label {
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            padding-left: 5px;
        }
        
        .contact6 .form-area .check-box-area #check-box {
            accent-color: #FA6444;
        }
        
        .contact8 {
            position: relative;
        }
        
        .contact8 .contact6-box {
            margin-top: 16px;
            background-color: #F5F6F9;
            border-radius: 4px;
            padding: 24px 16px;
            display: flex;
            align-items: start;
            transition: all 0.4s;
        }
        
        .contact8 .contact6-box .icon {
            height: 50px;
            width: 50px;
            line-height: 50px;
            text-align: center;
            border-radius: 50%;
            background-color: #fff;
            transition: all 0.4s;
        }
        
        .contact8 .contact6-box .icon img {
            filter: brightness(0);
        }
        
        .contact8 .contact6-box .heading {
            padding-left: 16px;
        }
        
        .contact8 .contact6-box .heading h3 {
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            /* 100% */
            transition: all 0.4s;
            padding-bottom: 10px;
        }
        
        .contact8 .contact6-box .heading a {
            display: inline-block;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            transition: all 0.4s;
        }
        .breadcrumb{
            display: flex;
            gap: 10px;
                justify-content: center;
        }
        .contact8 .contact6-box:hover {
            background-color: #4D32A5;
            transition: all 0.4s;
            transform: translateY(-7px);
        }
        
        .contact8 .contact6-box:hover .icon {
            background: #fff;
            transition: all 0.4s;
        }
        
        .contact8 .contact6-box:hover .heading h3 {
            color: #fff;
            transition: all 0.4s;
        }
        
        .contact8 .contact6-box:hover .heading a {
            transition: all 0.4s;
            color: rgba(255, 255, 255, 0.8901960784);
        }
        
        .contact8 .form-area {
            background-color: #F5F6F9;
            border-radius: 4px;
            padding: 32px;
            margin-left: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .contact8 .form-area {
                margin-top: 30px;
                margin-left: 0px;
            }
        }
        
        @media (max-width: 767px) {
            .contact8 .form-area {
                margin-top: 30px;
                padding: 16px;
                margin-left: 0px;
            }
        }
        
        .contact8 .form-area h3 {
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 32px;
            font-style: normal;
            font-weight: 600;
            line-height: 32px;
            /* 100% */
            margin-bottom: 10px;
        }
        
        .contact8 .form-area .single-input {
            margin-top: 20px;
        }
        
        .contact8 .form-area .single-input label {
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            margin-bottom: 14px;
        }
        
        .contact8 .form-area .single-input input,
        .contact8 .form-area .single-input textarea {
            width: 100%;
            padding: 16px;
            border-radius: 4px;
            border: none;
        }
        
        .contact8 .form-area .single-input input::-moz-placeholder,
        .contact8 .form-area .single-input textarea::-moz-placeholder {
            color: var(--Home-Page-3-text-Colors, rgba(24, 13, 3, 0.4941176471));
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        .contact8 .form-area .single-input input::placeholder,
        .contact8 .form-area .single-input textarea::placeholder {
            color: var(--Home-Page-3-text-Colors, rgba(24, 13, 3, 0.4941176471));
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        .contact8 .form-area .single-input input:focus,
        .contact8 .form-area .single-input textarea:focus {
            outline: none;
        }
        
        .contact8 .form-area .check-box-area {
            padding-top: 14px;
        }
        
        .contact8 .form-area .check-box-area label {
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            padding-left: 5px;
        }
        
        .contact9 .contact9-content-area {
            border-radius: 8px;
            background: #FFF;
            padding: 48px;
            margin-top: 60px;
        }
        
        .contact9 .contact9-content-area .form-area .single-input {
            margin-top: 20px;
        }
        
        .contact9 .contact9-content-area .form-area .single-input input,
        .contact9 .contact9-content-area .form-area .single-input textarea {
            width: 100%;
            background-color: #F1F1F1;
            border-radius: 4px;
            padding: 16px;
            border: none;
        }
        
        .contact9 .contact9-content-area .form-area .single-input input::-moz-placeholder,
        .contact9 .contact9-content-area .form-area .single-input textarea::-moz-placeholder {
            color: var(--Text-Color, #858585);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        .contact9 .contact9-content-area .form-area .single-input input::placeholder,
        .contact9 .contact9-content-area .form-area .single-input textarea::placeholder {
            color: var(--Text-Color, #858585);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        .contact9 .contact9-content-area .form-area .single-input input:focus,
        .contact9 .contact9-content-area .form-area .single-input textarea:focus {
            outline: none;
        }
        
        .contact9 .contact9-content-area .form-area .button-area {
            text-align: end;
            margin-top: 24px;
        }
        
        .contact9 .contact9-content-area .contact9-box {
            border-radius: 8px;
            background: #FFF;
            box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.09);
            padding: 24px;
            display: flex;
            align-items: center;
            margin-left: 40px;
            transition: all 0.4s;
            margin-bottom: 20px;
        }
        
        .contact9 .contact9-content-area .contact9-box .heading {
            padding-left: 20px;
        }
        
        .contact9 .contact9-content-area .contact9-box .heading h5 {
            color: var(--Text-Color, #181818);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            /* 100% */
            transition: all 0.4s;
        }
        
        .contact9 .contact9-content-area .contact9-box .heading a {
            display: inline-block;
            color: var(--Paragraph-Color, #646375);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 26px;
            /* 162.5% */
            padding-top: 10px;
            transition: all 0.4s;
        }
        
        .contact9 .contact9-content-area .contact9-box .icon {
            background-color: #325D28;
            height: 80px;
            width: 80px;
            line-height: 80px;
            text-align: center;
            border-radius: 50%;
            transition: all 0.4s;
        }
        
        .contact9 .contact9-content-area .contact9-box .icon img {
            transition: all 0.4s;
            filter: brightness(40);
        }
        
        .contact9 .contact9-content-area .contact9-box:hover {
            transform: translateY(-10px);
            transition: all 0.4s;
            background-color: #325D28;
        }
        
        .contact9 .contact9-content-area .contact9-box:hover .icon {
            background-color: #fff;
            transition: all 0.4s;
        }
        
        .contact9 .contact9-content-area .contact9-box:hover .icon img {
            filter: none;
            transition: all 0.4s;
            transform: rotateY(180deg);
        }
        
        .contact9 .contact9-content-area .contact9-box:hover .heading h5 {
            color: #fff;
            transition: all 0.4s;
        }
        
        .contact9 .contact9-content-area .contact9-box:hover .heading a {
            color: rgba(255, 255, 255, 0.7529411765);
            transition: all 0.4s;
        }
        
        .contact10 .map-area {
            margin-right: 30px;
        }
        
        .contact10 .map-area iframe {
            height: 700px;
            width: 100%;
            border-radius: 4px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .contact10 .map-area iframe {
                height: 400px;
            }
        }
        
        @media (max-width: 767px) {
            .contact10 .map-area iframe {
                height: 400px;
            }
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .contact10 .map-area {
                margin-right: 0;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .contact10 .map-area {
                margin-right: 0;
                margin-bottom: 30px;
            }
        }
        
        .contact10 .form-area .single-input {
            margin-top: 20px;
        }
        
        .contact10 .form-area .single-input input,
        .contact10 .form-area .single-input textarea {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 4px;
            border: 1px solid #DFEFEE;
            background-color: #F4F9F9;
        }
        
        .contact10 .form-area .single-input input::-moz-placeholder,
        .contact10 .form-area .single-input textarea::-moz-placeholder {
            color: #011313;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        .contact10 .form-area .single-input input::placeholder,
        .contact10 .form-area .single-input textarea::placeholder {
            color: #011313;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        .contact10 .form-area .single-input input:focus,
        .contact10 .form-area .single-input textarea:focus {
            outline: none;
        }
        /*
 ::::::::::::::::::::::::::
  CONTACT AREA CSS
 ::::::::::::::::::::::::::
 */
        /*
::::::::::::::::::::::::::
 HERO AREA CSS
::::::::::::::::::::::::::
*/
        
        .hero1 {
            min-height: 980px;
            display: flex;
            padding-top: 130px;
        }
        
        @media (max-width: 767px) {
            .hero1 {
                padding-top: 100px;
            }
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero1 {
                padding-top: 100px;
            }
        }
        
        .hero1 .main-headding {
            padding-top: 50px;
        }
        
        @media (max-width: 767px) {
            .hero1 .main-headding {
                padding-top: 50px;
            }
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero1 .main-headding {
                padding-top: 0;
            }
        }
        
        .hero1 .main-headding span.span {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-main-bg-1);
            margin-bottom: 16px;
        }
        
        .hero1 .main-headding span.span img {
            margin-top: -3px;
            margin-right: 2px;
        }
        
        .hero1 .main-headding h1 {
            font-size: var(--f-fs-font-fs64);
            font-weight: var(--f-fw-blod);
            line-height: var(--f-fs-font-fs70);
            color: var(--ztc-text-text-1);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero1 .main-headding h1 {
                font-size: var(--f-fs-font-fs40);
                font-weight: var(--f-fw-blod);
                line-height: var(--f-fs-font-fs48);
            }
        }
        
        @media (max-width: 767px) {
            .hero1 .main-headding h1 {
                font-size: var(--f-fs-font-fs40);
                font-weight: var(--f-fw-blod);
                line-height: var(--f-fs-font-fs48);
            }
        }
        
        .hero1 .main-headding h1 span.after {
            color: var(--ztc-bg-main-bg-1);
        }
        
        .hero1 .main-headding p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
        }
        
        .hero1 .buttons {
            display: flex;
            align-items: center;
        }
        
        @media (max-width: 767px) {
            .hero1 .buttons {
                display: block;
            }
        }
        
        .hero1 .buttons .play-btn {
            display: inline-block;
            margin-left: 30px;
            font-size: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-blod);
            line-height: var(--f-fs-font-fs18);
            color: var(--ztc-bg-main-bg-1);
        }
        
        @media (max-width: 767px) {
            .hero1 .buttons .play-btn {
                display: block;
                margin-left: 0;
                margin-top: 16px;
            }
        }
        
        .hero1 .hero1-all-images {
            position: relative;
            height: 660px;
            text-align: end;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero1 .hero1-all-images {
                margin-bottom: 60px;
            }
        }
        
        @media (max-width: 767px) {
            .hero1 .hero1-all-images {
                margin-bottom: 60px;
            }
        }
        
        .hero1 .hero1-all-images .image1 {
            position: absolute;
            right: 0;
            bottom: 40px;
        }
        
        .hero1 .hero1-all-images .image2 {
            position: absolute;
            right: -30px;
            bottom: 40px;
        }
        
        .hero1 .hero1-all-images .image3 {
            position: absolute;
            right: -100px;
            top: 60px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero1 .hero1-all-images .image3 {
                right: 0;
            }
        }
        
        @media (max-width: 767px) {
            .hero1 .hero1-all-images .image3 {
                right: 0;
            }
        }
        
        .hero1 .hero1-all-images .image4 {
            position: absolute;
            bottom: 0;
            left: 140px;
        }
        
        .hero1 .hero1-all-images .shape1 {
            position: absolute;
            left: 60px;
            top: 100px;
        }
        
        @media (max-width: 767px) {
            .hero1 .hero1-all-images .shape1 {
                left: 0;
            }
        }
        
        .hero1 .hero1-all-images .shape2 {
            position: absolute;
            bottom: 140px;
            left: 60px;
        }
        
        @media (max-width: 767px) {
            .hero1 .hero1-all-images .shape2 {
                display: none;
            }
        }
        
        .hero-bottom-area {
            border-radius: 7px;
            padding: 60px 55px;
            background-color: var(--ztc-bg-color-w);
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            margin-top: -95px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero-bottom-area {
                margin-top: 60px;
                box-shadow: rgba(0, 0, 0, 0.068) 10px -2px 30px;
                padding: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .hero-bottom-area {
                margin-top: 60px;
                box-shadow: rgba(0, 0, 0, 0.068) 10px -2px 30px;
                padding: 30px;
            }
        }
        
        .hero-bottom-area .single-box {
            display: flex;
            align-items: center;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero-bottom-area .single-box {
                padding: 20px 0px;
            }
        }
        
        @media (max-width: 767px) {
            .hero-bottom-area .single-box {
                padding: 20px 0px;
            }
        }
        
        .hero-bottom-area .single-box .icon {
            height: 50px;
            width: 50px;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            background-color: var(--ztc-bg-bg-3);
            margin-right: 16px;
        }
        
        .hero-bottom-area .single-box .headding h5 {
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs20);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
        }
        
        .hero-bottom-area .single-box .headding p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            padding-top: 6px;
        }
        
        .hero2 {
            min-height: 960px;
            display: flex;
            padding-top: 130px;
            align-items: center;
            position: relative;
            z-index: -2;
        }
        
        @media (max-width: 767px) {
            .hero2 {
                min-height: 500px;
            }
        }
        
        .hero2 .main-heading span.span {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-main-bg-4);
            margin-bottom: 16px;
        }
        
        .hero2 .main-heading span.span img {
            margin-top: -3px;
            margin-right: 2px;
        }
        
        .hero2 .main-heading h1 {
            font-size: var(--f-fs-font-fs64);
            line-height: var(--f-fs-font-fs74);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-2);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero2 .main-heading h1 {
                font-size: var(--f-fs-font-fs40);
                line-height: var(--f-fs-font-fs48);
            }
        }
        
        @media (max-width: 767px) {
            .hero2 .main-heading h1 {
                font-size: var(--f-fs-font-fs40);
                line-height: var(--f-fs-font-fs48);
            }
        }
        
        .hero2::after {
            position: absolute;
            content: "";
            top: 60px;
            left: 0;
            height: 100%;
            width: 100%;
            background-image: url(../img/bg/hero2-main-bg2.png);
            z-index: -1;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: contain;
            animation-name: shape-animaiton4;
            animation-duration: 92s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: linear;
        }
        
        .hero2 .hero2-main-imges {
            position: relative;
            height: 600px;
        }
        
        @media (max-width: 767px) {
            .hero2 .hero2-main-imges {
                display: none;
            }
        }
        
        .hero2 .hero2-main-imges .image1 {
            position: absolute;
            top: -100px;
            right: 0;
            animation-name: shape-animaiton4;
            animation-duration: 82s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: ease-in-out;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero2 .hero2-main-imges .image1 {
                top: 10px;
            }
        }
        
        @media (max-width: 767px) {
            .hero2 .hero2-main-imges .image1 {
                top: 40px;
            }
        }
        
        .hero2 .hero2-main-imge2 {
            position: absolute;
            bottom: -130px;
            right: -45px;
            transform: scale(0.9);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero2 .hero2-main-imge2 {
                position: absolute;
                bottom: -240px;
                right: -135px;
                transform: scale(0.7);
            }
        }
        
        @media (max-width: 767px) {
            .hero2 .hero2-main-imge2 {
                bottom: -140px;
                display: none;
            }
        }
        
        .hero2 .consulting2 .header__search {
            padding-left: 100px;
        }
        
        .hero2 .hero2-tags {
            margin-top: 24px;
        }
        
        .hero2 .hero2-tags ul li {
            display: inline-block;
        }
        
        .hero2 .hero2-tags ul li a {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-2);
            padding: 12px 16px;
            margin: 10px 5px;
            background-color: #191924;
            border-radius: 30px;
            border: 1px solid #313137;
            transition: all 0.4s;
        }
        
        .hero2 .hero2-tags ul li a:hover {
            background-color: var(--ztc-bg-main-bg-4);
            border: 1px solid var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
            color: var(--ztc-text-text-1);
        }
        
        .hero2 .hero2-tags ul li.active a {
            background-color: var(--ztc-bg-main-bg-4);
            border: 1px solid var(--ztc-bg-main-bg-4);
            color: var(--ztc-text-text-1);
        }
        
        @media (max-width: 767px) {
            .hero2 .circle-shapes {
                margin-top: 140px;
            }
        }
        
        .hero2 .circle-shapes .shape1 {
            position: absolute;
            bottom: 0;
            right: 60px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero2 .circle-shapes .shape1 {
                left: 0;
                top: 175px;
                right: auto;
                bottom: auto;
            }
        }
        
        .hero2 .circle-shapes .shape2 {
            position: absolute;
            bottom: 46px;
            right: 105px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero2 .circle-shapes .shape2 {
                left: 45px;
                top: 225px;
                right: auto;
                bottom: auto;
            }
        }
        
        .hero3 {
            min-height: 1090px;
        }
        
        .hero3 .main-heading {
            margin-top: 200px;
        }
        
        @media (max-width: 767px) {
            .hero3 .main-heading {
                margin-top: 120px;
            }
        }
        
        .hero3 .main-heading h1 {
            font-size: var(--f-fs-font-fs64);
            line-height: var(--f-fs-font-fs74);
            color: var(--ztc-text-text-2);
            font-weight: var(--f-fw-blod);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero3 .main-heading h1 {
                font-size: var(--f-fs-font-fs40);
                line-height: var(--f-fs-font-fs48);
            }
        }
        
        @media (max-width: 767px) {
            .hero3 .main-heading h1 {
                font-size: var(--f-fs-font-fs40);
                line-height: var(--f-fs-font-fs48);
            }
        }
        
        .hero3 .main-heading h1 span.span {
            display: inline-block;
            position: relative;
        }
        
        .hero3 .main-heading h1 span.span img {
            position: absolute;
            top: 0;
            right: -24px;
        }
        
        .hero3 .main-heading p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-bg-color-w);
        }
        
        .hero3 .main-heading .arrow-shape {
            position: absolute;
            top: 100px;
            left: -60px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero3 .main-heading .arrow-shape {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .hero3 .main-heading .arrow-shape {
                display: none;
            }
        }
        
        .hero3 .hero3-main-shape .main-image img {
            width: 100%;
        }
        
        .hero3 .circle-shape {
            position: absolute;
            top: -60px;
            right: -60px;
        }
        
        @media (max-width: 767px) {
            .hero3 .circle-shape {
                display: none;
            }
        }
        
        .hero3 .circle-shape .shape2 {
            position: absolute;
            right: 48px;
            top: 48px;
        }
        
        .hero3 .image-shape {
            position: absolute;
            left: -170px;
            bottom: 90px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero3 .image-shape {
                left: 0;
            }
        }
        
        @media (max-width: 767px) {
            .hero3 .image-shape {
                left: 0;
                bottom: -180px;
            }
        }
        
        .hero3 .support-box {
            display: flex;
            align-items: center;
            position: absolute;
            right: 0px;
            bottom: 0;
        }
        
        @media (max-width: 767px) {
            .hero3 .support-box {
                bottom: -368px;
            }
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero3 .support-box {
                bottom: -140px;
                right: auto;
                left: 0;
            }
        }
        
        .hero3 .support-box .heading3-w {
            text-align: start;
            padding-left: 10px;
        }
        
        .hero3 .support-box .heading3-w h4 a {
            display: inline-block;
            margin-left: -3px;
            padding-bottom: 12px;
        }
        
        .hero3 .support-box .icon {
            margin-right: 20px;
        }
        
        .hero3 .support-box .icon a {
            display: inline-block;
            height: 100px;
            width: 100px;
            text-align: center;
            line-height: 100px;
            border-radius: 50%;
            font-size: 32px;
            background-color: var(--ztc-bg-color-w);
            color: var(--ztc-bg-main-bg-3);
            transform: rotate(-45deg);
        }
        
        .hero4 {
            position: relative;
            min-height: 1000px;
            background-color: #F9F8FA;
            display: flex;
            align-items: center;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero4 {
                display: block;
            }
        }
        
        @media (max-width: 767px) {
            .hero4 {
                display: block;
            }
        }
        
        .hero4::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 50%;
            background-image: url(../img/hero/hero4-main-image.png);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero4::after {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .hero4::after {
                display: none;
            }
        }
        
        .hero4::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 50%;
            background-image: url(../img/bg/hero4-main-shape.png);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center center;
            z-index: 1;
        }
        
        .hero4 .main-heading {
            position: relative;
            z-index: 9;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero4 .main-heading {
                margin-top: 140px;
            }
        }
        
        @media (max-width: 767px) {
            .hero4 .main-heading {
                margin-top: 140px;
            }
        }
        
        .hero4 .main-heading span.span {
            display: inline-block;
            color: var(--ztc-bg-main-bg-2);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            position: relative;
            padding-left: 12px;
            margin-bottom: 16px;
        }
        
        .hero4 .main-heading span.span::after {
            content: "";
            position: absolute;
            height: 6px;
            width: 6px;
            left: 0;
            top: 4px;
            background-color: var(--ztc-bg-main-bg-2);
            border-radius: 50%;
        }
        
        .hero4 .main-heading h1 {
            font-size: var(--f-fs-font-fs64);
            line-height: var(--f-fs-font-fs74);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero4 .main-heading h1 {
                font-size: var(--f-fs-font-fs40);
                line-height: var(--f-fs-font-fs48);
            }
        }
        
        @media (max-width: 767px) {
            .hero4 .main-heading h1 {
                font-size: var(--f-fs-font-fs40);
                line-height: var(--f-fs-font-fs48);
            }
        }
        
        .hero4 .main-heading p {
            padding-top: 16px;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
        }
        
        .hero4 .main-heading .slider-area {
            margin-top: 150px;
            margin-right: 60px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero4 .main-heading .slider-area {
                margin-top: 220px;
            }
        }
        
        @media (max-width: 767px) {
            .hero4 .main-heading .slider-area {
                margin-top: 240px;
            }
        }
        
        .hero4 .main-heading .slider-area h3 {
            font-size: var(--f-fs-font-fs24);
            line-height: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            margin-bottom: 30px;
        }
        
        .hero4 .main-heading .slider-area .logo-slider {
            margin-right: 40px;
        }
        
        .hero4 .main-heading .slider-area .logo-slider .single-slider {
            width: 100px;
        }
        
        .hero4 .main-heading .image-shape {
            position: absolute;
            right: -180px;
            bottom: 100px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero4 .main-heading .image-shape {
                right: auto;
                left: 0;
                bottom: 100px;
            }
        }
        
        @media (max-width: 767px) {
            .hero4 .main-heading .image-shape {
                right: auto;
                left: 0;
                bottom: 140px;
            }
        }
        
        .hero4 .main-image {
            display: none;
            margin-top: 30px;
            margin-bottom: 60px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero4 .main-image {
                display: block;
            }
        }
        
        @media (max-width: 767px) {
            .hero4 .main-image {
                display: block;
            }
        }
        
        .common-hero {
            min-height: 280px;
            display: flex;
            padding-top: 90px;
            align-items: center;
            position: relative;
            z-index: -2;
            overflow: hidden;
            background: #E7EAF3;
        }
        
        .common-hero .main-heading span.span {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-main-bg-1);
            margin-bottom: 16px;
        }
        
        .common-hero .main-heading span.span img {
            margin-top: -3px;
            margin-right: 2px;
        }
        
        .common-hero .main-heading span.span span.arrow {
            display: inline-block;
            padding: 0px 3px;
        }
        
        .common-hero .main-heading span.span a {
            color: var(--ztc-text-text-2);
        }
        
        .common-hero .main-heading h1 {
              font-size: 26px;
    line-height: 40px!important;
            line-height: var(--f-fs-font-fs74);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-2);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .common-hero .main-heading h1 {
                font-size: var(--f-fs-font-fs22);
                line-height: var(--f-fs-font-fs28) !important;
            }
        }
        
        @media (max-width: 767px) {
            .common-hero .main-heading h1 {
                font-size: var(--f-fs-font-fs18);
                line-height: var(--f-fs-font-fs24) !important;
            }
        }
        
        .common-hero::after {
            position: absolute;
            content: "";
            top: 0px;
            left: 0;
            height: 100%;
            width: 100%;
            background-image: url(../img/hero/breadcrumb.jpg);
            z-index: -1;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .common-hero::after {
                background-size: cover;
                top: 0;
            }
        }
        
        @media (max-width: 767px) {
            .common-hero::after {
                background-size: cover;
                top: 0;
            }
        }
        
        .common-hero p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-2);
        }
        
        .common-hero .common-image {
            text-align: end;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .common-hero .common-image {
                text-align: start;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .common-hero .common-image {
                text-align: start;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .common-hero .circle-shapes {
                margin-top: 140px;
            }
        }
        
        .common-hero .circle-shapes .shape1 {
            position: absolute;
            bottom: 0;
            right: 60px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .common-hero .circle-shapes .shape1 {
                left: 0;
                top: 175px;
                right: auto;
                bottom: auto;
            }
        }
        
        .common-hero .circle-shapes .shape2 {
            position: absolute;
            bottom: 46px;
            right: 105px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .common-hero .circle-shapes .shape2 {
                left: 45px;
                top: 225px;
                right: auto;
                bottom: auto;
            }
        }
        
        .common-hero.error {
            padding-bottom: 100px;
        }
        
        .common-hero.error::after {
            position: absolute;
            content: "";
            top: 60px;
            left: 0;
            height: 100%;
            width: 100%;
            background-image: url(../img/bg/hero2-main-bg2.png) !important;
            z-index: -1;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: contain;
        }
        
        .common-hero.error p {
            color: var(--ztc-text-text-1);
        }
        
        .brand-single-box {
            display: inline-block;
            padding: 0px 20px;
        }
        
        @media (max-width: 767px) {
            .theme-title h2 {
                font-size: 36px !important;
                line-height: 46px !important;
            }
            .theme-title p {
                font-size: 16px;
            }
            .page-title h1 {
                font-size: 30px;
                line-height: 30px;
            }
            .header-top,
            .right-nav {
                display: none !important;
            }
            .admin-bar .sticky-header.fixed-header {
                top: 0;
            }
            .themeht-tab.elementor-widget-tabs .elementor-tabs-wrapper {
                display: none;
            }
            .themeht-tab.elementor-widget-tabs .elementor-tab-title.elementor-tab-mobile-title {
                width: 100%;
            }
            .counter span {
                font-size: 40px;
            }
            blockquote {
                padding: 140px 20px 20px 20px !important;
            }
            blockquote:after {
                width: 100%;
                height: 100px;
            }
            #header-wrap .navbar-brand.logo,
            .sticky-header .navbar-brand.logo {
                margin-top: 0;
                box-shadow: none;
                padding: 15px 0;
            }
            .comment-navigation .nav-links,
            .posts-navigation .nav-links,
            .post-navigation .nav-links {
                display: block;
            }
            .comment-navigation .nav-previous,
            .posts-navigation .nav-previous,
            .post-navigation .nav-previous {
                padding-right: 0;
            }
            .comment-navigation .nav-next,
            .posts-navigation .nav-next,
            .post-navigation .nav-next {
                padding-left: 0;
                margin-top: 30px;
            }
            .elementor-widget-contact-btn h2 {
                font-size: 50px;
                line-height: 110px;
            }
            .elementor-widget-contact-btn .round-text {
                width: 130px;
                height: 130px;
            }
            .testimonial.style-1 {
                display: block;
                margin: 0;
            }
            .testimonial.style-1 .testimonial-img {
                width: 100%;
            }
            .testimonial.style-1 .testimonial-content {
                padding-left: 0;
                border-left: none;
                margin-left: 0;
                margin-top: 30px;
            }
            .testimonial-content p {
                font-size: 20px;
                line-height: 32px;
            }
            .service-list {
                padding-left: 0;
            }
            .service-item.style-1 {
                position: relative;
            }
            .service-list .service-item.style-1 .service-image {
                left: auto;
                right: 0;
                z-index: 9;
                width: 170px;
                top: 0;
            }
            .service-list .service-item.style-1.active .service-image {
                top: 0;
            }
            .service-item.style-1 .rounded-button {
                position: relative;
                right: inherit;
                top: inherit;
                margin-top: 30px;
            }
            .marquee-text {
                font-size: 60px;
                line-height: 67px;
                animation: marquee 10s linear infinite;
            }
            .round-text {
                width: 130px;
                height: 130px;
            }
            .text-btn-icon {
                font-size: 40px;
            }
            .price-table {
                display: block;
            }
            .price-value h2 {
                font-size: 60px;
            }
            .price-list {
                margin-top: 30px;
            }
            .portfolio-list {
                padding-left: 0;
            }
            .portfolio-item.style-2 {
                position: relative;
            }
            .portfolio-list .portfolio-item.style-2 .portfolio-image {
                left: auto;
                right: 0;
                z-index: 9;
                width: 170px;
                top: 0;
                padding-right: 0;
                padding-bottom: 0;
            }
            .portfolio-list .portfolio-item.style-2.active .portfolio-image {
                top: 0;
            }
            .portfolio-item.style-2.active .portfolio-image:after {
                height: 100px;
                width: 100px;
                right: 40px;
                bottom: -40px;
            }
            .portfolio-list.portfolio-six .portfolio-desc h4 {
                font-size: 30px;
            }
            .award-items {
                display: block;
            }
            .award-title {
                width: 100%;
            }
            .slider-img:after {
                height: 300px;
                width: 300px;
                bottom: -150px;
            }
        }
        
        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translatex(-100%);
            }
        }
        
        @keyframes marquee-2 {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translatex(0);
            }
        }
        
        .marquee-wrap {
            background-image: linear-gradient(135deg, var(--theme-primary-color), var(--theme-secondary-color));
            background-color: var(--ztc-bg-main-bg-4);
            width: 100%;
            position: relative;
            transform: scale(1.1) rotate(1deg);
            margin-top: 0px;
        }
        
        .marquee-wrap.marquee-wrap-inner {
            background-image: linear-gradient(135deg, var(--theme-primary-color), var(--theme-secondary-color));
            background-color: var(--ztc-bg-main-bg-1);
            width: 100%;
            position: relative;
            transform: scale(1) rotate(0deg);
            margin-top: 0px;
        }
        
        .marquee-wrap.marquee-wrap-inner .brand-single-box {
            filter: brightness(0) invert(1);
            transform: scale(1.1) translateY(-2px);
        }
        
        .marquee-wrap,
        .marquee-title {
            overflow: hidden;
            display: block;
            height: 70px;
        }
        
        .marquee-text {
            animation: marquee 50s linear infinite;
            margin-top: -5px;
            position: relative;
            font-size: 100px;
            width: 100%;
            white-space: nowrap;
            line-height: 67px;
            font-weight: 600;
            font-family: var(--theme-typography-secondory-font-family);
            color: var(--theme-white-color);
        }
        
        .marquee-text i {
            font-size: 40px;
            display: inline-block;
            vertical-align: middle;
            line-height: 1;
            margin: 0 30px;
            color: var(--theme-text-dark-color);
        }
        
        .marquee-title .marquee-text {
            -webkit-text-stroke: 1px var(--theme-white-color);
            -webkit-text-fill-color: transparent;
            color: transparent;
            font-weight: 600;
        }
        
        .hero5-benar .marquee-wrap.hero5-marquee {
            background-image: linear-gradient(135deg, var(--theme-primary-color), var(--theme-secondary-color));
            background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
            width: 100%;
            position: relative;
            transform: scale(1) rotate(4deg);
            margin-top: 0px;
        }
        
        .hero5-benar .marquee-wrap.hero5-marquee .brand-single-box {
            filter: brightness(0) invert(1);
            transform: scale(1.1) translateY(-2px);
        }
        
        .hero5-benar .marquee-wrap,
        .hero5-benar .marquee-title {
            overflow: hidden;
            display: block;
            height: 70px;
        }
        
        .hero5-benar .marquee-text {
            animation: marquee 50s linear infinite;
            margin-top: -5px;
            position: relative;
            font-size: 100px;
            width: 100%;
            white-space: nowrap;
            line-height: 67px;
            font-weight: 600;
            font-family: var(--theme-typography-secondory-font-family);
            color: var(--theme-white-color);
        }
        
        .hero5-benar .marquee-text i {
            font-size: 40px;
            display: inline-block;
            vertical-align: middle;
            line-height: 1;
            margin: 0 30px;
            color: var(--theme-text-dark-color);
        }
        
        .hero5-benar .marquee-title .marquee-text {
            -webkit-text-stroke: 1px var(--theme-white-color);
            -webkit-text-fill-color: transparent;
            color: transparent;
            font-weight: 600;
        }
        
        .hero5-benar2 .marquee-wrap.hero5-marquee {
            background-image: linear-gradient(135deg, var(--theme-primary-color), var(--theme-secondary-color));
            background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
            width: 100%;
            position: relative;
            transform: scale(1) rotate(-4deg) translateY(-70px);
            margin-top: 0px;
        }
        
        .hero5-benar2 .marquee-wrap.hero5-marquee .brand-single-box {
            filter: brightness(0) invert(1);
            transform: scale(1.1) translateY(-2px);
        }
        
        .hero5-benar2 .marquee-wrap,
        .hero5-benar2 .marquee-title {
            overflow: hidden;
            display: block;
            height: 70px;
        }
        
        .hero5-benar2 .marquee-text {
            animation: marquee 50s linear infinite;
            margin-top: -5px;
            position: relative;
            font-size: 100px;
            width: 100%;
            white-space: nowrap;
            line-height: 67px;
            font-weight: 600;
            font-family: var(--theme-typography-secondory-font-family);
            color: var(--theme-white-color);
        }
        
        .hero5-benar2 .marquee-text i {
            font-size: 40px;
            display: inline-block;
            vertical-align: middle;
            line-height: 1;
            margin: 0 30px;
            color: var(--theme-text-dark-color);
        }
        
        .hero5-benar2 .marquee-title .marquee-text {
            -webkit-text-stroke: 1px var(--theme-white-color);
            -webkit-text-fill-color: transparent;
            color: transparent;
            font-weight: 600;
        }
        
        .hero5 {
            min-height: 820px;
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero5 .main-heading {
            padding-top: 80px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero5 .main-heading {
                padding-top: 160px;
            }
        }
        
        @media (max-width: 767px) {
            .hero5 .main-heading {
                padding-top: 160px;
            }
        }
        
        .hero5 .main-heading span.span {
            display: inline-block;
            color: #FFF;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 12px;
            border-radius: 4px;
            margin-bottom: 16px;
        }
        
        .hero5 .main-heading h1 {
            color: #FFF;
            font-size: 56px;
            font-style: normal;
            font-weight: 600;
            line-height: 66px;
            /* 117.857% */
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero5 .main-heading h1 {
                font-size: 40px;
                line-height: 48px;
            }
        }
        
        @media (max-width: 767px) {
            .hero5 .main-heading h1 {
                font-size: 40px;
                line-height: 48px;
            }
        }
        
        .hero5 .main-heading p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 26px;
            /* 144.444% */
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero5 .main-heading p br {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .hero5 .main-heading p br {
                display: none;
            }
        }
        
        .hero5 .main-heading .buttons a:nth-child(2) {
            margin-left: 16px;
        }
        
        @media (max-width: 767px) {
            .hero5 .main-heading .buttons a:nth-child(2) {
                margin-left: 0;
                margin-right: 16px;
                margin-top: 16px;
            }
        }
        
        .hero5 .images-all {
            height: 470px;
            position: relative;
            text-align: end;
            margin-top: 100px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero5 .images-all {
                margin-top: 60px;
                margin-bottom: 80px;
            }
        }
        
        @media (max-width: 767px) {
            .hero5 .images-all {
                margin-top: 60px;
                margin-bottom: 80px;
                height: 350px;
            }
        }
        
        .hero5 .images-all .image {
            position: relative;
            z-index: 2;
        }
        
        .hero5 .images-all .shape {
            position: absolute;
            right: -40px;
            top: -40px;
        }
        
        .hero5 .bottom-shape {
            position: absolute;
            bottom: -90px;
            left: 50%;
            margin-left: -60px;
        }
        
        .tp-slider-wrapper {
            min-height: 800px;
            position: relative;
        }
        
        @media (max-width: 767px) {
            .tp-slider-wrapper {
                min-height: 900px;
            }
        }
        
        .tp-slider-wrapper .tp-slider-arrow-box {
            position: absolute;
            top: 50%;
            right: 100px;
            z-index: 55;
            transform: translateY(-50%);
            margin-top: 0px;
        }
        
        .tp-slider-wrapper .review-area {
            display: flex;
            margin-top: 12px;
        }
        
        .tp-slider-wrapper .review-area .review-text {
            padding-left: 24px;
        }
        
        .tp-slider-wrapper .review-area .review-text p {
            color: var(--Home-Page-3-white-colors, #FFF);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            /* 100% */
            padding-bottom: 6px;
        }
        
        .tp-slider-wrapper .review-area .review-text span {
            display: inline-block;
            color: var(--Home-Page-3-white-colors, #FFF);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
        }
        
        .tp-slider-wrapper .review-area .review-stars {
            padding-left: 60px;
            position: relative;
        }
        
        .tp-slider-wrapper .review-area .review-stars p {
            color: var(--Home-Page-3-white-colors, #FFF);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            /* 100% */
            margin-bottom: 6px;
        }
        
        .tp-slider-wrapper .review-area .review-stars ul li {
            color: #fff;
            display: inline-block;
            font-size: 12px;
        }
        
        .tp-slider-wrapper .review-area .review-stars::after {
            content: "";
            position: absolute;
            top: 5px;
            left: 30px;
            height: 40px;
            width: 2px;
            background-color: #fff;
        }
        
        @media only screen and (min-width: 1200px) and (max-width: 1399px) {
            .tp-slider-arrow-box {
                right: 100px;
            }
        }
        
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
            .tp-slider-arrow-box {
                right: 100px;
            }
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px),
        (max-width: 767px) {
            .tp-slider-arrow-box {
                display: none;
            }
        }
        
        .tp-slider-arrow-box button {
            height: 60px;
            width: 60px;
            display: inline-block;
            border-radius: 50%;
            font-size: 20px;
            display: block;
            margin: 20px 0;
            color: #FA6444;
            background-color: #FFFFFF;
            transition: 0.3s;
            border: none;
        }
        
        .tp-slider-arrow-box button:hover {
            background: #FA6444;
            transition: all 0.4s;
            color: #fff;
        }
        
        .tp-slider-bg {
            height: 800px;
            position: relative;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        @media (max-width: 767px) {
            .tp-slider-bg {
                min-height: 900px;
            }
        }
        
        .tp-slider-bg .shape1 {
            position: absolute;
            left: -100px;
            top: 0;
            opacity: 0;
            transition: all 0.4s;
            transform: scale(2.5);
        }
        
        .tp-slider-bg .shape2 {
            position: absolute;
            left: 500px;
            bottom: 0;
            opacity: 0;
            transition: all 0.4s;
            transform: scale(2.6);
        }
        
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
            .tp-slider-bg {
                height: 650px;
            }
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .tp-slider-bg {
                height: 600px;
            }
        }
        
        @media (max-width: 767px) {
            .tp-slider-bg {
                height: 590px;
            }
        }
        
        .tp-slider-bg::after {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            content: "";
        }
        
        .tp-slider-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: left center;
            transform: scale(1);
            transition: transform 7000ms ease, opacity 1500ms ease-in;
        }
        
        .tp-slider-subtitle {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
        }
        
        .tp-slider-title {
            font-size: 100px;
            font-weight: 400;
            color: #fff;
            margin-bottom: 30px;
        }
        
        @media (max-width: 767px) {
            .tp-slider-title {
                font-size: 45px;
            }
            .tp-slider-title br {
                display: none;
            }
        }
        
        @media only screen and (min-width: 576px) and (max-width: 767px) {
            .tp-slider-title {
                font-size: 54px;
            }
            .tp-slider-title br {
                display: none;
            }
        }
        
        @media only screen and (min-width: 440px) and (max-width: 576px) {
            .tp-slider-title {
                font-size: 50px;
            }
        }
        
        .tp-slider-title-box {
            opacity: 0;
            z-index: 3;
            position: relative;
            transform: translateY(-150px);
            padding-top: 20px;
        }
        
        .tp-slider-title-box p {
            color: var(--Home-Page-3-white-colors, rgba(255, 255, 255, 0.7960784314));
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            /* 150% */
        }
        
        .tp-slider-title-box h1 {
            color: var(--Home-Page-3-white-colors, #FFF);
            font-size: 60px;
            font-style: normal;
            font-weight: 600;
            line-height: 68px;
            /* 113.333% */
        }
        
        .tp-slider-title-box h1 span.color {
            color: #FA6444;
            display: inline-block;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .tp-slider-title-box h1 {
                font-size: 40px;
                line-height: 48px;
            }
            .tp-slider-title-box h1 br {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .tp-slider-title-box h1 {
                font-size: 40px;
                line-height: 48px;
            }
            .tp-slider-title-box h1 br {
                display: none;
            }
        }
        
        .tp-slider-title-box span.span {
            color: var(--Home-Page-3-white-colors, #FFF);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            margin-bottom: 16px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.2);
            padding: 10px 14px;
            display: inline-block;
        }
        
        @media only screen and (min-width: 992px) and (max-width: 1199px),
        only screen and (min-width: 768px) and (max-width: 991px),
        (max-width: 767px) {
            .tp-slider-title-box p {
                display: none;
            }
        }
        
        .tp-slider-video-box {
            opacity: 0;
            z-index: 3;
            position: relative;
            transform: translateY(150px);
        }
        
        @media (max-width: 767px) {
            .tp-slider-video-box {
                flex-wrap: wrap;
            }
        }
        
        @media only screen and (min-width: 576px) and (max-width: 767px) {
            .tp-slider-video-box {
                flex-wrap: nowrap;
            }
        }
        
        .tp-slider-video a {
            height: 60px;
            width: 60px;
            line-height: 63px;
            text-align: center;
            background-color: var(--tp-common-white);
            color: var(--tp-common-black);
            display: inline-block;
            font-size: 18px;
            border-radius: 50%;
            margin-right: 20px;
        }
        
        .tp-slider-video a i {
            margin-left: 5px;
            display: inline-block;
        }
        
        .tp-slider-video span {
            font-size: 16px;
            font-weight: 400;
            color: var(--tp-common-white);
        }
        
        .tp-slider-btn {
            line-height: 0;
        }
        
        @media (max-width: 767px) {
            .tp-slider-btn {
                margin-bottom: 30px;
            }
        }
        
        @media only screen and (min-width: 576px) and (max-width: 767px) {
            .tp-slider-btn {
                margin-bottom: 0px;
            }
        }
        
        @media only screen and (min-width: 440px) and (max-width: 575px) {
            .tp-slider-btn {
                margin-bottom: 30px;
                margin-right: 50px;
            }
        }
        
        .tp-slider-meta {
            position: absolute;
            bottom: 50px;
            right: 180px;
            z-index: 5;
        }
        
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
            .tp-slider-meta {
                right: 60px;
            }
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .tp-slider-meta {
                right: 50px;
            }
        }
        
        @media (max-width: 767px) {
            .tp-slider-meta {
                display: none;
            }
        }
        
        .tp-slider-meta-icon {
            line-height: 0;
            margin-right: 20px;
            animation: circle-animations 5s forwards infinite alternate;
        }
        
        .tp-slider-meta-icon i {
            font-size: 58px;
            color: var(--tp-theme-1);
        }
        
        .tp-slider-meta-content span {
            font-size: 16px;
            font-weight: 400;
            color: var(--tp-common-white);
        }
        
        .tp-slider-shape-1 {
            position: absolute;
            top: 0;
            right: 0;
            transform: translateX(300px);
            opacity: 0;
        }
        
        @media only screen and (min-width: 1200px) and (max-width: 1399px) {
            .tp-slider-shape-1 {
                right: -30%;
            }
        }
        
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
            .tp-slider-shape-1 {
                right: -50%;
            }
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px),
        (max-width: 767px) {
            .tp-slider-shape-1 {
                display: none;
            }
        }
        
        .tp-slider-shape-5 img {
            opacity: 0.3;
        }
        
        .tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-img {
            transform: scale(1.1);
        }
        
        .tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-shape-1 {
            opacity: 1;
            transform: translateX(0px);
            transition: all 3000ms ease;
        }
        
        .tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-shape-2 {
            opacity: 1;
            transform: translatey(0px);
            transition: all 4000ms ease;
        }
        
        .tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-shape-3 {
            opacity: 0.4;
            transform: translatey(0px);
            transition: all 5000ms ease;
        }
        
        .tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-title-box {
            opacity: 1;
            transform: translatey(0px);
            transition: all 2500ms ease;
        }
        
        .tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-video-box {
            opacity: 1;
            transform: translatey(0px);
            transition: all 2500ms ease;
        }
        
        .tp-slider-2-bg {
            height: 840px;
            position: relative;
        }
        
        @media only screen and (min-width: 1200px) and (max-width: 1399px),
        only screen and (min-width: 992px) and (max-width: 1199px),
        only screen and (min-width: 768px) and (max-width: 991px) {
            .tp-slider-2-bg {
                height: 750px;
            }
        }
        
        @media (max-width: 767px) {
            .tp-slider-2-bg {
                height: 620px;
            }
        }
        
        .tp-slider-2-bg::after {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            content: "";
            opacity: 0.802;
        }
        
        .tp-slider-2-img {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: left center;
            transform: scale(1);
            transition: transform 9000ms ease, opacity 2000ms ease-in;
        }
        
        .tp-slider-2-icon {
            transform: translateY(-200px);
            opacity: 0;
        }
        
        .tp-slider-2-icon img {
            margin-bottom: 25px;
        }
        
        .tp-slider-2-btn {
            transform: translateY(200px);
            opacity: 0;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .tp-slider-2-title {
                font-size: 80px;
            }
        }
        
        @media (max-width: 767px) {
            .tp-slider-2-title {
                font-size: 45px;
            }
        }
        
        @media only screen and (min-width: 576px) and (max-width: 767px) {
            .tp-slider-2-title {
                font-size: 65px;
            }
        }
        
        .tp-slider-2-shape-1 {
            position: absolute;
            top: 0;
            left: 0;
            transform: translateX(-500px);
            opacity: 0;
        }
        
        .tp-slider-2-wrapper button {
            font-size: 26px;
            color: var(--tp-common-white);
            z-index: 5;
        }
        
        .tp-slider-2-wrapper button:hover {
            color: var(--tp-theme-1);
        }
        
        .tp-slider-2-wrapper .slider-2-prev {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 7.5%;
        }
        
        .tp-slider-2-wrapper .slider-2-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 7.5%;
        }
        
        .tp-slider-2-wrapper .swiper-slide.swiper-slide-active .tp-slider-2-img {
            transform: scale(1.15);
        }
        
        .tp-slider-2-wrapper .swiper-slide.swiper-slide-active .tp-slider-2-shape-1 {
            position: absolute;
            top: 0;
            left: 23%;
            z-index: 5;
            opacity: 1;
            transform: translateX(0px);
            transition: all 3500ms ease;
        }
        
        .tp-slider-2-wrapper .swiper-slide.swiper-slide-active .tp-slider-2-icon {
            opacity: 1;
            transform: translateY(0px);
            transition: all 4000ms ease;
        }
        
        .tp-slider-2-wrapper .swiper-slide.swiper-slide-active .tp-slider-2-btn {
            opacity: 1;
            transform: translateY(0px);
            transition: all 3000ms ease;
            opacity: 1;
        }
        
        .tp-slider-content-wrap {
            padding-top: 80px;
        }
        
        .tp-slider-content-wrap .review-area {
            position: relative;
            display: flex;
            align-items: center;
            padding-top: 32px;
            transform: translateY(100px);
            transition: all 3000ms ease;
            opacity: 0;
        }
        
        .tp-slider-content-wrap .review-area .heading {
            padding-left: 20px;
            display: flex;
            align-items: center;
        }
        
        .tp-slider-content-wrap .review-area .heading h4 {
            color: var(--White-colors, #FFF);
            font-size: 44px;
            font-style: normal;
            font-weight: 600;
            line-height: 44px;
            /* 100% */
        }
        
        .tp-slider-content-wrap .review-area .heading .pera {
            padding-left: 10px;
        }
        
        .tp-slider-content-wrap .review-area .heading .pera p {
            color: var(--White-colors, #FFF);
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 18px;
            /* 100% */
        }
        
        .tp-slider-content-wrap .review-area .heading .pera ul {
            padding-top: 5px;
        }
        
        .tp-slider-content-wrap .review-area .heading .pera ul li {
            color: #fff;
            display: inline;
            padding-top: 12px;
            font-size: 12px;
        }
        
        .tp-slider-wrapper .swiper-slide.swiper-slide-active .review-area {
            position: relative;
            display: flex;
            align-items: center;
            padding-top: 24px;
            transform: translateY(0);
            transition: all 3000ms ease;
            opacity: 1;
        }
        
        .tp-slider-wrapper .swiper-slide.swiper-slide-active .shape1 {
            opacity: 1;
            transition: all 0.4s;
            transform: scale(1);
        }
        
        .tp-slider-wrapper .swiper-slide.swiper-slide-active .shape2 {
            opacity: 1;
            transition: all 0.4s;
            transform: scale(1);
        }
        /*
::::::::::::::::::::::::::
 HERO AREA CSS
::::::::::::::::::::::::::
*/
        
        .comon-body .marquee-wrap.marquee-wrap-inner {
            background: #A7EC4A;
        }
        
        .comon-body .marquee-wrap.marquee-wrap-inner .brand-single-box {
            filter: brightness(0) !important;
        }
        
        .comon-body .marquee-wrap.marquee-wrap-inner .brand-single-box img {
            filter: brightness(0) !important;
        }
        
        .comon-body .common-hero {
            min-height: 460px;
            display: flex;
            padding-top: 90px;
            align-items: center;
            position: relative;
            z-index: -2;
            overflow: hidden;
            background: none;
        }
        
        .comon-body .common-hero .main-heading span.span {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-main-bg-4);
            margin-bottom: 16px;
        }
        
        .comon-body .common-hero .main-heading span.span img {
            margin-top: -3px;
            margin-right: 2px;
        }
        
        .comon-body .common-hero .main-heading span.span span.arrow {
            display: inline-block;
            padding: 0px 3px;
        }
        
        .comon-body .common-hero .main-heading span.span a {
            color: var(--ztc-bg-main-bg-4);
        }
        
        .comon-body .common-hero .main-heading h1 {
            font-size: var(--f-fs-font-fs64);
            line-height: var(--f-fs-font-fs74);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-2);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .comon-body .common-hero .main-heading h1 {
                font-size: var(--f-fs-font-fs40);
                line-height: var(--f-fs-font-fs48);
            }
        }
        
        @media (max-width: 767px) {
            .comon-body .common-hero .main-heading h1 {
                font-size: var(--f-fs-font-fs40);
                line-height: var(--f-fs-font-fs48);
            }
        }
        
        .comon-body .common-hero::after {
            position: absolute;
            content: "";
            top: 0px;
            left: 0;
            height: 200%;
            width: 100%;
            background-image: url(../img/bg/hero2-main-bg2.png);
            z-index: -1;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            animation-name: shape-animaiton4;
            animation-duration: 92s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: ease-in-out;
        }
        
        .comon-body .common-hero p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-2);
        }
        
        .comon-body .common-hero .common-image {
            text-align: end;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .comon-body .common-hero .common-image {
                text-align: start;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .comon-body .common-hero .common-image {
                text-align: start;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .comon-body .common-hero .circle-shapes {
                margin-top: 140px;
            }
        }
        
        .comon-body .common-hero .circle-shapes .shape1 {
            position: absolute;
            bottom: 0;
            right: 60px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .comon-body .common-hero .circle-shapes .shape1 {
                left: 0;
                top: 175px;
                right: auto;
                bottom: auto;
            }
        }
        
        .comon-body .common-hero .circle-shapes .shape2 {
            position: absolute;
            bottom: 46px;
            right: 105px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .comon-body .common-hero .circle-shapes .shape2 {
                left: 45px;
                top: 225px;
                right: auto;
                bottom: auto;
            }
        }
        
        .comon-body .about-tabs .tab-header-all {
            background-color: var(--ztc-bg-bg-4);
            padding: 12px 24px;
            border-radius: 240px;
            margin-top: 60px;
        }
        
        .comon-body .about-tabs .tab-header-all li button {
            color: var(--Text-Color, #ffffff);
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 16px;
            /* 100% */
            padding: 16px 44px;
            border-radius: 144px;
            background-color: var(--ztc-bg-bg-5);
            margin: 12px 10px 12px 10px;
        }
        
        .comon-body .about-tabs .tab-header-all li button.active {
            background-color: var(--ztc-bg-main-bg-4);
            color: var(--ztc-text-text-1);
        }
        
        .comon-body .about-tabs .tab-content-box {
            background-color: var(--ztc-bg-bg-4);
            border-radius: 7px;
            padding: 55px 32px;
        }
        
        .comon-body .about-tabs .tab-content-box .heading2 p span.text {
            color: var(--ztc-bg-main-bg-4);
            font-weight: var(--f-fw-semibold);
        }
        
        .comon-body .about-solution .images img {
            width: 100%;
            border-radius: 7px;
        }
        
        .comon-body .about-solution .heading2 {
            padding-left: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .comon-body .about-solution .heading2 {
                padding-left: 0;
            }
        }
        
        @media (max-width: 767px) {
            .comon-body .about-solution .heading2 {
                padding-left: 0;
            }
        }
        
        .hero7 {
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
            min-height: 800px;
            display: flex;
            align-items: center;
        }
        
        .hero7 .main-heading {
            padding-top: 90px;
            padding-right: 80px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero7 .main-heading {
                padding-right: 0px;
                padding-top: 160px;
            }
        }
        
        @media (max-width: 767px) {
            .hero7 .main-heading {
                padding-right: 0px;
                padding-top: 160px;
            }
        }
        
        .hero7 .main-heading .span {
            display: inline-block;
            color: #FFF;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 16px;
            /* 88.889% */
            border-radius: 111px;
            background-color: rgba(255, 255, 255, 0.0901960784);
            padding: 8px 12px;
            margin-bottom: 16px;
        }
        
        .hero7 .main-heading h1 {
            color: #FFF;
            font-size: 60px;
            font-style: normal;
            font-weight: 600;
            line-height: 68px;
            /* 113.333% */
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero7 .main-heading h1 {
                font-size: 40px;
                line-height: 48px;
            }
        }
        
        @media (max-width: 767px) {
            .hero7 .main-heading h1 {
                font-size: 40px;
                line-height: 48px;
            }
        }
        
        .hero7 .main-heading p {
            color: rgba(255, 255, 255, 0.9176470588);
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: 30px;
            /* 150% */
        }
        
        .hero7 .main-heading .buttons a:nth-child(1) {
            margin-right: 12px;
        }
        
        .hero7 .images-all {
            position: relative;
            height: 550px;
            text-align: end;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero7 .images-all {
                margin-bottom: 70px;
            }
        }
        
        @media (max-width: 767px) {
            .hero7 .images-all {
                height: 500px;
                margin-bottom: 90px;
            }
        }
        
        .hero7 .images-all .shape1 {
            position: absolute;
            bottom: -70px;
            right: 160px;
        }
        
        @media (max-width: 767px) {
            .hero7 .images-all .shape1 {
                bottom: -60px;
            }
        }
        
        .hero7 .images-all .shape2 {
            position: absolute;
            right: -70px;
            bottom: 70px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero7 .images-all .shape2 {
                right: 0;
            }
        }
        
        @media (max-width: 767px) {
            .hero7 .images-all .shape2 {
                right: 0;
                bottom: 160px;
            }
        }
        
        .hero7 .images-all .shape3 {
            position: absolute;
            top: 90px;
            right: -70px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero7 .images-all .shape3 {
                right: 0;
            }
        }
        
        @media (max-width: 767px) {
            .hero7 .images-all .shape3 {
                right: 0;
            }
        }
        
        .hero7 .images-all .shape4 {
            position: absolute;
            top: 120px;
            left: 70px;
        }
        
        @media (max-width: 767px) {
            .hero7 .images-all .shape4 {
                top: 190px;
            }
        }
        
        .hero8 {
            display: flex;
            align-items: center;
            min-height: 580px;
            background-color: #F5F5FD;
            position: relative;
            margin-top: 90px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero8 {
                min-height: 900px;
                display: block;
            }
        }
        
        @media (max-width: 767px) {
            .hero8 {
                min-height: 900px;
                display: block;
            }
        }
        
        .hero8 .hero8-img {
            position: absolute;
            right: 0;
            bottom: 0;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero8 .hero8-img {
                height: 300px;
            }
        }
        
        .hero8 .image1 {
            margin-top: 100px;
            margin-left: 160px;
            position: relative;
            z-index: 2;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero8 .main-heading {
                padding-top: 60px;
            }
        }
        
        @media (max-width: 767px) {
            .hero8 .main-heading {
                padding-top: 60px;
            }
        }
        
        .hero8 .main-heading span.span {
            display: inline-block;
            color: #4D32A5;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            border-radius: 4px;
            background: rgba(77, 50, 165, 0.05);
            padding: 8px 12px;
            margin-bottom: 16px;
        }
        
        .hero8 .main-heading h1 {
            color: var(--Home-Page-2-Text-Colors, #0B0103);
            font-size: 54px;
            font-style: normal;
            font-weight: 600;
            line-height: 66px;
            /* 122.222% */
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero8 .main-heading h1 {
                font-size: 40px;
                line-height: 48px;
            }
        }
        
        @media (max-width: 767px) {
            .hero8 .main-heading h1 {
                font-size: 40px;
                line-height: 48px;
            }
        }
        
        .hero8 .main-heading p {
            color: var(--Home-Page-2-paragraph, #5A5556);
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 26px;
            /* 144.444% */
        }
        
        .hero9 {
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            min-height: 780px;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero9 .main-image1 {
            margin-top: 80px;
            margin-left: -80px;
        }
        
        .hero9 .main-image2 {
            margin-top: 80px;
            margin-right: -80px;
        }
        
        .hero9 .main-heading {
            padding: 90px 30px 0px 30px;
        }
        
        .hero9 .main-heading span.span {
            display: inline-block;
            color: #FFF;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            text-transform: uppercase;
            border-radius: 111px;
            background: rgba(255, 255, 255, 0.082);
            padding: 9px 12px 6px 12px;
            margin-bottom: 16px;
        }
        
        .hero9 .main-heading span.span img {
            filter: brightness(0) invert(1);
            transform: translateY(-2px);
        }
        
        .hero9 .main-heading h1 {
            color: #FFF;
            font-size: 56px;
            font-style: normal;
            font-weight: 600;
            line-height: 64px;
            /* 114.286% */
        }
        
        .hero9 .buttons {
            display: flex;
            align-items: center;
            text-align: center;
            justify-content: center;
        }
        
        .hero9 .buttons .video-buttton9 {
            display: flex;
            align-items: center;
        }
        
        .hero9 .buttons .video-buttton9 .play-shape {
            position: absolute;
            top: 12px;
            left: 12px;
        }
        
        .hero9 .buttons .video-buttton9 p {
            color: var(--Main-Color, #A2EA61);
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            line-height: 18px;
            /* 100% */
            margin-left: -20px;
        }
        
        .hero9 .hero9-arrow {
            position: absolute;
            bottom: -90px;
            left: 50%;
            margin-left: -60px;
            z-index: 99;
        }
        
        .hero10 {
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
        }
        
        .hero10 .bg {
            min-height: 850px;
        }
        
        @media (max-width: 767px) {
            .hero10 .bg {
                min-height: 1050px;
            }
        }
        
        .hero10 .main-heading {
            padding-top: 270px;
        }
        
        @media (max-width: 767px) {
            .hero10 .main-heading {
                padding-top: 100px;
            }
        }
        
        .hero10 .main-heading span.span {
            display: inline-block;
            color: #FFF;
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 16px;
            /* 100% */
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 12px;
            margin-bottom: 16px;
        }
        
        .hero10 .main-heading h1 {
            color: #FFF;
            font-size: 60px;
            font-style: normal;
            font-weight: 700;
            line-height: 68px;
            /* 113.333% */
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .hero10 .main-heading h1 {
                font-size: 40px;
                line-height: 48px;
            }
        }
        
        @media (max-width: 767px) {
            .hero10 .main-heading h1 {
                font-size: 40px;
                line-height: 48px;
            }
        }
        
        .hero10 .main-heading p {
            color: #FFF;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 28px;
            /* 155.556% */
        }
        
        .hero10 .hero-box1 {
            position: absolute;
            bottom: 0;
            left: 0;
        }
        
        .hero10 .hero-box1 .video-paly10 {
            position: absolute;
            bottom: 33px;
            left: 60px;
        }
        
        .hero10 .hero-box2 {
            display: flex;
            align-items: start;
            background-color: #24908D;
            padding: 23px 24px;
            position: absolute;
            bottom: 0;
            left: 270px;
        }
        
        @media (max-width: 767px) {
            .hero10 .hero-box2 {
                display: flex;
                align-items: start;
                background-color: #24908D;
                padding: 23px 24px;
                position: absolute;
                bottom: 169px;
                left: 0;
            }
        }
        
        .hero10 .hero-box2 .icon {
            height: 50px;
            line-height: 50px;
            width: 50px;
            text-align: center;
            background-color: rgba(255, 255, 255, 0.2117647059);
            border-radius: 50%;
        }
        
        .hero10 .hero-box2 .heading {
            padding-left: 20px;
        }
        
        .hero10 .hero-box2 .heading h3 {
            color: #FFF;
            font-size: 44px;
            font-style: normal;
            font-weight: 700;
            line-height: 44px;
            /* 100% */
        }
        
        .hero10 .hero-box2 .heading h6 {
            color: rgba(255, 255, 255, 0.9);
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 20px;
            /* 100% */
            padding-top: 16px;
        }
        
        .hero10 .hero-box2 .heading p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 16px;
            /* 100% */
            padding-top: 10px;
        }
        
        .hero10 .hero-box3 {
            display: flex;
            align-items: start;
            background-color: #fff;
            padding: 23px 24px;
            position: absolute;
            bottom: 0;
            left: 548px;
            border-radius: 0px 4px 0px 0px;
        }
        
        @media (max-width: 767px) {
            .hero10 .hero-box3 {
                display: flex;
                align-items: start;
                background-color: #fff;
                padding: 23px 24px;
                position: absolute;
                bottom: 345px;
                left: 0;
                border-radius: 0px 4px 0px 0px;
            }
        }
        
        .hero10 .hero-box3 .icon {
            height: 50px;
            line-height: 50px;
            width: 50px;
            text-align: center;
            background-color: rgba(36, 144, 140, 0.1294117647);
            border-radius: 50%;
        }
        
        .hero10 .hero-box3 .heading {
            padding-left: 20px;
        }
        
        .hero10 .hero-box3 .heading h3 {
            color: #011313;
            font-size: 44px;
            font-style: normal;
            font-weight: 700;
            line-height: 44px;
            /* 100% */
        }
        
        .hero10 .hero-box3 .heading h6 {
            color: rgba(1, 19, 19, 0.6588235294);
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 20px;
            /* 100% */
            padding-top: 16px;
        }
        
        .hero10 .hero-box3 .heading p {
            color: rgba(1, 19, 19, 0.6588235294);
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 16px;
            /* 100% */
            padding-top: 10px;
        }
        /*===================
 PRRELOADER AREA CSS 
 ========================
*/
        /* Preloader */
        
        .ctn-preloader {
            align-items: center;
            cursor: none;
            display: flex;
            height: 100%;
            justify-content: center;
            position: fixed;
            left: 0;
            top: 0;
            width: 100%;
            z-index: 9009999;
        }
        
        .ctn-preloader .animation-preloader {
            position: absolute;
            z-index: 100;
        }
        /* Spinner cargando */
        
        .ctn-preloader .animation-preloader .spinner {
            animation: spinner 1s infinite linear;
            border-radius: 50%;
            border: 3px solid rgba(255, 255, 255, 0.2);
            border-top-color: rgba(255, 255, 255, 0.8431372549);
            /* No se identa por orden alfabetico para que no lo sobre-escriba */
            height: 9em;
            margin: 0 auto 3.5em auto;
            width: 9em;
        }
        /* Texto cargando */
        
        .ctn-preloader .animation-preloader .txt-loading {
            font: 4em "Figtree", sans-serif;
            font-weight: 500;
            text-align: center;
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
        }
        
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
            animation: letters-loading 4s infinite;
            color: rgba(255, 255, 255, 0.7882352941);
            content: attr(data-text-preloader);
            left: 0;
            opacity: 0;
            position: absolute;
            top: 0;
            transform: rotateY(-90deg);
        }
        
        .ctn-preloader .animation-preloader .txt-loading .letters-loading {
            position: relative;
        }
        
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
            animation-delay: 0.2s;
        }
        
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
            animation-delay: 0.4s;
        }
        
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
            animation-delay: 0.6s;
        }
        
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
            animation-delay: 0.8s;
        }
        
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
            animation-delay: 1s;
        }
        
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
            animation-delay: 1.2s;
        }
        
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
            animation-delay: 1.4s;
        }
        
        .ctn-preloader .animation-preloader .txt-loading .letters-loading {
            color: rgba(255, 255, 255, 0.103);
        }
        
        .ctn-preloader.ctn-preloader1 .loader-section {
            background-color: transparent;
            height: 100%;
            position: fixed;
            top: 0;
            width: calc(50% + 1px);
        }
        
        .ctn-preloader.ctn-preloader1 .loader-section-left {
            background: linear-gradient(90deg, rgb(25, 26, 31) 0%, rgb(24, 1, 73) 64%);
        }
        
        .ctn-preloader.ctn-preloader1 .loader-section-right {
            background: linear-gradient(90deg, rgb(24, 1, 73) 40%, rgb(25, 26, 31) 100%);
        }
        
        .ctn-preloader.ctn-preloader2 .loader-section {
            background-color: transparent;
            height: 100%;
            position: fixed;
            top: 0;
            width: calc(50% + 1px);
            background-color: #0D4F51;
        }
        
        .ctn-preloader.ctn-preloader3 .loader-section {
            background-color: transparent;
            height: 100%;
            position: fixed;
            top: 0;
            width: calc(50% + 1px);
            background-color: #dd2f43;
        }
        
        .ctn-preloader.ctn-preloader4 .loader-section {
            background-color: transparent;
            height: 100%;
            position: fixed;
            top: 0;
            width: calc(50% + 1px);
            background-color: #2B29A4;
        }
        
        .ctn-preloader.ctn-preloader5 .loader-section {
            background-color: transparent;
            height: 100%;
            position: fixed;
            top: 0;
            width: calc(50% + 1px);
            background-color: #6A6A9A;
        }
        
        .ctn-preloader.ctn-preloader6 .loader-section {
            background-color: transparent;
            height: 100%;
            position: fixed;
            top: 0;
            width: calc(50% + 1px);
            background-color: #4893FF;
        }
        
        .ctn-preloader.ctn-preloader7 .loader-section {
            background-color: transparent;
            height: 100%;
            position: fixed;
            top: 0;
            width: calc(50% + 1px);
            background-color: #B51DEE;
        }
        
        .ctn-preloader.ctn-preloader12 .loader-section {
            background-color: transparent;
            height: 100%;
            position: fixed;
            top: 0;
            width: calc(50% + 1px);
            background-color: #DE8E59;
        }
        
        .ctn-preloader.ctn-preloader13 .loader-section {
            background-color: transparent;
            height: 100%;
            position: fixed;
            top: 0;
            width: calc(50% + 1px);
            background-color: #02341c;
        }
        
        .ctn-preloader.ctn-preloader8 .loader-section {
            background-color: transparent;
            height: 100%;
            position: fixed;
            top: 0;
            width: calc(50% + 1px);
            background-color: #E50114;
        }
        
        .ctn-preloader.ctn-preloader9 .loader-section {
            background-color: transparent;
            height: 100%;
            position: fixed;
            top: 0;
            width: calc(50% + 1px);
            background-color: #FE6032;
        }
        
        .ctn-preloader.ctn-preloader10 .loader-section {
            background-color: transparent;
            height: 100%;
            position: fixed;
            top: 0;
            width: calc(50% + 1px);
            background-color: #9400FF;
        }
        
        .ctn-preloader .loader-section {
            height: 100%;
            position: fixed;
            top: 0;
            width: calc(50% + 1px);
        }
        
        .ctn-preloader .loader-section.section-left {
            left: 0;
        }
        
        .ctn-preloader .loader-section.section-right {
            right: 0;
        }
        /* Efecto de fade en la animación de cargando */
        
        .loaded .animation-preloader {
            opacity: 0;
            transition: 0.3s ease-out;
        }
        /* Efecto de cortina */
        
        .loaded .loader-section.section-left {
            transform: translateX(-101%);
            transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
        }
        
        .loaded .loader-section.section-right {
            transform: translateX(101%);
            transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
        }
        /* Animación del preloader */
        
        @keyframes spinner {
            to {
                transform: rotateZ(360deg);
            }
        }
        /* Animación de las letras cargando del preloader */
        
        @keyframes letters-loading {
            0%,
            75%,
            100% {
                opacity: 0;
                transform: rotateY(-90deg);
            }
            25%,
            50% {
                opacity: 1;
                transform: rotateY(0deg);
            }
        }
        /* Tamaño de portatil hacia atras (portatil, tablet, celular) */
        
        @media screen and (max-width: 767px) {
            /* Preloader */
            /* Spinner cargando */
            .ctn-preloader .animation-preloader .spinner {
                height: 8em;
                width: 8em;
            }
            /* Texto cargando */
            .ctn-preloader .animation-preloader .txt-loading {
                font: bold 3.5em "Montserrat", sans-serif;
                color: #fff;
            }
        }
        
        @media screen and (max-width: 500px) {
            /* Prelaoder */
            /* Spinner cargando */
            .ctn-preloader .animation-preloader .spinner {
                height: 7em;
                width: 7em;
            }
            /* Texto cargando */
            .ctn-preloader .animation-preloader .txt-loading {
                font: bold 2em "Montserrat", sans-serif;
            }
        }
        /*
::::::::::::::::::::::::::
 PROHECT AREA CSS
::::::::::::::::::::::::::
*/
        
        .project {
            background-color: var(--ztc-bg-bg-3);
        }
        
        .project .project-slider {
            margin-top: 30px;
        }
        
        .project .project-slider .owl-item.active.center .single-slider .heading {
            opacity: 1;
            transition: all 0.4s;
            transform: scale(1);
        }
        
        .project .project-slider .single-slider {
            margin: 0px 15px;
            position: relative;
            overflow: hidden;
        }
        
        .project .project-slider .single-slider .slider-img img {
            border-radius: 7px;
        }
        
        .project .project-slider .single-slider .heading {
            background: var(--ztc-bg-bg-1);
            border-radius: 7px;
            padding: 20px;
            position: absolute;
            bottom: 20px;
            margin: 0px 20px;
            opacity: 0;
            transition: all 0.4s;
            transform: scale(0.5);
        }
        
        .project .project-slider .single-slider .heading h3 a {
            display: inline-block;
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
        }
        
        .project .project-slider .single-slider .heading h3 a:hover {
            color: var(--ztc-bg-main-bg-1);
            transition: all 0.4s;
        }
        
        .project .project-slider .single-slider .learn {
            transition: all 0.4s;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-blod);
            display: inline-block;
            margin-top: 24px;
        }
        
        .project .project-slider .single-slider .learn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .project .project-slider .single-slider .learn:hover {
            color: var(--ztc-bg-main-bg-1);
            transition: all 0.4s;
        }
        
        .project .project-slider .owl-nav button {
            background: var(--ztc-bg-bg-2);
            height: 40px;
            width: 40px;
            border-radius: 50%;
            transition: all 0.4s;
        }
        
        .project .project-slider .owl-nav button:hover {
            color: var(--ztc-text-text-2);
            background: var(--ztc-bg-main-bg-1);
        }
        
        .project .project-slider .owl-nav button.owl-prev {
            position: absolute;
            top: 50%;
            left: -40px;
            margin-top: -20px;
        }
        
        .project .project-slider .owl-nav button.owl-next {
            position: absolute;
            top: 50%;
            right: -40px;
            margin-top: -20px;
        }
        
        .project3 {
            background-color: var(--ztc-bg-bg-6);
        }
        
        .project3 .main-image-area {
            position: relative;
            margin-top: 30px;
            overflow-y: hidden;
        }
        
        .project3 .main-image-area .image img {
            width: 100%;
        }
        
        .project3 .main-image-area .heading-area {
            position: absolute;
            z-index: 3;
            bottom: 24px;
            margin: 0px 30px;
            width: 90%;
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            visibility: hidden;
            transform: scale(0) translateY(40px);
            transition: all 0.4s;
        }
        
        .project3 .main-image-area .heading-area .heading p {
            color: var(--ztc-text-text-2);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            padding-bottom: 16px;
        }
        
        .project3 .main-image-area .heading-area .heading h4 a {
            display: inline-block;
            color: var(--ztc-text-text-2);
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-blod);
        }
        
        .project3 .main-image-area .heading-area .arrow a {
            display: inline-block;
            height: 48px;
            width: 48px;
            line-height: 48px;
            background-color: var(--ztc-bg-main-bg-3);
            color: var(--ztc-text-text-2);
            text-align: center;
            border-radius: 50%;
            transform: rotate(-45deg);
        }
        
        .project3 .main-image-area .heading-area::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: rgba(255, 255, 255, 0.3);
            -webkit-backdrop-filter: blur(14.1000003815px);
            backdrop-filter: blur(14.1000003815px);
            z-index: -1;
            border-radius: 7px;
        }
        
        .project3 .main-image-area .heading-area.heading-area2 {
            margin-right: 50px !important;
            left: -15px;
        }
        
        .project3 .main-image-area::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            border-radius: 7px;
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.4s;
            background: linear-gradient(187deg, rgba(0, 0, 0, 0) 49.94%, rgba(0, 0, 0, 0.8) 72.55%), url(_path-to-image.html>) rgba(211, 211, 211, 0) 50%/cover no-repeat;
        }
        
        .project3 .main-image-area:hover .heading-area {
            visibility: visible;
            transform: scale(1) translateY(0);
            transition: all 0.4s;
        }
        
        .project3 .main-image-area:hover::before {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.4s;
        }
        
        .project3 .main-image-area.active .heading-area {
            visibility: visible;
            transform: scale(1) translateY(0);
            transition: all 0.4s;
        }
        
        .project3 .main-image-area.active::before {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.4s;
        }
        
        .project3 .image2 img {
            width: 100%;
            border-radius: 7px;
        }
        
        .project3 .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .project3 .nav li button {
            color: var(--ztc-bg-main-bg-3);
            font-weight: var(--f-fw-semibold);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            padding: 12px 20px;
            border-radius: 7px;
            margin: 10px 0px;
            background-color: var(--ztc-text-text-2);
        }
        
        .project3 .nav li button.active {
            background: var(--ztc-bg-main-bg-3);
        }
        
        .project-details-box {
            background-color: #F8F9FA;
            border-radius: 7px;
            margin-top: 30px;
            padding: 24px;
            transition: all 0.4s;
        }
        
        .project-details-box:hover {
            transition: all 0.4s;
            transform: translateY(-5px);
        }
        
        .get-started-box {
            background-color: #0E38B1;
            border-radius: 4px;
            padding: 24px;
        }
        
        .get-started-box h3 {
            font-size: var(--f-fs-font-fs32);
            line-height: var(--f-fs-font-fs32);
            font-weight: var(--f-fw-semibold);
            color: #fff;
        }
        
        .get-started-box p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: #fff;
        }
        
        .project6 {
            position: relative;
        }
        
        .project6 .project6-slider {
            margin-top: 60px;
        }
        
        .project6 .project6-slider .single-slider {
            position: relative;
            margin: 0px 10px;
        }
        
        .project6 .project6-slider .single-slider .image img {
            width: 100%;
        }
        
        .project6 .project6-slider .single-slider .hover-area {
            position: absolute;
            bottom: 24px;
            margin: 0px 24px;
            z-index: 4;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 320px;
        }
        
        .project6 .project6-slider .single-slider .hover-area .heading p {
            display: inline-block;
            color: var(--Home-Page-3-white-colors, #FFF);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            background-color: rgba(255, 255, 255, 0.1215686275);
            padding: 8px 11px;
            border-radius: 4px;
        }
        
        .project6 .project6-slider .single-slider .hover-area .heading h5 a {
            display: inline-block;
            color: var(--Home-Page-3-white-colors, #FFF);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            /* 100% */
            padding-top: 16px;
        }
        
        .project6 .project6-slider .single-slider .hover-area .learn-btn a {
            display: inline-block;
            height: 44px;
            width: 44px;
            border: 1px solid #fff;
            border-radius: 50%;
            position: absolute;
            right: -45px;
            bottom: 10px;
            line-height: 44px;
            text-align: center;
            color: #fff;
            transform: rotate(-45deg);
        }
        
        @media (max-width: 767px) {
            .project6 .project6-slider .single-slider .hover-area .learn-btn a {
                right: 30px;
            }
        }
        
        .project6 .project6-slider .single-slider::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 4.6%, #000 100%);
            z-index: 0;
            border-radius: 4px;
        }
        
        .project6 .project6-slider .single-slider::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(180deg, rgba(3, 5, 13, 0.3) 4.6%, #FA6444 100%);
            z-index: 1;
            border-radius: 4px;
            opacity: 0;
        }
        
        .project6 .project6-slider .single-slider.slick-current.slick-active::before {
            opacity: 1;
        }
        
        .project6 .slick-dots {
            display: flex;
            justify-content: center;
            margin: 0;
            padding: 2rem 0 0 0;
            list-style-type: none;
        }
        
        .project6 .slick-dots li {
            margin: 0 0.25rem;
        }
        
        .project6 .slick-dots button {
            display: block;
            width: 12px;
            height: 12px;
            padding: 0;
            border: none;
            border-radius: 100%;
            background-color: rgba(240, 118, 118, 0.2274509804);
            text-indent: -9999px;
            position: relative;
        }
        
        .project6 .slick-dots button::after {
            content: "";
            position: absolute;
            top: -3px;
            left: -3px;
            height: 18px;
            width: 18px;
            border: 1px solid #FA6444;
            border-radius: 50%;
            opacity: 0;
        }
        
        .project6 .slick-dots li.slick-active button {
            background-color: #FA6444;
        }
        
        .project6 .slick-dots li.slick-active button::after {
            opacity: 1;
        }
        /*
::::::::::::::::::::::::::
 PROHECT AREA CSS
::::::::::::::::::::::::::
*/
        /*
::::::::::::::::::::::::::
 TEAM AREA CSS
::::::::::::::::::::::::::
*/
        
        .team2 .team-box {
            margin-top: 30px;
            text-align: center;
        }
        
        .team2 .team-box .image-area {
            position: relative;
            overflow: hidden;
        }
        
        .team2 .team-box .image-area .image {
            border-radius: 7px;
            overflow: hidden;
        }
        
        .team2 .team-box .image-area .image img {
            width: 100%;
            border-radius: 4px;
            transition: all 0.4s;
        }
        
        .team2 .team-box .image-area .icon-area {
            transition: all 0.3s ease-in-out;
            margin: 0 30px;
            position: absolute;
            width: 81%;
            border-radius: 7px;
            margin-top: -90px;
            padding: 16px;
            transition: all 0.4s;
            transform: scale(0) translateY(60px);
        }
        
        .team2 .team-box .image-area .icon-area ul li {
            display: inline-block;
        }
        
        .team2 .team-box .image-area .icon-area ul li a {
            display: inline-block;
            position: relative;
            z-index: 9;
            height: 33px;
            width: 33px;
            line-height: 33px;
            color: var(--ztc-text-text-1);
            background-color: var(--ztc-text-text-2);
            border-radius: 50%;
            margin: 0px 5px;
            transition: all 0.4s;
        }
        
        .team2 .team-box .image-area .icon-area ul li a:hover {
            background-color: var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
        }
        
        .team2 .team-box .image-area .icon-area::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.3);
            -webkit-backdrop-filter: blur(14.1000003815px);
            backdrop-filter: blur(14.1000003815px);
            z-index: 1;
            opacity: 1;
        }
        
        .team2 .team-box:hover .icon-area {
            opacity: 1;
            transition: all 0.4s;
            transform: scale(1) translateY(0);
        }
        
        .team2 .team-box:hover .image-area .image img {
            transform: scale(1.1) rotate(4deg);
            transition: all 0.4s;
        }
        
        .team2.team-page .team-box .icon-area ul li a:hover {
            background: var(--ztc-bg-main-bg-1);
            color: #fff;
        }
        
        .team3 .team-box {
            margin-top: 30px;
            text-align: center;
        }
        
        .team3 .team-box .heading3 h4 a {
            font-size: 24px;
            padding-bottom: 10px;
        }
        
        .team3 .team-box .image-area {
            position: relative;
            overflow: hidden;
        }
        
        .team3 .team-box .image-area .image {
            border-radius: 7px;
            overflow: hidden;
        }
        
        .team3 .team-box .image-area .image img {
            width: 100%;
            border-radius: 7px;
            transition: all 0.4s;
        }
        
        .team3 .team-box .image-area .icon-area {
            transition: all 0.3s ease-in-out;
            margin: 0 30px;
            position: absolute;
            width: 81%;
            border-radius: 7px;
            margin-top: -90px;
            padding: 16px;
            transition: all 0.4s;
            transform: scale(0) translateY(60px);
        }
        
        .team3 .team-box .image-area .icon-area ul li {
            display: inline-block;
        }
        
        .team3 .team-box .image-area .icon-area ul li a {
            display: inline-block;
            position: relative;
            z-index: 9;
            height: 33px;
            width: 33px;
            line-height: 33px;
            color: var(--ztc-text-text-1);
            background-color: var(--ztc-text-text-2);
            border-radius: 50%;
            margin: 0px 2px;
            transition: all 0.4s;
        }
        
        .team3 .team-box .image-area .icon-area ul li a:hover {
            background-color: var(--ztc-bg-main-bg-3);
            color: var(--ztc-text-text-2);
            transition: all 0.4s;
        }
        
        .team3 .team-box .image-area .icon-area::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: rgba(255, 255, 255, 0.3);
            -webkit-backdrop-filter: blur(14.1000003815px);
            backdrop-filter: blur(14.1000003815px);
            opacity: 1;
            border-radius: 7px;
        }
        
        .team3 .team-box:hover .icon-area {
            opacity: 1;
            transition: all 0.4s;
            transform: scale(1) translateY(0);
        }
        
        .team3 .team-box:hover .image-area .image img {
            transform: scale(1.1) rotate(4deg);
            transition: all 0.4s;
        }
        
        .team5 {
            position: relative;
        }
        
        .team5::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background: #05092B;
            z-index: -3;
        }
        
        .team5 .team-box {
            margin-top: 30px;
            text-align: center;
        }
        
        .team5 .team-box .heading5-w {
            margin-top: 20px;
        }
        
        .team5 .team-box .heading5-w p {
            padding-top: 6px;
        }
        
        .team5 .team-box .image {
            position: relative;
        }
        
        .team5 .team-box .image img {
            width: 100%;
        }
        
        .team5 .team-box .image::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background: #05092B;
            opacity: 0;
            transform: scale(0.8);
            z-index: 1;
            transition: all 0.4s;
        }
        
        .team5 .team-box .hover-icons {
            position: absolute;
            top: 50%;
            left: 50%;
            z-index: 2;
            margin-top: -16px;
            margin-left: -76px;
            transform: translateY(60px) scale(0.6);
            opacity: 0;
            transition: all 0.4s;
        }
        
        .team5 .team-box .hover-icons ul li {
            display: inline-block;
        }
        
        .team5 .team-box .hover-icons ul li a {
            display: inline-block;
            height: 32px;
            width: 32px;
            line-height: 32px;
            text-align: center;
            border-radius: 50%;
            background-color: #fff;
            margin: 0px 2px;
            color: #05092B;
        }
        
        .team5 .team-box .hover-icons ul li a:hover {
            background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
            color: #fff;
        }
        
        .team5 .team-box:hover .image::after {
            transform: scale(1);
            opacity: 0.4;
            transition: all 0.4s;
        }
        
        .team5 .team-box:hover .hover-icons {
            transform: scale(1) translateY(0);
            opacity: 1;
            transition: all 0.4s;
        }
        
        .team6 .team-box {
            margin-top: 30px;
            transition: all 0.4s;
        }
        
        .team6 .team-box .image {
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }
        
        .team6 .team-box .image img {
            width: 100%;
            transition: all 0.4s;
        }
        
        .team6 .team-box .image .hover-area {
            position: absolute;
            right: 20px;
            bottom: 70px;
            z-index: 9;
            transform: translateX(80px);
            transition: all 0.4s;
        }
        
        .team6 .team-box .image .hover-area ul li a {
            display: inline-block;
            height: 40px;
            width: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            background-color: #fff;
            margin-bottom: 8px;
            color: #180D03;
            font-size: 16px;
            transition: all 0.4s;
        }
        
        .team6 .team-box .image .hover-area ul li a:hover {
            background: #FA6444;
            color: #fff;
            transition: all 0.4s;
        }
        
        .team6 .team-box .heading-area {
            border-radius: 4px;
            background: var(--Home-Page-3-white-colors, #FFF);
            box-shadow: 0px 10px 48px 0px rgba(0, 0, 0, 0.09);
            padding: 24px;
            margin: -50px 24px 0px 24px;
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .team6 .team-box .heading-area h4 a {
            display: inline-block;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 24px;
            font-style: normal;
            font-weight: 600;
            line-height: 24px;
            /* 100% */
            transition: all 0.4s;
        }
        
        .team6 .team-box .heading-area h4 a:hover {
            transition: all 0.4s;
            color: #FA6444;
        }
        
        .team6 .team-box .heading-area p {
            color: var(--Home-Page-3-paragraph, #5B5855);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            padding-top: 8px;
        }
        
        .team6 .team-box:hover {
            transform: translateY(-10px);
            transition: all 0.4s;
        }
        
        .team6 .team-box:hover .hover-area {
            transform: translateX(0px);
            transition: all 0.4s;
        }
        
        .team6 .team-box:hover .image img {
            transition: all 0.4s;
            transform: scale(1.1) rotate(2deg);
        }
        
        .team7 .team-box {
            margin-top: 30px;
            transition: all 0.4s;
        }
        
        .team7 .team-box .image {
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }
        
        .team7 .team-box .image img {
            width: 100%;
            transition: all 0.4s;
        }
        
        .team7 .team-box .image .hover-area {
            position: absolute;
            right: 20px;
            bottom: 70px;
            z-index: 9;
            transform: translateX(80px);
            transition: all 0.4s;
        }
        
        .team7 .team-box .image .hover-area ul li a {
            display: inline-block;
            height: 40px;
            width: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            background-color: #fff;
            margin-bottom: 8px;
            color: #180D03;
            font-size: 16px;
            transition: all 0.4s;
        }
        
        .team7 .team-box .image .hover-area ul li a:hover {
            background: #0061FF;
            color: #fff;
            transition: all 0.4s;
        }
        
        .team7 .team-box .heading-area {
            border-radius: 4px;
            background: var(--Home-Page-3-white-colors, #FFF);
            box-shadow: 0px 10px 48px 0px rgba(0, 0, 0, 0.09);
            padding: 24px;
            margin: -50px 24px 0px 24px;
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .team7 .team-box .heading-area h4 a {
            display: inline-block;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 24px;
            font-style: normal;
            font-weight: 600;
            line-height: 24px;
            /* 100% */
            transition: all 0.4s;
        }
        
        .team7 .team-box .heading-area h4 a:hover {
            transition: all 0.4s;
            color: #0061FF;
        }
        
        .team7 .team-box .heading-area p {
            color: var(--Home-Page-3-paragraph, #5B5855);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            padding-top: 8px;
        }
        
        .team7 .team-box:hover {
            transform: translateY(-10px);
            transition: all 0.4s;
        }
        
        .team7 .team-box:hover .hover-area {
            transform: translateX(0px);
            transition: all 0.4s;
        }
        
        .team7 .team-box:hover .image img {
            transition: all 0.4s;
            transform: scale(1.1) rotate(2deg);
        }
        
        .team8 .team-box {
            margin-top: 30px;
            transition: all 0.4s;
        }
        
        .team8 .team-box .image {
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }
        
        .team8 .team-box .image img {
            width: 100%;
            transition: all 0.4s;
        }
        
        .team8 .team-box .image .hover-area {
            position: absolute;
            right: 20px;
            bottom: 70px;
            z-index: 9;
            transform: translateX(80px);
            transition: all 0.4s;
        }
        
        .team8 .team-box .image .hover-area ul li a {
            display: inline-block;
            height: 40px;
            width: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            background-color: #fff;
            margin-bottom: 8px;
            color: #180D03;
            font-size: 16px;
            transition: all 0.4s;
        }
        
        .team8 .team-box .image .hover-area ul li a:hover {
            background: #4D32A5;
            color: #fff;
            transition: all 0.4s;
        }
        
        .team8 .team-box .heading-area {
            border-radius: 4px;
            background: var(--Home-Page-3-white-colors, #FFF);
            box-shadow: 0px 10px 48px 0px rgba(0, 0, 0, 0.09);
            padding: 24px;
            margin: -50px 24px 0px 24px;
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .team8 .team-box .heading-area h4 a {
            display: inline-block;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 24px;
            font-style: normal;
            font-weight: 600;
            line-height: 24px;
            /* 100% */
            transition: all 0.4s;
        }
        
        .team8 .team-box .heading-area h4 a:hover {
            transition: all 0.4s;
            color: #4D32A5;
        }
        
        .team8 .team-box .heading-area p {
            color: var(--Home-Page-3-paragraph, #5B5855);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            padding-top: 8px;
        }
        
        .team8 .team-box:hover {
            transform: translateY(-10px);
            transition: all 0.4s;
        }
        
        .team8 .team-box:hover .hover-area {
            transform: translateX(0px);
            transition: all 0.4s;
        }
        
        .team8 .team-box:hover .image img {
            transition: all 0.4s;
            transform: scale(1.1) rotate(2deg);
        }
        
        .team9 .team-box {
            margin-top: 30px;
            transition: all 0.4s;
        }
        
        .team9 .team-box .image {
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }
        
        .team9 .team-box .image img {
            width: 100%;
            transition: all 0.4s;
        }
        
        .team9 .team-box .image .hover-area {
            position: absolute;
            right: 20px;
            bottom: 70px;
            z-index: 9;
            transform: translateX(80px);
            transition: all 0.4s;
        }
        
        .team9 .team-box .image .hover-area ul li a {
            display: inline-block;
            height: 40px;
            width: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            background-color: #fff;
            margin-bottom: 8px;
            color: #180D03;
            font-size: 16px;
            transition: all 0.4s;
        }
        
        .team9 .team-box .image .hover-area ul li a:hover {
            background: #A2EA61;
            color: #180D03;
            transition: all 0.4s;
        }
        
        .team9 .team-box .heading-area {
            border-radius: 4px;
            background: var(--Home-Page-3-white-colors, #FFF);
            box-shadow: 0px 10px 48px 0px rgba(0, 0, 0, 0.09);
            padding: 24px;
            margin: -50px 24px 0px 24px;
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .team9 .team-box .heading-area h4 a {
            display: inline-block;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 24px;
            font-style: normal;
            font-weight: 600;
            line-height: 24px;
            /* 100% */
            transition: all 0.4s;
        }
        
        .team9 .team-box .heading-area h4 a:hover {
            transition: all 0.4s;
            color: #A2EA61;
        }
        
        .team9 .team-box .heading-area p {
            color: var(--Home-Page-3-paragraph, #5B5855);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            padding-top: 8px;
        }
        
        .team9 .team-box:hover {
            transform: translateY(-10px);
            transition: all 0.4s;
        }
        
        .team9 .team-box:hover .hover-area {
            transform: translateX(0px);
            transition: all 0.4s;
        }
        
        .team9 .team-box:hover .image img {
            transition: all 0.4s;
            transform: scale(1.1) rotate(2deg);
        }
        /*
::::::::::::::::::::::::::
 TEAM AREA CSS
::::::::::::::::::::::::::
*/
        /*
::::::::::::::::::::::::::
 TESTIMONIAL AREA CSS
::::::::::::::::::::::::::
*/
        
        .testimonial {
            background-color: var(--ztc-bg-bg-3);
        }
        
        .testimonial .tes1-slider {
            background-color: var(--ztc-bg-color-w);
            padding: 50px;
            margin-top: 60px;
            border-radius: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .testimonial .tes1-slider {
                padding: 30px 30px 120px 30px;
            }
        }
        
        @media (max-width: 767px) {
            .testimonial .tes1-slider {
                padding: 30px 30px 120px 30px;
            }
        }
        
        .testimonial .tes1-slider .tes1-single-slider .right-side {
            padding-right: 100px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .testimonial .tes1-slider .tes1-single-slider .right-side {
                padding-right: 0;
            }
        }
        
        @media (max-width: 767px) {
            .testimonial .tes1-slider .tes1-single-slider .right-side {
                padding-right: 0;
            }
        }
        
        .testimonial .tes1-slider .tes1-single-slider .right-side h4 {
            font-size: var(--f-fs-font-fs32);
            line-height: var(--f-fs-font-fs32);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-text-text-1);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .testimonial .tes1-slider .tes1-single-slider .right-side h4 {
                font-size: var(--f-fs-font-fs22);
                line-height: var(--f-fs-font-fs30);
            }
        }
        
        @media (max-width: 767px) {
            .testimonial .tes1-slider .tes1-single-slider .right-side h4 {
                font-size: var(--f-fs-font-fs22);
                line-height: var(--f-fs-font-fs30);
            }
        }
        
        .testimonial .tes1-slider .tes1-single-slider .right-side p {
            font-size: var(--f-fs-font-fs24);
            line-height: var(--f-fs-font-fs40);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            padding: 20px 0px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .testimonial .tes1-slider .tes1-single-slider .right-side p {
                font-size: var(--f-fs-font-fs18);
                line-height: var(--f-fs-font-fs28);
            }
        }
        
        @media (max-width: 767px) {
            .testimonial .tes1-slider .tes1-single-slider .right-side p {
                font-size: var(--f-fs-font-fs18);
                line-height: var(--f-fs-font-fs28);
            }
        }
        
        .testimonial .tes1-slider .tes1-single-slider .right-side .bottom-area {
            display: flex;
            align-items: center;
            padding-top: 10px;
        }
        
        .testimonial .tes1-slider .tes1-single-slider .right-side .bottom-area .heading {
            padding-left: 16px;
        }
        
        .testimonial .tes1-slider .tes1-single-slider .right-side .bottom-area .heading h5 a {
            display: inline-block;
            font-size: var(--f-fs-font-fs24);
            line-height: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            padding-bottom: 16px;
        }
        
        .testimonial .tes1-slider .tes1-single-slider .right-side .bottom-area .heading p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            padding: 0;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .testimonial .tes1-slider .tes1-single-slider .left-side {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .testimonial .tes1-slider .tes1-single-slider .left-side {
                display: none;
            }
        }
        
        .testimonial .tes1-arrows {
            position: absolute;
            left: 50%;
            bottom: 50px;
            margin-left: -55px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .testimonial .tes1-arrows {
                bottom: 24px;
            }
        }
        
        @media (max-width: 767px) {
            .testimonial .tes1-arrows {
                bottom: 24px;
            }
        }
        
        .testimonial .tes1-arrows button {
            font-size: 20px;
            height: 40px;
            width: 40px;
            border-radius: 50%;
            background-color: var(--ztc-bg-bg-2);
            color: var(--ztc-text-text-1);
            border: none;
            margin: 0px 5px;
            transition: all 0.4s;
        }
        
        .testimonial .tes1-arrows button:hover {
            background-color: var(--ztc-bg-main-bg-1);
            color: var(--ztc-bg-color-w);
        }
        
        .testimonial2 .tes2-slider .owl-item.active.center .single-slider {
            border: 1px solid var(--ztc-bg-main-bg-4);
        }
        
        .testimonial2 .tes2-slider .single-slider {
            border: 1px solid var(--ztc-bg-bg-5);
            background-color: var(--ztc-bg-bg-4);
            padding: 24px;
            border-radius: 7px;
            margin: 0 10px;
            min-height: 450px;
            position: relative;
        }
        
        .testimonial2 .tes2-slider .single-slider .icon {
            height: 60px;
            width: 60px;
        }
        
        .testimonial2 .tes2-slider .bottom-area {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .testimonial2 .tes2-slider .bottom-area .author a {
            display: inline-block;
            color: var(--ztc-bg-bg-1);
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-semibold);
            position: absolute;
            bottom: 24px;
            left: 24px;
        }
        
        .testimonial2 .tes2-slider .bottom-area .reating {
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.1215686275);
            border-radius: 7px;
            border: 1px solid rgba(255, 255, 255, 0.1921568627);
            padding: 4px 8px;
            position: absolute;
            bottom: 24px;
            right: 24px;
        }
        
        .testimonial2 .tes2-slider .bottom-area .reating ul li {
            display: inline-block;
            color: var(--ztc-bg-main-bg-4);
        }
        
        .testimonial2 .tes2-slider .bottom-area .reating p {
            color: var(--ztc-bg-bg-1);
            font-size: 14px;
            line-height: 14px;
            font-weight: var(--f-fw-semibold);
        }
        
        .testimonial2 .tes2-slider .pera {
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs30);
            font-weight: var(--f-fw-medium);
            color: rgba(255, 255, 255, 0.7960784314);
            padding: 20px 0px;
        }
        
        .testimonial2.about-page-tes .owl-item.active.center .single-slider {
            background-color: #F8F9FA;
            border: none;
        }
        
        .testimonial2.about-page-tes .owl-item.active.center .single-slider .pera {
            color: var(--Paragraph-Color, #0D0E10);
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 30px;
            /* 166.667% */
        }
        
        .testimonial2.about-page-tes .single-slider {
            background-color: rgba(248, 249, 250, 0.8431372549);
            padding: 24px;
            border-radius: 7px;
            margin: 0 10px;
            min-height: 450px;
            position: relative;
            border: none;
        }
        
        .testimonial2.about-page-tes .single-slider .icon {
            height: 60px;
            width: 60px;
        }
        
        .testimonial2.about-page-tes .single-slider .pera {
            color: var(--Paragraph-Color, #676879);
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 30px;
            /* 166.667% */
        }
        
        .testimonial2.about-page-tes .single-slider .author a {
            display: inline-block;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-semibold);
            position: absolute;
            bottom: 24px;
            left: 24px;
        }
        
        .testimonial2.about-page-tes .single-slider .reating {
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.1215686275);
            border-radius: 7px;
            border: 1px solid rgba(255, 255, 255, 0.1921568627);
            padding: 4px 8px;
            position: absolute;
            bottom: 24px;
            right: 24px;
        }
        
        .testimonial2.about-page-tes .single-slider .reating ul li {
            display: inline-block;
            color: var(--ztc-bg-main-bg-1);
        }
        
        .testimonial2.about-page-tes .single-slider .reating p {
            color: var(--ztc-bg-bg-1);
            font-size: 14px;
            line-height: 14px;
            font-weight: var(--f-fw-semibold);
        }
        
        .testimonial2 .owl-dots {
            margin-top: 40px;
            text-align: center;
        }
        
        .testimonial2 .owl-dots button {
            background: transparent;
            border: none;
            color: inherit;
            padding: 0 !important;
            font: inherit;
            height: 16px;
            line-height: 10px;
            width: 16px;
            margin: 0 6px;
            border: none;
            border-radius: 50%;
            padding: 5px;
            margin: 5px;
            background-color: rgba(161, 233, 52, 0.4745098039);
        }
        
        .testimonial2 .owl-dots button.active {
            background: #A1E934;
        }
        
        .tes5 .owl-dots {
            position: absolute;
            bottom: -55px;
            width: 100%;
            right: 0;
            text-align: center;
        }
        
        .testimonial2 .owl-dots button {
            position: relative;
            border: 2px solid #03004a !important;
        }
        
        .testimonial2 .owl-dots button:after {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            background: #A1E934;
            z-index: -1;
            border-radius: 50%;
            left: -3px;
            top: -3px;
            transition: all 0.3s;
            visibility: hidden;
            opacity: 0;
        }
        
        .testimonial2 .owl-dots button.active:after {
            visibility: visible;
            opacity: 1;
        }
        
        .testimonial2.about-page-tes .owl-dots {
            margin-top: 40px;
            text-align: center;
        }
        
        .testimonial2.about-page-tes .owl-dots button {
            background: transparent;
            border: none;
            color: inherit;
            padding: 0 !important;
            font: inherit;
            height: 16px;
            line-height: 10px;
            width: 16px;
            margin: 0 6px;
            border: none;
            border-radius: 50%;
            padding: 5px;
            margin: 5px;
            background-color: var(--ztc-bg-main-bg-1);
        }
        
        .testimonial2.about-page-tes .owl-dots button.active {
            background: var(--ztc-bg-main-bg-1);
        }
        
        .tes5 .owl-dots {
            position: absolute;
            bottom: -55px;
            width: 100%;
            right: 0;
            text-align: center;
        }
        
        .testimonial2.about-page-tes .owl-dots button {
            position: relative;
            border: 2px solid #fff !important;
        }
        
        .testimonial2.about-page-tes .owl-dots button:after {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            background: var(--ztc-bg-main-bg-1);
            z-index: -1;
            border-radius: 50%;
            left: -3px;
            top: -3px;
            transition: all 0.3s;
            visibility: hidden;
            opacity: 0;
        }
        
        .testimonial2.about-page-tes .owl-dots button.active:after {
            visibility: visible;
            opacity: 1;
        }
        
        .testimonial4 {
            background-color: var(--ztc-text-text-1);
        }
        
        .testimonial-page-all .single-slider {
            background-color: #F8F9FA;
            padding: 24px;
            border-radius: 7px;
            min-height: 440px;
            position: relative;
            margin-bottom: 30px;
            transition: all 0.4s;
        }
        
        .testimonial-page-all .single-slider .icon {
            height: 60px;
            width: 60px;
        }
        
        .testimonial-page-all .single-slider .bottom-area {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .testimonial-page-all .single-slider .bottom-area .author a {
            display: inline-block;
            color: #0D0E10;
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-semibold);
            position: absolute;
            bottom: 24px;
            left: 24px;
        }
        
        .testimonial-page-all .single-slider .bottom-area .reating {
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.1215686275);
            border-radius: 7px;
            border: 1px solid rgba(255, 255, 255, 0.1921568627);
            padding: 4px 8px;
            position: absolute;
            bottom: 24px;
            right: 24px;
        }
        
        .testimonial-page-all .single-slider .bottom-area .reating ul li {
            display: inline-block;
            color: var(--ztc-bg-main-bg-1);
        }
        
        .testimonial-page-all .single-slider .bottom-area .reating p {
            color: #0D0E10;
            font-size: 14px;
            line-height: 14px;
            font-weight: var(--f-fw-semibold);
        }
        
        .testimonial-page-all .single-slider .pera {
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs30);
            font-weight: var(--f-fw-medium);
            color: rgba(13, 14, 16, 0.631372549);
            padding: 20px 0px;
            transition: all 0.4s;
        }
        
        .testimonial-page-all .single-slider:hover {
            transition: all 0.4s;
            transform: translateY(-10px);
        }
        
        .testimonial-page-all .single-slider:hover .pera {
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs30);
            font-weight: var(--f-fw-medium);
            color: #0d0e10;
            padding: 20px 0px;
            transition: all 0.4s;
        }
        
        .tes5 .tes5-slider {
            margin-top: 0px;
            cursor: all-scroll;
        }
        
        .tes5 .tes5-slider .single-slider {
            background-color: #F5F6F9;
            border-radius: 4px;
            padding: 32px;
            position: relative;
            margin: 0px 5px;
        }
        
        .tes5 .tes5-slider .single-slider .stars ul li {
            display: inline-block;
            color: #EC811C;
            margin-right: 4px;
            height: 32px;
            width: 32px;
            background-color: #fff;
            text-align: center;
            line-height: 32px;
            border-radius: 4px;
        }
        
        .tes5 .tes5-slider .single-slider p {
            color: var(--Home-Page-4-paragraph, #5A5D73);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            /* 150% */
            padding: 24px 0;
        }
        
        .tes5 .tes5-slider .single-slider .bottom {
            display: flex;
            align-items: center;
        }
        
        .tes5 .tes5-slider .single-slider .bottom .heading {
            padding-left: 20px;
        }
        
        .tes5 .tes5-slider .single-slider .bottom .heading h5 a {
            display: inline-block;
            color: var(--Home-Page-4-Text-colors, #05092B);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            /* 100% */
        }
        
        .tes5 .tes5-slider .single-slider .bottom .heading p {
            color: var(--Home-Page-4-paragraph, #5A5D73);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            padding-top: 8px;
        }
        
        .tes5 .tes5-slider .single-slider .qute {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 30px;
        }
        
        .tes6 {
            position: relative;
        }
        
        .tes6::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: #180D03;
            z-index: -4;
        }
        
        .tes6 .single-slider {
            background-color: #fff;
            border-radius: 4px;
            padding: 32px 28px;
            margin: 0px 10px;
            position: relative;
        }
        
        .tes6 .single-slider .stars ul li {
            color: #FA6444;
            background-color: #FFF7F6;
            height: 32px;
            width: 32px;
            line-height: 32px;
            text-align: center;
            border-radius: 4px;
            display: inline-block;
            margin: 0px 3px;
        }
        
        .tes6 .single-slider p {
            color: var(--Home-Page-3-paragraph, #5B5855);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            /* 150% */
            padding: 16px 0px 24px 0px;
        }
        
        .tes6 .single-slider .bottom-area {
            display: flex;
            align-items: center;
        }
        
        .tes6 .single-slider .bottom-area .heading {
            padding-left: 20px;
        }
        
        .tes6 .single-slider .bottom-area .heading a {
            display: inline-block;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            /* 100% */
        }
        
        .tes6 .single-slider .bottom-area .heading .text {
            padding: 2px 0px 0px 0px;
        }
        
        .tes6 .single-slider .qute {
            position: absolute;
            bottom: 20px;
            right: 20px;
        }
        
        .tes6 .arrows-button {
            text-align: center;
            margin-top: 40px;
        }
        
        .tes6 .arrows-button button {
            border-radius: 4px;
            height: 50px;
            width: 50px;
            border: none;
            font-size: 20px;
            color: #fff;
            background-color: rgba(255, 255, 255, 0.1529411765);
            margin: 0px 5px;
            transition: all 0.4s;
        }
        
        .tes6 .arrows-button button:hover {
            background-color: #FA6444;
            transition: all 0.4s;
        }
        
        .tes7 .tes7-slider-area {
            background-color: #E5EFFF;
            border-radius: 4px;
            padding: 32px 50px 32px 32px;
            position: relative;
        }
        
        .tes7 .tes7-slider-area .single-slider p {
            color: var(--Home-Page-1-text-colors, #02000E);
            font-size: 24px;
            font-style: normal;
            font-weight: 500;
            line-height: 36px;
            /* 150% */
            padding: 16px 0px;
        }
        
        .tes7 .tes7-slider-area .single-slider .bottom-area {
            display: flex;
            align-items: center;
        }
        
        .tes7 .tes7-slider-area .single-slider .bottom-area .heading {
            padding-left: 16px;
        }
        
        .tes7 .tes7-slider-area .single-slider .bottom-area .heading h5 a {
            display: inline-block;
            color: var(--Home-Page-1-text-colors, #02000E);
            font-size: 24px;
            font-style: normal;
            font-weight: 600;
            line-height: 24px;
            /* 100% */
        }
        
        .tes7 .tes7-slider-area .single-slider .bottom-area .heading span {
            color: var(--Home-Page-1-pargraph, #5C5A64);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            padding-top: 12px;
            display: inline-block;
        }
        
        .tes7 .tes7-slider-area .arrows-button button {
            font-size: 22px;
            height: 60px;
            width: 60px;
            text-align: center;
            line-height: 60px;
            border: none;
            border-radius: 50%;
            background-color: #0061FF;
            color: #fff;
            transition: all 0.4s;
        }
        
        .tes7 .tes7-slider-area .arrows-button button:hover {
            background-color: #02000E;
            transition: all 0.4s;
        }
        
        .tes7 .tes7-slider-area .arrows-button .tes7-next-arrow {
            position: absolute;
            top: 50%;
            margin-top: -65px;
            right: -30px;
        }
        
        .tes7 .tes7-slider-area .arrows-button .tes7-prev-arrow {
            position: absolute;
            top: 50%;
            margin-top: 5px;
            right: -30px;
        }
        
        .tes8 .tes7-slider-area {
            background-color: #E4E2F1;
            border-radius: 4px;
            padding: 32px 50px 32px 32px;
            position: relative;
        }
        
        .tes8 .tes7-slider-area .single-slider p {
            color: var(--Home-Page-1-text-colors, #02000E);
            font-size: 24px;
            font-style: normal;
            font-weight: 500;
            line-height: 36px;
            /* 150% */
            padding: 16px 0px;
        }
        
        .tes8 .tes7-slider-area .single-slider .bottom-area {
            display: flex;
            align-items: center;
        }
        
        .tes8 .tes7-slider-area .single-slider .bottom-area .heading {
            padding-left: 16px;
        }
        
        .tes8 .tes7-slider-area .single-slider .bottom-area .heading h5 a {
            display: inline-block;
            color: var(--Home-Page-1-text-colors, #02000E);
            font-size: 24px;
            font-style: normal;
            font-weight: 600;
            line-height: 24px;
            /* 100% */
        }
        
        .tes8 .tes7-slider-area .single-slider .bottom-area .heading span {
            color: var(--Home-Page-1-pargraph, #5C5A64);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            padding-top: 12px;
            display: inline-block;
        }
        
        .tes8 .tes7-slider-area .arrows-button button {
            font-size: 22px;
            height: 60px;
            width: 60px;
            text-align: center;
            line-height: 60px;
            border: none;
            border-radius: 50%;
            background-color: #4D32A5;
            color: #fff;
            transition: all 0.4s;
        }
        
        .tes8 .tes7-slider-area .arrows-button button:hover {
            background-color: #02000E;
            transition: all 0.4s;
        }
        
        .tes8 .tes7-slider-area .arrows-button .tes7-next-arrow {
            position: absolute;
            top: 50%;
            margin-top: -65px;
            right: -30px;
        }
        
        .tes8 .tes7-slider-area .arrows-button .tes7-prev-arrow {
            position: absolute;
            top: 50%;
            margin-top: 5px;
            right: -30px;
        }
        
        .tes9 .tes9-slider .sginle-slider {
            padding: 24px;
            border-radius: 4px;
            background-color: #F3F5F2;
            margin: 0px 10px;
        }
        
        .tes9 .tes9-slider .sginle-slider p {
            color: var(--Text-Color, #181818);
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 28px;
            /* 155.556% */
        }
        
        .tes9 .tes9-slider .sginle-slider .border-tes {
            background-color: #E3E4E2;
            height: 1px;
            margin: 24px 0px;
        }
        
        .tes9 .tes9-slider .sginle-slider .stars {
            padding: 16px 0px 18px 0px;
        }
        
        .tes9 .tes9-slider .sginle-slider .stars li {
            display: inline-block;
            color: #FFA800;
            font-size: 16px;
        }
        
        .tes9 .tes9-slider .sginle-slider .bottom-area {
            display: flex;
            align-items: center;
        }
        
        .tes9 .tes9-slider .sginle-slider .bottom-area .heading {
            padding-left: 16px;
        }
        
        .tes9 .tes9-slider .sginle-slider .bottom-area .heading h4 a {
            display: inline-block;
            color: var(--Text-Color, #181818);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            /* 100% */
        }
        
        .tes9 .tes9-slider .sginle-slider .bottom-area .heading p {
            color: var(--Paragraph-Color, #646375);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            padding-top: 10px;
        }
        
        .tes9 .arrows-button button {
            border: none;
            font-size: 20px;
            line-height: 56px;
            text-align: center;
            height: 56px;
            width: 56px;
            background-color: #F3F5F2;
            border-radius: 50%;
            transition: all 0.4s;
        }
        
        .tes9 .arrows-button button:hover {
            transition: all 0.4s;
            background-color: #A2EA61;
        }
        
        .tes9 .arrows-button .tes9-next-arrow {
            position: absolute;
            top: 50%;
            left: 0;
            margin-left: -50px;
            margin-top: -50px;
        }
        
        .tes9 .arrows-button .tes9-prev-arrow {
            position: absolute;
            top: 50%;
            right: 0;
            margin-right: -50px;
            margin-top: -50px;
        }
        
        .tes9 .slick-dots {
            display: flex;
            justify-content: center;
            margin: 0;
            padding: 2rem 0 0 0;
            list-style-type: none;
        }
        
        .tes9 .slick-dots li {
            margin: 0 0.25rem;
        }
        
        .tes9 .slick-dots button {
            display: block;
            width: 12px;
            height: 12px;
            padding: 0;
            border: none;
            border-radius: 100%;
            background-color: #F3F5F2;
            text-indent: -9999px;
            position: relative;
        }
        
        .tes9 .slick-dots button::after {
            content: "";
            position: absolute;
            top: -3px;
            left: -3px;
            height: 18px;
            width: 18px;
            border: 1px solid #325D28;
            border-radius: 50%;
            opacity: 0;
        }
        
        .tes9 .slick-dots li.slick-active button {
            background-color: #325D28;
        }
        
        .tes9 .slick-dots li.slick-active button::after {
            opacity: 1;
        }
        
        .tes10 .tes10-slider {
            background-color: #fff;
            padding: 50px;
            border-radius: 8px;
            margin: 60px 100px 0px 100px;
        }
        
        @media (max-width: 767px) {
            .tes10 .tes10-slider {
                margin: 40px 0px 0px 0px;
                padding: 30px;
            }
        }
        
        .tes10 .tes10-slider .big-image img {
            width: 100%;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .tes10 .tes10-slider .big-image {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .tes10 .tes10-slider .big-image {
                margin-top: 30px;
            }
        }
        
        .tes10 .tes10-slider .content-area .stars {
            background-color: #E9F4F4;
            border-radius: 4px;
            padding: 6px 14px;
            display: inline-block;
        }
        
        .tes10 .tes10-slider .content-area .stars li {
            display: inline-block;
            color: #24908D;
            margin: 0px 2px;
        }
        
        .tes10 .tes10-slider .content-area p {
            color: #5F6464;
            font-size: 24px;
            font-style: normal;
            font-weight: 500;
            line-height: 36px;
            /* 150% */
            padding: 24px 0px;
        }
        
        .tes10 .tes10-slider .bottom-area {
            display: flex;
            align-items: center;
        }
        
        .tes10 .tes10-slider .bottom-area .heading {
            padding-left: 22px;
        }
        
        .tes10 .tes10-slider .bottom-area .heading h6 a {
            display: inline-block;
            color: #011313;
            font-size: 24px;
            font-style: normal;
            font-weight: 700;
            line-height: 24px;
            /* 100% */
        }
        
        .tes10 .tes10-slider .bottom-area .heading p {
            color: rgba(1, 19, 19, 0.5333333333);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            padding: 12px 0px 0px 0px;
        }
        
        .tes10 .arrows-button {
            text-align: end;
        }
        
        @media (max-width: 767px) {
            .tes10 .arrows-button {
                text-align: center;
                margin-top: 30px;
            }
        }
        
        .tes10 .arrows-button button {
            border: none;
            font-size: 28px;
            height: 70px;
            line-height: 70px;
            width: 70px;
            text-align: center;
            border-radius: 50%;
            color: #000120;
            transition: all 0.4s;
            background-color: #E9F4F4;
            margin-left: 5px;
        }
        
        .tes10 .arrows-button button:hover {
            background-color: #24908D;
            color: #fff;
            transition: all 0.4s;
        }
        
        .tes10 .arrows-button .tes10-next-arrow {
            position: absolute;
            left: 0;
            top: 50%;
            margin-top: 0;
        }
        
        @media (max-width: 767px) {
            .tes10 .arrows-button .tes10-next-arrow {
                position: relative;
            }
        }
        
        .tes10 .arrows-button .tes10-prev-arrow {
            position: absolute;
            right: 0;
            top: 50%;
            margin-top: 0;
        }
        
        @media (max-width: 767px) {
            .tes10 .arrows-button .tes10-prev-arrow {
                position: relative;
            }
        }
        /*
::::::::::::::::::::::::::
 TESTIMONIAL AREA CSS
::::::::::::::::::::::::::
*/
        
        .single-testimonial {
            margin-top: 40px;
            margin-bottom: 30px;
            cursor: move;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .single-testimonial {
                padding-bottom: 20px;
            }
        }
        
        @media (max-width: 767px) {
            .single-testimonial {
                padding-bottom: 20px;
            }
        }
        
        .single-testimonial h5 {
            font-size: 30px;
            line-height: 44px;
            text-align: center;
            font-size: var(--f-fs-font-fs28);
            line-height: var(--f-fs-font-fs44);
            font-weight: var(--f-fw-regular);
            color: #fff;
        }
        
        @media (max-width: 767px) {
            .single-testimonial h5 {
                font-size: 18px;
                line-height: 28px;
            }
        }
        
        .author {
            text-align: center;
            margin-top: 60px;
        }
        
        .author a {
            font-size: 21px;
            display: inline-block;
            margin-bottom: 10px;
            color: var(--ztc-bg-color-w);
        }
        
        @media (max-width: 767px) {
            .author a {
                font-size: 18px;
            }
        }
        
        .author p {
            font-size: 16px;
            line-height: 16px;
            text-align: center;
            opacity: 0.6;
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.7882352941);
        }
        
        @media (max-width: 767px) {
            .author p {
                font-size: 14px;
            }
        }
        
        .testimonial-nav {
            width: 560px;
            margin: 0 auto;
            margin-left: 160px;
        }
        
        @media (max-width: 767px) {
            .testimonial-nav {
                width: auto;
                margin-left: 0;
            }
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .testimonial-nav {
                width: auto;
                margin-left: 0;
            }
        }
        
        .testimonial-sliders {
            position: relative;
            z-index: 2;
        }
        
        .testimonial-arrows>div {
            position: absolute;
            top: 50%;
            left: -120px;
        }
        
        @media (max-width: 767px) {
            .testimonial-arrows>div {
                left: 50%;
                margin-left: -80px;
                top: 95%;
                margin-bottom: 40px;
            }
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .testimonial-arrows>div {
                top: 95%;
                left: 50%;
                margin-left: -80px;
            }
        }
        
        .testimonial-arrows .slick-arrow button {
            width: 60px;
            height: 60px;
            text-align: center;
            background: none;
            border-radius: 50px;
            transition: all 0.3s;
            border: none;
            border: 1px solid rgba(255, 255, 255, 0.7450980392);
            color: #fff;
        }
        
        .testimonial-arrows .testimonial-next-arrow {
            left: auto;
            right: -120px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .testimonial-arrows .testimonial-next-arrow {
                right: 50%;
                margin-right: -80px;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .testimonial-arrows .testimonial-next-arrow {
                right: 50%;
                margin-right: -80px;
                margin-bottom: 30px;
            }
        }
        
        .testimonial-arrows .slick-arrow button:hover {
            transition: all 0.3s;
            background-color: var(--ztc-bg-color-w);
            color: var(--ztc-text-text-1);
        }
        
        .single-testimonial-nav.slick-slide {
            visibility: hidden;
            height: 80px !important;
            width: 80px !important;
        }
        
        .single-testimonial-nav.slick-slide.slick-active,
        .single-testimonial-nav.slick-slide.slick-active.slick-center {
            visibility: visible;
        }
        
        .single-testimonial-nav.slick-slide.slick-active {
            opacity: 0.6;
            transition: all 0.1s;
        }
        
        .single-testimonial-nav.slick-slide.slick-active.slick-center {
            opacity: 1;
            transition: all 0.1s;
            margin: 0px 8px;
        }
        
        .single-testimonial-nav.slick-slide img {
            display: block;
            border-radius: 50%;
            transition: all 0.1s;
            transform: scale(0.8);
            height: 80px;
            width: 80px !important;
            width: auto;
        }
        
        .single-testimonial-nav.slick-slide.slick-center img {
            transition: all 0.1s;
            transform: scale(1);
            padding: 8px;
            border: 1px solid rgba(255, 255, 255, 0.603);
            border-radius: 50%;
        }
        
        .testimonial-2 .testimonial-arrows .slick-arrow button:hover {
            transition: all 0.3s;
        }
        
        .testimonial-3 .single-testimonial {
            border-radius: 8px;
            padding: 24px;
            margin-top: 0;
            cursor: move;
        }
        
        .testimonial-3 .single-testimonial p {
            font-size: 18px;
            line-height: 30px;
            color: #304952;
            margin-bottom: 24px;
        }
        
        @media (max-width: 767px) {
            .testimonial-3 .single-testimonial p {
                font-size: 16px;
                line-height: 26px;
            }
        }
        
        .testimonial-3 .testimonial-icon {
            background: #F5D1A4;
            box-shadow: 0 4px 15px rgba(245, 209, 164, 0.5);
            width: 50px;
            height: 50px;
            text-align: center;
            line-height: 30px;
            border-radius: 50px;
            padding: 10px;
            margin-bottom: 16px;
        }
        
        .testimonial-3 .author-reviews {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .testimonial-3 .review-1 {
            display: flex;
            box-shadow: 0 4px 10px rgba(220, 237, 243, 0.5);
            border-radius: 8px;
            padding: 3px 8px;
        }
        
        .testimonial-3 .review li {
            display: inline-block;
            font-size: 18px;
            color: #6FCF97;
        }
        
        @media (max-width: 767px) {
            .testimonial-3 .review li {
                font-size: 16px;
            }
        }
        
        .testimonial-3 .review-rate p {
            font-size: 14px;
            margin-bottom: 0;
        }
        
        .testimonial-3 .author {
            margin-top: 0;
        }
        
        .testimonial-3 .author a {
            font-size: 18px;
            line-height: 18px;
        }
        
        @media (max-width: 767px) {
            .testimonial-3 .author a {
                font-size: 16px;
            }
        }
        
        .testimonial-4 .testimonials-4 {
            position: relative;
            z-index: 2;
        }
        
        .testimonial-4 .testimonials-4:after {
            position: absolute;
            content: "";
            height: 100%;
            width: calc(100% - 215px);
            top: 0;
            right: 0;
            z-index: -1;
            border-radius: 8px;
        }
        
        @media (max-width: 767px) {
            .testimonial-4 .testimonials-4:after {
                width: 100%;
            }
        }
        
        .testimonial-4 .single-testimonial {
            position: relative;
            z-index: 2;
            cursor: move;
            padding: 50px 100px 50px 350px;
            margin-top: 0;
        }
        
        @media (max-width: 767px) {
            .testimonial-4 .single-testimonial {
                padding: 40px 20px 20px;
                text-align: center;
            }
        }
        
        .testimonial-4 .testimonial-image {
            height: 330px;
            width: 300px;
            position: absolute;
            left: 0;
            top: 50%;
            margin-top: -165px;
        }
        
        @media (max-width: 767px) {
            .testimonial-4 .testimonial-image {
                height: 120px;
                width: 120px;
                position: relative;
                left: 0;
                top: 0;
                margin: 0 auto 20px;
            }
        }
        
        .testimonial-4 .testimonial-contents p {
            font-size: 28px;
            line-height: 42px;
            margin: 20px 0 30px;
        }
        
        @media (max-width: 767px) {
            .testimonial-4 .testimonial-contents p {
                font-size: 18px;
                line-height: 28px;
            }
        }
        
        .testimonial-4 .testimonial-image img {
            border-radius: 8px;
            height: 100%;
            width: 100% !important;
            -o-object-fit: cover;
            object-fit: cover;
        }
        
        .testimonial-4 .testimonial-icon {
            width: 50px;
        }
        
        @media (max-width: 767px) {
            .testimonial-4 .testimonial-icon {
                width: 50px;
                margin: 0 auto;
            }
        }
        
        .testimonial-4 .testimonial-author a {
            font-size: 20px;
            line-height: 20px;
        }
        
        .testimonial-4 .testimonial-author p {
            font-size: 14px;
            line-height: 14px;
            margin: 10px 0 0;
        }
        
        .testimonial-4 .owl-nav button {
            height: 50px;
            width: 50px;
            text-align: center;
            background: #FFFFFF !important;
            border-radius: 50px;
            font-size: 16px !important;
            display: block;
            margin: 10px 0;
            transition: all 0.3s;
        }
        
        @media (max-width: 767px) {
            .testimonial-4 .owl-nav button {
                border-radius: 50px;
                font-size: 16px !important;
                display: inline-block;
                margin: 0 5px;
            }
        }
        
        .testimonial-4 .owl-nav {
            position: absolute;
            top: 50%;
            margin-top: -65px;
            right: -25px;
            z-index: 3;
        }
        
        @media (max-width: 767px) {
            .testimonial-4 .owl-nav {
                position: relative;
                top: auto;
                margin-top: 0;
                right: auto;
                z-index: 3;
                bottom: 0;
                width: 100%;
                text-align: center;
                display: inline-block;
                margin: 20px 0 40px;
            }
        }
        
        .testimonial-4 .owl-nav button:hover {
            background: #161540 !important;
            color: #fff !important;
            transition: all 0 0.3s;
        }
        
        @media (max-width: 767px) {
            .contact-3 {
                overflow-x: hidden;
            }
        }
        /*
::::::::::::::::::::::::::
 WORK AREA CSS
::::::::::::::::::::::::::
*/
        
        .work .single-items {
            display: flex;
            align-items: start;
            margin-top: 30px;
        }
        
        .work .single-items .icon {
            height: 50px;
            width: 50px;
            text-align: center;
            line-height: 50px;
            border-radius: 50%;
            background-color: var(--ztc-bg-bg-2);
            margin-right: 16px;
            transition: all 0.4s;
        }
        
        .work .single-items:hover .icon {
            background-color: var(--ztc-bg-main-bg-1);
            transition: all 0.4s;
        }
        
        .work .heading1 {
            padding-right: 60px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .work .heading1 {
                padding-right: 0;
            }
        }
        
        @media (max-width: 767px) {
            .work .heading1 {
                padding-right: 0;
            }
        }
        
        .work .work-images {
            position: relative;
        }
        
        .work .work-images .image {
            margin-top: 30px;
        }
        
        .work .work-images .image img {
            width: 100%;
            border-radius: 7px;
        }
        
        .work .work-images .bg-image {
            position: absolute;
            top: 160px;
            right: 50px;
            z-index: -1;
        }
        
        .work2 .work2-box {
            padding: 24px;
            border-radius: 7px;
            margin-top: 30px;
            transition: all 0.4s;
        }
        
        .work2 .work2-box .image {
            border-radius: 7px;
            overflow: hidden;
        }
        
        .work2 .work2-box .image img {
            width: 100%;
            transition: all 0.4s;
        }
        
        .work2 .work2-box::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: var(--ztc-bg-bg-4);
            border: 1px solid var(--ztc-bg-bg-5);
            z-index: -111;
            border-radius: 7px;
            transition: all 0.4s;
        }
        
        .work2 .work2-box:hover .image img {
            transition: all 0.4s;
            transform: scale(1.1) rotate(2deg);
        }
        
        .work2 .work2-box:hover::after {
            border: 1px solid var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
        }
        
        .work3 .big-image {
            text-align: end;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .work3 .big-image {
                text-align: start;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .work3 .big-image {
                text-align: start;
                margin-top: 30px;
            }
        }
        
        .work3 .big-image img {
            border-radius: 4px;
        }
        
        .work3 .work3-box {
            border: 1px solid #EEEFF1;
            border-radius: 7px;
            padding: 24px;
            margin-top: 30px;
            transition: all 0.4s;
            position: relative;
        }
        
        .work3 .work3-box span.stap {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 7px;
            border: 2px solid var(--ztc-bg-main-bg-3);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-bg-main-bg-3);
            transition: all 0.4s;
        }
        
        .work3 .work3-box h3 a {
            padding: 16px 0px;
        }
        
        .work3 .work3-box:hover {
            transform: translateY(-10px);
        }
        
        .work3 .work3-box:hover::after {
            opacity: 1;
            transition: all 0.4s;
        }
        
        .work3 .work3-box:hover .heading3 h3 a {
            color: #fff;
            transition: all 0.4s;
        }
        
        .work3 .work3-box:hover .heading3 p {
            color: #fff;
            transition: all 0.4s;
        }
        
        .work3 .work3-box:hover span.stap {
            background-color: var(--ztc-bg-color-w);
            color: var(--ztc-bg-main-bg-3);
            transition: all 0.4s;
            border: 2px solid var(--ztc-bg-color-w);
            text-transform: uppercase;
        }
        
        .work3 .work3-box::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: var(--ztc-bg-main-bg-3);
            transition: all 0.4s;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            border-radius: 7px;
            z-index: -1;
            opacity: 0;
        }
        
        .work4 .work4-box {
            border: 1px solid #EEEFF1;
            border-radius: 7px;
            padding: 32px 24px;
            margin-top: 30px;
            position: relative;
            transition: all 0.4s;
        }
        
        .work4 .work4-box span.after {
            display: inline-block;
            color: var(--ztc-bg-main-bg-2);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-semibold);
            position: relative;
            margin-bottom: 16px;
        }
        
        .work4 .work4-box::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 20px;
            height: 6px;
            background-color: var(--ztc-bg-main-bg-2);
            transition: all 0.4s;
        }
        
        .work4 .work4-box:hover {
            background-color: var(--ztc-bg-color-w);
            border: 1px solid var(--ztc-bg-color-w);
            transition: all 0.4s;
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            transform: translateY(-10px);
        }
        
        .work4 .work4-box:hover::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background-color: var(--ztc-bg-main-bg-2);
            transition: all 0.4s;
        }
        
        .work4 .work4-box.active {
            background-color: var(--ztc-bg-color-w);
            border: 1px solid var(--ztc-bg-color-w);
            transition: all 0.4s;
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            transform: translateY(-10px);
        }
        
        .work4 .work4-box.active::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background-color: var(--ztc-bg-main-bg-2);
            transition: all 0.4s;
        }
        
        .about-work .work4-box {
            border: 2px solid var(--ztc-bg-bg-5);
            border-radius: 7px;
            padding: 32px 24px;
            margin-top: 30px;
            position: relative;
            transition: all 0.4s;
            background-color: var(--ztc-bg-bg-4);
        }
        
        .about-work .work4-box span.after {
            display: inline-block;
            color: var(--ztc-bg-main-bg-4);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-semibold);
            position: relative;
            margin-bottom: 16px;
        }
        
        .about-work .work4-box::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 20px;
            height: 6px;
            background-color: var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
        }
        
        .about-work .work4-box:hover {
            transition: all 0.4s;
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            transform: translateY(-10px);
        }
        
        .about-work .work4-box:hover::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background-color: var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
        }
        
        .work5 .main-shape {
            margin-top: 30px;
            text-align: center;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .work5 .main-shape {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .work5 .main-shape {
                display: none;
            }
        }
        
        .work5 .work-box {
            padding: 24px;
            position: relative;
            margin-top: 30px;
        }
        
        .work5 .work-box p {
            padding: 8px 0px 16px 0px;
        }
        
        .work5 .work-box .learn {
            display: inline-block;
            color: var(--Home-Page-4-Text-colors, #05092B);
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 16px;
            /* 100% */
            transition: all 0.4s;
        }
        
        .work5 .work-box .learn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .work5 .work-box::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background: #F5F6F9;
            border-radius: 4px;
            z-index: -2;
        }
        
        .work5 .work-box::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
            border-radius: 4px;
            z-index: -1;
            transform: rotateY(80deg);
            opacity: 0;
            transition: all 0.4s;
        }
        
        .work5 .work-box .number {
            -webkit-text-stroke-width: 2;
            -webkit-text-stroke-color: var(--Home-Page-4-Text-colors, #05092B);
            font-family: Figtree;
            font-size: 32px;
            font-style: normal;
            font-weight: 400;
            line-height: 32px;
            /* 100% */
            position: absolute;
            bottom: 10px;
            right: 15px;
            transition: all 0.4s;
        }
        
        .work5 .work-box:hover {
            transition: all 0.4s;
        }
        
        .work5 .work-box:hover::before {
            transform: rotateY(0deg);
            opacity: 1;
            transition: all 0.4s;
        }
        
        .work5 .work-box:hover h4 a {
            transition: all 0.4s;
            color: #fff;
        }
        
        .work5 .work-box:hover p {
            color: rgba(255, 255, 255, 0.7960784314);
            transition: all 0.4s;
        }
        
        .work5 .work-box:hover .learn {
            transition: all 0.4s;
            color: #fff;
        }
        
        .work5 .work-box:hover .number {
            color: #fff;
            transition: all 0.4s;
        }
        
        .work7 img {
            width: 100%;
        }
        
        .work7 .heading7 {
            padding-left: 30px;
        }
        
        .work7 .heading7 .work-box {
            display: flex;
            align-items: start;
            margin-top: 30px;
        }
        
        .work7 .heading7 .work-box .icon {
            margin-right: 30px;
        }
        
        .work7 .heading7 .work-box .icon span {
            height: 17px;
            width: 17px;
            text-align: center;
            line-height: 17px;
            font-size: 11px;
            color: #02000E;
            border: 1px solid #02000E;
            border-radius: 50%;
            display: inline-block;
            position: relative;
        }
        
        .work7 .heading7 .work-box .icon span::after {
            content: "";
            position: absolute;
            top: 30px;
            left: 7px;
            height: 50px;
            width: 1px;
            background-color: #02000E;
        }
        
        .work7 .heading7 .work-box:hover h4 a {
            color: #0061FF;
        }
        
        .work7 .heading7 .work-box:hover span {
            height: 17px;
            width: 17px;
            text-align: center;
            line-height: 17px;
            font-size: 11px;
            color: #0061FF;
            border: 1px solid #0061FF;
            border-radius: 50%;
            display: inline-block;
            position: relative;
        }
        
        .work7 .heading7 .work-box:hover span::after {
            content: "";
            position: absolute;
            top: 30px;
            left: 7px;
            height: 50px;
            width: 1px;
            background-color: #0061FF;
        }
        
        .works9 .work-box {
            margin-top: 30px;
            text-align: center;
        }
        
        .works9 .work-box .image img {
            width: 100%;
        }
        
        .works9 .work-box .heading-area {
            display: inline-block;
            background-color: #F3F5F2;
            padding: 20px 36px;
            border-radius: 4px;
            transition: all 0.4s;
            margin-top: 30px;
        }
        
        .works9 .work-box .heading-area h4 a {
            display: inline-block;
            color: var(--Text-Color, #181818);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            /* 100% */
        }
        
        .works9 .work-box .heading-area p {
            color: var(--Paragraph-Color, #646375);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 26px;
            /* 162.5% */
            padding-top: 16px;
        }
        
        .works9 .work-box:hover .heading-area {
            transform: translateY(-10px);
            transition: all 0.4s;
            background-color: #A2EA61;
        }
        
        .case9 {
            position: relative;
        }
        
        .case9 .case9-slider {
            margin-top: 60px;
        }
        
        .case9 .case9-slider .single-slider {
            position: relative;
            margin: 0px 10px;
        }
        
        .case9 .case9-slider .single-slider .image {
            border-radius: 8px;
            overflow: hidden;
        }
        
        .case9 .case9-slider .single-slider .image img {
            width: 100%;
            transition: all 0.4s;
        }
        
        .case9 .case9-slider .single-slider .heading-area {
            position: absolute;
            bottom: 30px;
            margin: 0px 30px;
            background-color: #fff;
            border-radius: 8px;
            padding: 28px;
        }
        
        .case9 .case9-slider .single-slider .heading-area p {
            color: var(--Paragraph-Color, #646375);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            text-transform: uppercase;
        }
        
        .case9 .case9-slider .single-slider .heading-area h5 a {
            display: inline-block;
            color: var(--Text-Color, rgba(24, 24, 24, 0.8784313725));
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            /* 100% */
            padding-top: 16px;
            transition: all 0.4s;
        }
        
        .case9 .case9-slider .single-slider .heading-area .arrow {
            display: inline-block;
            height: 48px;
            width: 48px;
            text-align: center;
            line-height: 48px;
            background-color: #A2EA61;
            border-radius: 50%;
            color: #181818;
            font-size: 20px;
            transform: rotate(-45deg);
            position: absolute;
            top: -24px;
            right: -24px;
        }
        
        .case9 .case9-slider .single-slider:hover {
            transition: all 0.4s;
        }
        
        .case9 .case9-slider .single-slider:hover .image img {
            transition: all 0.4s;
            transform: scale(1.1) rotate(2deg);
        }
        
        .case9 .case9-slider .single-slider:hover .heading-area h5 a {
            color: #A2EA61;
            transition: all 0.4s;
        }
        
        .case9 .arrows-button {
            text-align: end;
        }
        
        .case9 .arrows-button button {
            border: none;
            color: #181818;
            height: 56px;
            width: 56px;
            line-height: 56px;
            text-align: center;
            border-radius: 50%;
            font-size: 22px;
            background-color: #fff;
            transition: all 0.4s;
            margin-right: 10px;
        }
        
        .case9 .arrows-button button:hover {
            background-color: #A2EA61;
            transition: all 0.4s;
        }
        
        .case10 .case-box {
            margin-top: 30px;
            position: relative;
        }
        
        .case10 .case-box .image {
            border-radius: 8px;
            overflow: hidden;
        }
        
        .case10 .case-box .image img {
            width: 100%;
            transition: all 0.4s;
        }
        
        .case10 .case-box .hover-area {
            position: absolute;
            margin: 0px 24px;
            bottom: 24px;
            padding: 24px;
            overflow: hidden;
        }
        
        .case10 .case-box .hover-area h4 a {
            display: inline-block;
            color: #FFF;
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 20px;
            /* 100% */
            transform: translateY(100px);
            transition: all 0.4s;
            position: relative;
            z-index: 2;
        }
        
        .case10 .case-box .hover-area p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            /* 150% */
            padding: 16px 0px;
            transform: translateY(140px);
            transition: all 0.4s;
            position: relative;
            z-index: 2;
        }
        
        .case10 .case-box .hover-area a.learn {
            display: inline-block;
            color: #FFF;
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 20px;
            /* 100% */
            transform: translateY(100px);
            transition: all 0.4s;
            position: relative;
            z-index: 2;
        }
        
        .case10 .case-box .hover-area a.learn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .case10 .case-box .hover-area::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            height: 10px;
            width: 100%;
            border-radius: 7px;
            background: #24908D;
            transition: all 0.4s;
            z-index: 0;
        }
        
        .case10 .case-box:hover {
            transition: all 0.4s;
        }
        
        .case10 .case-box:hover .image img {
            transition: all 0.4s;
            transform: scale(1.1) rotate(2deg);
        }
        
        .case10 .case-box:hover .hover-area h4 a {
            display: inline-block;
            color: #FFF;
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 20px;
            /* 100% */
            transform: translateY(0);
            transition: all 0.4s;
        }
        
        .case10 .case-box:hover .hover-area p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            /* 150% */
            padding: 16px 0px;
            transform: translateY(0);
            transition: all 0.4s;
        }
        
        .case10 .case-box:hover .hover-area a.learn {
            display: inline-block;
            color: #FFF;
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 20px;
            /* 100% */
            transform: translateY(0);
            transition: all 0.4s;
        }
        
        .case10 .case-box:hover .hover-area::after {
            height: 180px;
            transition: all 0.4s;
            border-radius: 8px;
        }
        /*
::::::::::::::::::::::::::
 WORK AREA CSS
::::::::::::::::::::::::::
*/
        /*
::::::::::::::::::::::::::
 BLOG AREA CSS
::::::::::::::::::::::::::
*/
        
        .blog .blog-box {
            margin-top: 30px;
            border: 1px solid #EEEFF1;
            border-radius: 7px;
        }
        
        .blog .blog-box .image {
            overflow: hidden;
            border-radius: 7px 7px 0px 0px;
        }
        
        .blog .blog-box .image img {
            width: 100%;
            border-radius: 7px 7px 0px 0px;
            transition: all 0.4s;
        }
        
        .blog .blog-box .heading {
            padding: 24px;
        }
        
        .blog .blog-box .heading .tags a {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            margin: 0px 16px 0px 0px;
        }
        
        .blog .blog-box .heading .tags a img {
            margin-top: -3px;
            margin-right: 3px;
        }
        
        .blog .blog-box .heading h4 a {
            display: inline-block;
            font-size: var(--f-fs-font-fs20);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            padding: 16px 0px;
            transition: all 0.4s;
        }
        
        .blog .blog-box .heading h4 a:hover {
            color: var(--ztc-bg-main-bg-1);
        }
        
        .blog .blog-box .heading .learn {
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-main-bg-1);
            padding: 10px 12px;
            border-radius: 7px;
            border: 2px solid var(--ztc-bg-main-bg-1);
            display: inline-block;
            transition: all 0.4s;
        }
        
        .blog .blog-box .heading .learn span {
            display: inline-block;
            margin-left: 2px;
            transition: all 0.4s;
        }
        
        .blog .blog-box:hover .image img {
            transition: all 0.4s;
            transform: scale(1.1) rotate(4deg);
        }
        
        .blog .blog-box:hover .learn {
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-color-w);
            padding: 10px 12px;
            border-radius: 7px;
            border: 2px solid var(--ztc-bg-main-bg-1);
            display: inline-block;
            background-color: var(--ztc-bg-main-bg-1);
            transition: all 0.4s;
        }
        
        .blog .blog-box:hover .learn span {
            display: inline-block;
            margin-left: 2px;
            transition: all 0.4s;
            transform: rotate(-45deg);
        }
        
        .bottom-circle {
            position: relative;
            overflow: hidden;
        }
        
        .bottom-circle::after {
            content: "";
            position: absolute;
            top: 200px;
            height: 70%;
            width: 100%;
            background-image: url(../img/bg/bottom-shape2.png);
            background-position: center center;
            background-size: contain;
            background-repeat: no-repeat;
            z-index: -9;
            animation-name: shape-animaiton4;
            animation-duration: 92s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: ease-in-out;
            overflow: hidden;
        }
        
        .blog .blog2-box {
            margin-top: 30px;
        }
        
        .blog .blog2-box .image {
            border-radius: 7px;
            overflow: hidden;
        }
        
        .blog .blog2-box .image img {
            width: 100%;
            border-radius: 7px;
            transition: all 0.4s;
        }
        
        .blog .blog2-box .heading2 {
            background-color: var(--ztc-bg-bg-4);
            border: 1px solid var(--ztc-bg-bg-5);
            padding: 20px;
            border-radius: 7px;
            margin: -70px 30px 0px 30px;
            position: relative;
            z-index: 2;
            transition: all 0.4s;
        }
        
        .blog .blog2-box .heading2 .tags .date {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            color: var(--ztc-text-text-2);
            font-weight: var(--f-fw-regular);
            display: inline-block;
            margin-bottom: 16px;
        }
        
        .blog .blog2-box .heading2 .tags .date img {
            margin-top: -4px;
            margin-right: 2px;
        }
        
        .blog .blog2-box .heading2 .tags .outhor {
            margin-left: 24px;
        }
        
        .blog .blog2-box .heading2 .learn {
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            color: var(--ztc-text-text-2);
            font-weight: var(--f-fw-blod);
            display: inline-block;
            transition: all 0.4s;
        }
        
        .blog .blog2-box .heading2 .learn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .blog .blog2-box .heading2 .learn:hover {
            color: var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
        }
        
        .blog .blog2-box:hover .image img {
            transform: scale(1.1) rotate(4deg);
            transition: all 0.4s;
        }
        
        .blog .blog2-box:hover .heading2 {
            transform: translateY(-20px);
            transition: all 0.4s;
            border: 1px solid var(--ztc-bg-main-bg-4);
        }
        
        .blog.blog-page .heading1 {
            border-radius: 7px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: var(--White, #FFF);
            box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.08);
            padding: 20px;
            border-radius: 7px;
            margin: -70px 30px 0px 30px;
            position: relative;
            z-index: 2;
            transition: all 0.4s;
        }
        
        .blog.blog-page .heading1 h4 a {
            font-size: 24px;
        }
        
        .blog.blog-page .heading1 .tags .date {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            color: #676879;
            font-weight: var(--f-fw-regular);
            display: inline-block;
            margin-bottom: 16px;
        }
        
        .blog.blog-page .heading1 .tags .date img {
            margin-top: -4px;
            margin-right: 2px;
            filter: brightness(0);
        }
        
        .blog.blog-page .heading1 .tags .outhor {
            margin-left: 24px;
        }
        
        .blog.blog-page .heading1 .learn {
            font-size: var(--f-fs-font-fs18);
            line-height: var(--f-fs-font-fs18);
            color: var(--ztc-text-text-1);
            font-weight: var(--f-fw-blod);
            display: inline-block;
            transition: all 0.4s;
        }
        
        .blog.blog-page .heading1 .learn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .blog.blog-page .heading1 .learn:hover {
            color: var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
        }
        
        .blog.blog-sidebar-page .heading1 {
            margin: -70px 0px 0px 0px;
            border-radius: 0px 0px 7px 7px;
            padding: 32px;
        }
        
        .blog.blog-sidebar-page .tags .date {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            color: #676879;
            font-weight: var(--f-fw-regular);
            display: inline-block;
            margin-bottom: 16px;
        }
        
        .blog.blog-sidebar-page .tags .date img {
            margin-top: -4px;
            margin-right: 2px;
            filter: brightness(0);
        }
        
        .blog.blog-sidebar-page .tags .outhor {
            margin-right: 24px;
            margin-left: 0 !important;
        }
        
        .blog3 .blog3-box {
            margin-top: 30px;
            background-color: var(--ztc-bg-bg-6);
            border-radius: 7px;
            padding: 24px;
        }
        
        .blog3 .blog3-box .image {
            overflow: hidden;
            border-radius: 7px;
        }
        
        .blog3 .blog3-box .image img {
            width: 100%;
            transition: all 0.4s;
        }
        
        .blog3 .blog3-box .heading3 .tags a.date {
            margin-bottom: 16px;
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-text-pera-text-1);
        }
        
        .blog3 .blog3-box .heading3 .tags a.date img {
            display: inline-block;
            margin-top: -4px;
            margin-right: 3px;
        }
        
        .blog3 .blog3-box .heading3 .tags .outhor {
            margin-left: 24px;
        }
        
        .blog3 .blog3-box .heading3 a.learn {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            margin-bottom: 24px;
            transition: all 0.4s;
        }
        
        .blog3 .blog3-box .heading3 a.learn:hover {
            color: var(--ztc-bg-main-bg-3);
            transition: all 0.4s;
        }
        
        .blog3 .blog3-box .heading3 a.learn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .blog3 .blog3-box:hover .image img {
            transform: rotate(2deg) scale(1.1);
            transition: all 0.4s;
        }
        
        .blog4 .blog4-box {
            margin-top: 30px;
        }
        
        .blog4 .blog4-box .image {
            border-radius: 7px;
            overflow: hidden;
        }
        
        .blog4 .blog4-box .image img {
            width: 100%;
            border-radius: 7px;
            transition: all 0.4s;
        }
        
        .blog4 .blog4-box .heading4 {
            border-radius: 7px;
            padding: 20px;
            background-color: var(--ztc-bg-color-w);
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            margin: -130px 30px 0px 30px;
            position: relative;
            z-index: 1;
        }
        
        .blog4 .blog4-box .heading4 .tags a.date {
            margin-bottom: 16px;
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-text-pera-text-1);
        }
        
        .blog4 .blog4-box .heading4 .tags a.date img {
            display: inline-block;
            margin-top: -4px;
            margin-right: 3px;
        }
        
        .blog4 .blog4-box .heading4 .tags .outhor {
            margin-left: 24px;
        }
        
        .blog4 .blog4-box .heading4 h4 a {
            line-height: var(--f-fs-font-fs24);
        }
        
        .blog4 .blog4-box .heading4 a.learn {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            margin-bottom: 24px;
            transition: all 0.4s;
        }
        
        .blog4 .blog4-box .heading4 a.learn:hover {
            color: var(--ztc-bg-main-bg-2);
            transition: all 0.4s;
        }
        
        .blog4 .blog4-box .heading4 a.learn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .blog4 .blog4-box:hover .image img {
            transition: all 0.4s;
            transform: scale(1.1) rotate(2deg);
        }
        
        .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs {
            display: flex;
            align-items: center;
            padding-bottom: 20px;
        }
        
        .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs .image {
            height: 100px;
            width: 100px;
        }
        
        .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs .image img {
            height: 100px;
            width: 100px;
        }
        
        .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs .heading {
            padding-left: 16px;
        }
        
        .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs .heading a.date {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            color: #0D0E10;
        }
        
        .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs .heading a.date img {
            margin-top: -3px;
            filter: brightness(0);
        }
        
        .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs .heading h5 a {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-text-text-1);
            padding-top: 16px;
            transition: all 0.4s;
        }
        
        .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs .heading h5 a:hover {
            color: var(--ztc-bg-main-bg-1);
            transition: all 0.4s;
        }
        
        .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs:nth-last-child(1) {
            padding-bottom: 0;
        }
        
        .details-post-area .social-users {
            padding-top: 30px;
        }
        
        .details-post-area .social-users ul li {
            display: inline-block;
            margin-right: 24px;
        }
        
        .details-post-area .social-users ul li a {
            color: var(--ztc-text-text-1);
            font-weight: var(--f-fw-regular);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            display: inline-block;
        }
        
        .details-post-area .social-users ul li a img {
            margin-top: -3px;
            margin-right: 3px;
            filter: brightness(0);
        }
        
        .details-post-area .video-area-image {
            position: relative;
        }
        
        .details-post-area .video-area-image .video-buttton {
            position: absolute;
            left: 50%;
            top: 50%;
            margin-top: -40px;
            margin-left: -70px;
        }
        
        .details-post-area .comment-box {
            background-color: #F8F9FA;
            padding: 24px;
            border-radius: 7px;
            margin-top: 32px;
            transition: all 0.4s;
        }
        
        .details-post-area .comment-box .box-top-area {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .details-post-area .comment-box .box-top-area .heading-area {
            display: flex;
            align-items: center;
        }
        
        .details-post-area .comment-box .box-top-area .heading-area .image {
            height: 70px 70px;
        }
        
        .details-post-area .comment-box .box-top-area .heading-area .heading {
            padding-left: 20px;
        }
        
        .details-post-area .comment-box .box-top-area .heading-area .heading h5 a {
            font-size: var(--f-fs-font-fs24);
            line-height: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            display: inline-block;
        }
        
        .details-post-area .comment-box .box-top-area .heading-area .heading a.date {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            padding-top: 6px;
        }
        
        .details-post-area .comment-box .box-top-area .reply-btn a {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-text-text-1);
            transition: all 0.4s;
        }
        
        .details-post-area .comment-box .box-top-area .reply-btn a:hover {
            color: var(--ztc-bg-main-bg-1);
            transition: all 0.4s;
        }
        
        .details-post-area .comment-box:hover {
            transform: translateY(-5px);
            transition: all 0.4s;
        }
        
        .details-post-area .comment-box.comment-box2 {
            margin-left: 60px;
        }
        
        .tags-links .tags ul li {
            display: inline-block;
        }
        
        .tags-links .tags ul li.text {
            font-size: var(--f-fs-font-fs24);
            line-height: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            margin-right: 10px;
        }
        
        .tags-links .tags ul li.tag-text a {
            display: inline-block;
            background-color: #F8F9FA;
            border-radius: 30px;
            padding: 10px 16px;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            margin: 8px 4px;
            transition: all 0.4s;
        }
        
        .tags-links .tags ul li.tag-text a:hover {
            background-color: var(--ztc-bg-main-bg-1);
            transition: all 0.4s;
            color: var(--ztc-bg-color-w);
        }
        
        .tags-links .social {
            text-align: end;
        }
        
        @media (max-width: 767px) {
            .tags-links .social {
                text-align: start;
                padding-top: 30px;
            }
        }
        
        .tags-links .social ul li {
            display: inline-block;
        }
        
        .tags-links .social ul li.text {
            font-size: var(--f-fs-font-fs24);
            line-height: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-color-w);
            margin-right: 10px;
        }
        
        .tags-links .social ul li a {
            display: inline-block;
            color: var(--ztc-text-text-1);
            height: 33px;
            width: 33px;
            border-radius: 50%;
            background-color: #F8F9FA;
            text-align: center;
            line-height: 33px;
            margin: 0px 3px;
        }
        
        .tags-links .social ul li a:hover {
            background-color: var(--ztc-bg-main-bg-1);
            transition: all 0.4s;
            color: var(--ztc-bg-color-w);
        }
        
        .blog-details-border {
            background-color: rgba(76, 77, 108, 0.2549019608);
            width: 100%;
            height: 1px;
            margin: 50px 0px;
        }
        
        .contact-form-details {
            background-color: #F8F9FA;
            padding: 32px;
            border-radius: 7px;
        }
        
        .contact-form-details .single-input input,
        .contact-form-details .single-input textarea {
            padding: 16px;
            border: none;
            background-color: #fff;
            margin-bottom: 20px;
            border-radius: 4px;
            width: 100%;
            color: #676879;
        }
        
        .contact-form-details .single-input input:focus,
        .contact-form-details .single-input textarea:focus {
            outline: none;
        }
        
        .contact-form-details .single-input input::-moz-placeholder,
        .contact-form-details .single-input textarea::-moz-placeholder {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            color: #676879;
            font-weight: var(--f-fw-regular);
        }
        
        .contact-form-details .single-input input::placeholder,
        .contact-form-details .single-input textarea::placeholder {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            color: #676879;
            font-weight: var(--f-fw-regular);
        }
        
        .blog.blog-inline.blog-page .heading1.main {
            box-shadow: none;
            padding: 0;
            background: none;
        }
        
        .comon-body .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs {
            display: flex;
            align-items: center;
            padding-bottom: 20px;
        }
        
        .comon-body .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs .image {
            height: 100px;
            width: 100px;
        }
        
        .comon-body .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs .image img {
            height: 100px;
            width: 100px;
        }
        
        .comon-body .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs .heading {
            padding-left: 16px;
        }
        
        .comon-body .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs .heading a.date {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-bg-color-w);
        }
        
        .comon-body .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs .heading a.date img {
            margin-top: -3px;
            filter: brightness(40);
        }
        
        .comon-body .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs .heading h5 a {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-bg-color-w);
            padding-top: 16px;
            transition: all 0.4s;
        }
        
        .comon-body .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs .heading h5 a:hover {
            color: var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
        }
        
        .comon-body .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs:nth-last-child(1) {
            padding-bottom: 0;
        }
        
        .comon-body .details-post-area .social-users {
            padding-top: 30px;
        }
        
        .comon-body .details-post-area .social-users ul li {
            display: inline-block;
            margin-right: 24px;
        }
        
        .comon-body .details-post-area .social-users ul li a {
            color: var(--ztc-bg-color-w);
            font-weight: var(--f-fw-regular);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            display: inline-block;
        }
        
        .comon-body .details-post-area .social-users ul li a img {
            margin-top: -3px;
            margin-right: 3px;
            filter: brightness(40);
        }
        
        .comon-body .details-post-area .video-area-image {
            position: relative;
        }
        
        .comon-body .details-post-area .video-area-image .video-buttton {
            position: absolute;
            left: 50%;
            top: 50%;
            margin-top: -40px;
            margin-left: -70px;
        }
        
        .comon-body .details-post-area .comment-box {
            background-color: var(--ztc-bg-bg-4);
            border: 1px solid var(--ztc-bg-bg-5);
            padding: 24px;
            border-radius: 7px;
            margin-top: 32px;
            transition: all 0.4s;
        }
        
        .comon-body .details-post-area .comment-box .box-top-area {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .comon-body .details-post-area .comment-box .box-top-area .heading-area {
            display: flex;
            align-items: center;
        }
        
        .comon-body .details-post-area .comment-box .box-top-area .heading-area .image {
            height: 70px 70px;
        }
        
        .comon-body .details-post-area .comment-box .box-top-area .heading-area .heading {
            padding-left: 20px;
        }
        
        .comon-body .details-post-area .comment-box .box-top-area .heading-area .heading h5 a {
            font-size: var(--f-fs-font-fs24);
            line-height: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-color-w);
            display: inline-block;
        }
        
        .comon-body .details-post-area .comment-box .box-top-area .heading-area .heading a.date {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-2);
            padding-top: 6px;
        }
        
        .comon-body .details-post-area .comment-box .box-top-area .reply-btn a {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-bg-color-w);
            transition: all 0.4s;
        }
        
        .comon-body .details-post-area .comment-box .box-top-area .reply-btn a:hover {
            color: var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
        }
        
        .comon-body .details-post-area .comment-box:hover {
            transform: translateY(-5px);
            transition: all 0.4s;
            border: 1px solid var(--ztc-bg-main-bg-4);
        }
        
        .comon-body .details-post-area .comment-box.comment-box2 {
            margin-left: 60px;
        }
        
        .comon-body .tags-links .tags ul li {
            display: inline-block;
        }
        
        .comon-body .tags-links .tags ul li.text {
            font-size: var(--f-fs-font-fs24);
            line-height: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-color-w);
            margin-right: 10px;
        }
        
        .comon-body .tags-links .tags ul li.tag-text a {
            display: inline-block;
            border: 1px solid #484455;
            background-color: #342F42;
            border-radius: 30px;
            padding: 10px 16px;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-color-w);
            margin: 8px 4px;
            transition: all 0.4s;
        }
        
        .comon-body .tags-links .tags ul li.tag-text a:hover {
            border: 1px solid var(--ztc-bg-main-bg-4);
            background-color: var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
            color: var(--ztc-text-text-1);
        }
        
        .comon-body .tags-links .social {
            text-align: end;
        }
        
        @media (max-width: 767px) {
            .comon-body .tags-links .social {
                text-align: start;
                padding-top: 30px;
            }
        }
        
        .comon-body .tags-links .social ul li {
            display: inline-block;
        }
        
        .comon-body .tags-links .social ul li.text {
            font-size: var(--f-fs-font-fs24);
            line-height: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-bg-color-w);
            margin-right: 10px;
        }
        
        .comon-body .tags-links .social ul li a {
            display: inline-block;
            color: var(--ztc-bg-color-w);
            height: 33px;
            width: 33px;
            border-radius: 50%;
            background-color: var(--ztc-bg-bg-5);
            text-align: center;
            line-height: 33px;
            margin: 0px 3px;
        }
        
        .comon-body .tags-links .social ul li a:hover {
            background-color: var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
            color: var(--ztc-text-text-1);
        }
        
        .comon-body .contact-form-details {
            background-color: var(--ztc-bg-bg-4);
            border: 1px solid var(--ztc-bg-bg-5);
            padding: 32px;
            border-radius: 7px;
        }
        
        .comon-body .contact-form-details .single-input input,
        .comon-body .contact-form-details .single-input textarea {
            padding: 16px;
            border: none;
            background-color: var(--ztc-bg-bg-5);
            margin-bottom: 20px;
            border-radius: 4px;
            width: 100%;
            color: var(--ztc-bg-color-w);
        }
        
        .comon-body .contact-form-details .single-input input:focus,
        .comon-body .contact-form-details .single-input textarea:focus {
            outline: none;
        }
        
        .comon-body .contact-form-details .single-input input::-moz-placeholder,
        .comon-body .contact-form-details .single-input textarea::-moz-placeholder {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            color: rgba(255, 255, 255, 0.7137254902);
            font-weight: var(--f-fw-regular);
        }
        
        .comon-body .contact-form-details .single-input input::placeholder,
        .comon-body .contact-form-details .single-input textarea::placeholder {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            color: rgba(255, 255, 255, 0.7137254902);
            font-weight: var(--f-fw-regular);
        }
        
        .blog5 {
            position: relative;
        }
        
        .blog5 .blog-box {
            position: relative;
            margin-top: 30px;
        }
        
        .blog5 .blog-box .heading-area {
            border-radius: 4px 4px 0px 0px;
            background: var(--Home-Page-4-Gray-Colors, #F5F6F9);
            -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
            padding: 24px;
        }
        
        .blog5 .blog-box .heading-area h4 a {
            display: inline-block;
            color: var(--Home-Page-4-Text-colors, #05092B);
            font-size: 24px;
            font-style: normal;
            font-weight: 600;
            line-height: 36px;
            /* 150% */
            transition: all 0.4s;
            padding: 16px 0px 20px 0px;
        }
        
        .blog5 .blog-box .heading-area h4 a:hover {
            color: #FA7D3C;
            transition: all 0.4s;
        }
        
        .blog5 .blog-box .heading-area .tags-area a.date {
            color: var(--Home-Page-4-paragraph, #5A5D73);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            display: inline-block;
        }
        
        .blog5 .blog-box .heading-area .tags-area a.date img {
            transform: translateY(-3px);
            margin-right: 2px;
        }
        
        .blog5 .blog-box .heading-area .tags-area a.tag {
            display: inline-block;
            color: var(--Home-Page-4-paragraph, #5A5D73);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            background-color: #fff;
            border-radius: 4px;
            padding: 6px 10px;
            margin-left: 16px;
        }
        
        .blog5 .blog-box .heading-area .learn {
            color: var(--Home-Page-4-Text-colors, #05092B);
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 16px;
            /* 100% */
            display: inline-block;
            transition: all 0.4s;
        }
        
        .blog5 .blog-box .heading-area .learn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .blog5 .blog-box .heading-area .learn:hover {
            color: #FA7D3C;
            transition: all 0.4s;
        }
        
        .blog5 .blog-box .image-area {
            border-radius: 0px 0px 4px 4px;
            overflow: hidden;
        }
        
        .blog5 .blog-box .image-area img {
            width: 100%;
            transition: all 0.4s;
        }
        
        .blog5 .blog-box .image-area .circle-learn {
            display: inline-block;
            background: linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%);
            height: 60px;
            width: 60px;
            line-height: 60px;
            text-align: center;
            border-radius: 50%;
            transform: rotate(-45deg);
            color: #fff;
            font-size: 22px;
            position: absolute;
            bottom: 30px;
            right: 30px;
            z-index: 3;
        }
        
        .blog5 .blog-box:hover .image-area img {
            transform: scale(1.1) rotate(2deg);
            transition: all 0.4s;
        }
        
        .blog6 .blog-box {
            margin-top: 40px;
            transition: all 0.4s;
        }
        
        .blog6 .blog-box .tags-area {
            padding: 16px 0px;
        }
        
        .blog6 .blog-box .tags-area a {
            display: inline-block;
            border-radius: 50px;
            background: rgba(250, 100, 68, 0.1);
            padding: 8px 10px 6px 10px;
            border-radius: 111px;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            margin-right: 6px;
        }
        
        .blog6 .blog-box .tags-area a img {
            transform: translateY(-2px);
        }
        
        .blog6 .blog-box .image {
            border-radius: 4px 4px 0px 0px;
            overflow: hidden;
        }
        
        .blog6 .blog-box .image img {
            width: 100%;
            transition: all 0.4s;
        }
        
        .blog6 .blog-box .heading6 p {
            padding: 12px 0px 20px 0px;
        }
        
        .blog6 .blog-box .heading6 .learn {
            display: inline-block;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 16px;
            /* 100% */
            transition: all 0.4s;
        }
        
        .blog6 .blog-box .heading6 .learn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .blog6 .blog-box .heading6 .learn:hover {
            transition: all 0.4s;
            color: #FA6444;
        }
        
        .blog6 .blog-box:hover {
            transition: all 0.4s;
            transform: translateY(-10px);
        }
        
        .blog6 .blog-box:hover .image img {
            transform: scale(1.1) rotate(2deg);
            transition: all 0.4s;
        }
        
        .blog7 .blog-box {
            margin-top: 40px;
            transition: all 0.4s;
        }
        
        .blog7 .blog-box .tags-area {
            padding: 16px 0px;
        }
        
        .blog7 .blog-box .tags-area a {
            display: inline-block;
            border-radius: 50px;
            background: #E5EFFF;
            padding: 8px 10px 6px 10px;
            border-radius: 111px;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            margin-right: 6px;
        }
        
        .blog7 .blog-box .tags-area a img {
            transform: translateY(-2px);
        }
        
        .blog7 .blog-box .image {
            border-radius: 4px 4px 0px 0px;
            overflow: hidden;
        }
        
        .blog7 .blog-box .image img {
            width: 100%;
            transition: all 0.4s;
        }
        
        .blog7 .blog-box .heading7 p {
            padding: 12px 0px 20px 0px;
        }
        
        .blog7 .blog-box .heading7 .learn {
            display: inline-block;
            color: var(--Home-Page-3-text-Colors, #180D03);
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 16px;
            /* 100% */
            transition: all 0.4s;
        }
        
        .blog7 .blog-box .heading7 .learn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .blog7 .blog-box .heading7 .learn:hover {
            transition: all 0.4s;
            color: #0061FF;
        }
        
        .blog7 .blog-box:hover {
            transition: all 0.4s;
            transform: translateY(-10px);
        }
        
        .blog7 .blog-box:hover .image img {
            transform: scale(1.1) rotate(2deg);
            transition: all 0.4s;
        }
        
        .blog9 .blog-box {
            background-color: #F3F5F2;
            padding: 24px;
            border-radius: 8px;
            display: flex;
            align-items: center;
        }
        
        @media (max-width: 767px) {
            .blog9 .blog-box {
                display: block;
            }
        }
        
        .blog9 .blog-box .image {
            width: 240px;
        }
        
        .blog9 .blog-box .heading9 {
            padding-left: 24px;
        }
        
        @media (max-width: 767px) {
            .blog9 .blog-box .heading9 {
                padding-left: 0;
                padding-top: 24px;
            }
        }
        
        .blog9 .blog-box .heading9 .date {
            color: var(--Paragraph-Color, #646375);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            /* 100% */
            text-transform: uppercase;
        }
        
        .blog9 .blog-box .heading9 .date img {
            transform: translateY(-3px);
            margin-right: 2px;
            opacity: 0.8;
        }
        
        .blog9 .blog-box .heading9 h4 a {
            display: inline-block;
            color: var(--Text-Color, #181818);
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 28px;
            /* 140% */
            transition: all 0.4s;
            margin: 14px 0px;
        }
        
        .blog9 .blog-box .heading9 h4 a:hover {
            transition: all 0.4s;
            color: #325D28;
        }
        
        .blog9 .blog-box .heading9 .learn {
            display: inline-block;
            color: var(--Text-Color, #181818);
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 16px;
            /* 100% */
            text-transform: uppercase;
            transition: all 0.4s;
        }
        
        .blog9 .blog-box .heading9 .learn:hover {
            color: #325D28;
            transition: all 0.4s;
        }
        
        .blog10 .blog4-box {
            margin-top: 30px;
        }
        
        .blog10 .blog4-box .image {
            border-radius: 7px;
            overflow: hidden;
        }
        
        .blog10 .blog4-box .image img {
            width: 100%;
            border-radius: 7px;
            transition: all 0.4s;
        }
        
        .blog10 .blog4-box .heading4 {
            border-radius: 7px;
            padding: 20px;
            background-color: var(--ztc-bg-color-w);
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            margin: -130px 30px 0px 30px;
            position: relative;
            z-index: 1;
        }
        
        .blog10 .blog4-box .heading4 .tags a.date {
            margin-bottom: 16px;
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-semibold);
            color: var(--ztc-text-pera-text-1);
        }
        
        .blog10 .blog4-box .heading4 .tags a.date img {
            display: inline-block;
            margin-top: -4px;
            margin-right: 3px;
        }
        
        .blog10 .blog4-box .heading4 .tags .outhor {
            margin-left: 24px;
        }
        
        .blog10 .blog4-box .heading4 h3 a:hover {
            color: #24908D;
        }
        
        .blog10 .blog4-box .heading4 a.learn {
            display: inline-block;
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            margin-bottom: 24px;
            transition: all 0.4s;
        }
        
        .blog10 .blog4-box .heading4 a.learn:hover {
            color: #24908D;
            transition: all 0.4s;
        }
        
        .blog10 .blog4-box .heading4 a.learn span {
            display: inline-block;
            transform: rotate(-45deg);
        }
        
        .blog10 .blog4-box:hover .image img {
            transition: all 0.4s;
            transform: scale(1.1) rotate(2deg);
        }
        /*
::::::::::::::::::::::::::
 BLOG AREA CSS
::::::::::::::::::::::::::
*/
        /*
::::::::::::::::::::::::::
 FOOTER AREA CSS
::::::::::::::::::::::::::
*/
        
        .footer1 {
            padding-top: 100px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .footer1 {
                padding-top: 50px;
            }
        }
        
        @media (max-width: 767px) {
            .footer1 {
                padding-top: 50px;
            }
        }
        
        .footer1 .single-footer-items .footer_heading {
            color: var(--ztc-text-text-1);
            line-height: var(--f-fs-font-fs24);
            font-size: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            margin-bottom: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .footer1 .single-footer-items .footer_heading {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .footer1 .single-footer-items .footer_heading {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        .footer1 .single-footer-items .social-icon {
            padding-top: 24px;
        }
        
        .footer1 .single-footer-items .social-icon li {
            display: inline-block;
        }
        
        .footer1 .single-footer-items .social-icon li a {
            display: inline-block;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs16);
            background-color: var(--ztc-bg-bg-2);
            height: 32px;
            width: 32px;
            text-align: center;
            line-height: 32px;
            border-radius: 50%;
            margin: 0px 2px;
            transition: all 0.4s;
        }
        
        .footer1 .single-footer-items .social-icon li a:hover {
            color: var(--ztc-bg-color-w);
            background-color: var(--ztc-bg-main-bg-1);
            transition: all 0.4s;
        }
        
        .footer1 .single-footer-items .menu-list li a {
            display: inline-block;
            color: var(--ztc-text-pera-text-1);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            padding: 10px 0px;
            transition: all 0.4s;
        }
        
        .footer1 .single-footer-items .menu-list li a:hover {
            color: var(--ztc-bg-main-bg-3);
            transform: translateX(5px);
            transition: all 0.4s;
        }
        
        .footer1 .single-footer-items .contact-box {
            display: flex;
            align-items: center;
            padding: 10px 0px;
        }
        
        .footer1 .single-footer-items .contact-box .icon {
            margin-right: 16px;
        }
        
        .footer1 .single-footer-items .contact-box .pera a {
            display: inline-block;
            color: var(--ztc-text-pera-text-1);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            transition: all 0.4s;
        }
        
        .footer1 .single-footer-items .contact-box .pera a:hover {
            color: var(--ztc-bg-main-bg-1);
            transition: all 0.4s;
        }
        
        .footer1 .copyright-area {
            border-top: 1px solid #E8EAED;
        }
        
        .footer1 .copyright-area .coppyright p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
        }
        
        @media (max-width: 767px) {
            .footer1 .copyright-area .coppyright p {
                padding-top: 16px;
            }
        }
        
        .footer1 .copyright-area .coppyright a {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            display: inline-block;
        }
        
        .footer1 .copyright-area .coppyright.right-area {
            text-align: end;
        }
        
        @media (max-width: 767px) {
            .footer1 .copyright-area .coppyright.right-area {
                text-align: start;
            }
        }
        
        .footer1 .copyright-area .coppyright.right-area a {
            padding: 20px 20px;
        }
        
        .footer1 .copyright-area .coppyright.right-area a:nth-child(1) {
            position: relative;
        }
        
        @media (max-width: 767px) {
            .footer1 .copyright-area .coppyright.right-area a:nth-child(1) {
                padding: 20px 20px 20px 0px;
            }
        }
        
        .footer1 .copyright-area .coppyright.right-area a:nth-child(1)::after {
            content: "";
            position: absolute;
            top: 24px;
            right: 0;
            width: 2px;
            height: 20px;
            background-color: #E8EAED;
        }
        
        .footer-logo-area {
            padding-right: 70px;
        }
        
        .footer2 {
            padding-top: 100px;
        }
        
        .footer2 .single-footer-items h3 {
            color: var(--ztc-text-text-2);
            line-height: var(--f-fs-font-fs24);
            font-size: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            margin-bottom: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .footer2 .single-footer-items h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .footer2 .single-footer-items h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        .footer2 .single-footer-items .social-icon {
            padding-top: 24px;
        }
        
        .footer2 .single-footer-items .social-icon li {
            display: inline-block;
        }
        
        .footer2 .single-footer-items .social-icon li a {
            display: inline-block;
            color: var(--ztc-text-pera-text-2);
            font-size: var(--f-fs-font-fs16);
            background-color: rgba(255, 255, 255, 0.1450980392);
            height: 32px;
            width: 32px;
            text-align: center;
            line-height: 32px;
            border-radius: 50%;
            margin: 0px 2px;
            transition: all 0.4s;
        }
        
        .footer2 .single-footer-items .social-icon li a:hover {
            color: var(--ztc-text-text-1);
            background-color: var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
        }
        
        .footer2 .single-footer-items .menu-list li a {
            display: inline-block;
            color: var(--ztc-text-pera-text-2);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            padding: 11px 0px;
            transition: all 0.4s;
        }
        
        .footer2 .single-footer-items .menu-list li a:hover {
            color: var(--ztc-bg-main-bg-4);
            transform: translateX(5px);
            transition: all 0.4s;
        }
        
        .footer2 .single-footer-items .contact-box {
            display: flex;
            align-items: center;
            padding: 10px 0px;
        }
        
        .footer2 .single-footer-items .contact-box .icon {
            margin-right: 16px;
        }
        
        .footer2 .single-footer-items .contact-box .icon img {
            filter: brightness(40);
        }
        
        .footer2 .single-footer-items .contact-box .pera a {
            display: inline-block;
            color: var(--ztc-text-pera-text-2);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            transition: all 0.4s;
        }
        
        .footer2 .single-footer-items .contact-box .pera a:hover {
            color: var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
        }
        
        .footer2 .copyright-area {
            background: rgb(25, 26, 31);
            background: linear-gradient(90deg, rgb(25, 26, 31) 0%, rgb(38, 25, 68) 78%);
        }
        
        .footer2 .copyright-area .coppyright p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-2);
        }
        
        @media (max-width: 767px) {
            .footer2 .copyright-area .coppyright p {
                padding-top: 16px;
            }
        }
        
        .footer2 .copyright-area .coppyright a {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-2);
            display: inline-block;
        }
        
        .footer2 .copyright-area .coppyright.right-area {
            text-align: end;
        }
        
        @media (max-width: 767px) {
            .footer2 .copyright-area .coppyright.right-area {
                text-align: start;
            }
        }
        
        .footer2 .copyright-area .coppyright.right-area a {
            padding: 20px 20px;
        }
        
        .footer2 .copyright-area .coppyright.right-area a:nth-child(1) {
            position: relative;
        }
        
        @media (max-width: 767px) {
            .footer2 .copyright-area .coppyright.right-area a:nth-child(1) {
                padding: 20px 20px 20px 0px;
            }
        }
        
        .footer2 .copyright-area .coppyright.right-area a:nth-child(1)::after {
            content: "";
            position: absolute;
            top: 24px;
            right: 0;
            width: 2px;
            height: 20px;
            background-color: #E8EAED;
        }
        
        .footer2 .copyright-area .arrow-up {
            display: inline-block;
            height: 55px;
            width: 55px;
            border-radius: 50%;
            background-color: var(--ztc-bg-main-bg-4);
            color: var(--ztc-text-text-1);
            position: absolute;
            left: 50%;
            margin-left: -26px;
            top: -26px;
            text-align: center;
            line-height: 55px;
        }
        
        @media (max-width: 767px) {
            .footer2 .copyright-area .arrow-up {
                top: -55px;
            }
        }
        
        .footer3 {
            padding-top: 100px;
        }
        
        .footer3 .single-footer-items h3 {
            color: var(--ztc-text-text-2);
            line-height: var(--f-fs-font-fs24);
            font-size: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            margin-bottom: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .footer3 .single-footer-items h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .footer3 .single-footer-items h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        .footer3 .single-footer-items .social-icon {
            padding-top: 24px;
        }
        
        .footer3 .single-footer-items .social-icon li {
            display: inline-block;
        }
        
        .footer3 .single-footer-items .social-icon li a {
            display: inline-block;
            color: var(--ztc-text-text-2);
            font-size: var(--f-fs-font-fs16);
            background-color: rgba(255, 255, 255, 0.1450980392);
            height: 32px;
            width: 32px;
            text-align: center;
            line-height: 32px;
            border-radius: 50%;
            margin: 0px 2px;
            transition: all 0.4s;
        }
        
        .footer3 .single-footer-items .social-icon li a:hover {
            color: var(--ztc-text-text-2);
            background-color: var(--ztc-bg-main-bg-3);
            transition: all 0.4s;
        }
        
        .footer3 .single-footer-items .menu-list li a {
            display: inline-block;
            color: var(--ztc-text-text-2);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            padding: 10px 0px;
            transition: all 0.4s;
        }
        
        .footer3 .single-footer-items .menu-list li a:hover {
            color: var(--ztc-bg-main-bg-3);
            transform: translateX(5px);
            transition: all 0.4s;
        }
        
        .footer3 .single-footer-items .contact-box {
            display: flex;
            align-items: center;
            padding: 10px 0px;
        }
        
        .footer3 .single-footer-items .contact-box .icon {
            margin-right: 16px;
        }
        
        .footer3 .single-footer-items .contact-box .icon img {
            filter: brightness(40);
        }
        
        .footer3 .single-footer-items .contact-box .pera a {
            display: inline-block;
            color: var(--ztc-text-text-2);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            transition: all 0.4s;
        }
        
        .footer3 .single-footer-items .contact-box .pera a:hover {
            color: var(--ztc-bg-main-bg-3);
            transition: all 0.4s;
        }
        
        .footer3 .copyright-area {
            background: rgb(37, 40, 48);
            background: linear-gradient(90deg, rgb(37, 40, 48) 0%, rgb(39, 61, 147) 48%, rgb(37, 39, 45) 100%);
        }
        
        .footer3 .copyright-area .coppyright p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-2);
        }
        
        @media (max-width: 767px) {
            .footer3 .copyright-area .coppyright p {
                padding-top: 16px;
            }
        }
        
        .footer3 .copyright-area .coppyright a {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-2);
            display: inline-block;
        }
        
        .footer3 .copyright-area .coppyright.right-area {
            text-align: end;
        }
        
        @media (max-width: 767px) {
            .footer3 .copyright-area .coppyright.right-area {
                text-align: start;
            }
        }
        
        .footer3 .copyright-area .coppyright.right-area a {
            padding: 20px 20px;
        }
        
        .footer3 .copyright-area .coppyright.right-area a:nth-child(1) {
            position: relative;
        }
        
        @media (max-width: 767px) {
            .footer3 .copyright-area .coppyright.right-area a:nth-child(1) {
                padding: 20px 20px 20px 0px;
            }
        }
        
        .footer3 .copyright-area .coppyright.right-area a:nth-child(1)::after {
            content: "";
            position: absolute;
            top: 24px;
            right: 0;
            width: 2px;
            height: 20px;
            background-color: #E8EAED;
        }
        
        .footer3 .copyright-area .arrow-up {
            display: inline-block;
            height: 55px;
            width: 55px;
            border-radius: 50%;
            background-color: var(--ztc-bg-main-bg-3);
            color: var(--ztc-text-text-2);
            position: absolute;
            left: 50%;
            margin-left: -26px;
            top: -26px;
            text-align: center;
            line-height: 55px;
        }
        
        @media (max-width: 767px) {
            .footer3 .copyright-area .arrow-up {
                top: -55px;
            }
        }
        
        .footer4 {
            padding-top: 100px;
            background-color: var(--ztc-bg-bg-1);
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .footer4 {
                padding-top: 50px;
            }
        }
        
        @media (max-width: 767px) {
            .footer4 {
                padding-top: 50px;
            }
        }
        
        .footer4 .single-footer-items h3 {
            color: var(--ztc-text-text-1);
            line-height: var(--f-fs-font-fs24);
            font-size: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            margin-bottom: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .footer4 .single-footer-items h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .footer4 .single-footer-items h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        .footer4 .single-footer-items .social-icon {
            padding-top: 24px;
        }
        
        .footer4 .single-footer-items .social-icon li {
            display: inline-block;
        }
        
        .footer4 .single-footer-items .social-icon li a {
            display: inline-block;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs16);
            background-color: #EAE3F9;
            height: 32px;
            width: 32px;
            text-align: center;
            line-height: 32px;
            border-radius: 50%;
            margin: 0px 2px;
            transition: all 0.4s;
        }
        
        .footer4 .single-footer-items .social-icon li a:hover {
            color: var(--ztc-text-text-2);
            background-color: var(--ztc-bg-main-bg-2);
            transition: all 0.4s;
        }
        
        .footer4 .single-footer-items .menu-list li a {
            display: inline-block;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            padding: 10px 0px;
            transition: all 0.4s;
        }
        
        .footer4 .single-footer-items .menu-list li a:hover {
            color: var(--ztc-bg-main-bg-2);
            transform: translateX(5px);
            transition: all 0.4s;
        }
        
        .footer4 .single-footer-items .contact-box {
            display: flex;
            align-items: center;
            padding: 10px 0px;
        }
        
        .footer4 .single-footer-items .contact-box .icon {
            margin-right: 16px;
        }
        
        .footer4 .single-footer-items .contact-box .pera a {
            display: inline-block;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            transition: all 0.4s;
        }
        
        .footer4 .single-footer-items .contact-box .pera a:hover {
            color: var(--ztc-bg-main-bg-2);
            transition: all 0.4s;
        }
        
        .footer4 .copyright-area {
            border-top: 1px solid #E8EAED;
        }
        
        .footer4 .copyright-area .coppyright p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
        }
        
        @media (max-width: 767px) {
            .footer4 .copyright-area .coppyright p {
                padding-top: 16px;
            }
        }
        
        .footer4 .copyright-area .coppyright a {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            display: inline-block;
        }
        
        .footer4 .copyright-area .coppyright.right-area {
            text-align: end;
        }
        
        @media (max-width: 767px) {
            .footer4 .copyright-area .coppyright.right-area {
                text-align: start;
            }
        }
        
        .footer4 .copyright-area .coppyright.right-area a {
            padding: 20px 20px;
        }
        
        .footer4 .copyright-area .coppyright.right-area a:nth-child(1) {
            position: relative;
        }
        
        @media (max-width: 767px) {
            .footer4 .copyright-area .coppyright.right-area a:nth-child(1) {
                padding: 20px 20px 20px 0px;
            }
        }
        
        .footer4 .copyright-area .coppyright.right-area a:nth-child(1)::after {
            content: "";
            position: absolute;
            top: 24px;
            right: 0;
            width: 2px;
            height: 20px;
            background-color: #E8EAED;
        }
        
        .footer5 {
            padding-top: 200px;
            background-color: #F5F6F9;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .footer5 {
                padding-top: 50px;
            }
        }
        
        @media (max-width: 767px) {
            .footer5 {
                padding-top: 50px;
            }
        }
        
        .footer5 .single-footer-items h3 {
            color: var(--ztc-text-text-1);
            line-height: var(--f-fs-font-fs24);
            font-size: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            margin-bottom: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .footer5 .single-footer-items h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .footer5 .single-footer-items h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        .footer5 .single-footer-items .social-icon {
            padding-top: 24px;
        }
        
        .footer5 .single-footer-items .social-icon li {
            display: inline-block;
        }
        
        .footer5 .single-footer-items .social-icon li a {
            display: inline-block;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs16);
            background-color: #fff;
            height: 32px;
            width: 32px;
            text-align: center;
            line-height: 32px;
            border-radius: 50%;
            margin: 0px 2px;
            transition: all 0.4s;
        }
        
        .footer5 .single-footer-items .social-icon li a:hover {
            color: var(--ztc-bg-color-w);
            background-color: #FA6444;
            transition: all 0.4s;
        }
        
        .footer5 .single-footer-items .menu-list li a {
            display: inline-block;
            color: var(--ztc-text-pera-text-1);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            padding: 10px 0px;
            transition: all 0.4s;
        }
        
        .footer5 .single-footer-items .menu-list li a:hover {
            color: #FA6444;
            transform: translateX(5px);
            transition: all 0.4s;
        }
        
        .footer5 .single-footer-items .contact-box {
            display: flex;
            align-items: center;
            padding: 10px 0px;
        }
        
        .footer5 .single-footer-items .contact-box .icon {
            margin-right: 16px;
        }
        
        .footer5 .single-footer-items .contact-box .pera a {
            display: inline-block;
            color: var(--ztc-text-pera-text-1);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            transition: all 0.4s;
        }
        
        .footer5 .single-footer-items .contact-box .pera a:hover {
            color: #FA6444;
            transition: all 0.4s;
        }
        
        .footer5 .copyright-area {
            border-top: 1px solid #E8EAED;
            padding: 16px 0px;
        }
        
        .footer5 .copyright-area .coppyright p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
        }
        
        @media (max-width: 767px) {
            .footer5 .copyright-area .coppyright p {
                padding-top: 16px;
            }
        }
        
        .footer5 .copyright-area .coppyright a {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            display: inline-block;
        }
        
        .footer5 .copyright-area .coppyright.right-area {
            text-align: end;
        }
        
        @media (max-width: 767px) {
            .footer5 .copyright-area .coppyright.right-area {
                text-align: start;
            }
        }
        
        .footer5 .copyright-area .coppyright.right-area a {
            padding: 20px 20px;
        }
        
        .footer5 .copyright-area .coppyright.right-area a:nth-child(1) {
            position: relative;
        }
        
        @media (max-width: 767px) {
            .footer5 .copyright-area .coppyright.right-area a:nth-child(1) {
                padding: 20px 20px 20px 0px;
            }
        }
        
        .footer5 .copyright-area .coppyright.right-area a:nth-child(1)::after {
            content: "";
            position: absolute;
            top: 24px;
            right: 0;
            width: 2px;
            height: 20px;
            background-color: #E8EAED;
        }
        
        .footer7 {
            padding-top: 200px;
            background-color: #F5F6F9;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .footer7 {
                padding-top: 50px;
            }
        }
        
        @media (max-width: 767px) {
            .footer7 {
                padding-top: 50px;
            }
        }
        
        .footer7 .single-footer-items h3 {
            color: var(--ztc-text-text-1);
            line-height: var(--f-fs-font-fs24);
            font-size: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            margin-bottom: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .footer7 .single-footer-items h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .footer7 .single-footer-items h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        .footer7 .single-footer-items .social-icon {
            padding-top: 24px;
        }
        
        .footer7 .single-footer-items .social-icon li {
            display: inline-block;
        }
        
        .footer7 .single-footer-items .social-icon li a {
            display: inline-block;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs16);
            background-color: #fff;
            height: 32px;
            width: 32px;
            text-align: center;
            line-height: 32px;
            border-radius: 50%;
            margin: 0px 2px;
            transition: all 0.4s;
        }
        
        .footer7 .single-footer-items .social-icon li a:hover {
            color: var(--ztc-bg-color-w);
            background-color: #0061FF;
            transition: all 0.4s;
        }
        
        .footer7 .single-footer-items .menu-list li a {
            display: inline-block;
            color: var(--ztc-text-pera-text-1);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            padding: 10px 0px;
            transition: all 0.4s;
        }
        
        .footer7 .single-footer-items .menu-list li a:hover {
            color: #0061FF;
            transform: translateX(5px);
            transition: all 0.4s;
        }
        
        .footer7 .single-footer-items .contact-box {
            display: flex;
            align-items: center;
            padding: 10px 0px;
        }
        
        .footer7 .single-footer-items .contact-box .icon {
            margin-right: 16px;
        }
        
        .footer7 .single-footer-items .contact-box .pera a {
            display: inline-block;
            color: var(--ztc-text-pera-text-1);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            transition: all 0.4s;
        }
        
        .footer7 .single-footer-items .contact-box .pera a:hover {
            color: #0061FF;
            transition: all 0.4s;
        }
        
        .footer7 .copyright-area {
            border-top: 1px solid #E8EAED;
            padding: 16px 0px;
        }
        
        .footer7 .copyright-area .coppyright p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
        }
        
        @media (max-width: 767px) {
            .footer7 .copyright-area .coppyright p {
                padding-top: 16px;
            }
        }
        
        .footer7 .copyright-area .coppyright a {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            display: inline-block;
        }
        
        .footer7 .copyright-area .coppyright.right-area {
            text-align: end;
        }
        
        @media (max-width: 767px) {
            .footer7 .copyright-area .coppyright.right-area {
                text-align: start;
            }
        }
        
        .footer7 .copyright-area .coppyright.right-area a {
            padding: 20px 20px;
        }
        
        .footer7 .copyright-area .coppyright.right-area a:nth-child(1) {
            position: relative;
        }
        
        @media (max-width: 767px) {
            .footer7 .copyright-area .coppyright.right-area a:nth-child(1) {
                padding: 20px 20px 20px 0px;
            }
        }
        
        .footer7 .copyright-area .coppyright.right-area a:nth-child(1)::after {
            content: "";
            position: absolute;
            top: 24px;
            right: 0;
            width: 2px;
            height: 20px;
            background-color: #E8EAED;
        }
        
        .footer8 {
            padding-top: 200px;
            background-color: #F5F6F9;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .footer8 {
                padding-top: 50px;
            }
        }
        
        @media (max-width: 767px) {
            .footer8 {
                padding-top: 50px;
            }
        }
        
        .footer8 .single-footer-items h3 {
            color: var(--ztc-text-text-1);
            line-height: var(--f-fs-font-fs24);
            font-size: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            margin-bottom: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .footer8 .single-footer-items h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .footer8 .single-footer-items h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        .footer8 .single-footer-items .social-icon {
            padding-top: 24px;
        }
        
        .footer8 .single-footer-items .social-icon li {
            display: inline-block;
        }
        
        .footer8 .single-footer-items .social-icon li a {
            display: inline-block;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs16);
            background-color: #fff;
            height: 32px;
            width: 32px;
            text-align: center;
            line-height: 32px;
            border-radius: 50%;
            margin: 0px 2px;
            transition: all 0.4s;
        }
        
        .footer8 .single-footer-items .social-icon li a:hover {
            color: var(--ztc-bg-color-w);
            background-color: #4D32A5;
            transition: all 0.4s;
        }
        
        .footer8 .single-footer-items .menu-list li a {
            display: inline-block;
            color: var(--ztc-text-pera-text-1);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            padding: 10px 0px;
            transition: all 0.4s;
        }
        
        .footer8 .single-footer-items .menu-list li a:hover {
            color: #4D32A5;
            transform: translateX(5px);
            transition: all 0.4s;
        }
        
        .footer8 .single-footer-items .contact-box {
            display: flex;
            align-items: center;
            padding: 10px 0px;
        }
        
        .footer8 .single-footer-items .contact-box .icon {
            margin-right: 16px;
        }
        
        .footer8 .single-footer-items .contact-box .pera a {
            display: inline-block;
            color: var(--ztc-text-pera-text-1);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            transition: all 0.4s;
        }
        
        .footer8 .single-footer-items .contact-box .pera a:hover {
            color: #4D32A5;
            transition: all 0.4s;
        }
        
        .footer8 .copyright-area {
            border-top: 1px solid #E8EAED;
            padding: 16px 0px;
        }
        
        .footer8 .copyright-area .coppyright p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
        }
        
        @media (max-width: 767px) {
            .footer8 .copyright-area .coppyright p {
                padding-top: 16px;
            }
        }
        
        .footer8 .copyright-area .coppyright a {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            display: inline-block;
        }
        
        .footer8 .copyright-area .coppyright.right-area {
            text-align: end;
        }
        
        @media (max-width: 767px) {
            .footer8 .copyright-area .coppyright.right-area {
                text-align: start;
            }
        }
        
        .footer8 .copyright-area .coppyright.right-area a {
            padding: 20px 20px;
        }
        
        .footer8 .copyright-area .coppyright.right-area a:nth-child(1) {
            position: relative;
        }
        
        @media (max-width: 767px) {
            .footer8 .copyright-area .coppyright.right-area a:nth-child(1) {
                padding: 20px 20px 20px 0px;
            }
        }
        
        .footer8 .copyright-area .coppyright.right-area a:nth-child(1)::after {
            content: "";
            position: absolute;
            top: 24px;
            right: 0;
            width: 2px;
            height: 20px;
            background-color: #E8EAED;
        }
        
        .footer9 {
            background-color: #fff;
            padding-top: 100px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .footer9 {
                padding-top: 50px;
            }
        }
        
        @media (max-width: 767px) {
            .footer9 {
                padding-top: 50px;
            }
        }
        
        .footer9 .single-footer-items h3 {
            color: var(--ztc-text-text-1);
            line-height: var(--f-fs-font-fs24);
            font-size: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            margin-bottom: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .footer9 .single-footer-items h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .footer9 .single-footer-items h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        .footer9 .single-footer-items .social-icon {
            padding-top: 24px;
        }
        
        .footer9 .single-footer-items .social-icon li {
            display: inline-block;
        }
        
        .footer9 .single-footer-items .social-icon li a {
            display: inline-block;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs16);
            background-color: #F3F5F2;
            height: 32px;
            width: 32px;
            text-align: center;
            line-height: 32px;
            border-radius: 50%;
            margin: 0px 2px;
            transition: all 0.4s;
        }
        
        .footer9 .single-footer-items .social-icon li a:hover {
            color: var(--ztc-bg-color-w);
            background-color: #325D28;
            transition: all 0.4s;
        }
        
        .footer9 .single-footer-items .menu-list li a {
            display: inline-block;
            color: var(--ztc-text-pera-text-1);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            padding: 10px 0px;
            transition: all 0.4s;
        }
        
        .footer9 .single-footer-items .menu-list li a:hover {
            color: #325D28;
            transform: translateX(5px);
            transition: all 0.4s;
        }
        
        .footer9 .single-footer-items .contact-box {
            display: flex;
            align-items: center;
            padding: 10px 0px;
        }
        
        .footer9 .single-footer-items .contact-box .icon {
            margin-right: 16px;
        }
        
        .footer9 .single-footer-items .contact-box .pera a {
            display: inline-block;
            color: var(--ztc-text-pera-text-1);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            transition: all 0.4s;
        }
        
        .footer9 .single-footer-items .contact-box .pera a:hover {
            color: #325D28;
            transition: all 0.4s;
        }
        
        .footer9 .copyright-area {
            border-top: 1px solid #E8EAED;
            padding: 16px 0px;
        }
        
        .footer9 .copyright-area .coppyright p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
        }
        
        @media (max-width: 767px) {
            .footer9 .copyright-area .coppyright p {
                padding-top: 16px;
            }
        }
        
        .footer9 .copyright-area .coppyright a {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            display: inline-block;
        }
        
        .footer9 .copyright-area .coppyright.right-area {
            text-align: end;
        }
        
        @media (max-width: 767px) {
            .footer9 .copyright-area .coppyright.right-area {
                text-align: start;
            }
        }
        
        .footer9 .copyright-area .coppyright.right-area a {
            padding: 20px 20px;
        }
        
        .footer9 .copyright-area .coppyright.right-area a:nth-child(1) {
            position: relative;
        }
        
        @media (max-width: 767px) {
            .footer9 .copyright-area .coppyright.right-area a:nth-child(1) {
                padding: 20px 20px 20px 0px;
            }
        }
        
        .footer9 .copyright-area .coppyright.right-area a:nth-child(1)::after {
            content: "";
            position: absolute;
            top: 24px;
            right: 0;
            width: 2px;
            height: 20px;
            background-color: #E8EAED;
        }
        
        .footer10 {
            background-color: #F5F5F5;
            padding-top: 100px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .footer10 {
                padding-top: 50px;
            }
        }
        
        @media (max-width: 767px) {
            .footer10 {
                padding-top: 50px;
            }
        }
        
        .footer10 .single-footer-items h3 {
            color: var(--ztc-text-text-1);
            line-height: var(--f-fs-font-fs24);
            font-size: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            margin-bottom: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .footer10 .single-footer-items h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .footer10 .single-footer-items h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        .footer10 .single-footer-items .social-icon {
            padding-top: 24px;
        }
        
        .footer10 .single-footer-items .social-icon li {
            display: inline-block;
        }
        
        .footer10 .single-footer-items .social-icon li a {
            display: inline-block;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs16);
            background-color: rgba(36, 144, 140, 0.137254902);
            height: 32px;
            width: 32px;
            text-align: center;
            line-height: 32px;
            border-radius: 50%;
            margin: 0px 2px;
            transition: all 0.4s;
        }
        
        .footer10 .single-footer-items .social-icon li a:hover {
            color: var(--ztc-bg-color-w);
            background-color: #24908D;
            transition: all 0.4s;
        }
        
        .footer10 .single-footer-items .menu-list li a {
            display: inline-block;
            color: var(--ztc-text-pera-text-1);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            padding: 10px 0px;
            transition: all 0.4s;
        }
        
        .footer10 .single-footer-items .menu-list li a:hover {
            color: #24908D;
            transform: translateX(5px);
            transition: all 0.4s;
        }
        
        .footer10 .single-footer-items .contact-box {
            display: flex;
            align-items: center;
            padding: 10px 0px;
        }
        
        .footer10 .single-footer-items .contact-box .icon {
            margin-right: 16px;
        }
        
        .footer10 .single-footer-items .contact-box .pera a {
            display: inline-block;
            color: var(--ztc-text-pera-text-1);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            transition: all 0.4s;
        }
        
        .footer10 .single-footer-items .contact-box .pera a:hover {
            color: #24908D;
            transition: all 0.4s;
        }
        
        .footer10 .copyright-area {
            border-top: 1px solid #E8EAED;
            padding: 16px 0px;
        }
        
        .footer10 .copyright-area .coppyright p {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
        }
        
        @media (max-width: 767px) {
            .footer10 .copyright-area .coppyright p {
                padding-top: 16px;
            }
        }
        
        .footer10 .copyright-area .coppyright a {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs28);
            font-weight: var(--f-fw-regular);
            color: var(--ztc-text-pera-text-1);
            display: inline-block;
        }
        
        .footer10 .copyright-area .coppyright.right-area {
            text-align: end;
        }
        
        @media (max-width: 767px) {
            .footer10 .copyright-area .coppyright.right-area {
                text-align: start;
            }
        }
        
        .footer10 .copyright-area .coppyright.right-area a {
            padding: 20px 20px;
        }
        
        .footer10 .copyright-area .coppyright.right-area a:nth-child(1) {
            position: relative;
        }
        
        @media (max-width: 767px) {
            .footer10 .copyright-area .coppyright.right-area a:nth-child(1) {
                padding: 20px 20px 20px 0px;
            }
        }
        
        .footer10 .copyright-area .coppyright.right-area a:nth-child(1)::after {
            content: "";
            position: absolute;
            top: 24px;
            right: 0;
            width: 2px;
            height: 20px;
            background-color: #E8EAED;
        }
        /*
::::::::::::::::::::::::::
 FOOTER AREA CSS
::::::::::::::::::::::::::
*/
        /*
::::::::::::::::::::::::::
 HEADER AREA CSS
::::::::::::::::::::::::::
*/
        
        .header-top {
            padding: 16px 0;
            text-align: center;
            background-color: var(--ztc-bg-main-bg-1);
        }
        
        .header-top .pera p {
            font-size: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-2);
            line-height: var(--f-fs-font-fs16);
        }
        
        .header-top .pera p img {
            margin-top: -4px;
            margin-right: 2px;
        }
        
        .header-area.header-area1 .header1-buttons {
            display: flex;
            align-items: center;
        }
        
        .header-area.header-area1 .header1-buttons .contact-btn {
            display: flex;
            align-items: center;
            margin-right: 24px;
        }
        
        .header-area.header-area1 .header1-buttons .contact-btn .icon {
            height: 38px;
            width: 38px;
            text-align: center;
            line-height: 38px;
            border-radius: 50%;
            background-color: var(--ztc-bg-bg-2);
            margin-right: 10px;
        }
        
        .header-area.header-area1 .header1-buttons .contact-btn .headding p {
            font-size: 12px;
            line-height: 12px;
            color: var(--ztc-text-pera-text-1);
        }
        
        .header-area.header-area1 .header1-buttons .contact-btn .headding a {
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            color: var(--ztc-text-text-1);
            display: inline-block;
            margin-top: 10px;
        }
        /*
::::::::::::::::::::::::::
 HEADER AREA CSS
::::::::::::::::::::::::::
*/
        /*
 ::::::::::::::::::::::::::
  NAV MENU AREA CSS
 ::::::::::::::::::::::::::
 */
        
        .header-area {
            padding: 12px 0;
            position: absolute;
            background: transparent;
            width: 100%;
            z-index: 99;
        }
        
        .site-logo {
            max-width: 100px;
            height: auto;
            display: flex;
            align-items: center;
        }
        
        .site-logo a {
            display: inline-block;
            position: relative;
            z-index: 9;
        }
        
        .header-area .header-elements {
            display: flex;
            align-items: center;
            align-items: center;
            justify-content: space-between;
        }
        
        .header-area1.sticky .header-elements .main-menu-ex {
            padding: 7px 24px;
            position: relative;
        }
        
        .tp-submenu {
            visibility: hidden;
            opacity: 0;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            position: absolute;
            background: var(--ztc-bg-color-w);
            top: 201.3%;
            transform: scale(1, 0);
            z-index: 0;
            transition: all 0.4s;
            border-radius: 5px;
            padding: 20px;
            left: -255px;
            width: 1300px;
            max-height: 600px;
            overflow-x: hidden;
            overflow-y: scroll;
            transform-origin: top;
            display: block;
        }
        /* 
++++++++++++++++++++++++++++++++++
=========nav menu all ==========
+++++++++++++++++++++++++++++++++
*/
        
        .header-area.header-area1 {
            background-color: #fff;
        }
        
        .header-area.header-area1 .main-menu-ex ul li .tp-submenu .all-images-menu {
            display: flex;
            align-items: center;
        }
        
        .header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb {
            transition: all 0.4s;
            position: relative;
            z-index: 1;
            margin: 0 20px 0 0;
            text-align: center;
        }
        
        .header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
            transform: scale(1);
            transition: all 0.4s;
            visibility: visible;
            opacity: 0.4;
        }
        
        .header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
            top: 28%;
            visibility: visible;
            opacity: 1;
            transition: all 0.6s;
        }
        
        .header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            left: 0;
            top: 0;
            transition: all 0.4s;
            background: #000026;
            opacity: 0;
            border-radius: 4px;
            transform: scale(0.8);
            z-index: 1;
            visibility: hidden;
        }
        
        .header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
            height: 100%;
            width: 100%;
            border-radius: 4px;
            transition: all 0.4s;
            border: 1px solid #E5E7EB;
        }
        
        .header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 .coming {
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -84px;
            margin-top: -30px;
            height: 60px !important;
            width: 168px !important;
            z-index: 99;
            border: none !important;
        }
        
        .header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb.active .img1::after {
            transform: scale(1) !important;
            transition: all 0.4s !important;
            visibility: visible !important;
            opacity: 0.4 !important;
        }
        
        .header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
            position: absolute;
            top: 45%;
            z-index: 2;
            visibility: hidden;
            opacity: 0;
            text-align: center;
            transition: all 0.6s;
            margin: 0 auto;
            left: 20%;
            right: 20%;
        }
        
        .header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
            display: inline-block;
            font-size: var(--ztc-font-size-font-s16);
            line-height: var(--ztc-font-size-font-s16);
            font-weight: var(--ztc-weight-bold);
            background: var(--ztc-bg-main-bg-3);
            color: var(--ztc-text-text-2);
            padding: 16px;
            transition: all 0.4s;
            border-radius: 8px;
            position: relative;
            width: 140px;
            z-index: 1;
        }
        
        .header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
            transform: rotate(-45deg);
            margin-left: 4px;
            transition: all 0.4s;
        }
        
        .header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
            color: #fff;
            transition: all 0.4s;
            transform: translateY(-5px);
            background: #4e7afd;
        }
        
        .header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
            transform: rotate(0);
            transition: all 0.4s;
        }
        
        .header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
            color: #08111A;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            display: inline-block;
            margin-top: 8px;
            text-align: center;
        }
        
        .header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
            color: #0E38B1;
            transition: all 0.4s;
        }
        
        .header-area.header-area1 .main-menu-ex ul li ul {
            /* position: absolute; */
            position: unset;
            left: 0;
            top: 50px;
            border-radius: 4px;
            width: 220px;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area1 .main-menu-ex ul li ul li ul {
            left: 200px;
        }
        
        .header-area.header-area1 .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text1);
        }
        
        .header-area.header-area1 .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: #fff;
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area1 .main-menu-ex ul li ul li a:hover::after {
            background-color: var(--qt-text-h-text1);
            border-radius: 4px;
            width: 50px;
            left: 17px;
            opacity: 1;
        }
        
        .header-area.header-area1 .main-menu-ex ul li a {
            color: var(--qt-text-h-text1);
            font-size: 16px;
            display: block;
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area1 .main-menu-ex ul li:hover .tp-submenu {
            visibility: visible;
            transition: all 0.5s ease-in-out;
            opacity: 1;
            z-index: 9;
            top: 150.3%;
            position: absolute;
            transition: all 0.4s;
            transform: scale(1);
        }
        
        .header-area.header-area8 {
            background-color: #fff;
        }
        
        .header-area.header-area8 .main-menu-ex ul li .tp-submenu {
            visibility: hidden;
            opacity: 0;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            position: absolute;
            background: var(--ztc-bg-color-w);
            top: 201.3%;
            transform: scale(1, 0);
            z-index: 0;
            transition: all 0.4s;
            border-radius: 5px;
            padding: 20px;
            left: -350px;
            width: 1300px;
            max-height: 600px;
            overflow-x: hidden;
            overflow-y: scroll;
            transform-origin: top;
            display: block;
        }
        
        .header-area.header-area8 .main-menu-ex ul li .tp-submenu .all-images-menu {
            display: flex;
            align-items: center;
        }
        
        .header-area.header-area8 .main-menu-ex ul li .tp-submenu .homemenu-thumb {
            transition: all 0.4s;
            position: relative;
            z-index: 1;
            margin: 0 20px 0 0;
            text-align: center;
        }
        
        .header-area.header-area8 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
            transform: scale(1);
            transition: all 0.4s;
            visibility: visible;
            opacity: 0.4;
        }
        
        .header-area.header-area8 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
            top: 28%;
            visibility: visible;
            opacity: 1;
            transition: all 0.6s;
        }
        
        .header-area.header-area8 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .header-area.header-area8 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            left: 0;
            top: 0;
            transition: all 0.4s;
            background: #000026;
            opacity: 0;
            border-radius: 4px;
            transform: scale(0.8);
            z-index: 1;
            visibility: hidden;
        }
        
        .header-area.header-area8 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
            height: 100%;
            width: 100%;
            border-radius: 4px;
            transition: all 0.4s;
            border: 1px solid #E5E7EB;
        }
        
        .header-area.header-area8 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 .coming {
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -84px;
            margin-top: -30px;
            height: 60px !important;
            width: 168px !important;
            z-index: 99;
            border: none !important;
        }
        
        .header-area.header-area8 .main-menu-ex ul li .tp-submenu .homemenu-thumb.active .img1::after {
            transform: scale(1) !important;
            transition: all 0.4s !important;
            visibility: visible !important;
            opacity: 0.4 !important;
        }
        
        .header-area.header-area8 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
            position: absolute;
            top: 45%;
            z-index: 2;
            visibility: hidden;
            opacity: 0;
            text-align: center;
            transition: all 0.6s;
            margin: 0 auto;
            left: 20%;
            right: 20%;
        }
        
        .header-area.header-area8 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
            display: inline-block;
            font-size: var(--ztc-font-size-font-s16);
            line-height: var(--ztc-font-size-font-s16);
            font-weight: var(--ztc-weight-bold);
            background: #4D32A5;
            color: var(--ztc-text-text-2);
            padding: 16px;
            transition: all 0.4s;
            border-radius: 8px;
            position: relative;
            width: 140px;
            z-index: 1;
        }
        
        .header-area.header-area8 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
            transform: rotate(-45deg);
            margin-left: 4px;
            transition: all 0.4s;
        }
        
        .header-area.header-area8 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
            color: #fff;
            transition: all 0.4s;
            transform: translateY(-5px);
            background: #4D32A5;
        }
        
        .header-area.header-area8 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
            transform: rotate(0);
            transition: all 0.4s;
        }
        
        .header-area.header-area8 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
            color: #08111A;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            display: inline-block;
            margin-top: 8px;
            text-align: center;
        }
        
        .header-area.header-area8 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
            color: #0E38B1;
            transition: all 0.4s;
        }
        
        .header-area.header-area8 .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            width: 220px;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area8 .main-menu-ex ul li ul li ul {
            left: 200px;
        }
        
        .header-area.header-area8 .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text1);
        }
        
        .header-area.header-area8 .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: #fff;
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area8 .main-menu-ex ul li ul li a:hover::after {
            background-color: var(--qt-text-h-text1);
            border-radius: 4px;
            width: 50px;
            left: 17px;
            opacity: 1;
        }
        
        .header-area.header-area8 .main-menu-ex ul li a {
            color: var(--qt-text-h-text1);
            font-size: 16px;
            display: block;
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area8 .main-menu-ex ul li:hover .tp-submenu {
            visibility: visible;
            transition: all 0.5s ease-in-out;
            opacity: 1;
            z-index: 9;
            top: 150.3%;
            position: absolute;
            transition: all 0.4s;
            transform: scale(1);
        }
        
        .header-area.header-area2 {
            background-color: #fff;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .mega-menu-all {
            visibility: hidden;
            opacity: 0;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            position: absolute;
            background: white;
            top: 201.3%;
            transform: scale(1, 0);
            z-index: 0;
            transition: all 0.4s;
            border-radius: 5px;
            padding: 36px 0;
            left: -400px;
            width: 1000px;
            min-height: 320px;
            overflow-x: hidden;
            overflow-y: hidden;
            transform-origin: top;
            display: block;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
        }
        
        .header-area.header-area2 .main-menu-ex ul li .mega-menu-all ul {
            box-shadow: none !important;
            padding: 0px 10px !important;
            border: none !important;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .mega-menu-all ul li a {
            display: inline-block;
            padding: 8px 40px;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .mega-menu-all ul li a:hover::after {
            left: 39px !important;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .mega-menu-all .mega-menu-single {
            position: relative;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .mega-menu-all .mega-menu-single h3 {
            font-size: 20px;
            line-height: 20px;
            font-weight: 600;
            color: #081120;
            padding-left: 44px;
            position: relative;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .mega-menu-all .mega-menu-single h3::after {
            content: "";
            position: absolute;
            bottom: -14px;
            left: 43px;
            height: 2px;
            width: 25%;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area2 .main-menu-ex ul li .mega-menu-all .mega-menu-single::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 400px;
            width: 2px;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area2 .main-menu-ex ul li .mega-menu-all .mega-menu-single.dis1::after {
            display: none;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .tp-submenu .all-images-menu {
            display: flex;
            align-items: center;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .tp-submenu .homemenu-thumb {
            transition: all 0.4s;
            position: relative;
            z-index: 1;
            margin: 0 20px 0 0;
            text-align: center;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
            transform: scale(1);
            transition: all 0.4s;
            visibility: visible;
            opacity: 0.4;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
            top: 30%;
            visibility: visible;
            opacity: 1;
            transition: all 0.6s;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            left: 0;
            top: 0;
            transition: all 0.4s;
            background: #000026;
            opacity: 0;
            border-radius: 4px;
            transform: scale(0.8);
            z-index: 1;
            visibility: hidden;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
            height: 100%;
            width: 100%;
            border-radius: 4px;
            transition: all 0.4s;
            border: 1px solid #E5E7EB;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 .coming {
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -84px;
            margin-top: -30px;
            height: 60px !important;
            width: 168px !important;
            z-index: 99;
            border: none !important;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .tp-submenu .homemenu-thumb.active .img1::after {
            transform: scale(1) !important;
            transition: all 0.4s !important;
            visibility: visible !important;
            opacity: 0.4 !important;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .tp-submenu .homemenu-thumb .theme-btn2 {
            padding: 16px;
            color: #000026;
            font-weight: 700;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
            position: absolute;
            top: 40%;
            z-index: 2;
            visibility: hidden;
            opacity: 0;
            text-align: center;
            transition: all 0.6s;
            margin: 0 auto;
            left: 20%;
            right: 20%;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
            display: inline-block;
            font-size: var(--ztc-font-size-font-s16);
            line-height: var(--ztc-font-size-font-s16);
            font-weight: 600;
            background: #A1E934;
            color: #000;
            padding: 16px;
            transition: all 0.4s;
            border-radius: 111px;
            position: relative;
            width: 140px;
            z-index: 1;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
            transform: rotate(-45deg);
            margin-left: 4px;
            transition: all 0.4s;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
            color: #000;
            transition: all 0.4s;
            transform: translateY(-5px);
            background: #A1E934;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
            transform: rotate(0);
            transition: all 0.4s;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
            color: #08111A;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            display: inline-block;
            margin-top: 8px;
            text-align: center;
        }
        
        .header-area.header-area2 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
            color: #A1E934;
            transition: all 0.4s;
        }
        
        .header-area.header-area2 .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            width: 200px;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area2 .main-menu-ex ul li ul li ul {
            left: 200px;
        }
        
        .header-area.header-area2 .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text1);
        }
        
        .header-area.header-area2 .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: #fff;
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area2 .main-menu-ex ul li ul li a:hover::after {
            background-color: var(--qt-text-h-text1);
            border-radius: 4px;
            width: 50px;
            left: 17px;
            opacity: 1;
        }
        
        .header-area.header-area2 .main-menu-ex ul li a {
            color: var(--qt-text-h-text1);
            font-size: 16px;
            display: block;
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area2 .main-menu-ex ul li:hover .tp-submenu {
            visibility: visible;
            transition: all 0.5s ease-in-out;
            opacity: 1;
            z-index: 9;
            top: 150.3%;
            overflow-x: hidden;
            overflow-y: scroll;
            position: absolute;
            transition: all 0.4s;
            transform: scale(1);
        }
        
        .header-area.header-area2 .main-menu-ex ul li:hover .mega-menu-all {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateY(-30px);
        }
        
        .header-area.header-area2 .tp-submenu {
            visibility: hidden;
            opacity: 0;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            position: absolute;
            background: var(--ztc-bg-color-w);
            top: 201.3%;
            transform: scale(1, 0);
            z-index: 0;
            transition: all 0.4s;
            border-radius: 5px;
            padding: 20px;
            left: -315px;
            width: 1300px;
            max-height: 600px;
            overflow: hidden;
            transform-origin: top;
            display: block;
        }
        
        .header-area.header-area3 {
            background-color: #fff;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .mega-menu-all {
            visibility: hidden;
            opacity: 0;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            position: absolute;
            background: white;
            top: 201.3%;
            transform: scale(1, 0);
            z-index: 0;
            transition: all 0.4s;
            border-radius: 5px;
            padding: 36px 0;
            left: -400px;
            width: 1000px;
            min-height: 320px;
            overflow-x: hidden;
            overflow-y: hidden;
            transform-origin: top;
            display: block;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
        }
        
        .header-area.header-area3 .main-menu-ex ul li .mega-menu-all ul {
            box-shadow: none !important;
            padding: 0px 10px !important;
            border: none !important;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .mega-menu-all ul li a {
            display: inline-block;
            padding: 8px 40px;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .mega-menu-all ul li a:hover::after {
            left: 39px !important;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .mega-menu-all .mega-menu-single {
            position: relative;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .mega-menu-all .mega-menu-single h3 {
            font-size: 20px;
            line-height: 20px;
            font-weight: 600;
            color: #081120;
            padding-left: 44px;
            position: relative;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .mega-menu-all .mega-menu-single h3::after {
            content: "";
            position: absolute;
            bottom: -14px;
            left: 43px;
            height: 2px;
            width: 25%;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area3 .main-menu-ex ul li .mega-menu-all .mega-menu-single::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 400px;
            width: 2px;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area3 .main-menu-ex ul li .mega-menu-all .mega-menu-single.dis1::after {
            display: none;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .tp-submenu {
            left: -300px;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .tp-submenu .all-images-menu {
            display: flex;
            align-items: center;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .tp-submenu .homemenu-thumb {
            transition: all 0.4s;
            position: relative;
            z-index: 1;
            margin: 0 20px 0 0;
            text-align: center;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
            transform: scale(1);
            transition: all 0.4s;
            visibility: visible;
            opacity: 0.4;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
            top: 33%;
            visibility: visible;
            opacity: 1;
            transition: all 0.6s;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            left: 0;
            top: 0;
            transition: all 0.4s;
            background: #000026;
            opacity: 0;
            border-radius: 4px;
            transform: scale(0.8);
            z-index: 1;
            visibility: hidden;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
            height: 100%;
            width: 100%;
            border-radius: 4px;
            transition: all 0.4s;
            border: 1px solid #E5E7EB;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 .coming {
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -84px;
            margin-top: -30px;
            height: 60px !important;
            width: 168px !important;
            z-index: 99;
            border: none !important;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .tp-submenu .homemenu-thumb.active .img1::after {
            transform: scale(1) !important;
            transition: all 0.4s !important;
            visibility: visible !important;
            opacity: 0.4 !important;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .tp-submenu .homemenu-thumb .theme-btn4 {
            padding: 16px;
            font-weight: 700;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
            position: absolute;
            top: 45%;
            z-index: 2;
            visibility: hidden;
            opacity: 0;
            text-align: center;
            transition: all 0.6s;
            margin: 0 auto;
            left: 20%;
            right: 20%;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
            display: inline-block;
            font-size: var(--ztc-font-size-font-s16);
            line-height: var(--ztc-font-size-font-s16);
            font-weight: var(--ztc-weight-bold);
            background: var(--ztc-bg-main-bg-3);
            color: var(--ztc-text-text-2);
            padding: 16px;
            transition: all 0.4s;
            border-radius: 8px;
            position: relative;
            width: 140px;
            z-index: 1;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
            transform: rotate(-45deg);
            margin-left: 4px;
            transition: all 0.4s;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
            color: #fff;
            transition: all 0.4s;
            transform: translateY(-5px);
            background: #4e7afd;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
            transform: rotate(0);
            transition: all 0.4s;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
            color: #08111A;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            display: inline-block;
            margin-top: 8px;
            text-align: center;
        }
        
        .header-area.header-area3 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
            color: #113ADC;
            transition: all 0.4s;
        }
        
        .header-area.header-area3 .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            width: 200px;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area3 .main-menu-ex ul li ul li ul {
            left: 200px;
        }
        
        .header-area.header-area3 .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text1);
        }
        
        .header-area.header-area3 .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: #fff;
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area3 .main-menu-ex ul li ul li a:hover::after {
            background-color: var(--qt-text-h-text1);
            border-radius: 4px;
            width: 50px;
            left: 17px;
            opacity: 1;
        }
        
        .header-area.header-area3 .main-menu-ex ul li a {
            color: var(--qt-text-h-text1);
            font-size: 16px;
            display: block;
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area3 .main-menu-ex ul li:hover .tp-submenu {
            visibility: visible;
            transition: all 0.5s ease-in-out;
            opacity: 1;
            z-index: 9;
            top: 150.3%;
            position: absolute;
            transition: all 0.4s;
            transform: scale(1);
        }
        
        .header-area.header-area3 .main-menu-ex ul li:hover .mega-menu-all {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateY(-30px);
        }
        
        .header-area.header-area4 {
            background-color: #fff;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .mega-menu-all {
            visibility: hidden;
            opacity: 0;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            position: absolute;
            background: white;
            top: 201.3%;
            transform: scale(1, 0);
            z-index: 0;
            transition: all 0.4s;
            border-radius: 5px;
            padding: 36px 0;
            left: -400px;
            width: 1000px;
            min-height: 320px;
            overflow-x: hidden;
            overflow-y: hidden;
            transform-origin: top;
            display: block;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
        }
        
        .header-area.header-area4 .main-menu-ex ul li .mega-menu-all ul {
            box-shadow: none !important;
            padding: 0px 10px !important;
            border: none !important;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .mega-menu-all ul li a {
            display: inline-block;
            padding: 8px 40px;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .mega-menu-all ul li a:hover::after {
            left: 39px !important;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .mega-menu-all .mega-menu-single {
            position: relative;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .mega-menu-all .mega-menu-single h3 {
            font-size: 20px;
            line-height: 20px;
            font-weight: 600;
            color: #081120;
            padding-left: 44px;
            position: relative;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .mega-menu-all .mega-menu-single h3::after {
            content: "";
            position: absolute;
            bottom: -14px;
            left: 43px;
            height: 2px;
            width: 25%;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area4 .main-menu-ex ul li .mega-menu-all .mega-menu-single::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 400px;
            width: 2px;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area4 .main-menu-ex ul li .mega-menu-all .mega-menu-single.dis1::after {
            display: none;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .tp-submenu {
            left: -335px;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .tp-submenu .all-images-menu {
            display: flex;
            align-items: center;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .tp-submenu .homemenu-thumb {
            transition: all 0.4s;
            position: relative;
            z-index: 1;
            margin: 0 20px 0 0;
            text-align: center;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
            transform: scale(1);
            transition: all 0.4s;
            visibility: visible;
            opacity: 0.4;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
            top: 28%;
            visibility: visible;
            opacity: 1;
            transition: all 0.6s;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            left: 0;
            top: 0;
            transition: all 0.4s;
            background: #000026;
            opacity: 0;
            border-radius: 4px;
            transform: scale(0.8);
            z-index: 1;
            visibility: hidden;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
            height: 100%;
            width: 100%;
            border-radius: 4px;
            transition: all 0.4s;
            border: 1px solid #E5E7EB;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 .coming {
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -84px;
            margin-top: -30px;
            height: 60px !important;
            width: 168px !important;
            z-index: 99;
            border: none !important;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .tp-submenu .homemenu-thumb.active .img1::after {
            transform: scale(1) !important;
            transition: all 0.4s !important;
            visibility: visible !important;
            opacity: 0.4 !important;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
            position: absolute;
            top: 45%;
            z-index: 2;
            visibility: hidden;
            opacity: 0;
            text-align: center;
            transition: all 0.6s;
            margin: 0 auto;
            left: 20%;
            right: 20%;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
            display: inline-block;
            font-size: var(--ztc-font-size-font-s16);
            line-height: var(--ztc-font-size-font-s16);
            font-weight: 700;
            background: #6E18EF;
            color: var(--ztc-text-text-2);
            padding: 16px;
            transition: all 0.4s;
            border-radius: 30px;
            position: relative;
            width: 140px;
            z-index: 1;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
            transform: rotate(-45deg);
            margin-left: 4px;
            transition: all 0.4s;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
            color: #fff;
            transition: all 0.4s;
            transform: translateY(-5px);
            background: #833eeb;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
            transform: rotate(0);
            transition: all 0.4s;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
            color: #08111A;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            display: inline-block;
            margin-top: 8px;
            text-align: center;
        }
        
        .header-area.header-area4 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
            color: #6E18EF;
            transition: all 0.4s;
        }
        
        .header-area.header-area4 .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            width: 200px;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area4 .main-menu-ex ul li ul li ul {
            left: 200px;
        }
        
        .header-area.header-area4 .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text1);
        }
        
        .header-area.header-area4 .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: #fff;
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area4 .main-menu-ex ul li ul li a:hover::after {
            background-color: var(--qt-text-h-text1);
            border-radius: 4px;
            width: 50px;
            left: 17px;
            opacity: 1;
        }
        
        .header-area.header-area4 .main-menu-ex ul li a {
            color: var(--qt-text-h-text1);
            font-size: 16px;
            display: block;
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area4 .main-menu-ex ul li:hover .tp-submenu {
            visibility: visible;
            transition: all 0.5s ease-in-out;
            opacity: 1;
            z-index: 9;
            top: 150.3%;
            position: absolute;
            transition: all 0.4s;
            transform: scale(1);
        }
        
        .header-area.header-area4 .main-menu-ex ul li:hover .mega-menu-all {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateY(-30px);
        }
        
        .header-area.header-area5 .main-menu-ex ul li .mega-menu-all {
            visibility: hidden;
            opacity: 0;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            position: absolute;
            background: white;
            top: 201.3%;
            transform: scale(1, 0);
            z-index: 0;
            transition: all 0.4s;
            border-radius: 5px;
            padding: 36px 0;
            left: -400px;
            width: 1000px;
            min-height: 320px;
            overflow-x: hidden;
            overflow-y: hidden;
            transform-origin: top;
            display: block;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
        }
        
        .header-area.header-area5 .main-menu-ex ul li .mega-menu-all ul {
            box-shadow: none !important;
            padding: 0px 10px !important;
            border: none !important;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .mega-menu-all ul li a {
            display: inline-block;
            padding: 8px 40px;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .mega-menu-all ul li a:hover::after {
            left: 39px !important;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .mega-menu-all .mega-menu-single {
            position: relative;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .mega-menu-all .mega-menu-single h3 {
            font-size: 20px;
            line-height: 20px;
            font-weight: 600;
            color: #081120;
            padding-left: 44px;
            position: relative;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .mega-menu-all .mega-menu-single h3::after {
            content: "";
            position: absolute;
            bottom: -14px;
            left: 43px;
            height: 2px;
            width: 25%;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area5 .main-menu-ex ul li .mega-menu-all .mega-menu-single::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 400px;
            width: 2px;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area5 .main-menu-ex ul li .mega-menu-all .mega-menu-single.dis1::after {
            display: none;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .tp-submenu {
            left: -335px;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .tp-submenu .all-images-menu {
            display: flex;
            align-items: center;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .tp-submenu .homemenu-thumb {
            transition: all 0.4s;
            position: relative;
            z-index: 1;
            margin: 0 20px 0 0;
            text-align: center;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
            transform: scale(1);
            transition: all 0.4s;
            visibility: visible;
            opacity: 0.4;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
            top: 28%;
            visibility: visible;
            opacity: 1;
            transition: all 0.6s;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            left: 0;
            top: 0;
            transition: all 0.4s;
            background: #000026;
            opacity: 0;
            border-radius: 4px;
            transform: scale(0.8);
            z-index: 1;
            visibility: hidden;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
            height: 100%;
            width: 100%;
            border-radius: 4px;
            transition: all 0.4s;
            border: 1px solid #E5E7EB;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 .coming {
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -84px;
            margin-top: -30px;
            height: 60px !important;
            width: 168px !important;
            z-index: 99;
            border: none !important;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .tp-submenu .homemenu-thumb.active .img1::after {
            transform: scale(1) !important;
            transition: all 0.4s !important;
            visibility: visible !important;
            opacity: 0.4 !important;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
            position: absolute;
            top: 45%;
            z-index: 2;
            visibility: hidden;
            opacity: 0;
            text-align: center;
            transition: all 0.6s;
            margin: 0 auto;
            left: 20%;
            right: 20%;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
            display: inline-block;
            font-size: var(--ztc-font-size-font-s16);
            line-height: var(--ztc-font-size-font-s16);
            font-weight: 700;
            background: #FA6444;
            color: var(--ztc-text-text-2);
            padding: 16px;
            transition: all 0.4s;
            border-radius: 4px;
            position: relative;
            width: 140px;
            z-index: 1;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
            transform: rotate(-45deg);
            margin-left: 4px;
            transition: all 0.4s;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
            color: #fff;
            transition: all 0.4s;
            transform: translateY(-5px);
            background: #FA6444;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
            transform: rotate(0);
            transition: all 0.4s;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
            color: #08111A;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            display: inline-block;
            margin-top: 8px;
            text-align: center;
        }
        
        .header-area.header-area5 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
            color: #6E18EF;
            transition: all 0.4s;
        }
        
        .header-area.header-area5 .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            width: 200px;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area5 .main-menu-ex ul li ul li ul {
            left: 200px;
        }
        
        .header-area.header-area5 .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text1);
        }
        
        .header-area.header-area5 .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: #fff;
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area5 .main-menu-ex ul li ul li a:hover::after {
            background-color: var(--qt-text-h-text1);
            border-radius: 4px;
            width: 50px;
            left: 17px;
            opacity: 1;
        }
        
        .header-area.header-area5 .main-menu-ex ul li a {
            color: var(--qt-text-h-text1);
            font-size: 16px;
            display: block;
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area5 .main-menu-ex ul li:hover .tp-submenu {
            visibility: visible;
            transition: all 0.5s ease-in-out;
            opacity: 1;
            z-index: 9;
            top: 150.3%;
            position: absolute;
            transition: all 0.4s;
            transform: scale(1);
        }
        
        .header-area.header-area5 .main-menu-ex ul li:hover .mega-menu-all {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateY(-30px);
        }
        
        .header-area.header-area10 .main-menu-ex ul li .mega-menu-all {
            visibility: hidden;
            opacity: 0;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            position: absolute;
            background: white;
            top: 201.3%;
            transform: scale(1, 0);
            z-index: 0;
            transition: all 0.4s;
            border-radius: 5px;
            padding: 36px 0;
            left: -400px;
            width: 1000px;
            min-height: 320px;
            overflow-x: hidden;
            overflow-y: hidden;
            transform-origin: top;
            display: block;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
        }
        
        .header-area.header-area10 .main-menu-ex ul li .mega-menu-all ul {
            box-shadow: none !important;
            padding: 0px 10px !important;
            border: none !important;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .mega-menu-all ul li a {
            display: inline-block;
            padding: 8px 40px;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .mega-menu-all ul li a:hover::after {
            left: 39px !important;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .mega-menu-all .mega-menu-single {
            position: relative;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .mega-menu-all .mega-menu-single h3 {
            font-size: 20px;
            line-height: 20px;
            font-weight: 600;
            color: #081120;
            padding-left: 44px;
            position: relative;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .mega-menu-all .mega-menu-single h3::after {
            content: "";
            position: absolute;
            bottom: -14px;
            left: 43px;
            height: 2px;
            width: 25%;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area10 .main-menu-ex ul li .mega-menu-all .mega-menu-single::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 400px;
            width: 2px;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area10 .main-menu-ex ul li .mega-menu-all .mega-menu-single.dis1::after {
            display: none;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .tp-submenu {
            left: -335px;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .tp-submenu .all-images-menu {
            display: flex;
            align-items: center;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .tp-submenu .homemenu-thumb {
            transition: all 0.4s;
            position: relative;
            z-index: 1;
            margin: 0 20px 0 0;
            text-align: center;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
            transform: scale(1);
            transition: all 0.4s;
            visibility: visible;
            opacity: 0.4;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
            top: 28%;
            visibility: visible;
            opacity: 1;
            transition: all 0.6s;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            left: 0;
            top: 0;
            transition: all 0.4s;
            background: #000026;
            opacity: 0;
            border-radius: 4px;
            transform: scale(0.8);
            z-index: 1;
            visibility: hidden;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
            height: 100%;
            width: 100%;
            border-radius: 4px;
            transition: all 0.4s;
            border: 1px solid #E5E7EB;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 .coming {
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -84px;
            margin-top: -30px;
            height: 60px !important;
            width: 168px !important;
            z-index: 99;
            border: none !important;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .tp-submenu .homemenu-thumb.active .img1::after {
            transform: scale(1) !important;
            transition: all 0.4s !important;
            visibility: visible !important;
            opacity: 0.4 !important;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
            position: absolute;
            top: 45%;
            z-index: 2;
            visibility: hidden;
            opacity: 0;
            text-align: center;
            transition: all 0.6s;
            margin: 0 auto;
            left: 20%;
            right: 20%;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
            display: inline-block;
            font-size: var(--ztc-font-size-font-s16);
            line-height: var(--ztc-font-size-font-s16);
            font-weight: 700;
            background: #259EA6;
            color: var(--ztc-text-text-2);
            padding: 16px;
            transition: all 0.4s;
            border-radius: 4px;
            position: relative;
            width: 140px;
            z-index: 1;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
            transform: rotate(-45deg);
            margin-left: 4px;
            transition: all 0.4s;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
            color: #fff;
            transition: all 0.4s;
            transform: translateY(-5px);
            background: #259EA6;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
            transform: rotate(0);
            transition: all 0.4s;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
            color: #08111A;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            display: inline-block;
            margin-top: 8px;
            text-align: center;
        }
        
        .header-area.header-area10 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
            color: #6E18EF;
            transition: all 0.4s;
        }
        
        .header-area.header-area10 .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            width: 200px;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area10 .main-menu-ex ul li ul li ul {
            left: 200px;
        }
        
        .header-area.header-area10 .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text1);
        }
        
        .header-area.header-area10 .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: #fff;
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area10 .main-menu-ex ul li ul li a:hover::after {
            background-color: var(--qt-text-h-text1);
            border-radius: 4px;
            width: 50px;
            left: 17px;
            opacity: 1;
        }
        
        .header-area.header-area10 .main-menu-ex ul li a {
            color: var(--qt-text-h-text1);
            font-size: 16px;
            display: block;
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area10 .main-menu-ex ul li:hover .tp-submenu {
            visibility: visible;
            transition: all 0.5s ease-in-out;
            opacity: 1;
            z-index: 9;
            top: 150.3%;
            position: absolute;
            transition: all 0.4s;
            transform: scale(1);
        }
        
        .header-area.header-area10 .main-menu-ex ul li:hover .mega-menu-all {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateY(-30px);
        }
        
        .header-area.header-area9 .main-menu-ex ul li .mega-menu-all {
            visibility: hidden;
            opacity: 0;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            position: absolute;
            background: white;
            top: 201.3%;
            transform: scale(1, 0);
            z-index: 0;
            transition: all 0.4s;
            border-radius: 5px;
            padding: 36px 0;
            left: -400px;
            width: 1000px;
            min-height: 320px;
            overflow-x: hidden;
            overflow-y: hidden;
            transform-origin: top;
            display: block;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
        }
        
        .header-area.header-area9 .main-menu-ex ul li .mega-menu-all ul {
            box-shadow: none !important;
            padding: 0px 10px !important;
            border: none !important;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .mega-menu-all ul li a {
            display: inline-block;
            padding: 8px 40px;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .mega-menu-all ul li a:hover::after {
            left: 39px !important;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .mega-menu-all .mega-menu-single {
            position: relative;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .mega-menu-all .mega-menu-single h3 {
            font-size: 20px;
            line-height: 20px;
            font-weight: 600;
            color: #081120;
            padding-left: 44px;
            position: relative;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .mega-menu-all .mega-menu-single h3::after {
            content: "";
            position: absolute;
            bottom: -14px;
            left: 43px;
            height: 2px;
            width: 25%;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area9 .main-menu-ex ul li .mega-menu-all .mega-menu-single::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 400px;
            width: 2px;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area9 .main-menu-ex ul li .mega-menu-all .mega-menu-single.dis1::after {
            display: none;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .tp-submenu {
            left: -335px;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .tp-submenu .all-images-menu {
            display: flex;
            align-items: center;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .tp-submenu .homemenu-thumb {
            transition: all 0.4s;
            position: relative;
            z-index: 1;
            margin: 0 20px 0 0;
            text-align: center;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
            transform: scale(1);
            transition: all 0.4s;
            visibility: visible;
            opacity: 0.4;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
            top: 28%;
            visibility: visible;
            opacity: 1;
            transition: all 0.6s;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            left: 0;
            top: 0;
            transition: all 0.4s;
            background: #000026;
            opacity: 0;
            border-radius: 4px;
            transform: scale(0.8);
            z-index: 1;
            visibility: hidden;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
            height: 100%;
            width: 100%;
            border-radius: 4px;
            transition: all 0.4s;
            border: 1px solid #E5E7EB;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 .coming {
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -84px;
            margin-top: -30px;
            height: 60px !important;
            width: 168px !important;
            z-index: 99;
            border: none !important;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .tp-submenu .homemenu-thumb.active .img1::after {
            transform: scale(1) !important;
            transition: all 0.4s !important;
            visibility: visible !important;
            opacity: 0.4 !important;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
            position: absolute;
            top: 45%;
            z-index: 2;
            visibility: hidden;
            opacity: 0;
            text-align: center;
            transition: all 0.6s;
            margin: 0 auto;
            left: 20%;
            right: 20%;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
            display: inline-block;
            font-size: var(--ztc-font-size-font-s16);
            line-height: var(--ztc-font-size-font-s16);
            font-weight: 700;
            background: #A2EA61;
            color: #000000;
            padding: 16px;
            transition: all 0.4s;
            border-radius: 30px;
            position: relative;
            width: 140px;
            z-index: 1;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
            transform: rotate(-45deg);
            margin-left: 4px;
            transition: all 0.4s;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
            color: #000;
            transition: all 0.4s;
            transform: translateY(-5px);
            background: #A2EA61;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
            transform: rotate(0);
            transition: all 0.4s;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
            color: #08111A;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            display: inline-block;
            margin-top: 8px;
            text-align: center;
        }
        
        .header-area.header-area9 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
            color: #6E18EF;
            transition: all 0.4s;
        }
        
        .header-area.header-area9 .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            width: 200px;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area9 .main-menu-ex ul li ul li ul {
            left: 200px;
        }
        
        .header-area.header-area9 .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text1);
        }
        
        .header-area.header-area9 .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: #fff;
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area9 .main-menu-ex ul li ul li a:hover::after {
            background-color: var(--qt-text-h-text1);
            border-radius: 4px;
            width: 50px;
            left: 17px;
            opacity: 1;
        }
        
        .header-area.header-area9 .main-menu-ex ul li a {
            color: var(--qt-text-h-text1);
            font-size: 16px;
            display: block;
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area9 .main-menu-ex ul li:hover .tp-submenu {
            visibility: visible;
            transition: all 0.5s ease-in-out;
            opacity: 1;
            z-index: 9;
            top: 150.3%;
            position: absolute;
            transition: all 0.4s;
            transform: scale(1);
        }
        
        .header-area.header-area9 .main-menu-ex ul li:hover .mega-menu-all {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateY(-30px);
        }
        
        .header-area.header-area6 .main-menu-ex ul li .mega-menu-all {
            visibility: hidden;
            opacity: 0;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            position: absolute;
            background: white;
            top: 201.3%;
            transform: scale(1, 0);
            z-index: 0;
            transition: all 0.4s;
            border-radius: 5px;
            padding: 36px 0;
            left: -400px;
            width: 1000px;
            min-height: 320px;
            overflow-x: hidden;
            overflow-y: hidden;
            transform-origin: top;
            display: block;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
        }
        
        .header-area.header-area6 .main-menu-ex ul li .mega-menu-all ul {
            box-shadow: none !important;
            padding: 0px 10px !important;
            border: none !important;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .mega-menu-all ul li a {
            display: inline-block;
            padding: 8px 40px;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .mega-menu-all ul li a:hover::after {
            left: 39px !important;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .mega-menu-all .mega-menu-single {
            position: relative;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .mega-menu-all .mega-menu-single h3 {
            font-size: 20px;
            line-height: 20px;
            font-weight: 600;
            color: #081120;
            padding-left: 44px;
            position: relative;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .mega-menu-all .mega-menu-single h3::after {
            content: "";
            position: absolute;
            bottom: -14px;
            left: 43px;
            height: 2px;
            width: 25%;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area6 .main-menu-ex ul li .mega-menu-all .mega-menu-single::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 400px;
            width: 2px;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area6 .main-menu-ex ul li .mega-menu-all .mega-menu-single.dis1::after {
            display: none;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .tp-submenu {
            left: -335px;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .tp-submenu .all-images-menu {
            display: flex;
            align-items: center;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .tp-submenu .homemenu-thumb {
            transition: all 0.4s;
            position: relative;
            z-index: 1;
            margin: 0 20px 0 0;
            text-align: center;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
            transform: scale(1);
            transition: all 0.4s;
            visibility: visible;
            opacity: 0.4;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
            top: 28%;
            visibility: visible;
            opacity: 1;
            transition: all 0.6s;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            left: 0;
            top: 0;
            transition: all 0.4s;
            background: #000026;
            opacity: 0;
            border-radius: 4px;
            transform: scale(0.8);
            z-index: 1;
            visibility: hidden;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
            height: 100%;
            width: 100%;
            border-radius: 4px;
            transition: all 0.4s;
            border: 1px solid #E5E7EB;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 .coming {
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -84px;
            margin-top: -30px;
            height: 60px !important;
            width: 168px !important;
            z-index: 99;
            border: none !important;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .tp-submenu .homemenu-thumb.active .img1::after {
            transform: scale(1) !important;
            transition: all 0.4s !important;
            visibility: visible !important;
            opacity: 0.4 !important;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
            position: absolute;
            top: 45%;
            z-index: 2;
            visibility: hidden;
            opacity: 0;
            text-align: center;
            transition: all 0.6s;
            margin: 0 auto;
            left: 20%;
            right: 20%;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
            display: inline-block;
            font-size: var(--ztc-font-size-font-s16);
            line-height: var(--ztc-font-size-font-s16);
            font-weight: 700;
            background: #FA6444;
            color: var(--ztc-text-text-2);
            padding: 16px;
            transition: all 0.4s;
            border-radius: 4px;
            position: relative;
            width: 140px;
            z-index: 1;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
            transform: rotate(-45deg);
            margin-left: 4px;
            transition: all 0.4s;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
            color: #fff;
            transition: all 0.4s;
            transform: translateY(-5px);
            background: #FA6444;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
            transform: rotate(0);
            transition: all 0.4s;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
            color: #08111A;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            display: inline-block;
            margin-top: 8px;
            text-align: center;
        }
        
        .header-area.header-area6 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
            color: #6E18EF;
            transition: all 0.4s;
        }
        
        .header-area.header-area6 .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            width: 200px;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area6 .main-menu-ex ul li ul li ul {
            left: 200px;
        }
        
        .header-area.header-area6 .main-menu-ex ul li ul li a {
            color: #fff;
        }
        
        .header-area.header-area6 .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: #fff;
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area6 .main-menu-ex ul li ul li a:hover::after {
            background-color: var(--qt-text-h-text1);
            border-radius: 4px;
            width: 50px;
            left: 17px;
            opacity: 1;
        }
        
        .header-area.header-area6 .main-menu-ex ul li a {
            color: #fff;
            font-size: 16px;
            display: block;
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area6 .main-menu-ex ul li:hover .tp-submenu {
            visibility: visible;
            transition: all 0.5s ease-in-out;
            opacity: 1;
            z-index: 9;
            top: 150.3%;
            position: absolute;
            transition: all 0.4s;
            transform: scale(1);
        }
        
        .header-area.header-area6 .main-menu-ex ul li:hover .mega-menu-all {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateY(-30px);
        }
        
        .header-area.header-area7 .main-menu-ex ul li .mega-menu-all {
            visibility: hidden;
            opacity: 0;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            position: absolute;
            background: white;
            top: 201.3%;
            transform: scale(1, 0);
            z-index: 0;
            transition: all 0.4s;
            border-radius: 5px;
            padding: 36px 0;
            left: -400px;
            width: 1000px;
            min-height: 320px;
            overflow-x: hidden;
            overflow-y: hidden;
            transform-origin: top;
            display: block;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
        }
        
        .header-area.header-area7 .main-menu-ex ul li .mega-menu-all ul {
            box-shadow: none !important;
            padding: 0px 10px !important;
            border: none !important;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .mega-menu-all ul li a {
            display: inline-block;
            padding: 8px 40px;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .mega-menu-all ul li a:hover::after {
            left: 39px !important;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .mega-menu-all .mega-menu-single {
            position: relative;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .mega-menu-all .mega-menu-single h3 {
            font-size: 20px;
            line-height: 20px;
            font-weight: 600;
            color: #081120;
            padding-left: 44px;
            position: relative;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .mega-menu-all .mega-menu-single h3::after {
            content: "";
            position: absolute;
            bottom: -14px;
            left: 43px;
            height: 2px;
            width: 25%;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area7 .main-menu-ex ul li .mega-menu-all .mega-menu-single::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 400px;
            width: 2px;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area7 .main-menu-ex ul li .mega-menu-all .mega-menu-single.dis1::after {
            display: none;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .tp-submenu {
            left: -335px;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .tp-submenu .all-images-menu {
            display: flex;
            align-items: center;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .tp-submenu .homemenu-thumb {
            transition: all 0.4s;
            position: relative;
            z-index: 1;
            margin: 0 20px 0 0;
            text-align: center;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
            transform: scale(1);
            transition: all 0.4s;
            visibility: visible;
            opacity: 0.4;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
            top: 28%;
            visibility: visible;
            opacity: 1;
            transition: all 0.6s;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            left: 0;
            top: 0;
            transition: all 0.4s;
            background: #000026;
            opacity: 0;
            border-radius: 4px;
            transform: scale(0.8);
            z-index: 1;
            visibility: hidden;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
            height: 100%;
            width: 100%;
            border-radius: 4px;
            transition: all 0.4s;
            border: 1px solid #E5E7EB;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 .coming {
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -84px;
            margin-top: -30px;
            height: 60px !important;
            width: 168px !important;
            z-index: 99;
            border: none !important;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .tp-submenu .homemenu-thumb.active .img1::after {
            transform: scale(1) !important;
            transition: all 0.4s !important;
            visibility: visible !important;
            opacity: 0.4 !important;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
            position: absolute;
            top: 45%;
            z-index: 2;
            visibility: hidden;
            opacity: 0;
            text-align: center;
            transition: all 0.6s;
            margin: 0 auto;
            left: 20%;
            right: 20%;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
            display: inline-block;
            font-size: var(--ztc-font-size-font-s16);
            line-height: var(--ztc-font-size-font-s16);
            font-weight: 700;
            background: #0061FF;
            color: var(--ztc-text-text-2);
            padding: 16px;
            transition: all 0.4s;
            border-radius: 111px;
            position: relative;
            width: 140px;
            z-index: 1;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
            transform: rotate(-45deg);
            margin-left: 4px;
            transition: all 0.4s;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
            color: #fff;
            transition: all 0.4s;
            transform: translateY(-5px);
            background: #0061FF;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
            transform: rotate(0);
            transition: all 0.4s;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
            color: #08111A;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            /* 100% */
            display: inline-block;
            margin-top: 8px;
            text-align: center;
        }
        
        .header-area.header-area7 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
            color: #6E18EF;
            transition: all 0.4s;
        }
        
        .header-area.header-area7 .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            width: 200px;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area7 .main-menu-ex ul li ul li ul {
            left: 200px;
        }
        
        .header-area.header-area7 .main-menu-ex ul li ul li a {
            color: #fff;
        }
        
        .header-area.header-area7 .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: #fff;
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area7 .main-menu-ex ul li ul li a:hover::after {
            background-color: var(--qt-text-h-text1);
            border-radius: 4px;
            width: 50px;
            left: 17px;
            opacity: 1;
        }
        
        .header-area.header-area7 .main-menu-ex ul li a {
            color: #fff;
            font-size: 16px;
            display: block;
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area7 .main-menu-ex ul li:hover .tp-submenu {
            visibility: visible;
            transition: all 0.5s ease-in-out;
            opacity: 1;
            z-index: 9;
            top: 150.3%;
            position: absolute;
            transition: all 0.4s;
            transform: scale(1);
        }
        
        .header-area.header-area7 .main-menu-ex ul li:hover .mega-menu-all {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateY(-30px);
        }
        
        .main-menu-ex li {
            display: inline-block;
        }
        
        .main-menu-ex li {
            position: relative;
            z-index: 9;
        }
        
        .main-menu-ex li li {
            display: block;
        }
        
        .main-menu-ex li>ul {
            opacity: 0;
            visibility: hidden;
            top: 60px;
            right: 0;
            transition: all 0.3s;
            transform: translateY(20px) rotateX(45deg);
        }
        
        .main-menu-ex li li>ul {
            left: 100%;
            right: auto;
        }
        
        .main-menu-ex li li:hover>ul {
            top: 0;
        }
        
        .main-menu-ex li:hover>ul {
            visibility: visible;
            opacity: 1;
            top: 50px;
            transition: all 0.3s;
            z-index: 99;
            transform: translateY(0);
        }
        
        li.has-dropdown1 {
            position: relative;
        }
        
        li.has-dropdown1 span {
            position: absolute;
            right: 10px;
        }
        
        .header-area1.sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            transform: translate3d(0, 0, 0);
            z-index: 111;
            animation-name: fade-in-down;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            background-color: var(--ztc-bg-color-w);
            -webkit-backdrop-filter: blur(80px);
            backdrop-filter: blur(80px);
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            transition: all 0.3s ease-in-out;
            z-index: 999;
        }
        
        .header-area8.sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            transform: translate3d(0, 0, 0);
            z-index: 111;
            animation-name: fade-in-down;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            background-color: var(--ztc-bg-color-w);
            -webkit-backdrop-filter: blur(80px);
            backdrop-filter: blur(80px);
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            transition: all 0.3s ease-in-out;
            z-index: 999;
        }
        
        .header-area.header-area4.sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            transform: translate3d(0, 0, 0);
            z-index: 111;
            animation-name: fade-in-down;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            background-color: var(--ztc-bg-color-w);
            -webkit-backdrop-filter: blur(80px);
            backdrop-filter: blur(80px);
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            transition: all 0.3s ease-in-out;
            z-index: 999;
        }
        
        .header-area.header-area2.sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            transform: translate3d(0, 0, 0);
            z-index: 111;
            animation-name: fade-in-down;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            background-color: #000026;
            -webkit-backdrop-filter: blur(80px);
            backdrop-filter: blur(80px);
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            transition: all 0.3s ease-in-out;
            z-index: 999;
            border-bottom: none;
        }
        
        .header-area.header-area3.sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            transform: translate3d(0, 0, 0);
            z-index: 111;
            animation-name: fade-in-down;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            background-color: #123CDD;
            -webkit-backdrop-filter: blur(80px);
            backdrop-filter: blur(80px);
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            transition: all 0.3s ease-in-out;
            z-index: 999;
            border-bottom: none;
        }
        
        .header-area.header-area5.sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            transform: translate3d(0, 0, 0);
            z-index: 111;
            animation-name: fade-in-down;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            background-color: #fff;
            -webkit-backdrop-filter: blur(80px);
            backdrop-filter: blur(80px);
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            transition: all 0.3s ease-in-out;
            z-index: 999;
            border-bottom: none;
        }
        
        .header-area.header-area5.sticky .header-elements {
            padding: 0;
            transition: all 0.4s;
        }
        
        .header-area.header-area10.sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            transform: translate3d(0, 0, 0);
            z-index: 111;
            animation-name: fade-in-down;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            background-color: #fff;
            -webkit-backdrop-filter: blur(80px);
            backdrop-filter: blur(80px);
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            transition: all 0.3s ease-in-out;
            z-index: 999;
            border-bottom: none;
        }
        
        .header-area.header-area10.sticky .header-elements {
            padding: 0;
            transition: all 0.4s;
        }
        
        .header-area.header-area9.sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            transform: translate3d(0, 0, 0);
            z-index: 111;
            animation-name: fade-in-down;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            background-color: #fff;
            -webkit-backdrop-filter: blur(80px);
            backdrop-filter: blur(80px);
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            transition: all 0.3s ease-in-out;
            z-index: 999;
            border-bottom: none;
        }
        
        .header-area.header-area9.sticky .header-elements {
            padding: 0;
            transition: all 0.4s;
        }
        
        .header-area.header-area6.sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            transform: translate3d(0, 0, 0);
            z-index: 111;
            animation-name: fade-in-down;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            background: rgba(0, 0, 0, 0.62);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            transition: all 0.3s ease-in-out;
            z-index: 999;
            border-bottom: none;
        }
        
        .header-area.header-area6.sticky .header-elements {
            padding: 0;
            transition: all 0.4s;
        }
        
        .header-area.header-area7.sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            transform: translate3d(0, 0, 0);
            z-index: 111;
            animation-name: fade-in-down;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            background: rgba(0, 0, 0, 0.62);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            transition: all 0.3s ease-in-out;
            z-index: 999;
            border-bottom: none;
        }
        
        .header-area.header-area7.sticky .header-elements {
            padding: 0;
            transition: all 0.4s;
        }
        
        @keyframes fade-in-down {
            0% {
                transform: translate3d(0, -50px, 0);
            }
            100% {
                opacity: 1;
                transform: none;
            }
        }
        
        .fade-in-down {
            animation-name: fade-in-down;
            animation-duration: 1s;
            animation-fill-mode: forwards;
        }
        /* 
++++++++++++++++++++++++++++++++++
==== =====nav menu all ====== ======
+++++++++++++++++++++++++++++++++
*/
        /* 
++++++++++++++++++++++++++++++++++
==== =====nav menu all 2 ====== ======
+++++++++++++++++++++++++++++++++
*/
        
        .header-area.header-area1 .header-elements .main-menu-ex {
            padding: 2px 24px;
            position: relative;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all {
            visibility: hidden;
            opacity: 0;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            position: absolute;
            background: white;
            top: 201.3%;
            transform: scale(1, 0);
            z-index: 0;
            transition: all 0.4s;
            border-radius: 5px;
            padding: 12px 0;
            left: -400px;
            width: 1000px;
            min-height: 320px;
            max-height: 500px;
            overflow-x: hidden;
            overflow-y: scroll;
            transform-origin: top;
            display: block;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all ul {
            box-shadow: none !important;
            padding: 0px 10px !important;
            border: none !important;
            width: 100%;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all ul li a {
            display: inline-block;
            padding: 0;
            font-size: 14px;
            line-height: 20px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            /* Number of lines to show */
            -webkit-box-orient: vertical;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all ul li a:hover::after {
            left: 39px;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single {
            position: relative;
            margin-bottom: 14px;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single span a{
            font-size: 16px;
            line-height: 20px; 
            font-weight: 600;
            color: #081120;
            padding-left: 10px;
            position: relative;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single span a::after {
            content: "";
            position: absolute;
            bottom: -14px;
            left: 43px;
            height: 2px;
            width: 25%;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 400px;
            width: 2px;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single.dis1::after {
            display: none;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .all-images-menu {
            display: flex;
            align-items: center;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb {
            transition: all 0.4s;
            position: relative;
            z-index: 1;
            margin: 0 20px 0 0;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
            transform: scale(1);
            transition: all 0.4s;
            visibility: visible;
            opacity: 0.4;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
            top: 28%;
            visibility: visible;
            opacity: 1;
            transition: all 0.6s;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            left: 0;
            top: 0;
            transition: all 0.4s;
            background: #000;
            opacity: 0;
            border-radius: 4px;
            transform: scale(0.8);
            z-index: 1;
            visibility: hidden;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
            height: 100%;
            width: 100%;
            border-radius: 4px;
            transition: all 0.4s;
            border: 1px solid #E5E7EB;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
            position: absolute;
            top: 45%;
            z-index: 2;
            visibility: hidden;
            opacity: 0;
            text-align: center;
            transition: all 0.6s;
            margin: 0 auto;
            left: 20%;
            right: 20%;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
            display: inline-block;
            font-size: var(--ztc-font-size-font-s16);
            line-height: var(--ztc-font-size-font-s16);
            font-weight: var(--ztc-weight-bold);
            background: var(--ztc-bg-main-bg-3);
            color: var(--ztc-text-text-2);
            padding: 16px;
            transition: all 0.4s;
            border-radius: 8px;
            position: relative;
            width: 140px;
            z-index: 1;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
            transform: rotate(-45deg);
            margin-left: 4px;
            transition: all 0.4s;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
            color: #fff;
            transition: all 0.4s;
            transform: translateY(-5px);
            background: #4e7afd;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
            transform: rotate(0);
            transition: all 0.4s;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li ul {
            /* position: absolute; */
            position: unset;
            left: 0;
            top: 50px;
            border-radius: 4px;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
            background: #fff;
            -webkit-backdrop-filter: blur(27px);
            backdrop-filter: blur(27px);
            width: 220px;
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li ul li ul {
            left: 190px;
            top: 10px;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text3);
            display: flex;
            justify-content: space-between;
        }
        /* .header-area.header-area1 .header-elements .main-menu-ex ul li ul li a::after {
  content: "";
  position: absolute;
  bottom: 9px;
  left: 0;
  width: 0%;
  height: 2px;
  color: var(--qt-text-h-text3);
  border-radius: 4px;
  transition: all 0.4s;
  z-index: -1;
  opacity: 1;
} */
        /* .header-area.header-area1 .header-elements .main-menu-ex ul li ul li a:hover::after {
  background-color: rgba(23, 19, 61, 0.6862745098);
  border-radius: 4px;
  width: 50px;
  left: 15px;
  opacity: 1;
} */
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li ul li a:hover {
            color: var(--ztc-bg-main-bg-1);
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li a {
            color: var(--qt-text-h-text3);
            font-size: 16px;
            display: block;
            font-weight: 400;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area1 .header-elements .main-menu-ex ul li:hover .mega-menu-all {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateY(-30px);
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex {
            padding: 2px 24px;
            position: relative;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .mega-menu-all {
            visibility: hidden;
            opacity: 0;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
            position: absolute;
            background: white;
            top: 201.3%;
            transform: scale(1, 0);
            z-index: 0;
            transition: all 0.4s;
            border-radius: 5px;
            padding: 36px 0;
            left: -400px;
            width: 1000px;
            min-height: 320px;
            overflow-x: hidden;
            overflow-y: hidden;
            transform-origin: top;
            display: block;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .mega-menu-all ul {
            box-shadow: none !important;
            padding: 0px 10px !important;
            border: none !important;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .mega-menu-all ul li a {
            display: inline-block;
            padding: 8px 40px;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .mega-menu-all ul li a:hover::after {
            left: 39px;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single {
            position: relative;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single h3 {
            font-size: 20px;
            line-height: 20px;
            font-weight: 600;
            color: #081120;
            padding-left: 44px;
            position: relative;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single h3::after {
            content: "";
            position: absolute;
            bottom: -14px;
            left: 43px;
            height: 2px;
            width: 25%;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 400px;
            width: 2px;
            background-color: rgba(145, 145, 145, 0.2117647059);
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single.dis1::after {
            display: none;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .all-images-menu {
            display: flex;
            align-items: center;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb {
            transition: all 0.4s;
            position: relative;
            z-index: 1;
            margin: 0 20px 0 0;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
            transform: scale(1);
            transition: all 0.4s;
            visibility: visible;
            opacity: 0.4;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
            top: 28%;
            visibility: visible;
            opacity: 1;
            transition: all 0.6s;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            left: 0;
            top: 0;
            transition: all 0.4s;
            background: #000;
            opacity: 0;
            border-radius: 4px;
            transform: scale(0.8);
            z-index: 1;
            visibility: hidden;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
            height: 100%;
            width: 100%;
            border-radius: 4px;
            transition: all 0.4s;
            border: 1px solid #E5E7EB;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
            position: absolute;
            top: 45%;
            z-index: 2;
            visibility: hidden;
            opacity: 0;
            text-align: center;
            transition: all 0.6s;
            margin: 0 auto;
            left: 20%;
            right: 20%;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
            display: inline-block;
            font-size: var(--ztc-font-size-font-s16);
            line-height: var(--ztc-font-size-font-s16);
            font-weight: var(--ztc-weight-bold);
            background: #4D32A5;
            color: var(--ztc-text-text-2);
            padding: 16px;
            transition: all 0.4s;
            border-radius: 8px;
            position: relative;
            width: 140px;
            z-index: 1;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
            transform: rotate(-45deg);
            margin-left: 4px;
            transition: all 0.4s;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
            color: #fff;
            transition: all 0.4s;
            transform: translateY(-5px);
            background: #4D32A5;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
            transform: rotate(0);
            transition: all 0.4s;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
            background: #fff;
            -webkit-backdrop-filter: blur(27px);
            backdrop-filter: blur(27px);
            width: 220px;
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li ul li ul {
            left: 190px;
            top: 10px;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text3);
            display: flex;
            justify-content: space-between;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: var(--qt-text-h-text3);
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li ul li a:hover::after {
            background-color: rgba(23, 19, 61, 0.6862745098);
            border-radius: 4px;
            width: 50px;
            left: 15px;
            opacity: 1;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li a {
            color: var(--qt-text-h-text3);
            font-size: 16px;
            display: block;
            font-weight: 400;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area8 .header-elements .main-menu-ex ul li:hover .mega-menu-all {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateY(-30px);
        }
        /* 
++++++++++++++++++++++++++++++++++
==== =====nav menu all 1 ====== ======
+++++++++++++++++++++++++++++++++
*/
        /* 
++++++++++++++++++++++++++++++++++
==== =====nav menu all 2 ====== ======
+++++++++++++++++++++++++++++++++
*/
        
        .header-area.header-area2 {
            background-color: transparent;
            border-bottom: 1px solid #2F3036;
        }
        
        .header-area.header-area2 .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            width: 220px;
            box-shadow: rgba(255, 253, 253, 0.2) 0px 20px 30px;
            padding: 10px;
            background-color: var(--ztc-bg-bg-4);
        }
        
        .header-area.header-area2 .main-menu-ex ul li ul li ul {
            left: 200px;
        }
        
        .header-area.header-area2 .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text2);
            display: flex;
            justify-content: space-between;
        }
        
        .header-area.header-area2 .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: #fff;
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area2 .main-menu-ex ul li ul li a:hover::after {
            background-color: var(--qt-text-h-text1);
            border-radius: 4px;
            width: 50px;
            left: 17px;
            opacity: 1;
        }
        
        .header-area.header-area2 .main-menu-ex ul li a {
            color: var(--qt-text-h-text1);
            font-size: 16px;
            display: block;
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area2 .header-elements .main-menu-ex {
            padding: 2px 24px;
            position: relative;
        }
        
        .header-area.header-area2 .header-elements .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
            background: #fff;
            -webkit-backdrop-filter: blur(27px);
            backdrop-filter: blur(27px);
            width: 220px;
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area2 .header-elements .main-menu-ex ul li ul li ul {
            left: 190px;
            top: 10px;
        }
        
        .header-area.header-area2 .header-elements .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text3);
            display: flex;
            justify-content: space-between;
        }
        
        .header-area.header-area2 .header-elements .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: var(--qt-text-h-text3);
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area2 .header-elements .main-menu-ex ul li ul li a:hover::after {
            background-color: rgba(23, 19, 61, 0.6862745098);
            border-radius: 4px;
            width: 50px;
            left: 15px;
            opacity: 1;
        }
        
        .header-area.header-area2 .header-elements .main-menu-ex ul li a {
            color: var(--ztc-text-text-2);
            font-size: 16px;
            display: block;
            font-weight: 400;
            padding: 8px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area2 .header2-buttons {
            display: flex;
            align-items: center;
        }
        
        .header-area.header-area2 .header2-buttons .header__search a {
            border: none;
            position: relative;
            z-index: 99;
            color: var(--ztc-text-text-2);
        }
        
        .header-area.header-area3 {
            background-color: transparent;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1921568627);
        }
        
        .header-area.header-area3 .header-elements .main-menu-ex {
            padding: 2px 24px;
            position: relative;
        }
        
        .header-area.header-area3 .header-elements .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
            background: #fff;
            -webkit-backdrop-filter: blur(27px);
            backdrop-filter: blur(27px);
            width: 220px;
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area3 .header-elements .main-menu-ex ul li ul li ul {
            left: 190px;
            top: 10px;
        }
        
        .header-area.header-area3 .header-elements .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text3);
            display: flex;
            justify-content: space-between;
        }
        
        .header-area.header-area3 .header-elements .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: var(--qt-text-h-text3);
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area3 .header-elements .main-menu-ex ul li ul li a:hover::after {
            background-color: rgba(23, 19, 61, 0.6862745098);
            border-radius: 4px;
            width: 50px;
            left: 15px;
            opacity: 1;
        }
        
        .header-area.header-area3 .header-elements .main-menu-ex ul li a {
            color: var(--ztc-text-text-2);
            font-size: 16px;
            display: block;
            font-weight: 400;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area3 .header2-buttons {
            display: flex;
            align-items: center;
        }
        
        .header-area.header-area3 .header2-buttons .header__search a {
            border: none;
            position: relative;
            z-index: 99;
            color: var(--ztc-text-text-2);
        }
        
        .header-area.header-area4 {
            background-color: transparent;
            background-color: #fff;
            position: relative;
            z-index: 99;
            transition: all 0.4s;
        }
        
        .header-area.header-area4 .header-elements .main-menu-ex {
            padding: 2px 24px;
            position: relative;
        }
        
        .header-area.header-area4 .header-elements .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
            background: #fff;
            -webkit-backdrop-filter: blur(27px);
            backdrop-filter: blur(27px);
            width: 220px;
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area4 .header-elements .main-menu-ex ul li ul li ul {
            left: 190px;
            top: 10px;
        }
        
        .header-area.header-area4 .header-elements .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text3);
            display: flex;
            justify-content: space-between;
        }
        
        .header-area.header-area4 .header-elements .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: var(--qt-text-h-text3);
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area4 .header-elements .main-menu-ex ul li ul li a:hover::after {
            background-color: rgba(23, 19, 61, 0.6862745098);
            border-radius: 4px;
            width: 50px;
            left: 15px;
            opacity: 1;
        }
        
        .header-area.header-area4 .header-elements .main-menu-ex ul li a {
            color: var(--ztc-text-text1);
            font-size: 16px;
            display: block;
            font-weight: 400;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area4 .header2-buttons {
            display: flex;
            align-items: center;
        }
        
        .header-area.header-area4 .header2-buttons .header__search a {
            border: none;
            position: relative;
            z-index: 99;
            color: var(--ztc-text-text-2);
        }
        
        .header-area.header-area5 {
            z-index: 99;
            transition: all 0.4s;
        }
        
        .header-area.header-area5 .header-elements {
            background-color: #fff;
            padding: 13px 24px;
            border-radius: 8px;
        }
        
        .header-area.header-area5 .header-elements .main-menu-ex {
            padding: 2px 24px;
            position: relative;
        }
        
        .header-area.header-area5 .header-elements .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
            background: #fff;
            -webkit-backdrop-filter: blur(27px);
            backdrop-filter: blur(27px);
            width: 220px;
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area5 .header-elements .main-menu-ex ul li ul li ul {
            left: 190px;
            top: 10px;
        }
        
        .header-area.header-area5 .header-elements .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text3);
            display: flex;
            justify-content: space-between;
        }
        
        .header-area.header-area5 .header-elements .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: var(--qt-text-h-text3);
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area5 .header-elements .main-menu-ex ul li ul li a:hover::after {
            background-color: rgba(23, 19, 61, 0.6862745098);
            border-radius: 4px;
            width: 50px;
            left: 15px;
            opacity: 1;
        }
        
        .header-area.header-area5 .header-elements .main-menu-ex ul li a {
            color: var(--ztc-text-text1);
            font-size: 16px;
            display: block;
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area10 {
            z-index: 99;
            transition: all 0.4s;
        }
        
        .header-area.header-area10 .header-elements {
            background-color: #fff;
            padding: 13px 24px;
            border-radius: 8px;
        }
        
        .header-area.header-area10 .header-elements .main-menu-ex {
            padding: 2px 24px;
            position: relative;
        }
        
        .header-area.header-area10 .header-elements .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
            background: #fff;
            -webkit-backdrop-filter: blur(27px);
            backdrop-filter: blur(27px);
            width: 220px;
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area10 .header-elements .main-menu-ex ul li ul li ul {
            left: 190px;
            top: 10px;
        }
        
        .header-area.header-area10 .header-elements .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text3);
            display: flex;
            justify-content: space-between;
        }
        
        .header-area.header-area10 .header-elements .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: var(--qt-text-h-text3);
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area10 .header-elements .main-menu-ex ul li ul li a:hover::after {
            background-color: rgba(23, 19, 61, 0.6862745098);
            border-radius: 4px;
            width: 50px;
            left: 15px;
            opacity: 1;
        }
        
        .header-area.header-area10 .header-elements .main-menu-ex ul li a {
            color: var(--ztc-text-text1);
            font-size: 16px;
            display: block;
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area9 {
            z-index: 99;
            transition: all 0.4s;
        }
        
        .header-area.header-area9 .header-elements {
            background-color: #fff;
            padding: 13px 24px;
            border-radius: 211px;
        }
        
        .header-area.header-area9 .header-elements .main-menu-ex {
            padding: 2px 24px;
            position: relative;
        }
        
        .header-area.header-area9 .header-elements .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
            background: #fff;
            -webkit-backdrop-filter: blur(27px);
            backdrop-filter: blur(27px);
            width: 220px;
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area9 .header-elements .main-menu-ex ul li ul li ul {
            left: 190px;
            top: 10px;
        }
        
        .header-area.header-area9 .header-elements .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text3);
            display: flex;
            justify-content: space-between;
        }
        
        .header-area.header-area9 .header-elements .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: var(--qt-text-h-text3);
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area9 .header-elements .main-menu-ex ul li ul li a:hover::after {
            background-color: rgba(23, 19, 61, 0.6862745098);
            border-radius: 4px;
            width: 50px;
            left: 15px;
            opacity: 1;
        }
        
        .header-area.header-area9 .header-elements .main-menu-ex ul li a {
            color: var(--ztc-text-text1);
            font-size: 16px;
            display: block;
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area6 {
            z-index: 99;
            transition: all 0.4s;
            background: rgba(255, 255, 255, 0.1);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            padding: 6px 0px;
        }
        
        .header-area.header-area6 .header-elements .main-menu-ex {
            padding: 2px 16px;
            position: relative;
        }
        
        .header-area.header-area6 .header-elements .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
            background: #fff;
            -webkit-backdrop-filter: blur(27px);
            backdrop-filter: blur(27px);
            width: 220px;
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area6 .header-elements .main-menu-ex ul li ul li ul {
            left: 190px;
            top: 10px;
        }
        
        .header-area.header-area6 .header-elements .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text3);
            display: flex;
            justify-content: space-between;
        }
        
        .header-area.header-area6 .header-elements .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: var(--qt-text-h-text3);
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area6 .header-elements .main-menu-ex ul li ul li a:hover::after {
            background-color: rgba(23, 19, 61, 0.6862745098);
            border-radius: 4px;
            width: 50px;
            left: 15px;
            opacity: 1;
        }
        
        .header-area.header-area6 .header-elements .main-menu-ex ul li a {
            color: #fff;
            font-size: 16px;
            display: block;
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area6 .theme-btn10 {
            margin-top: 3px;
        }
        
        .header-area.header-area6 .theme-btn12 {
            margin-top: 3px;
        }
        
        .header-area.header-area7 {
            z-index: 99;
            transition: all 0.4s;
            background: rgba(255, 255, 255, 0.1);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            padding: 6px 0px 10px 0px;
        }
        
        .header-area.header-area7 .header-elements .main-menu-ex {
            padding: 2px 16px;
            position: relative;
        }
        
        .header-area.header-area7 .header-elements .main-menu-ex ul li ul {
            position: absolute;
            left: 0;
            top: 50px;
            border-radius: 4px;
            border: 4px solid rgba(106, 92, 255, 0.1098039216);
            background: #fff;
            -webkit-backdrop-filter: blur(27px);
            backdrop-filter: blur(27px);
            width: 220px;
            box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
            padding: 10px;
        }
        
        .header-area.header-area7 .header-elements .main-menu-ex ul li ul li ul {
            left: 190px;
            top: 10px;
        }
        
        .header-area.header-area7 .header-elements .main-menu-ex ul li ul li a {
            color: var(--qt-text-h-text3);
            display: flex;
            justify-content: space-between;
        }
        
        .header-area.header-area7 .header-elements .main-menu-ex ul li ul li a::after {
            content: "";
            position: absolute;
            bottom: 9px;
            left: 0;
            width: 0%;
            height: 2px;
            color: var(--qt-text-h-text3);
            border-radius: 4px;
            transition: all 0.4s;
            z-index: -1;
            opacity: 1;
        }
        
        .header-area.header-area7 .header-elements .main-menu-ex ul li ul li a:hover::after {
            background-color: rgba(23, 19, 61, 0.6862745098);
            border-radius: 4px;
            width: 50px;
            left: 15px;
            opacity: 1;
        }
        
        .header-area.header-area7 .header-elements .main-menu-ex ul li a {
            color: #fff;
            font-size: 16px;
            display: block;
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .header-area.header-area7 .theme-btn10 {
            margin-top: 3px;
        }
        
        .header-area.header-area7 .theme-btn12 {
            margin-top: 3px;
        }
        /* 
++++++++++++++++++++++++++++++++
========nav menu all 2 ======
++++++++++++++++++++++++++++++++
*/
        
        .mobile-sidebar .logo-m {
            margin-top: -40px;
            margin-bottom: 30px;
        }
        
        .mobile-sidebar .mobile-button a {
            width: 100%;
            text-align: center;
            margin-top: 30px;
            margin-bottom: 30px;
        }
        
        .mobile-sidebar .single-footer-items h3 {
            color: var(--ztc-text-text-2);
            line-height: var(--f-fs-font-fs24);
            font-size: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            margin-bottom: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .mobile-sidebar .single-footer-items h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .mobile-sidebar .single-footer-items h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        .mobile-sidebar .single-footer-items .menu-list li a {
            display: inline-block;
            color: var(--ztc-text-text-2);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            padding: 10px 0px;
            transition: all 0.4s;
        }
        
        .mobile-sidebar .single-footer-items .menu-list li a:hover {
            color: var(--ztc-bg-main-bg-4);
            transform: translateX(5px);
            transition: all 0.4s;
        }
        
        .mobile-sidebar .single-footer-items .contact-box {
            display: flex;
            align-items: center;
            padding: 10px 0px;
        }
        
        .mobile-sidebar .single-footer-items .contact-box .icon {
            margin-right: 16px;
        }
        
        .mobile-sidebar .single-footer-items .contact-box .icon img {
            filter: brightness(40);
        }
        
        .mobile-sidebar .single-footer-items .contact-box .pera a {
            display: inline-block;
            color: var(--ztc-text-text-2);
            font-size: var(--f-fs-font-fs16);
            line-height: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-regular);
            transition: all 0.4s;
        }
        
        .mobile-sidebar .single-footer-items .contact-box .pera a:hover {
            color: var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
        }
        
        .mobile-sidebar .contact-infos h3 {
            color: var(--ztc-text-text-2);
            line-height: var(--f-fs-font-fs24);
            font-size: var(--f-fs-font-fs24);
            font-weight: var(--f-fw-blod);
            margin-bottom: 30px;
        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            .mobile-sidebar .contact-infos h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .mobile-sidebar .contact-infos h3 {
                margin-bottom: 16px;
                margin-top: 30px;
            }
            .service-details-post .details-post-area .heading1 h2 {
            font-size: 24px;
            font-weight: 600;
            line-height: 32px;
            margin-bottom: 10px;
        }
        }
        
        .mobile-sidebar .contact-infos .social-icon {
            padding-top: 24px;
        }
        
        .mobile-sidebar .contact-infos .social-icon li {
            display: inline-block;
        }
        
        .mobile-sidebar .contact-infos .social-icon li a {
            display: inline-block;
            color: var(--ztc-text-text-2);
            font-size: var(--f-fs-font-fs16);
            background-color: rgba(255, 255, 255, 0.1450980392);
            height: 32px;
            width: 32px;
            text-align: center;
            line-height: 0;
            border-radius: 50%;
            margin: 0px 2px;
            transition: all 0.4s;
        }
        
        .mobile-sidebar .contact-infos .social-icon li a:hover {
            color: var(--ztc-text-text-1);
            background-color: var(--ztc-bg-main-bg-4);
            transition: all 0.4s;
        }
        
        .mobile-sidebar .mobile-button a.menu-btn2 {
            background-color: #fff;
            padding: 18px;
            width: 100%;
            border-radius: 4px;
            display: inline-block;
            color: var(--ztc-text-text-1);
            font-size: var(--f-fs-font-fs16);
            font-weight: var(--f-fw-blod);
            line-height: var(--f-fs-font-fs16);
        }
        /*
::::::::::::::::::::::::::
 NAV MENU AREA CSS
::::::::::::::::::::::::::
*/
        
        .header-area.header-area2 .main-menu-ex.main-menu-ex1 ul li a.active {
            color: #A1E934;
        }
        
        .header-area.header-area1 .main-menu-ex.main-menu-ex1 ul li a.active {
            color: #0E38B1;
        }
        
        .header-area.header-area3 .main-menu-ex.main-menu-ex1 ul li a.active {
            color: #000000;
        }
        
        .header-area.header-area4 .main-menu-ex.main-menu-ex1 ul li a.active {
            color: #6E18EF;
        }
        
        .header-area.header-area5 .main-menu-ex.main-menu-ex1 ul li a.active {
            color: #FA6444;
        }
        
        .header-area.header-area6 .main-menu-ex.main-menu-ex1 ul li a.active {
            color: #FA6444;
        }
        
        .header-area.header-area6.header-area7 .main-menu-ex.main-menu-ex1 ul li a.active {
            color: #0061FF;
        }
        
        .header-area.header-area9 .main-menu-ex.main-menu-ex1 ul li a.active {
            color: #FA6444;
        }
        
        .header-area.header-area10 .main-menu-ex.main-menu-ex1 ul li a.active {
            color: #24908D;
        }
        /*# sourceMappingURL=main.css.map */
        
        .hero-slider {
            position: relative;
            width: 100%;
            height: auto;
            overflow: hidden;
            padding-top: 90px;
        }
        
        .hero-slider .slide-item img {
            height: auto;
            object-fit: cover;
        }
        
        .mobile-logo {
            width: 95px
        }
        
        .footer-logo {
            width: 120px;
        }
        
        .video-bg {
            border-radius: 50px;
        }
        /* whatsapp icon */
        
        .contact-icons {
            position: fixed;
            left: 20px;
            bottom: 20px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .contact-icon.whatsapp {
            background: #25D366;
        }
        
        .contact-icon.mail {
            background: #FF0000;
        }
        
        .contact-icon.phone {
            background: #006ab1;
        }
        
        .contact-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            color: #fff;
        }
        
        @media (max-width: 768px) {
            .contact-icons {
                left: 10px;
                bottom: 10px;
            }
            .contact-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }
        
        .market_area h2 a {
            font-size: 32px;
            display: block;
            margin-bottom: 12px;
            color: var(--ztc-text-text-1);
        }
        
        .market_area .row a {
            display: block;
            font-size: 16px;
            width: 100%;
            background-color: var(--ztc-bg-main-bg-1);
            color: #fff;
            padding: 3px 9px;
            text-align: center;
            border: 2px dotted #fff;
        }
        
        .sitemap-tree {
            padding-left: 0;
            list-style: none;
            position: relative;
        }
        
        .sitemap-tree ul {
            list-style: none;
            padding-left: 20px;
            margin-top: 10px;
            position: relative;
        }
        
        .sitemap-tree li {
            margin: 10px 0;
            position: relative;
        }
        
        .sitemap-tree li::before {
            content: '';
            position: absolute;
            top: 0;
            left: -12px;
            width: 1px;
            height: 100%;
            background-color: #ccc;
        }
        
        .sitemap-tree li::after {
            content: '';
            position: absolute;
            top: 12px;
            left: -12px;
            width: 12px;
            height: 1px;
            background-color: #ccc;
        }
        
        .sitemap-tree a {
            text-decoration: none;
            color: var(--ztc-text-text-1);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .sitemap-tree a:hover {
            color: var(--ztc-bg-main-bg-1);
        }
        
        @media (max-width: 576px) {
            .sitemap-tree ul {
                padding-left: 15px;
            }
        }
        
        .gallery-item img {
            transition: transform 0.4s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .service-details-post .details-post-area .heading1 h2 {
            font-size: 28px;
            font-weight: 600;
            line-height: 36px;
            margin-bottom: 10px;
        }
        
        .service-details-post .details-post-area .heading1 h3 {
            font-size: 24px;
            font-weight: 600;
            line-height: 32px;
            margin-bottom: 10px;
        }
        
        .service-details-post .details-post-area .heading1 p {
            margin-bottom: 10px;
            text-align: justify;
        }
        .category_slider_img img{
            width:100%;
            height:200px;
            object-fit:contain;
        }
        .iti{
            width:100%;
        }
        
        
/* Floating buttons (desktop) */
#floating-icons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}
.chat-toggle,
.call-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  animation: pulse 1.5s infinite;
  transition: transform 0.3s ease;
}
.call-btn { background: #17a2b8; }
.whatsapp-btn { background: #25d366; }
.mail-btn { background: #FF0000;border:none; }
.chat-toggle:hover, .call-btn:hover { transform: scale(1.1);color: #fff; }

/* Mobile bottom bar */
#mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.bottom-btn {
  flex: 1;
  text-align: center;
  padding: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.bg-call { background-color:#17a2b8;}
.bg-success { background: #25d366; }

/* Popup */
.chat-popup {
  display: none;
  position: fixed;
  bottom: 90px;
  left: 20px;
  width: 300px;
  border-radius: 15px;
  overflow: hidden;
  animation: fadeInUp 0.5s;
  z-index: 10000;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.3); }
  70% { box-shadow: 0 0 0 10px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.coppyright img{
        width: 120px;
    margin-left: 6px;
    padding: 10px 0px;
}