:root {
    --body-color-font: "Figtree",sans-serif
}

@keyframes shape-animaiton1 {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(100px)
    }
}

@keyframes shape-animaiton2 {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(30px)
    }
}

@keyframes shape-animaiton3 {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(10px)
    }
}

@keyframes shape-animaiton4 {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1000deg)
    }
}

@keyframes animate1 {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-20px)
    }
}

@keyframes animate2 {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(20px)
    }
}

@keyframes animate3 {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(15px)
    }
}

@keyframes animate4 {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-25px)
    }
}

@keyframes animate5 {
    0% {
        transform: scale(.5)
    }

    to {
        transform: scale(1)
    }
}

@keyframes animate6 {
    0% {
        transform: scale(1)
    }

    to {
        transform: scale(1.1)
    }
}

@keyframes round-circle2 {
    0% {
        transform: rotate(-20deg)
    }

    to {
        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(.59,.59,1,1)
}

.shape-animaiton2 {
    animation-name: shape-animaiton2;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out
}

.shape-animaiton2, .shape-animaiton3 {
    position: relative;
    animation-duration: 2s
}

.shape-animaiton3 {
    animation-name: shape-animaiton3;
    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 {
    animation-name: animate1;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out
}

.animate1, .animate2 {
    position: relative;
    animation-duration: 2s
}

.animate2 {
    animation-name: animate2;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out
}

.animate3 {
    animation-name: animate3;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out
}

.animate3, .animate4 {
    position: relative;
    animation-duration: 4s
}

.animate4 {
    animation-name: animate4;
    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
}

body.body, html {
    overflow-x: hidden
}

body {
    font-family: var(--body-color-font);
    font-size: var(--f-fs-font-fs16)
}

body, html {
    overflow-x: clip
}

.body2 {
    background-image: url(/assets/img/bg/body2.png)
}

.body2, .comon-body {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -33
}

.comon-body {
    background-image: url(/assets/img/bg/comon-bg.png)
}

@media screen and (min-width:769px) {
    body.body2.body.unic-body {
        overflow-x: initial !important
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

input, option, select, textarea {
    max-width: 100%
}

h1, h2, h3, h4, h5, h6, ul {
    padding: 0;
    margin: 0
}

ul {
    list-style: none
}

p {
    padding: 0;
    margin: 0
}

img {
    max-width: 100%;
    max-height: 100%
}

a, a:focus, a:hover {
    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: 100px 0
}

.sp2 {
    padding: 120px 0
}

.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: 50px 0
    }

    .pt100 {
        padding-top: 50px
    }

    .pt140 {
        padding-top: 70px
    }

    .pb120 {
        padding-bottom: 60px
    }

    .sp2 {
        padding: 60px 0
    }

    .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
}

@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-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-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-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-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-contact a, .mobile-sidebar .single-footer h3 {
    color: #fff
}

.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
}

.bg-contain, .bg-cover {
    background-position: 50%
}

.bg-contain {
    background-size: contain
}

.img-cover, .img-cover img {
    object-fit: cover
}

.width100 img {
    width: 100%
}

: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: #0e38b1;
    --ztc-bg-main-bg-2: #6e18ef;
    --ztc-bg-main-bg-3: #113adc;
    --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: var(--body-color-font);
    --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
}

.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)
}

@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
}

.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 .4s
}

    .heading1 h4 a:hover {
        color: var(--ztc-bg-main-bg-1);
        transition: all .4s
    }

.heading1 h5 {
    color: var(--Text-Color,#0d0e10);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px
}

.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 .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)
}

.heading1-w p, .heading2 h2 {
    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)
}

@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 .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 .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 .4s
}

    .heading3 h3 a:hover {
        color: var(--ztc-bg-main-bg-3);
        transition: all .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 .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 .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);
    font-weight: var(--f-fw-regular);
    color: var(--ztc-text-pera-text-1)
}

.heading4 h4 a, .heading4 p {
    line-height: var(--f-fs-font-fs28);
    transition: all .4s
}

.heading4 h4 a {
    font-size: var(--f-fs-font-fs20);
    color: var(--ztc-text-text-1);
    font-weight: var(--f-fw-blod);
    display: inline-block
}

    .heading4 h4 a:hover {
        color: var(--ztc-bg-main-bg-2);
        transition: all .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 .4s
}

    .heading4 h3 a:hover {
        color: var(--ztc-bg-main-bg-2);
        transition: all .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 .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 .4s
}

.heading5 .title {
    background: linear-gradient(90deg,rgba(59,50,246,.1),rgba(73,166,255,.1));
    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;
        background: linear-gradient(90deg,#3b32f6,#49a6ff);
        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
}

@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-weight: 500;
    line-height: 24px
}

.heading5 h4 a, .heading5 p {
    font-style: normal;
    transition: all .4s
}

.heading5 h4 a {
    display: inline-block;
    color: var(--Home-Page-4-Text-colors,#05092b);
    font-size: 20px;
    font-weight: 600;
    line-height: 20px
}

    .heading5 h4 a:hover {
        transition: all .4s;
        color: coral
    }

.heading5-w .title {
    background: linear-gradient(90deg,hsla(0,0%,100%,.1),hsla(0,0%,100%,.1));
    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
    }

.heading5-w h2 {
    color: #fff;
    font-size: 40px;
    line-height: 40px
}

.heading5-w h2, .heading5-w h4 a {
    font-style: normal;
    font-weight: 600
}

.heading5-w h4 a {
    display: inline-block;
    color: var(--White-colors,#fff);
    font-size: 24px;
    line-height: 24px;
    transition: all .4s
}

    .heading5-w h4 a:hover {
        transition: all .4s;
        color: #fa7d3c
    }

.heading5-w p {
    color: hsla(0,0%,100%,.8);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px
}

.heading6 span.span {
    display: inline-block;
    color: #fa6444;
    font-size: 18px;
    line-height: 18px;
    border-radius: 4px;
    background: rgba(250,100,68,.1);
    padding: 8px 12px;
    margin-bottom: 16px
}

.heading6 h2, .heading6 span.span {
    font-style: normal;
    font-weight: 600
}

.heading6 h2 {
    color: var(--Home-Page-3-text-Colors,#180d03);
    font-size: 40px;
    line-height: 48px
}

    .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
}

.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;
    transition: all .4s
}

    .heading6 h4 a:hover {
        transition: all .4s;
        color: #fa6444
    }

.heading7 span.span {
    display: inline-block;
    color: #0061ff;
    font-size: 18px;
    line-height: 18px;
    border-radius: 4px;
    background: #e5efff;
    padding: 8px 12px;
    margin-bottom: 16px
}

.heading7 h2, .heading7 span.span {
    font-style: normal;
    font-weight: 600
}

.heading7 h2 {
    color: var(--Home-Page-3-text-Colors,#180d03);
    font-size: 40px;
    line-height: 48px
}

    .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
}

.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;
    transition: all .4s
}

    .heading7 h4 a:hover {
        transition: all .4s;
        color: #0061ff
    }

.heading8 span.span {
    display: inline-block;
    color: #4d32a5;
    font-size: 18px;
    line-height: 18px;
    border-radius: 4px;
    background: #edebf6;
    padding: 8px 12px;
    margin-bottom: 16px
}

.heading8 h2, .heading8 span.span {
    font-style: normal;
    font-weight: 600
}

.heading8 h2 {
    color: var(--Home-Page-3-text-Colors,#180d03);
    font-size: 40px;
    line-height: 48px
}

    .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
}

.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;
    transition: all .4s
}

    .heading8 h4 a:hover {
        transition: all .4s;
        color: #4d32a5
    }

.heading6-w span.span {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    border-radius: 4px;
    background: hsla(0,0%,100%,.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
}

    .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,hsla(0,0%,100%,.69));
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px
}

.heading9 span.span {
    display: inline-block;
    color: #325d28;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
    border-radius: 4px;
    background: #e0e6de;
    padding: 9px 12px 6px;
    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
}

.heading9 h2 {
    color: var(--Home-Page-3-text-Colors,#180d03);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px
}

    .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;
    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
}

@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
}

.blok:nth-of-type(odd) {
    background-color: #fff
}

.blok:nth-of-type(2n) {
    background-color: #000
}

.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,.1);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .2s 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 .2s 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 .2s linear
    }

    .progress-wrap:hover:before {
        opacity: 1
    }

    .progress-wrap svg path {
        fill: none
    }

    .progress-wrap svg.progress-circle path {
        stroke: #03256c;
        stroke-width: 4;
        box-sizing: border-box;
        transition: all .2s linear
    }

    .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 hsla(0,0%,100%,.267);
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all .2s linear
    }

        .progress-wrap.progress-wrap2.active-progress {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            z-index: 99;
            color: #fff
        }

        .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 .2s 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 .2s 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: #fff;
            stroke-width: 4;
            box-sizing: border-box;
            transition: all .2s linear
        }

.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 .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.active, .theme-pagination li a:hover {
    background: var(--ztc-bg-main-bg-1);
    box-shadow: 0 4px 10px 0 rgba(122,120,198,.2);
    transition: all .3s;
    color: var(--ztc-bg-color-w)
}

.video-play-button {
    position: relative;
    z-index: 10;
    margin: 0 30px;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
    cursor: pointer
}

    .video-play-button:before {
        z-index: 0;
        animation: pulse-border 1.5s ease-out infinite
    }

    .video-play-button:after, .video-play-button:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 60px;
        height: 60px;
        background: #0e38b1;
        border-radius: 50%
    }

    .video-play-button:after {
        z-index: 1;
        transition: all .2s
    }

    .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
    }

.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%;
            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: hsla(0,0%,100%,.3);
        transform: translate(-50%,-50%) rotate(-45deg);
        z-index: 1
    }

    .image-anime:hover:after {
        height: 250%;
        transition: all .6s linear;
        background-color: transparent
    }

.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 .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.active, .comon-body .theme-pagination li a:hover {
    background: var(--ztc-bg-main-bg-4);
    box-shadow: 0 4px 10px 0 rgba(122,120,198,.2);
    transition: all .3s;
    color: var(--ztc-text-text-1)
}

.comon-body .video-play-button {
    position: relative;
    z-index: 10;
    margin: 0 30px;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
    cursor: pointer
}

    .comon-body .video-play-button:before {
        z-index: 0;
        animation: pulse-border 1.5s ease-out infinite
    }

    .comon-body .video-play-button:after, .comon-body .video-play-button:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 60px;
        height: 60px;
        background: #a1e934;
        border-radius: 50%
    }

    .comon-body .video-play-button:after {
        z-index: 1;
        transition: all .2s
    }

    .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-play-button {
    position: relative;
    z-index: 10;
    margin: 0 30px;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
    cursor: pointer
}

    .video-buttton9 .video-play-button:before {
        z-index: 0;
        animation: pulse-border 1.5s ease-out infinite
    }

    .video-buttton9 .video-play-button:after, .video-buttton9 .video-play-button:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 40px;
        height: 40px;
        background: #a2ea61;
        border-radius: 50%
    }

    .video-buttton9 .video-play-button:after {
        z-index: 1;
        transition: all .2s
    }

    .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
    }

.video-paly10 .video-play-button {
    position: relative;
    z-index: 10;
    margin: 0 30px;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
    cursor: pointer
}

    .video-paly10 .video-play-button:before {
        z-index: 0;
        animation: pulse-border 1.5s ease-out infinite
    }

    .video-paly10 .video-play-button:after, .video-paly10 .video-play-button:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 40px;
        height: 40px;
        background: #24908d;
        border-radius: 50%
    }

    .video-paly10 .video-play-button:after {
        z-index: 1;
        transition: all .2s
    }

    .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 #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
    }

    to {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0
    }
}

.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: .3s
    }

        .header__bar span:first-child {
            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
}

.sidebar-info .ct-content-wrap, .sidebar-info .sidebar-content, .sidebar-info .sidebar-logo, .sidebar-info .sidebar-menu, .sidebar-info .sidebar-socials-wrap {
    transition: .3s;
    transform: translateY(30px);
    opacity: 0
}

.slide-bar.show .sidebar-info .sidebar-logo {
    transform: translateY(0);
    transition-delay: .2s;
    opacity: 1
}

.slide-bar.show .sidebar-info .sidebar-content {
    transform: translateY(0);
    transition-delay: .3s;
    opacity: 1
}

.slide-bar.show .sidebar-info .sidebar-menu {
    transform: translateY(0);
    transition-delay: .4s;
    opacity: 1
}

.slide-bar.show .sidebar-info .ct-content-wrap {
    transform: translateY(0);
    transition-delay: .5s;
    opacity: 1
}

.slide-bar.show .sidebar-info .sidebar-socials-wrap {
    transform: translateY(0);
    transition-delay: .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
    }

.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 .85s cubic-bezier(.175,1,.275,1),visibility .8s step-end
}

    .header-search-form-wrapper.open {
        transition: transform .85s cubic-bezier(.175,1,.275,1),visibility .8s step-start;
        transform: translateZ(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]::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: hsla(0,0%,80%,.271);
        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:after, .header-search-form-wrapper .tx-search-close:before {
            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 .85s cubic-bezier(.175,1,.275,1);
    margin: auto
}

header.site-header {
    background: #538b60;
    padding: 20px 0;
    color: #fff
}

    a.header__search.header-search-btn p, header.site-header span {
        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
}

.metismenu .glyphicon.arrow:before {
    content: "\e079"
}

.metismenu .mm-active > a > .glyphicon.arrow:before {
    content: "\e114"
}

.metismenu .fa.arrow:before {
    content: "\f104"
}

.metismenu .mm-active > a > .fa.arrow:before {
    content: "\f107"
}

.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: .35s;
    transition-property: height,visibility
}

.metismenu .has-arrow {
    position: relative
}

    .metismenu .has-arrow:after {
        position: absolute;
        content: "";
        width: .5em;
        height: .5em;
        border-style: solid;
        border-width: 1px 0 0 1px;
        border-color: initial;
        right: 1em;
        transform: rotate(-45deg) translateY(-50%);
        transform-origin: top;
        top: 50%;
        transition: all .3s ease-out
    }

[dir=rtl] .metismenu .has-arrow:after {
    right: auto;
    left: 1em;
    transform: rotate(135deg) translateY(-50%)
}

.metismenu .has-arrow[aria-expanded=true]:after, .metismenu .mm-active > .has-arrow:after {
    transform: rotate(-135deg) translateY(-50%)
}

[dir=rtl] .metismenu .has-arrow[aria-expanded=true]:after, [dir=rtl] .metismenu .mm-active > .has-arrow:after {
    transform: rotate(225deg) translateY(-50%)
}

.hamburger-menu, .hamburger-menu a {
    display: inline-block
}

.body-overlay {
    background-color: #000;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1010;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s linear 0s;
    transition: all .6s ease;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease
}

    .body-overlay.active {
        opacity: .5;
        visibility: visible
    }

.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 .4s;
    border: none
}

    .theme-btn1:after {
        content: "";
        position: absolute;
        background-image: url(button-img.png);
        height: 100%;
        width: 0;
        top: 0;
        left: auto;
        right: 0;
        z-index: 2;
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: contain;
        transform: scale(1.5);
        transition: all .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 .4s;
        background-color: #3059ce
    }

        .theme-btn1:hover:after {
            width: 100%;
            transition: all .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 .4s
}

    .cta-btn1:after {
        content: "";
        position: absolute;
        background-image: url(button-img.png);
        height: 100%;
        width: 0;
        top: 0;
        left: auto;
        right: 0;
        z-index: 2;
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: contain;
        transform: scale(1.5);
        transition: all .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
    }

    .cta-btn1:hover {
        color: #fff;
        transform: translateY(-4px);
        transition: all .4s;
        background-color: #3059ce
    }

        .cta-btn1:hover:after {
            width: 100%;
            transition: all .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 .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(button-img.png);
    height: 100%;
    width: 0;
    top: 0;
    left: auto;
    right: 0;
    z-index: 2;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    transform: scale(1.5);
    transition: all .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 .4s;
    background-color: #3059ce;
    border: 1px solid #3059ce
}

    .cta-btn2:hover:after {
        width: 100%;
        transition: all .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 .4s;
    border: none;
    position: relative;
    z-index: 2
}

    .theme-btn2 span {
        display: inline-block;
        transform: rotate(-45deg) translateX(0);
        font-size: 17px
    }

    .theme-btn2 .arrow2 {
        transform: translateY(-8px) rotate(-45deg) translateX(-52px);
        transition: all .4s;
        opacity: 0
    }

    .theme-btn2 .arrow1, .theme-btn2:hover .arrow2 {
        transition: all .4s;
        opacity: 1
    }

    .theme-btn2:hover .arrow2 {
        transform: translateY(-15px) rotate(-45deg) translateX(-21px)
    }

    .theme-btn2:hover .arrow1 {
        transition: all .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: #9f0;
        border-radius: 25px;
        z-index: -1;
        transform: rotateY(90deg);
        transition: all .4s;
        animation-timing-function: linear
    }

    .theme-btn2:hover {
        color: var(--ztc-text-text-1);
        transition: all .4s;
        transform: translateY(-5px)
    }

        .theme-btn2:hover:after {
            transform: rotateY(0deg);
            transition: all .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 .4s;
    border: none
}

    .theme-btn3 span {
        display: inline-block;
        transform: rotate(-45deg)
    }

    .theme-btn3:hover {
        transform: translateY(-5px)
    }

    .theme-btn3:hover, .theme-btn4 {
        color: var(--ztc-text-text-2);
        transition: all .4s;
        background-color: var(--ztc-bg-main-bg-3)
    }

.theme-btn4 {
    display: inline-block;
    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: 7px;
    border: none
}

    .theme-btn4 i {
        display: inline-block;
        transform: rotate(-45deg);
        margin-left: 2px
    }

    .theme-btn4:hover {
        transform: translateY(0);
        background-color: #113adc
    }

    .theme-btn4:hover, .theme-btn5 {
        color: var(--ztc-text-text-2);
        transition: all .4s
    }

.theme-btn5 {
    display: inline-block;
    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);
    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 .4s
    }

    .theme-btn5:hover {
        color: var(--ztc-text-text-2);
        transition: all .4s;
        transform: translateY(-5px);
        background-color: #7323eb
    }

        .theme-btn5:hover:after {
            width: 100%;
            transition: all .4s
        }

@media xs {
    br {
        display: none
    }
}

.theme-btn6 {
    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 .4s;
    border: none;
    margin-left: 16px;
    position: relative;
    overflow: hidden
}

    .theme-btn6, .theme-btn6 span {
        display: inline-block;
        color: var(--ztc-text-text-1)
    }

        .theme-btn6 span {
            height: 40px;
            width: 40px;
            background-color: #fff;
            border-radius: 50%;
            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 .4s
        }

        .theme-btn6:hover {
            color: var(--ztc-text-text-2);
            transition: all .4s;
            transform: translateY(-5px)
        }

            .theme-btn6:hover:after {
                width: 100%;
                transition: all .4s
            }

@media (max-width:767px) {
    .theme-btn6 {
        margin-left: 0;
        margin-top: 20px
    }
}

.theme-btn7 {
    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;
    border: none;
    position: relative;
    overflow: hidden
}

    .theme-btn7, .theme-btn7 span {
        display: inline-block;
        transition: all .4s
    }

        .theme-btn7 span {
            height: 40px;
            width: 40px;
            background-color: var(--ztc-bg-main-bg-2);
            border-radius: 50%;
            color: var(--ztc-text-text-2);
            text-align: center;
            line-height: 40px;
            margin-left: 4px;
            transform: rotate(-45deg)
        }

        .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 .4s
        }

        .theme-btn7:hover {
            color: var(--ztc-text-text-2);
            transition: all .4s;
            transform: translateY(-5px)
        }

            .theme-btn7:hover:after {
                width: 100%;
                transition: all .4s
            }

            .get-started-btn, .theme-btn7:hover span {
                background-color: var(--ztc-text-text-2);
                color: var(--ztc-text-text-1);
                transition: all .4s
            }

.get-started-btn {
    display: inline-block;
    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;
    border: none
}

    .get-started-btn span {
        display: inline-block;
        transform: rotate(-45deg)
    }

    .get-started-btn:hover {
        transition: all .4s;
        transform: translateY(-5px)
    }

.btn {
    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 .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
    }

.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: .3s cubic-bezier(.38,1.15,.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 {
    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 .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: 0;
        height: 0;
        opacity: .5
    }

    to {
        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: .3s cubic-bezier(.38,1.15,.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 .4s
    }

.theme-btn8 {
    display: inline-block;
    padding: 12px 17px;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    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(0);
        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 .4s;
        display: inline-block
    }

    .theme-btn8 .arrow1 {
        transition: all .4s;
        display: inline-block;
        transform: translateX(7px)
    }

    .theme-btn8:hover .arrow2 {
        transform: translateY(-2px) rotate(-20deg) translateX(-8px);
        transition: all .4s
    }

    .theme-btn8:hover .arrow1 {
        transition: all .4s;
        transform: translateY(-7px) rotate(-45deg) translateX(45px)
    }

    .theme-btn8:hover {
        color: #fff
    }

    .theme-btn8:after {
        width: 100%;
        background: var(--SEO-Marketing-Gradient-Color,linear-gradient(90deg,#fb3f52 0,#fa7d3c 100%));
        z-index: -2
    }

    .theme-btn8:after, .theme-btn8:before {
        content: "";
        position: absolute;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 4px
    }

    .theme-btn8:before {
        width: 0;
        background: var(--SEO-Marketing-Gradient-Color,linear-gradient(90deg,#fa7d3c 0,#fb3f52 100%));
        z-index: -1;
        transition: all .4s
    }

    .theme-btn8:hover {
        transition: all .4s
    }

        .theme-btn8:hover:before {
            width: 100%;
            transition: all .4s
        }

.theme-btn9 {
    display: inline-block;
    padding: 14px 18px;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    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(0);
        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 .4s
    }

    .theme-btn9 .arrow2 {
        transform: translateY(-8px) rotate(-45deg) translateX(-52px);
        transition: all .4s;
        display: inline-block
    }

    .theme-btn9 .arrow1 {
        transition: all .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 .4s
    }

    .theme-btn9:hover .arrow1 {
        transition: all .4s;
        transform: translateY(-7px) rotate(-45deg) translateX(45px)
    }

    .theme-btn9:hover {
        color: #fff
    }

    .theme-btn9:after {
        width: 100%;
        background: #fff;
        z-index: -2
    }

    .theme-btn9:after, .theme-btn9:before {
        content: "";
        position: absolute;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 4px
    }

    .theme-btn9:before {
        width: 0;
        background: var(--SEO-Marketing-Gradient-Color,linear-gradient(90deg,#fa7d3c 0,#fb3f52 100%));
        z-index: -1;
        transition: all .4s
    }

    .theme-btn9:hover {
        transition: all .4s
    }

        .theme-btn9:hover:before {
            width: 100%;
            transition: all .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;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    border: none;
    overflow: hidden
}

    .theme-btn10 span {
        display: inline-block;
        transform: rotate(-45deg) translateX(0);
        font-size: 17px
    }

    .theme-btn10 .arrow2 {
        transform: translateY(-8px) rotate(-45deg) translateX(-52px);
        transition: all .4s;
        opacity: 0
    }

    .theme-btn10 .arrow1, .theme-btn10:hover .arrow2 {
        transition: all .4s;
        opacity: 1
    }

    .theme-btn10:hover .arrow2 {
        transform: translateY(-15px) rotate(-45deg) translateX(-21px)
    }

    .theme-btn10:hover .arrow1 {
        transition: all .4s;
        transform: translateY(-7px) rotate(-45deg) translateX(45px);
        opacity: 0
    }

    .theme-btn10:hover {
        color: #fff
    }

    .theme-btn10:after {
        width: 100%;
        left: 0;
        background: #fa6444;
        z-index: -2
    }

    .theme-btn10:after, .theme-btn10:before {
        content: "";
        position: absolute;
        height: 100%;
        top: 0;
        border-radius: 4px
    }

    .theme-btn10:before {
        width: 0;
        left: auto;
        right: 0;
        background: #180d03;
        z-index: -1;
        transition: all .4s
    }

    .theme-btn10:hover {
        transition: all .4s
    }

        .theme-btn10:hover:before {
            width: 100%;
            transition: all .4s;
            left: 0;
            right: auto
        }

        .theme-btn10:hover span {
            transition: all .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;
    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(0);
    font-size: 17px
}

.theme-btn11 .arrow2 {
    transform: translateY(-8px) rotate(-45deg) translateX(-52px);
    transition: all .4s;
    opacity: 0
}

.theme-btn11 .arrow1, .theme-btn11:hover .arrow2 {
    transition: all .4s;
    opacity: 1
}

.theme-btn11:hover .arrow2 {
    transform: translateY(-15px) rotate(-45deg) translateX(-21px)
}

.theme-btn11:hover .arrow1 {
    transition: all .4s;
    transform: translateY(-7px) rotate(-45deg) translateX(45px);
    opacity: 0
}

.theme-btn11:hover {
    color: #fff
}

.theme-btn11:after {
    width: 100%;
    left: 0;
    border-radius: 4px;
    border: 1px solid #fff;
    z-index: -2
}

.theme-btn11:after, .theme-btn11:before {
    content: "";
    position: absolute;
    height: 100%;
    top: 0
}

.theme-btn11:before {
    width: 0;
    left: auto;
    right: 0;
    border-radius: 4px;
    background: #fa6444;
    z-index: -1;
    transition: all .4s
}

.theme-btn11:hover {
    transition: all .4s
}

    .theme-btn11:hover:before {
        width: 100%;
        transition: all .4s;
        left: 0;
        right: auto
    }

    .theme-btn11:hover span {
        transition: all .4s
    }

.theme-btn12 {
    display: inline-block;
    padding: 12px 16px;
    color: #111;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    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(0);
        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)
    }

    .theme-btn12 .arrow1, .theme-btn12 .arrow2 {
        transition: all .4s;
        display: inline-block
    }

    .theme-btn12:hover .arrow2 {
        transform: translateY(-2px) rotate(-20deg) translateX(-8px);
        transition: all .4s
    }

    .theme-btn12:hover .arrow1 {
        transition: all .4s
    }

    .theme-btn12:hover {
        color: #fff
    }

    .theme-btn12:after {
        background: #fff;
        z-index: -2
    }

    .theme-btn12:after, .theme-btn12:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        border-radius: 111px
    }

    .theme-btn12:before {
        background: #111;
        z-index: -1;
        transition: all .4s;
        transform: rotateY(80deg);
        opacity: 0
    }

    .theme-btn12:hover {
        transition: all .4s
    }

        .theme-btn12:hover:before {
            width: 100%;
            transition: all .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;
    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(0);
        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 .4s;
        display: inline-block
    }

    .theme-btn13 .arrow1 {
        transition: all .4s;
        transform: translateX(7px)
    }

    .theme-btn13:hover {
        color: #fff
    }

    .theme-btn13:after {
        background: #0061ff;
        z-index: -2
    }

    .theme-btn13:after, .theme-btn13:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        border-radius: 111px
    }

    .theme-btn13:before {
        background: #111;
        z-index: -1;
        transition: all .4s;
        transform: rotateY(80deg);
        opacity: 0
    }

    .theme-btn13:hover {
        transition: all .4s
    }

        .theme-btn13:hover:before {
            width: 100%;
            transition: all .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;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    border: none;
    overflow: hidden
}

    .theme-btn14 span {
        display: inline-block;
        transform: rotate(-45deg) translateX(0);
        font-size: 17px
    }

    .theme-btn14 .arrow2 {
        transform: translateY(-8px) rotate(-45deg) translateX(-52px);
        transition: all .4s;
        opacity: 0
    }

    .theme-btn14 .arrow1, .theme-btn14:hover .arrow2 {
        transition: all .4s;
        opacity: 1
    }

    .theme-btn14:hover .arrow2 {
        transform: translateY(-15px) rotate(-45deg) translateX(-21px)
    }

    .theme-btn14:hover .arrow1 {
        transition: all .4s;
        transform: translateY(-7px) rotate(-45deg) translateX(45px);
        opacity: 0
    }

    .theme-btn14:hover {
        color: #fff
    }

    .theme-btn14:after {
        width: 100%;
        left: 0;
        background: #4d32a5;
        z-index: -2
    }

    .theme-btn14:after, .theme-btn14:before {
        content: "";
        position: absolute;
        height: 100%;
        top: 0;
        border-radius: 4px
    }

    .theme-btn14:before {
        width: 0;
        left: auto;
        right: 0;
        background: #180d03;
        z-index: -1;
        transition: all .4s
    }

    .theme-btn14:hover {
        transition: all .4s
    }

        .theme-btn14:hover:before {
            width: 100%;
            transition: all .4s;
            left: 0;
            right: auto
        }

        .theme-btn14:hover span {
            transition: all .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;
    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(0);
        font-size: 17px
    }

    .theme-btn15 .arrow2 {
        transform: translateY(-8px) rotate(-45deg) translateX(-52px);
        transition: all .4s;
        opacity: 0
    }

    .theme-btn15 .arrow1, .theme-btn15:hover .arrow2 {
        transition: all .4s;
        opacity: 1
    }

    .theme-btn15:hover .arrow2 {
        transform: translateY(-15px) rotate(-45deg) translateX(-21px)
    }

    .theme-btn15:hover .arrow1 {
        transition: all .4s;
        transform: translateY(-7px) rotate(-45deg) translateX(45px);
        opacity: 0
    }

    .theme-btn15:hover {
        color: #fff
    }

    .theme-btn15:after {
        width: 100%;
        left: 0;
        border-radius: 4px;
        border: 2px solid #4d32a5;
        z-index: -2
    }

    .theme-btn15:after, .theme-btn15:before {
        content: "";
        position: absolute;
        height: 100%;
        top: 0
    }

    .theme-btn15:before {
        width: 0;
        left: auto;
        right: 0;
        border-radius: 4px;
        background: #180d03;
        z-index: -1;
        transition: all .4s
    }

    .theme-btn15:hover {
        transition: all .4s
    }

        .theme-btn15:hover:before {
            width: 100%;
            transition: all .4s;
            left: 0;
            right: auto
        }

        .theme-btn15:hover span, .theme-btn16 {
            transition: all .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;
    border-radius: 111px;
    position: relative;
    z-index: 2;
    border: none;
    overflow: hidden
}

    .theme-btn16 span {
        display: inline-block;
        transform: rotate(-45deg) translateX(0);
        font-size: 16px
    }

    .theme-btn16 .arrow2 {
        transform: translateY(-8px) rotate(-45deg) translateX(-52px);
        transition: all .4s;
        opacity: 0
    }

    .theme-btn16 .arrow1, .theme-btn16:hover .arrow2 {
        transition: all .4s;
        opacity: 1
    }

    .theme-btn16:hover .arrow2 {
        transform: translateY(-15px) rotate(-45deg) translateX(-21px)
    }

    .theme-btn16:hover .arrow1 {
        transition: all .4s;
        transform: translateY(-7px) rotate(-45deg) translateX(45px);
        opacity: 0
    }

    .theme-btn16:after {
        left: 0;
        background: #a2ea61;
        z-index: -2
    }

    .theme-btn16:after, .theme-btn16:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        border-radius: 111px
    }

    .theme-btn16:before {
        left: auto;
        right: 0;
        background: #bbff80;
        transform: rotateY(90deg);
        z-index: -1;
        transition: all .4s;
        opacity: 0
    }

    .theme-btn16:hover {
        transition: all .4s;
        transform: translateY(-5px);
        color: #181818
    }

        .theme-btn16:hover:before {
            width: 100%;
            transition: all .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;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    border: none;
    overflow: hidden
}

    .theme-btn17 span {
        display: inline-block;
        transform: rotate(-45deg) translateX(0);
        font-size: 16px
    }

    .theme-btn17 .arrow2 {
        transform: translateY(-8px) rotate(-45deg) translateX(-52px);
        transition: all .4s;
        opacity: 0
    }

    .theme-btn17 .arrow1, .theme-btn17:hover .arrow2 {
        transition: all .4s;
        opacity: 1
    }

    .theme-btn17:hover .arrow2 {
        transform: translateY(-15px) rotate(-45deg) translateX(-21px)
    }

    .theme-btn17:hover .arrow1 {
        transition: all .4s;
        transform: translateY(-7px) rotate(-45deg) translateX(45px);
        opacity: 0
    }

    .theme-btn17:hover {
        color: #fff
    }

    .theme-btn17:after {
        left: 0;
        background: #259ea6;
        z-index: -2
    }

    .theme-btn17:after, .theme-btn17:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        border-radius: 4px
    }

    .theme-btn17:before {
        left: auto;
        right: 0;
        background: #180d03;
        transform: rotateY(90deg);
        z-index: -1;
        transition: all .4s;
        opacity: 0
    }

    .theme-btn17:hover {
        transition: all .4s
    }

        .theme-btn17:hover:before {
            width: 100%;
            transition: all .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;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    border: none;
    overflow: hidden
}

    .theme-btn18 span {
        display: inline-block;
        transform: rotate(-45deg) translateX(0);
        font-size: 16px
    }

    .theme-btn18 .arrow2 {
        transform: translateY(-8px) rotate(-45deg) translateX(-52px);
        transition: all .4s;
        opacity: 0
    }

    .theme-btn18 .arrow1, .theme-btn18:hover .arrow2 {
        transition: all .4s;
        opacity: 1
    }

    .theme-btn18:hover .arrow2 {
        transform: translateY(-15px) rotate(-45deg) translateX(-21px)
    }

    .theme-btn18:hover .arrow1 {
        transition: all .4s;
        transform: translateY(-7px) rotate(-45deg) translateX(45px);
        opacity: 0
    }

    .theme-btn18:hover {
        color: #fff
    }

    .theme-btn18:after {
        left: 0;
        background: #fff;
        z-index: -2
    }

    .theme-btn18:after, .theme-btn18:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        border-radius: 4px
    }

    .theme-btn18:before {
        left: auto;
        right: 0;
        background: #180d03;
        transform: rotateY(90deg);
        z-index: -1;
        transition: all .4s;
        opacity: 0
    }

    .theme-btn18:hover {
        transition: all .4s
    }

        .theme-btn18:hover:before {
            width: 100%;
            transition: all .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;
    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(0);
    font-size: 16px
}

.theme-btn19 .arrow2 {
    transform: translateY(-8px) rotate(-45deg) translateX(-52px);
    transition: all .4s;
    opacity: 0
}

.theme-btn19 .arrow1, .theme-btn19:hover .arrow2 {
    transition: all .4s;
    opacity: 1
}

.theme-btn19:hover .arrow2 {
    transform: translateY(-15px) rotate(-45deg) translateX(-21px)
}

.theme-btn19:hover .arrow1 {
    transition: all .4s;
    transform: translateY(-7px) rotate(-45deg) translateX(45px);
    opacity: 0
}

.theme-btn19:hover {
    color: #fff
}

.theme-btn19:after {
    left: 0;
    border-radius: 4px;
    border: 1px solid #fff;
    z-index: -2
}

.theme-btn19:after, .theme-btn19:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0
}

.theme-btn19:before {
    left: auto;
    right: 0;
    border-radius: 4px;
    background: #180d03;
    transform: rotateY(90deg);
    z-index: -1;
    transition: all .4s;
    opacity: 0
}

.theme-btn19:hover {
    transition: all .4s
}

    .theme-btn19:hover:before {
        width: 100%;
        transition: all .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;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    border: none;
    overflow: hidden
}

    .theme-btn21 span {
        display: inline-block;
        transform: rotate(-45deg) translateX(0);
        font-size: 16px
    }

    .theme-btn21 .arrow2 {
        transform: translateY(-8px) rotate(-45deg) translateX(-52px);
        transition: all .4s;
        opacity: 0
    }

    .theme-btn21 .arrow1, .theme-btn21:hover .arrow2 {
        transition: all .4s;
        opacity: 1
    }

    .theme-btn21:hover .arrow2 {
        transform: translateY(-15px) rotate(-45deg) translateX(-21px)
    }

    .theme-btn21:hover .arrow1 {
        transition: all .4s;
        transform: translateY(-7px) rotate(-45deg) translateX(45px);
        opacity: 0
    }

    .theme-btn21:hover {
        color: #011313
    }

    .theme-btn21:after {
        left: 0;
        background: #fff;
        z-index: -2
    }

    .theme-btn21:after, .theme-btn21:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        border-radius: 4px
    }

    .theme-btn21:before {
        left: auto;
        right: 0;
        background: #180d03;
        transform: rotateY(90deg);
        z-index: -1;
        transition: all .4s;
        opacity: 0
    }

    .theme-btn21:hover {
        transition: all .4s;
        color: #fff
    }

        .theme-btn21:hover:before {
            width: 100%;
            transition: all .4s;
            left: 0;
            right: auto;
            transform: rotateY(0deg);
            opacity: 1
        }

.about1 .about-image {
    position: relative
}

    .about1 .about-image .image1 {
        position: absolute;
        left: 0;
        top: 0
    }

    .about1 .about-image .image2 {
        margin-left: 150px
    }

    .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 0
        }

        .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: 80px
    }

        .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: 0;
    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:first-child {
            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,.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 0
    }
}

.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 0
}

    .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 0 100px
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .about5 {
        padding: 100px 0 50px
    }
}

@media (max-width:767px) {
    .about5 {
        padding: 100px 0 50px
    }
}

.about5 .images {
    position: relative;
    margin-right: 50px
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .about5 .images {
        margin-right: 0
    }
}

@media (max-width:767px) {
    .about5 .images {
        margin-right: 0
    }
}

.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,#49a6ff);
        text-align: center;
        line-height: 80px
    }

        .about5 .items-area .icon img {
            transition: all .4s
        }

    .about5 .items-area:hover .icon img {
        transform: rotateY(180deg);
        transition: all .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
    }

    .about6 .image2 p {
        color: var(--Home-Page-3-white-colors,hsla(0,0%,100%,.863));
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px;
        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;
    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
        }

        .about7 .images-all .image2 p {
            color: var(--White-colors,hsla(0,0%,100%,.788));
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            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;
    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 .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;
        line-height: 40px
    }

    .about7 .about-counter h4, .about7 .about-counter p {
        font-style: normal;
        font-weight: 600;
        transition: all .4s
    }

    .about7 .about-counter p {
        color: var(--Home-Page-1-pargraph,#5c5a64);
        font-size: 16px;
        line-height: 16px;
        padding-top: 12px
    }

    .about7 .about-counter:hover {
        transition: all .4s;
        transform: translateY(-10px);
        background-color: #0061ff
    }

        .about7 .about-counter:hover h4 {
            color: #fff;
            transition: all .4s
        }

        .about7 .about-counter:hover p {
            color: hsla(0,0%,100%,.827);
            transition: all .4s
        }

.skill7 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%
}

    .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,.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);
        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 {
        text-align: center
    }

    .skill7 .porgress-line-all h6, .skill7 .porgress-line-all p {
        color: var(--White-colors,#fff);
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px
    }

.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
    }

    .about9 .counter-box p {
        color: var(--Paragraph-Color,#646375);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px;
        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;
    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 .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
    }

    .about10 .work-images .counter-box p {
        color: #fff;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
        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;
    padding: 16px 44px;
    border-radius: 144px;
    background-color: #f8f9fa;
    margin: 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
    }

    .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
    }

.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 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 .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 1
}

    .cs_case_study_1_list .cs_case_study.cs_style_1.active .cs_case_study_in {
        opacity: 1;
        left: 0;
        transition: all .6s ease;
        transition-delay: .3s
    }

    .cs_case_study_1_list .cs_case_study.cs_style_1.active .cs_case_study_icon {
        transform: scale(0) rotate(1turn);
        transition-delay: .1s
    }

.cs_case_study.cs_style_1 {
    height: 700px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    transition: all .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: 0 100%;
    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 .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(/assets/img/about/about3-image1.png)
}

    .cs_case_study_thumb, .cs_case_study_thumb.cs_case_study_thumb2 {
        background-position: 50%;
        background-size: cover;
        background-repeat: no-repeat
    }

        .cs_case_study_thumb.cs_case_study_thumb2 {
            background-image: url(/assets/img/about/about3-image2.png)
        }

        .cs_case_study_thumb.cs_case_study_thumb3 {
            background-image: url(/assets/img/about/about3-image3.png);
            background-position: 50%;
            background-size: cover;
            background-repeat: no-repeat
        }

.cs_case_study.cs_style_1.cs_hover_active {
    margin: 0 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 .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 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 .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 1
}

    .about9 .cs_case_study_1_list .cs_case_study.cs_style_1.active .cs_case_study_in {
        opacity: 1;
        left: 0;
        transition: all .6s ease;
        transition-delay: .3s
    }

    .about9 .cs_case_study_1_list .cs_case_study.cs_style_1.active .cs_case_study_icon {
        transform: scale(0) rotate(1turn);
        transition-delay: .1s
    }

.about9 .cs_case_study.cs_style_1 {
    height: 700px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    transition: all .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: 0 100%;
    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 .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(/assets/img/about/about9-img1.png);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat
}

    .about9 .cs_case_study_thumb.cs_case_study_thumb2 {
        background-image: url(/assets/img/about/about9-img2.png);
        background-position: 50%;
        background-size: cover;
        background-repeat: no-repeat
    }

    .about9 .cs_case_study_thumb.cs_case_study_thumb3 {
        background-image: url(/assets/img/about/about9-img3.png);
        background-position: 50%;
        background-size: cover;
        background-repeat: no-repeat
    }

.about9 .cs_case_study.cs_style_1.cs_hover_active {
    margin: 0 12px;
    border-radius: 8px;
    height: 500px
}

.industris-slider1 {
    margin-top: 40px
}

    .industris-slider1 .single-slider {
        text-align: center;
        display: flex;
        justify-content: center
    }

.industris-slider2 {
    margin-top: 40px
}

    .industris-slider2 .single-slider {
        text-align: center;
        display: flex;
        justify-content: center
    }

.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 .4s
    }

        .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 .4s
        }

        .service .single-box .learn {
            transition: all .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 .4s
            }

        .service .single-box:hover {
            transition: all .4s;
            transform: translateY(-10px);
            box-shadow: 0 20px 30px rgba(0,0,0,.068);
            background-color: var(--ztc-bg-main-bg-1)
        }

            .service .single-box:hover .icon {
                background-color: var(--ztc-bg-color-w);
                transition: all .4s
            }

            .service .single-box:hover .heading1 h4 a {
                display: inline-block;
                color: var(--ztc-bg-color-w);
                transition: all .4s
            }

            .service .single-box:hover .heading1 p {
                color: hsla(0,0%,100%,.8);
                transition: all .4s
            }

            .service .single-box:hover .learn {
                transition: all .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 .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(.4);
        line-height: 40px;
        text-align: center;
        position: absolute;
        right: 24px;
        top: 24px;
        opacity: 0
    }

        .servcie2 .servcie2-box .arrow, .servcie2 .servcie2-box .arrow:hover {
            transition: all .4s;
            background-color: rgba(161,233,52,.137)
        }

    .servcie2 .servcie2-box:hover {
        transition: all .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 .4s
        }

    .servcie2 .servcie2-box.active {
        transition: all .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 .4s
        }

.servcie2.service-page-sec .servcie2-box {
    background-color: #f8f9fa;
    border: none;
    padding: 24px;
    position: relative;
    margin-top: 30px;
    transition: all .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(.4);
        line-height: 40px;
        text-align: center;
        transition: all .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,.137);
            transition: all .4s
        }

    .servcie2.service-page-sec .servcie2-box:hover {
        transition: all .4s;
        transform: translateY(-10px);
        background-color: var(--ztc-bg-main-bg-1)
    }

        .servcie2.service-page-sec .servcie2-box:hover .heading1 h4 a {
            transition: all .4s;
            color: var(--ztc-bg-color-w)
        }

        .servcie2.service-page-sec .servcie2-box:hover .heading1 p {
            color: #fff;
            transition: all .4s
        }

        .servcie2.service-page-sec .servcie2-box:hover .arrow {
            opacity: 1;
            transform: rotate(-45deg) scale(1);
            transition: all .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 .4s
    }

        .service3 .service3-box .icon {
            height: 48px;
            width: 48px;
            background-color: rgba(17,58,220,.145);
            margin-right: 20px;
            text-align: center;
            line-height: 48px;
            border-radius: 50%;
            transition: all .4s
        }

        .service3 .service3-box:hover {
            transform: translateY(-10px);
            transition: all .4s;
            background-color: var(--ztc-bg-main-bg-3)
        }

            .service3 .service3-box:hover .icon {
                background-color: hsla(0,0%,100%,.871)
            }

            .service3 .service3-box:hover .heading3 h4 a {
                color: var(--ztc-bg-color-w);
                transition: all .4s
            }

            .service3 .service3-box:hover .heading3 p {
                color: hsla(0,0%,100%,.773)
            }

    .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: 0 20px 30px rgba(0,0,0,.068)
    }

    .service4 .service4-box {
        border-radius: 7px;
        border: 1px solid #e8eaed;
        padding: 24px;
        margin-top: 30px;
        transition: all .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 .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 .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 .4s
            }

        .service4 .service4-box:hover {
            background: var(--ztc-bg-color-w);
            transform: translateY(-10px);
            border: 1px solid var(--ztc-bg-color-w);
            box-shadow: 0 20px 30px rgba(0,0,0,.068)
        }

.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;
        margin-top: 24px;
        transition: all .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 {
            background: linear-gradient(90deg,#3b32f6,#49a6ff);
            z-index: -1
        }

        .service5 .service-box .icon:after, .service5 .service-box .icon:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            border-radius: 50%
        }

        .service5 .service-box .icon:before {
            background: #fff;
            z-index: 0;
            transform: rotateY(80deg);
            opacity: 0;
            transition: all .4s
        }

        .service5 .service-box .icon img {
            filter: brightness(0) invert(1);
            transition: all .4s;
            position: relative;
            z-index: 2
        }

    .service5 .service-box .heading5 {
        margin-top: 24px
    }

    .service5 .service-box:after {
        background: #fff;
        z-index: -2
    }

    .service5 .service-box:after, .service5 .service-box:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        border-radius: 4px
    }

    .service5 .service-box:before {
        background: linear-gradient(90deg,#3b32f6,#49a6ff);
        z-index: -1;
        transform: rotateY(80deg);
        opacity: 0;
        transition: all .4s
    }

    .service5 .service-box:hover {
        transition: all .4s
    }

        .service5 .service-box:hover:before {
            transition: all .4s;
            transform: rotateY(0deg);
            opacity: 1
        }

        .service5 .service-box:hover .heading5 h4 a {
            transition: all .4s;
            color: #fff
        }

        .service5 .service-box:hover .heading5 p {
            transition: all .4s;
            color: hsla(0,0%,100%,.69)
        }

        .service5 .service-box:hover .learn {
            transition: all .4s;
            color: #fff
        }

        .service5 .service-box:hover .icon img {
            filter: none;
            transition: all .4s
        }

        .service5 .service-box:hover .icon:before {
            transition: all .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 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::placeholder {
            color: var(--Paragraph-Color,#676879);
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 16px
        }

        .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: 14px
    }

.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-text-text-1);
    background-color: #fff;
    padding: 20px 22px;
    border-radius: 7px;
    margin-bottom: 16px;
    transition: all .4s;
    font-weight: var(--f-fw-blod)
}

    .sidebar-box-area .features-list li a:hover {
        background-color: var(--ztc-bg-main-bg-1);
        transition: all .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 .4s
    }

        .sidebar-box-area .tags li a:hover {
            background-color: var(--ztc-bg-main-bg-1);
            transition: all .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 .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 .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::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
    }

.details-post-area .image img {
    width: 100%
}

.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
    }

.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 .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 .4s
        }

        .details-post-area .boxs-area ul li:hover {
            transition: all .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 .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 .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(.4);
        line-height: 40px;
        text-align: center;
        position: absolute;
        right: 24px;
        top: 24px;
        opacity: 0
    }

        .servcie2-box .arrow, .servcie2-box .arrow:hover {
            transition: all .4s;
            background-color: rgba(161,233,52,.137)
        }

    .servcie2-box:hover {
        transition: all .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 .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: 0 4px 40px 0 rgba(0,0,0,.09);
            line-height: 70px;
            text-align: center;
            transition: all .4s
        }

        .service6 .service-box .heading6 {
            padding-left: 20px
        }

            .service6 .service-box .heading6 p {
                padding: 14px 0;
                transition: all .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;
                transition: all .4s
            }

                .service6 .service-box .heading6 .learn span {
                    display: inline-block;
                    transform: rotate(-54deg)
                }

        .service6 .service-box:after {
            height: 100%;
            width: 100%;
            background-color: #fff;
            z-index: -2
        }

        .service6 .service-box:after, .service6 .service-box:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            border-radius: 4px
        }

        .service6 .service-box:before {
            height: 500px;
            width: 500px;
            background-color: #fa6444;
            z-index: -1;
            transform: rotate(45deg) translateX(-565px);
            transition: all .4s
        }

        .service6 .service-box:hover {
            transition: all .4s
        }

            .service6 .service-box:hover .heading6 h4 a {
                transition: all .4s;
                color: #fff
            }

            .service6 .service-box:hover .heading6 p {
                transition: all .4s;
                color: hsla(0,0%,100%,.718)
            }

            .service6 .service-box:hover .heading6 .learn {
                color: #fff;
                transition: all .4s
            }

            .service6 .service-box:hover:before {
                transition: all .4s;
                transform: rotate(45deg) translateX(-106px);
                top: -66px
            }

.service7 {
    position: relative
}

    .service7 .service7-box {
        margin-top: 30px;
        border-radius: 4px;
        transition: all .4s
    }

        .service7 .service7-box .heading-area {
            background-color: #e9eff9;
            padding: 32px;
            border-radius: 4px 4px 0 0;
            transition: all .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 0;
                transition: all .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;
                transition: all .4s
            }

                .service7 .service7-box .heading-area .learn span {
                    display: inline-block;
                    transform: rotate(-45deg)
                }

                .service7 .service7-box .heading-area .learn:hover {
                    transition: all .4s;
                    color: #0061ff
                }

        .service7 .service7-box .image {
            overflow: hidden;
            border-radius: 0 0 4px 4px
        }

            .service7 .service7-box .image img {
                width: 100%;
                transition: all .4s
            }

        .service7 .service7-box:hover {
            transition: all .4s;
            transform: translateY(-10px)
        }

            .service7 .service7-box:hover .heading-area {
                transition: all .4s;
                background-color: #0061ff
            }

                .service7 .service7-box:hover .heading-area .icon {
                    background-color: #fff;
                    transition: all .4s
                }

                .service7 .service7-box:hover .heading-area h4 a {
                    color: #fff;
                    transition: all .4s
                }

                .service7 .service7-box:hover .heading-area p {
                    color: hsla(0,0%,100%,.808);
                    transition: all .4s
                }

                .service7 .service7-box:hover .heading-area .learn {
                    color: #fff;
                    transition: all .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: 0;
        padding-top: 30px
    }
}

@media (max-width:767px) {
    .service8 .service8-heading {
        padding-left: 0;
        padding-top: 30px
    }
}

.service8 .service-box {
    background-color: #f5f5fd;
    border-radius: 4px;
    padding: 32px;
    transition: all .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 .4s;
        margin: auto
    }

        .service8 .service-box .icon img {
            filter: brightness(40);
            transition: all .4s
        }

    .service8 .service-box .heading8 p {
        padding: 16px 0 24px
    }

    .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;
        transition: all .4s
    }

        .service8 .service-box .heading8 .learn span {
            display: inline-block;
            transform: rotate(-45deg)
        }

        .service8 .service-box .heading8 .learn:hover {
            transition: all .4s;
            color: #4d32a5
        }

    .service8 .service-box:hover {
        transition: all .4s;
        transform: translateY(-10px);
        background-color: #4d32a5
    }

        .service8 .service-box:hover .icon {
            background-color: #fff;
            transition: all .4s
        }

            .service8 .service-box:hover .icon img {
                transition: all .4s;
                filter: none;
                transform: rotateY(180deg)
            }

        .service8 .service-box:hover .heading8 h4 a {
            transition: all .4s;
            color: #fff
        }

        .service8 .service-box:hover .heading8 p {
            color: hsla(0,0%,100%,.871);
            transition: all .4s
        }

        .service8 .service-box:hover .heading8 .learn {
            color: #fff;
            transition: all .4s
        }

.service10:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40%;
    background-image: url(/assets/img/service/service10-bg.png);
    background-position: 50%;
    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: 0 10px;
        transition: all .4s
    }

        .service10 .service10-slider .single-slider .icon {
            background-color: #e9f4f4;
            height: 80px;
            width: 80px;
            line-height: 80px;
            border-radius: 50%;
            text-align: center;
            transition: all .4s
        }

            .service10 .service10-slider .single-slider .icon img {
                display: inline-block;
                transition: all .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;
            padding: 24px 0 16px;
            transition: all .4s
        }

        .service10 .service10-slider .single-slider .heading p {
            color: #5f6464;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            transition: all .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;
            padding-top: 24px;
            transition: all .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 .4s
        }

            .service10 .service10-slider .single-slider.slick-current.slick-active .heading h4 a {
                transition: all .4s;
                color: #fff
            }

            .service10 .service10-slider .single-slider.slick-current.slick-active .heading p {
                color: hsla(0,0%,100%,.788);
                transition: all .4s
            }

            .service10 .service10-slider .single-slider.slick-current.slick-active .heading .learn {
                transition: all .4s;
                color: #fff
            }

        .service10 .service10-slider .single-slider:hover {
            background-color: #24908d;
            transition: all .4s
        }

            .service10 .service10-slider .single-slider:hover .heading h4 a {
                transition: all .4s;
                color: #fff
            }

            .service10 .service10-slider .single-slider:hover .heading p {
                color: hsla(0,0%,100%,.788);
                transition: all .4s
            }

            .service10 .service10-slider .single-slider:hover .heading .learn {
                transition: all .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 .4s;
    background-color: #fff;
    margin-left: 5px
}

    .service10 .arrows-button button:hover {
        background-color: #24908d;
        color: #fff;
        transition: all .4s
    }

.service-details-area-all .faq-area-all .accordion {
    border: none
}

    .service-details-area-all .faq-area-all .accordion .accordion-item {
        margin-top: 20px;
        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: 0 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,.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 .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(.4);
        line-height: 40px;
        text-align: center;
        position: absolute;
        right: 24px;
        top: 24px;
        opacity: 0
    }

        .servcie2-box.servcie2-box-2 .arrow, .servcie2-box.servcie2-box-2 .arrow:hover {
            transition: all .4s;
            background-color: #fff
        }

    .servcie2-box.servcie2-box-2:hover {
        transition: all .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 .4s;
            color: var(--ztc-bg-color-w)
        }

        .servcie2-box.servcie2-box-2:hover .heading1 p {
            color: #fff;
            transition: all .4s
        }

        .servcie2-box.servcie2-box-2:hover .arrow {
            opacity: 1;
            transform: rotate(-45deg) scale(1);
            transition: all .4s
        }

.bg1 .servcie2-box.servcie2-box-2 {
    background-color: #fff
}

    .bg1 .servcie2-box.servcie2-box-2:hover {
        transition: all .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 .4s;
            color: var(--ztc-bg-color-w)
        }

        .bg1 .servcie2-box.servcie2-box-2:hover .heading1 p {
            color: #fff;
            transition: all .4s
        }

        .bg1 .servcie2-box.servcie2-box-2:hover .arrow {
            opacity: 1;
            transform: rotate(-45deg) scale(1);
            transition: all .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::placeholder {
            color: hsla(0,0%,100%,.635);
            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 .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 .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 .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 .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 .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 .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: 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::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-radius: 7px;
        padding: 6px;
        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: 0 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,.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: hsla(0,0%,100%,.773);
    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
    }

.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: #4d32a5;
    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: 0;
        padding-top: 30px
    }
}

@media (max-width:767px) {
    .choose8 .heading6-w {
        padding-left: 0;
        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
        }

        .choose8 .choose8-images .shape p {
            color: var(--Home-Page-2-paragraph,#5a5556);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            padding-top: 12px
        }

.choose8 .choose-box {
    display: flex;
    align-items: center;
    border-radius: 4px;
    background: hsla(0,0%,100%,.1);
    padding: 20px 24px;
    margin-top: 20px;
    transition: all .4s
}

    .choose8 .choose-box .icon {
        width: 130px
    }

        .choose8 .choose-box .icon img {
            transition: all .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
        }

    .choose8 .choose-box:hover {
        transition: all .4s;
        transform: translateY(-10px)
    }

        .choose8 .choose-box:hover .icon img {
            transform: rotateY(180deg);
            transition: all .4s
        }

.cta {
    background-color: var(--ztc-bg-main-bg-1);
    padding: 80px 0
}

    .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;
        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::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;
        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::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(/assets/img/others/cta4-image.png);
    background-position: 50%;
    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: 0
    }
}

@media (max-width:767px) {
    .cta5 {
        margin-bottom: 0
    }
}

.cta5 .bg {
    border-radius: 4px;
    background: linear-gradient(90deg,#3b32f6,#49a6ff);
    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::placeholder {
            color: var(--Home-Page-4-paragraph,#5a5d73);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px
        }

@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: 0
    }
}

@media (max-width:767px) {
    .cta6 {
        margin-bottom: 0
    }
}

.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::placeholder {
            color: var(--Home-Page-4-paragraph,#5a5d73);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px
        }

@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: 0
    }
}

@media (max-width:767px) {
    .cta7 {
        margin-bottom: 0
    }
}

.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::placeholder {
            color: var(--Home-Page-4-paragraph,#5a5d73);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px
        }

@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: 0
    }
}

@media (max-width:767px) {
    .cta8 {
        margin-bottom: 0
    }
}

.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::placeholder {
            color: var(--Home-Page-4-paragraph,#5a5d73);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px
        }

@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 0
    }

        .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::placeholder {
        color: var(--Paragraph-Color,#646375);
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px
    }

.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: hsla(0,0%,100%,.09);
        border-radius: 8px;
        border: none;
        padding: 17px 24px;
        color: #fff
    }

        .cta10 .cta-bg-area .subscribe-form input::placeholder {
            color: hsla(0,0%,100%,.561)
        }

        .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(/assets/img/others/cta4-image.png);
    background-position: 50%;
    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
}

.faq3 {
    background-color: var(--ztc-bg-bg-6)
}

    .faq3 .accordion-item.active, .faq3 .accordion-item.active button {
        background-color: #113adc;
        transition: all .4s
    }

        .faq3 .accordion-item.active button {
            color: #fff !important
        }

        .faq3 .accordion-item.active .accordion-body {
            color: hsla(0,0%,100%,.698) !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-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: 0 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,.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,.09)
    }

        .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
        }

            .faq6 .faq-area .accordion .accordion-item button:focus {
                box-shadow: none
            }

        .faq6 .faq-area .accordion .accordion-item .accordion-body {
            padding: 0 24px 24px;
            color: var(--Home-Page-3-white-colors,#fff);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px
        }

        .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: 0;
        margin-top: 30px
    }
}

@media (max-width:767px) {
    .faq6 .faq-image {
        margin-left: 0;
        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-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
        }

            .faq7 .faq-area .accordion .accordion-item button:focus {
                box-shadow: none
            }

        .faq7 .faq-area .accordion .accordion-item .accordion-body {
            padding: 0 24px 24px;
            color: var(--Home-Page-3-white-colors,#5c5a64);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px
        }

        .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%
    }

.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,.094);
        transition: all .4s
    }

        .solution .item-box .icon img {
            height: auto;
            transition: all .4s
        }

    .solution .item-box:hover .icon {
        background-color: var(--ztc-bg-main-bg-4);
        transition: all .4s
    }

        .solution .item-box:hover .icon img {
            filter: brightness(0);
            transition: all .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 .4s;
    z-index: 9
}

.project4 .image-area:hover .heading4-w, .project4 .image-area:hover:after {
    opacity: 1;
    transform: translateY(0);
    transition: all .4s
}

.project4 .image-area:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(187deg,transparent 49.94%,rgba(0,0,0,.8) 72.55%),hsla(0,0%,83%,0) 50%/cover no-repeat;
    transform: translateY(50px);
    opacity: 0;
    transition: all .4s
}

.project4 .image-area.active .heading4-w, .project4 .image-area.active:after {
    opacity: 1;
    transform: translateY(0);
    transition: all .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 .4s
        }

    .project-page-box .heading2 {
        padding: 24px;
        border-radius: 7px;
        background-color: var(--ztc-bg-main-bg-1);
        position: absolute;
        bottom: 24px;
        margin: 0 24px;
        transform: translateY(60px) scale(.4);
        opacity: 0;
        transition: all .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 .4s
    }

    .project-page-box:hover .image img {
        transition: all .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 .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: 0 24px;
        transform: translateY(60px) scale(.4);
        opacity: 0;
        transition: all .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 .4s
    }

    .comon-body .project-page-box:hover .image img {
        transition: all .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: hsla(0,0%,100%,.773);
    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 .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 .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 .4s
}

    .comon-body .project-details-box:hover {
        border: 1px solid var(--ztc-bg-main-bg-4);
        transition: all .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 0;
    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;
            padding-bottom: 50px;
            position: relative
        }

            .brands6 .brands-area-all p:after {
                content: "";
                position: absolute;
                left: 0;
                top: 10px;
                width: 400px;
                height: 1px;
                background-color: hsla(0,0%,100%,.247)
            }

@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: hsla(0,0%,100%,.247)
}

@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 .4s
            }

        .case8 .case8-box .hover-area {
            background-color: #f5f6f9;
            border-radius: 4px;
            padding: 20px;
            overflow: hidden;
            position: absolute;
            height: 68px;
            bottom: -30px;
            margin: 0 30px;
            transition: all .4s
        }

            .case8 .case8-box .hover-area .hover-heaer {
                display: flex;
                align-items: center
            }

                .case8 .case8-box .hover-area .hover-heaer .icon img {
                    transition: all .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;
                    padding-left: 12px;
                    transition: all .4s
                }

            .case8 .case8-box .hover-area p {
                color: var(--White-colors,#0b0103);
                font-size: 16px;
                font-style: normal;
                font-weight: 500;
                line-height: 24px;
                padding: 16px 0 24px;
                transition: all .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
            }

                .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 .4s
        }

        .case8 .case8-box:hover .hover-area {
            height: 200px;
            transition: all .4s;
            background-color: #4d32a5
        }

            .case8 .case8-box:hover .hover-area .hover-heaer .icon img {
                transition: all .4s;
                filter: brightness(0) invert(1)
            }

            .case8 .case8-box:hover .hover-area .hover-heaer a, .case8 .case8-box:hover .hover-area p {
                transition: all .4s;
                color: #fff
            }

.pricing .single-pricing-box {
    background-color: var(--ztc-bg-bg-3);
    padding: 32px 24px;
    border-radius: 4px;
    min-height: 572px;
    position: relative;
    transition: all .4s;
    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;
        position: absolute;
        top: -20px;
        left: 50%;
        margin: auto auto auto -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)
    }

    .pricing .single-pricing-box .title, .pricing .single-pricing-box h2 {
        font-weight: var(--f-fw-blod);
        color: var(--ztc-text-text-1);
        transition: all .4s
    }

    .pricing .single-pricing-box h2 {
        font-size: var(--f-fs-font-fs56);
        line-height: var(--f-fs-font-fs56);
        margin: 20px 0
    }

        .pricing .single-pricing-box h2 span, .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);
            transition: all .4s
        }

    .pricing .single-pricing-box p.pera {
        padding-bottom: 20px
    }

    .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 .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 .4s
    }

        .pricing .single-pricing-box .list li span {
            display: inline-block;
            height: 20px;
            width: 20px;
            text-align: center;
            line-height: 20px;
            border-radius: 50%;
            font-size: 12px;
            color: var(--ztc-bg-color-w);
            margin-top: 0;
            margin-right: 10px
        }

        .pricing .single-pricing-box .list li span, .pricing .single-pricing-box:hover {
            background-color: var(--ztc-bg-main-bg-1);
            transition: all .4s
        }

            .pricing .single-pricing-box:hover .title, .pricing .single-pricing-box:hover h2 {
                color: var(--ztc-bg-color-w);
                transition: all .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);
                margin: 20px 0
            }

                .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 .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 .list li, .pricing .single-pricing-box:hover h4, .pricing .single-pricing-box:hover p.pera {
                color: var(--ztc-bg-color-w);
                transition: all .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);
                padding-top: 20px;
                display: flex;
                align-items: center
            }

                .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: 0;
                    margin-right: 10px;
                    transition: all .4s
                }

    .pricing .single-pricing-box.active {
        background-color: var(--ztc-bg-main-bg-1);
        transition: all .4s
    }

        .pricing .single-pricing-box.active .title, .pricing .single-pricing-box.active h2 {
            color: var(--ztc-bg-color-w);
            transition: all .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);
            margin: 20px 0
        }

            .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 .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 .list li, .pricing .single-pricing-box.active h4, .pricing .single-pricing-box.active p.pera {
            color: var(--ztc-bg-color-w);
            transition: all .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);
            padding-top: 20px;
            display: flex;
            align-items: center
        }

            .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: 0;
                margin-right: 10px;
                transition: all .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 .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;
        position: absolute;
        top: -20px;
        left: 50%;
        margin: auto auto auto -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)
    }

    .pricing4 .single-pricing-box .title, .pricing4 .single-pricing-box h2 {
        font-weight: var(--f-fw-blod);
        color: var(--ztc-text-text-1);
        transition: all .4s
    }

    .pricing4 .single-pricing-box h2 {
        font-size: var(--f-fs-font-fs56);
        line-height: var(--f-fs-font-fs56);
        margin: 20px 0
    }

        .pricing4 .single-pricing-box h2 span, .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);
            transition: all .4s
        }

    .pricing4 .single-pricing-box p.pera {
        padding-bottom: 20px
    }

    .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 .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 .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: 0;
            margin-right: 10px;
            transition: all .4s
        }

    .pricing4 .single-pricing-box:hover {
        background-color: var(--ztc-bg-main-bg-2);
        transition: all .4s
    }

        .pricing4 .single-pricing-box:hover .title, .pricing4 .single-pricing-box:hover h2 {
            color: var(--ztc-bg-color-w);
            transition: all .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);
            margin: 20px 0
        }

            .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 .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 .list li, .pricing4 .single-pricing-box:hover h4, .pricing4 .single-pricing-box:hover p.pera {
            color: var(--ztc-bg-color-w);
            transition: all .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);
            padding-top: 20px;
            display: flex;
            align-items: center
        }

            .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: 0;
                margin-right: 10px;
                transition: all .4s
            }

    .pricing4 .single-pricing-box.active {
        background-color: var(--ztc-bg-main-bg-2);
        transition: all .4s
    }

        .pricing4 .single-pricing-box.active .title, .pricing4 .single-pricing-box.active h2 {
            color: var(--ztc-bg-color-w);
            transition: all .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);
            margin: 20px 0
        }

            .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 .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 .list li, .pricing4 .single-pricing-box.active h4, .pricing4 .single-pricing-box.active p.pera {
            color: var(--ztc-bg-color-w);
            transition: all .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);
            padding-top: 20px;
            display: flex;
            align-items: center
        }

            .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: 0;
                margin-right: 10px;
                transition: all .4s
            }

.pricing8 .single-pricing-box {
    background-color: #fff;
    padding: 32px 24px;
    border-radius: 4px;
    min-height: 572px;
    position: relative;
    transition: all .4s;
    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;
        position: absolute;
        top: -20px;
        left: 50%;
        margin: auto auto auto -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)
    }

    .pricing8 .single-pricing-box .title, .pricing8 .single-pricing-box h2 {
        font-weight: var(--f-fw-blod);
        color: var(--ztc-text-text-1);
        transition: all .4s
    }

    .pricing8 .single-pricing-box h2 {
        font-size: var(--f-fs-font-fs56);
        line-height: var(--f-fs-font-fs56);
        margin: 20px 0
    }

        .pricing8 .single-pricing-box h2 span, .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);
            transition: all .4s
        }

    .pricing8 .single-pricing-box p.pera {
        padding-bottom: 20px
    }

    .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 .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 .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: 0;
            margin-right: 10px;
            transition: all .4s
        }

    .pricing8 .single-pricing-box:hover {
        background-color: #4d32a5;
        transition: all .4s
    }

        .pricing8 .single-pricing-box:hover .title, .pricing8 .single-pricing-box:hover h2 {
            color: var(--ztc-bg-color-w);
            transition: all .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);
            margin: 20px 0
        }

            .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 .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 .list li, .pricing8 .single-pricing-box:hover h4, .pricing8 .single-pricing-box:hover p.pera {
            color: var(--ztc-bg-color-w);
            transition: all .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);
            padding-top: 20px;
            display: flex;
            align-items: center
        }

            .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: 0;
                margin-right: 10px;
                transition: all .4s
            }

    .pricing8 .single-pricing-box.active {
        background-color: #4d32a5;
        transition: all .4s
    }

        .pricing8 .single-pricing-box.active .title, .pricing8 .single-pricing-box.active h2 {
            color: var(--ztc-bg-color-w);
            transition: all .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);
            margin: 20px 0
        }

            .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 .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 .list li, .pricing8 .single-pricing-box.active h4, .pricing8 .single-pricing-box.active p.pera {
            color: var(--ztc-bg-color-w);
            transition: all .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);
            padding-top: 20px;
            display: flex;
            align-items: center
        }

            .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: 0;
                margin-right: 10px;
                transition: all .4s
            }

.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 .4s
}

    .contact-page .contact-boxs .contact-box .icon {
        height: 60px;
        width: 60px;
        background-color: rgba(14,55,177,.173);
        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 .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 .4s
}

    .comon-body .contact-page .contact-boxs .contact-box .icon {
        height: 60px;
        width: 60px;
        background-color: rgba(161,233,52,.184);
        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: hsla(0,0%,100%,.718);
            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 .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: 0
    }
}

@media (max-width:767px) {
    .contact5 .heading5 {
        padding-right: 0
    }
}

.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;
            transition: all .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;
            transition: all .4s;
            padding-top: 14px
        }

    .contact5 .contact-box:after {
        background-color: #fff;
        z-index: -2
    }

    .contact5 .contact-box:after, .contact5 .contact-box:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        border-radius: 4px
    }

    .contact5 .contact-box:before {
        background: linear-gradient(90deg,#3b32f6,#49a6ff);
        z-index: -1;
        transform: rotateY(80deg);
        opacity: 0;
        transition: all .4s
    }

    .contact5 .contact-box:hover:before {
        opacity: 1;
        transition: all .4s;
        transform: rotateY(0deg)
    }

    .contact5 .contact-box:hover .heading a, .contact5 .contact-box:hover .heading h4 {
        color: #fff;
        transition: all .4s
    }

.contact5 .form-area {
    border-radius: 4px;
    background: var(--White-colors,#fff);
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    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
    }

    .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;
            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,.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::placeholder, .contact5 .form-area .single-input textarea::placeholder {
                color: var(--Home-Page-4-Text-colors,rgba(5,9,43,.494));
                font-size: 16px;
                font-style: normal;
                font-weight: 500;
                line-height: 16px
            }

.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 .4s
    }

        .contact6 .contact6-box .icon {
            height: 50px;
            width: 50px;
            line-height: 50px;
            text-align: center;
            border-radius: 50%;
            background-color: #f5eff0;
            transition: all .4s
        }

        .contact6 .contact6-box .heading {
            padding-left: 16px
        }

            .contact6 .contact6-box .heading h3 {
                font-size: 20px;
                font-weight: 600;
                line-height: 20px;
                padding-bottom: 10px
            }

            .contact6 .contact6-box .heading a, .contact6 .contact6-box .heading h3 {
                color: var(--Home-Page-3-text-Colors,#180d03);
                font-style: normal;
                transition: all .4s
            }

            .contact6 .contact6-box .heading a {
                display: inline-block;
                font-size: 16px;
                font-weight: 500;
                line-height: 16px
            }

        .contact6 .contact6-box:hover {
            background-color: #fa6444;
            transition: all .4s;
            transform: translateY(-7px)
        }

            .contact6 .contact6-box:hover .icon {
                background: #fff;
                transition: all .4s
            }

            .contact6 .contact6-box:hover .heading h3 {
                color: #fff;
                transition: all .4s
            }

            .contact6 .contact6-box:hover .heading a {
                transition: all .4s;
                color: hsla(0,0%,100%,.89)
            }

    .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: 0
    }
}

@media (max-width:767px) {
    .contact6 .form-area {
        margin-top: 30px;
        padding: 16px;
        margin-left: 0
    }
}

.contact6 .form-area h3 {
    color: var(--Home-Page-3-text-Colors,#180d03);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    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;
        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::placeholder, .contact6 .form-area .single-input textarea::placeholder {
            color: var(--Home-Page-3-text-Colors,rgba(24,13,3,.494));
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px
        }

        .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;
        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 .4s
    }

        .contact8 .contact6-box .icon {
            height: 50px;
            width: 50px;
            line-height: 50px;
            text-align: center;
            border-radius: 50%;
            background-color: #fff;
            transition: all .4s
        }

            .contact8 .contact6-box .icon img {
                filter: brightness(0)
            }

        .contact8 .contact6-box .heading {
            padding-left: 16px
        }

            .contact8 .contact6-box .heading h3 {
                font-size: 20px;
                font-weight: 600;
                line-height: 20px;
                padding-bottom: 10px
            }

            .contact8 .contact6-box .heading a, .contact8 .contact6-box .heading h3 {
                color: var(--Home-Page-3-text-Colors,#180d03);
                font-style: normal;
                transition: all .4s
            }

            .contact8 .contact6-box .heading a {
                display: inline-block;
                font-size: 16px;
                font-weight: 500;
                line-height: 16px
            }

        .contact8 .contact6-box:hover {
            background-color: #4d32a5;
            transition: all .4s;
            transform: translateY(-7px)
        }

            .contact8 .contact6-box:hover .icon {
                background: #fff;
                transition: all .4s
            }

            .contact8 .contact6-box:hover .heading h3 {
                color: #fff;
                transition: all .4s
            }

            .contact8 .contact6-box:hover .heading a {
                transition: all .4s;
                color: hsla(0,0%,100%,.89)
            }

    .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: 0
    }
}

@media (max-width:767px) {
    .contact8 .form-area {
        margin-top: 30px;
        padding: 16px;
        margin-left: 0
    }
}

.contact8 .form-area h3 {
    color: var(--Home-Page-3-text-Colors,#180d03);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    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;
        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::placeholder, .contact8 .form-area .single-input textarea::placeholder {
            color: var(--Home-Page-3-text-Colors,rgba(24,13,3,.494));
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px
        }

        .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;
        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::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
            }

            .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: 0 4px 40px 0 rgba(0,0,0,.09);
        padding: 24px;
        display: flex;
        align-items: center;
        margin-left: 40px;
        transition: all .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;
                transition: all .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;
                padding-top: 10px;
                transition: all .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 .4s
        }

            .contact9 .contact9-content-area .contact9-box .icon img {
                transition: all .4s;
                filter: brightness(40)
            }

        .contact9 .contact9-content-area .contact9-box:hover {
            transform: translateY(-10px);
            transition: all .4s;
            background-color: #325d28
        }

            .contact9 .contact9-content-area .contact9-box:hover .icon {
                background-color: #fff;
                transition: all .4s
            }

                .contact9 .contact9-content-area .contact9-box:hover .icon img {
                    filter: none;
                    transition: all .4s;
                    transform: rotateY(180deg)
                }

            .contact9 .contact9-content-area .contact9-box:hover .heading h5 {
                color: #fff;
                transition: all .4s
            }

            .contact9 .contact9-content-area .contact9-box:hover .heading a {
                color: hsla(0,0%,100%,.753);
                transition: all .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-radius: 4px;
        border: 1px solid #dfefee;
        background-color: #f4f9f9
    }

        .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
        }

        .contact10 .form-area .single-input input:focus, .contact10 .form-area .single-input textarea:focus {
            outline: none
        }

.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: 0 20px 30px rgba(0,0,0,.068);
    margin-top: -95px
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero-bottom-area {
        margin-top: 60px;
        box-shadow: 10px -2px 30px rgba(0,0,0,.068);
        padding: 30px
    }
}

@media (max-width:767px) {
    .hero-bottom-area {
        margin-top: 60px;
        box-shadow: 10px -2px 30px rgba(0,0,0,.068);
        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 0
    }
}

@media (max-width:767px) {
    .hero-bottom-area .single-box {
        padding: 20px 0
    }
}

.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: 0
}

@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(/assets/img/bg/hero2-main-bg2.png);
    z-index: -1;
    background-position: 50%;
    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(.9)
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero2 .hero2-main-imge2 {
        position: absolute;
        bottom: -240px;
        right: -135px;
        transform: scale(.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 .4s
        }

            .hero2 .hero2-tags ul li a:hover {
                transition: all .4s
            }

            .hero2 .hero2-tags ul li a:hover, .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: 0;
    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(/assets/img/hero/hero4-main-image.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%
}

@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(/assets/img/bg/hero4-main-shape.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
    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: 400px;
    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: 0 3px;
            font-size: 15px
        }

        .common-hero .main-heading span.span a {
            color: var(--ztc-bg-main-bg-1)
        }

    .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-1)
    }

@media only screen and (min-width:768px) and (max-width:991px) {
    .common-hero .main-heading h1 {
        font-size: var(--f-fs-font-fs40);
        line-height: var(--f-fs-font-fs48)
    }
}

@media (max-width:767px) {
    .common-hero .main-heading h1 {
        font-size: var(--f-fs-font-fs40);
        line-height: var(--f-fs-font-fs48)
    }
}

.common-hero:after {
    position: absolute;
    content: "";
    top: 60px;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(/img/hero2-main-bg.png);
    z-index: -1;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain
}

@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
    }

    .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(/assets/img/bg/hero2-main-bg2.png) !important;
        z-index: -1;
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: contain
    }

    .common-hero.error p {
        color: var(--ztc-text-text-1)
    }

.brand-single-box {
    display: inline-block;
    padding: 0 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 !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, .post-navigation .nav-links, .posts-navigation .nav-links {
        display: block
    }

    .comment-navigation .nav-previous, .post-navigation .nav-previous, .posts-navigation .nav-previous {
        padding-right: 0
    }

    .comment-navigation .nav-next, .post-navigation .nav-next, .posts-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)
    }

    to {
        transform: translatex(-100%)
    }
}

@keyframes marquee-2 {
    0% {
        transform: translateX(-100%)
    }

    to {
        transform: translatex(0)
    }
}

.marquee-wrap {
    background-color: var(--ztc-bg-main-bg-4);
    transform: scale(1.1) rotate(1deg)
}

    .marquee-wrap, .marquee-wrap.marquee-wrap-inner {
        background-image: linear-gradient(135deg,var(--theme-primary-color),var(--theme-secondary-color));
        width: 100%;
        position: relative;
        margin-top: 0
    }

        .marquee-wrap.marquee-wrap-inner {
            background-color: var(--ztc-bg-main-bg-1);
            transform: scale(1) rotate(0deg)
        }

            .marquee-wrap.marquee-wrap-inner .brand-single-box {
                filter: brightness(0) invert(1);
                transform: scale(1.1) translateY(-2px)
            }

.marquee-title, .marquee-wrap {
    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,#49a6ff);
    width: 100%;
    position: relative;
    transform: scale(1) rotate(4deg);
    margin-top: 0
}

    .hero5-benar .marquee-wrap.hero5-marquee .brand-single-box {
        filter: brightness(0) invert(1);
        transform: scale(1.1) translateY(-2px)
    }

.hero5-benar .marquee-title, .hero5-benar .marquee-wrap {
    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,#49a6ff);
    width: 100%;
    position: relative;
    transform: scale(1) rotate(-4deg) translateY(-70px);
    margin-top: 0
}

    .hero5-benar2 .marquee-wrap.hero5-marquee .brand-single-box {
        filter: brightness(0) invert(1);
        transform: scale(1.1) translateY(-2px)
    }

.hero5-benar2 .marquee-title, .hero5-benar2 .marquee-wrap {
    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: 50%;
    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;
    background: hsla(0,0%,100%,.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
}

@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: hsla(0,0%,100%,.8);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px
}

@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: 0
}

.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;
            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
        }

    .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;
            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 (max-width:767px),only screen and (min-width:768px) and (max-width:991px) {
    .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: #fff;
    transition: .3s;
    border: none
}

    .tp-slider-arrow-box button:hover {
        background: #fa6444;
        transition: all .4s;
        color: #fff
    }

.tp-slider-bg {
    height: 800px;
    position: relative;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover
}

@media (max-width:767px) {
    .tp-slider-bg {
        min-height: 900px
    }
}

.tp-slider-bg .shape1 {
    left: -100px;
    top: 0;
    transform: scale(2.5)
}

.tp-slider-bg .shape1, .tp-slider-bg .shape2 {
    position: absolute;
    opacity: 0;
    transition: all .4s
}

.tp-slider-bg .shape2 {
    left: 500px;
    bottom: 0;
    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 {
    content: ""
}

.tp-slider-bg:after, .tp-slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.tp-slider-img {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0;
    transform: scale(1);
    transition: transform 7s ease,opacity 1.5s 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,hsla(0,0%,100%,.796));
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px
    }

    .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
    }

        .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;
    margin-bottom: 16px;
    border-radius: 4px;
    background: hsla(0,0%,100%,.2);
    padding: 10px 14px;
    display: inline-block
}

@media (max-width:767px),only screen and (min-width:768px) and (max-width:991px),only screen and (min-width:992px) and (max-width:1199px) {
    .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: 0
    }
}

@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 infinite alternate forwards
}

    .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 (max-width:767px),only screen and (min-width:768px) and (max-width:991px) {
    .tp-slider-shape-1 {
        display: none
    }
}

.tp-slider-shape-5 img {
    opacity: .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(0);
    transition: all 3s ease
}

.tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-shape-2 {
    opacity: 1;
    transform: translatey(0);
    transition: all 4s ease
}

.tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-shape-3 {
    opacity: .4;
    transform: translatey(0);
    transition: all 5s ease
}

.tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-title-box, .tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-video-box {
    opacity: 1;
    transform: translatey(0);
    transition: all 2.5s 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:768px) and (max-width:991px),only screen and (min-width:992px) and (max-width:1199px) {
    .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: .802
}

.tp-slider-2-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0;
    transform: scale(1);
    transition: transform 9s ease,opacity 2s 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(0);
    transition: all 3.5s ease
}

.tp-slider-2-wrapper .swiper-slide.swiper-slide-active .tp-slider-2-icon {
    opacity: 1;
    transform: translateY(0);
    transition: all 4s ease
}

.tp-slider-2-wrapper .swiper-slide.swiper-slide-active .tp-slider-2-btn {
    transform: translateY(0);
    transition: all 3s 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 3s 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
            }

            .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
                }

                .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 3s ease;
    opacity: 1
}

.tp-slider-wrapper .swiper-slide.swiper-slide-active .shape1, .tp-slider-wrapper .swiper-slide.swiper-slide-active .shape2 {
    opacity: 1;
    transition: all .4s;
    transform: scale(1)
}

.comon-body .marquee-wrap.marquee-wrap-inner {
    background: #a7ec4a
}

    .comon-body .marquee-wrap.marquee-wrap-inner .brand-single-box, .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: 0;
    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: 0 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: 60px;
    left: 0;
    height: 200%;
    width: 100%;
    background-image: url(/assets/img/bg/hero2-main-bg2.png);
    z-index: -1;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    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
    }

    .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,#fff);
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 16px;
        padding: 16px 44px;
        border-radius: 144px;
        background-color: var(--ztc-bg-bg-5);
        margin: 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: 50%;
    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: 0;
        padding-top: 160px
    }
}

@media (max-width:767px) {
    .hero7 .main-heading {
        padding-right: 0;
        padding-top: 160px
    }
}

.hero7 .main-heading .span {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    border-radius: 111px;
    background-color: hsla(0,0%,100%,.09);
    padding: 8px 12px;
    margin-bottom: 16px
}

.hero7 .main-heading h1 {
    color: #fff;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 68px
}

@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: hsla(0,0%,100%,.918);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px
}

.hero7 .main-heading .buttons a:first-child {
    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;
    border-radius: 4px;
    background: rgba(77,50,165,.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
}

@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
}

.hero9 {
    background-position: 50%;
    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 0
    }

        .hero9 .main-heading span.span {
            display: inline-block;
            color: #fff;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 18px;
            text-transform: uppercase;
            border-radius: 111px;
            background: hsla(0,0%,100%,.082);
            padding: 9px 12px 6px;
            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
        }

    .hero9 .buttons {
        text-align: center;
        justify-content: center
    }

        .hero9 .buttons, .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;
                margin-left: -20px
            }

    .hero9 .hero9-arrow {
        position: absolute;
        bottom: -90px;
        left: 50%;
        margin-left: -60px;
        z-index: 99
    }

.hero10 {
    background-position: 50%;
    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;
    border-radius: 8px;
    background: hsla(0,0%,100%,.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
}

@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
}

.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: hsla(0,0%,100%,.212);
    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
    }

    .hero10 .hero-box2 .heading h6 {
        color: hsla(0,0%,100%,.9);
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
        padding-top: 16px
    }

    .hero10 .hero-box2 .heading p {
        color: hsla(0,0%,100%,.8);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
        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: 0 4px 0 0
}

@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: 0 4px 0 0
    }
}

.hero10 .hero-box3 .icon {
    height: 50px;
    line-height: 50px;
    width: 50px;
    text-align: center;
    background-color: rgba(36,144,140,.129);
    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
    }

    .hero10 .hero-box3 .heading h6 {
        color: rgba(1,19,19,.659);
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
        padding-top: 16px
    }

    .hero10 .hero-box3 .heading p {
        color: rgba(1,19,19,.659);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
        padding-top: 10px
    }

.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
    }

        .ctn-preloader .animation-preloader .spinner {
            animation: spinner 1s linear infinite;
            border-radius: 50%;
            border: 3px solid hsla(0,0%,100%,.2);
            border-top-color: hsla(0,0%,100%,.843);
            height: 9em;
            margin: 0 auto 3.5em;
            width: 9em
        }

        .ctn-preloader .animation-preloader .txt-loading {
            font: 4em var(--body-color-font);
            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: hsla(0,0%,100%,.788);
                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: .2s
                }

                .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
                    animation-delay: .4s
                }

                .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
                    animation-delay: .6s
                }

                .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
                    animation-delay: .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: hsla(0,0%,100%,.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,#191a1f,#180149 64%)
    }

    .ctn-preloader.ctn-preloader1 .loader-section-right {
        background: linear-gradient(90deg,#180149 40%,#191a1f)
    }

    .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;
        background-color: #9400ff
    }

    .ctn-preloader .loader-section, .ctn-preloader.ctn-preloader10 .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
        }

.loaded .animation-preloader {
    opacity: 0;
    transition: .3s ease-out
}

.loaded .loader-section.section-left {
    transform: translateX(-101%);
    transition: all .7s cubic-bezier(.1,.1,.1,1) .3s
}

.loaded .loader-section.section-right {
    transform: translateX(101%);
    transition: all .7s cubic-bezier(.1,.1,.1,1) .3s
}

@keyframes spinner {
    to {
        transform: rotate(1turn)
    }
}

@keyframes letters-loading {
    0%,75%,to {
        opacity: 0;
        transform: rotateY(-90deg)
    }

    25%,50% {
        opacity: 1;
        transform: rotateY(0deg)
    }
}

@media screen and (max-width:767px) {
    .ctn-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em
    }

    .ctn-preloader .animation-preloader .txt-loading {
        font: 700 3.5em Montserrat,sans-serif;
        color: #fff
    }
}

@media screen and (max-width:500px) {
    .ctn-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em
    }

    .ctn-preloader .animation-preloader .txt-loading {
        font: 700 2em Montserrat,sans-serif
    }
}

.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 .4s;
            transform: scale(1)
        }

        .project .project-slider .single-slider {
            margin: 0 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: 20px 20px 0;
                transition: all .4s
            }

                .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 .4s
                    }

            .project .project-slider .single-slider .learn {
                transition: all .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 .4s
                }

        .project .project-slider .owl-nav button {
            background: var(--ztc-bg-bg-2);
            height: 40px;
            width: 40px;
            border-radius: 50%;
            transition: all .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: 0 30px;
            width: 90%;
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            visibility: hidden;
            transform: scale(0) translateY(40px);
            transition: all .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: hsla(0,0%,100%,.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 .4s;
            background: linear-gradient(187deg,transparent 49.94%,rgba(0,0,0,.8) 72.55%),hsla(0,0%,83%,0) 50%/cover no-repeat
        }

        .project3 .main-image-area:hover .heading-area {
            visibility: visible;
            transform: scale(1) translateY(0);
            transition: all .4s
        }

        .project3 .main-image-area:hover:before {
            opacity: 1;
            transform: translateY(0);
            transition: all .4s
        }

        .project3 .main-image-area.active .heading-area {
            visibility: visible;
            transform: scale(1) translateY(0);
            transition: all .4s
        }

        .project3 .main-image-area.active:before {
            opacity: 1;
            transform: translateY(0);
            transition: all .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 0;
            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 .4s
}

    .project-details-box:hover {
        transition: all .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: 0 10px
        }

            .project6 .project6-slider .single-slider .image img {
                width: 100%
            }

            .project6 .project6-slider .single-slider .hover-area {
                position: absolute;
                bottom: 24px;
                margin: 0 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;
                    background-color: hsla(0,0%,100%,.122);
                    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;
                    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,transparent 4.6%,#000);
    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,.3) 4.6%,#fa6444);
    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;
    list-style-type: none
}

    .project6 .slick-dots li {
        margin: 0 .25rem
    }

    .project6 .slick-dots button {
        display: block;
        width: 12px;
        height: 12px;
        padding: 0;
        border: none;
        border-radius: 100%;
        background-color: hsla(0,80%,70%,.227);
        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
        }

.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 .4s
            }

        .team2 .team-box .image-area .icon-area {
            transition: all .3s ease-in-out;
            position: absolute;
            width: 81%;
            border-radius: 7px;
            margin: -90px 30px 0;
            padding: 16px;
            transition: all .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: 0 5px;
                    transition: all .4s
                }

                    .team2 .team-box .image-area .icon-area ul li a:hover {
                        background-color: var(--ztc-bg-main-bg-4);
                        transition: all .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 hsla(0,0%,100%,.2);
                background: hsla(0,0%,100%,.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 .4s;
        transform: scale(1) translateY(0)
    }

    .team2 .team-box:hover .image-area .image img {
        transform: scale(1.1) rotate(4deg);
        transition: all .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 .4s
            }

        .team3 .team-box .image-area .icon-area {
            transition: all .3s ease-in-out;
            position: absolute;
            width: 81%;
            border-radius: 7px;
            margin: -90px 30px 0;
            padding: 16px;
            transition: all .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: 0 2px;
                    transition: all .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 .4s
                    }

            .team3 .team-box .image-area .icon-area:after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                background: hsla(0,0%,100%,.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 .4s;
        transform: scale(1) translateY(0)
    }

    .team3 .team-box:hover .image-area .image img {
        transform: scale(1.1) rotate(4deg);
        transition: all .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(.8);
                z-index: 1;
                transition: all .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(.6);
            opacity: 0;
            transition: all .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: 0 2px;
                    color: #05092b
                }

                    .team5 .team-box .hover-icons ul li a:hover {
                        background: linear-gradient(90deg,#3b32f6,#49a6ff);
                        color: #fff
                    }

        .team5 .team-box:hover .image:after {
            transform: scale(1);
            opacity: .4;
            transition: all .4s
        }

        .team5 .team-box:hover .hover-icons {
            transform: scale(1) translateY(0);
            opacity: 1;
            transition: all .4s
        }

.team6 .team-box {
    margin-top: 30px;
    transition: all .4s
}

    .team6 .team-box .image {
        border-radius: 4px;
        overflow: hidden;
        position: relative
    }

        .team6 .team-box .image img {
            width: 100%;
            transition: all .4s
        }

        .team6 .team-box .image .hover-area {
            position: absolute;
            right: 20px;
            bottom: 70px;
            z-index: 9;
            transform: translateX(80px);
            transition: all .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 .4s
            }

                .team6 .team-box .image .hover-area ul li a:hover {
                    background: #fa6444;
                    color: #fff;
                    transition: all .4s
                }

    .team6 .team-box .heading-area {
        border-radius: 4px;
        background: var(--Home-Page-3-white-colors,#fff);
        box-shadow: 0 10px 48px 0 rgba(0,0,0,.09);
        padding: 24px;
        margin: -50px 24px 0;
        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;
            transition: all .4s
        }

            .team6 .team-box .heading-area h4 a:hover {
                transition: all .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;
            padding-top: 8px
        }

    .team6 .team-box:hover {
        transform: translateY(-10px);
        transition: all .4s
    }

        .team6 .team-box:hover .hover-area {
            transform: translateX(0);
            transition: all .4s
        }

        .team6 .team-box:hover .image img {
            transition: all .4s;
            transform: scale(1.1) rotate(2deg)
        }

.team7 .team-box {
    margin-top: 30px;
    transition: all .4s
}

    .team7 .team-box .image {
        border-radius: 4px;
        overflow: hidden;
        position: relative
    }

        .team7 .team-box .image img {
            width: 100%;
            transition: all .4s
        }

        .team7 .team-box .image .hover-area {
            position: absolute;
            right: 20px;
            bottom: 70px;
            z-index: 9;
            transform: translateX(80px);
            transition: all .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 .4s
            }

                .team7 .team-box .image .hover-area ul li a:hover {
                    background: #0061ff;
                    color: #fff;
                    transition: all .4s
                }

    .team7 .team-box .heading-area {
        border-radius: 4px;
        background: var(--Home-Page-3-white-colors,#fff);
        box-shadow: 0 10px 48px 0 rgba(0,0,0,.09);
        padding: 24px;
        margin: -50px 24px 0;
        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;
            transition: all .4s
        }

            .team7 .team-box .heading-area h4 a:hover {
                transition: all .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;
            padding-top: 8px
        }

    .team7 .team-box:hover {
        transform: translateY(-10px);
        transition: all .4s
    }

        .team7 .team-box:hover .hover-area {
            transform: translateX(0);
            transition: all .4s
        }

        .team7 .team-box:hover .image img {
            transition: all .4s;
            transform: scale(1.1) rotate(2deg)
        }

.team8 .team-box {
    margin-top: 30px;
    transition: all .4s
}

    .team8 .team-box .image {
        border-radius: 4px;
        overflow: hidden;
        position: relative
    }

        .team8 .team-box .image img {
            width: 100%;
            transition: all .4s
        }

        .team8 .team-box .image .hover-area {
            position: absolute;
            right: 20px;
            bottom: 70px;
            z-index: 9;
            transform: translateX(80px);
            transition: all .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 .4s
            }

                .team8 .team-box .image .hover-area ul li a:hover {
                    background: #4d32a5;
                    color: #fff;
                    transition: all .4s
                }

    .team8 .team-box .heading-area {
        border-radius: 4px;
        background: var(--Home-Page-3-white-colors,#fff);
        box-shadow: 0 10px 48px 0 rgba(0,0,0,.09);
        padding: 24px;
        margin: -50px 24px 0;
        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;
            transition: all .4s
        }

            .team8 .team-box .heading-area h4 a:hover {
                transition: all .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;
            padding-top: 8px
        }

    .team8 .team-box:hover {
        transform: translateY(-10px);
        transition: all .4s
    }

        .team8 .team-box:hover .hover-area {
            transform: translateX(0);
            transition: all .4s
        }

        .team8 .team-box:hover .image img {
            transition: all .4s;
            transform: scale(1.1) rotate(2deg)
        }

.team9 .team-box {
    margin-top: 30px;
    transition: all .4s
}

    .team9 .team-box .image {
        border-radius: 4px;
        overflow: hidden;
        position: relative
    }

        .team9 .team-box .image img {
            width: 100%;
            transition: all .4s
        }

        .team9 .team-box .image .hover-area {
            position: absolute;
            right: 20px;
            bottom: 70px;
            z-index: 9;
            transform: translateX(80px);
            transition: all .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 .4s
            }

                .team9 .team-box .image .hover-area ul li a:hover {
                    background: #a2ea61;
                    color: #180d03;
                    transition: all .4s
                }

    .team9 .team-box .heading-area {
        border-radius: 4px;
        background: var(--Home-Page-3-white-colors,#fff);
        box-shadow: 0 10px 48px 0 rgba(0,0,0,.09);
        padding: 24px;
        margin: -50px 24px 0;
        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;
            transition: all .4s
        }

            .team9 .team-box .heading-area h4 a:hover {
                transition: all .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;
            padding-top: 8px
        }

    .team9 .team-box:hover {
        transform: translateY(-10px);
        transition: all .4s
    }

        .team9 .team-box:hover .hover-area {
            transform: translateX(0);
            transition: all .4s
        }

        .team9 .team-box:hover .image img {
            transition: all .4s;
            transform: scale(1.1) rotate(2deg)
        }

.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
    }
}

@media (max-width:767px) {
    .testimonial .tes1-slider {
        padding: 30px 30px 120px
    }
}

.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 0
}

@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: 0 5px;
    transition: all .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: hsla(0,0%,100%,.122);
        border-radius: 7px;
        border: 1px solid hsla(0,0%,100%,.192);
        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: hsla(0,0%,100%,.796);
    padding: 20px 0
}

.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
    }

.testimonial2.about-page-tes .single-slider {
    background-color: rgba(248,249,250,.843);
    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
    }

    .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: hsla(0,0%,100%,.122);
        border-radius: 7px;
        border: 1px solid hsla(0,0%,100%,.192);
        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;
        color: inherit;
        padding: 0 !important;
        font: inherit;
        height: 16px;
        line-height: 10px;
        width: 16px;
        border: none;
        border-radius: 50%;
        padding: 5px;
        margin: 5px;
        background-color: rgba(161,233,52,.475)
    }

        .testimonial2 .owl-dots button.active {
            background: #a1e934
        }

    .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 .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;
        color: inherit;
        padding: 0 !important;
        font: inherit;
        height: 16px;
        line-height: 10px;
        width: 16px;
        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 .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 .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: hsla(0,0%,100%,.122);
            border-radius: 7px;
            border: 1px solid hsla(0,0%,100%,.192);
            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,.631);
        padding: 20px 0;
        transition: all .4s
    }

    .testimonial-page-all .single-slider:hover {
        transition: all .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 0;
            transition: all .4s
        }

.tes5 .tes5-slider {
    margin-top: 60px;
    cursor: all-scroll
}

    .tes5 .tes5-slider .single-slider {
        background-color: #f5f6f9;
        border-radius: 4px;
        padding: 32px;
        position: relative;
        margin: 0 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;
            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
                }

                .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;
                    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: 0 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: 0 3px
        }

        .tes6 .single-slider p {
            color: var(--Home-Page-3-paragraph,#5b5855);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            padding: 16px 0 24px
        }

        .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
                }

                .tes6 .single-slider .bottom-area .heading .text {
                    padding: 2px 0 0
                }

        .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: hsla(0,0%,100%,.153);
            margin: 0 5px;
            transition: all .4s
        }

            .tes6 .arrows-button button:hover {
                background-color: #fa6444;
                transition: all .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;
        padding: 16px 0
    }

    .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
            }

            .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;
                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 .4s
    }

        .tes7 .tes7-slider-area .arrows-button button:hover {
            background-color: #02000e;
            transition: all .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;
        padding: 16px 0
    }

    .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
            }

            .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;
                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 .4s
    }

        .tes8 .tes7-slider-area .arrows-button button:hover {
            background-color: #02000e;
            transition: all .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: 0 10px
}

    .tes9 .tes9-slider .sginle-slider p {
        color: var(--Text-Color,#181818);
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 28px
    }

    .tes9 .tes9-slider .sginle-slider .border-tes {
        background-color: #e3e4e2;
        height: 1px;
        margin: 24px 0
    }

    .tes9 .tes9-slider .sginle-slider .stars {
        padding: 16px 0 18px
    }

        .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
            }

            .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;
                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 .4s
}

    .tes9 .arrows-button button:hover {
        transition: all .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;
    list-style-type: none
}

    .tes9 .slick-dots li {
        margin: 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 0
}

@media (max-width:767px) {
    .tes10 .tes10-slider {
        margin: 40px 0 0;
        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: 0 2px
    }

.tes10 .tes10-slider .content-area p {
    color: #5f6464;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    padding: 24px 0
}

.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
        }

        .tes10 .tes10-slider .bottom-area .heading p {
            color: rgba(1,19,19,.533);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            padding: 12px 0 0
        }

.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 .4s;
    background-color: #e9f4f4;
    margin-left: 5px
}

    .tes10 .arrows-button button:hover {
        background-color: #24908d;
        color: #fff;
        transition: all .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
    }
}

.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
    }
}

.testimonial4 .single-testimonial h5 {
    padding-top: 30px
}

.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: .6;
    margin-bottom: 0;
    color: hsla(0,0%,100%,.788)
}

@media (max-width:767px) {
    .author p {
        font-size: 14px
    }
}

.testimonial-nav {
    width: 560px;
    margin: 0 auto 0 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 .3s;
    border: none;
    border: 1px solid hsla(0,0%,100%,.745);
    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 .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: .6;
        transition: all .1s
    }

        .single-testimonial-nav.slick-slide.slick-active.slick-center {
            opacity: 1;
            transition: all .1s;
            margin: 0 8px
        }

    .single-testimonial-nav.slick-slide img {
        display: block;
        border-radius: 50%;
        transition: all .1s;
        transform: scale(.8);
        height: 80px;
        width: 80px !important;
        width: auto
    }

    .single-testimonial-nav.slick-slide.slick-center img {
        transition: all .1s;
        transform: scale(1);
        padding: 8px;
        border: 1px solid hsla(0,0%,100%,.603);
        border-radius: 50%
    }

.testimonial-2 .testimonial-arrows .slick-arrow button:hover {
    transition: all .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 hsla(33,80%,80%,.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,.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;
    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: #fff !important;
    border-radius: 50px;
    font-size: 16px !important;
    display: block;
    margin: 10px 0;
    transition: all .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;
        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 .3s
}

@media (max-width:767px) {
    .contact-3 {
        overflow-x: hidden
    }
}

.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 .4s
    }

    .work .single-items:hover .icon {
        background-color: var(--ztc-bg-main-bg-1);
        transition: all .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 .4s
}

    .work2 .work2-box .image {
        border-radius: 7px;
        overflow: hidden
    }

        .work2 .work2-box .image img, .work2 .work2-box:after {
            width: 100%;
            transition: all .4s
        }

    .work2 .work2-box:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        background-color: var(--ztc-bg-bg-4);
        border: 1px solid var(--ztc-bg-bg-5);
        z-index: -111;
        border-radius: 7px
    }

    .work2 .work2-box:hover .image img {
        transition: all .4s;
        transform: scale(1.1) rotate(2deg)
    }

    .work2 .work2-box:hover:after {
        border: 1px solid var(--ztc-bg-main-bg-4);
        transition: all .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 .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 .4s
    }

    .work3 .work3-box h3 a {
        padding: 16px 0
    }

    .work3 .work3-box:hover {
        transform: translateY(-10px)
    }

        .work3 .work3-box:hover:after {
            opacity: 1;
            transition: all .4s
        }

        .work3 .work3-box:hover .heading3 h3 a, .work3 .work3-box:hover .heading3 p {
            color: #fff;
            transition: all .4s
        }

        .work3 .work3-box:hover span.stap {
            background-color: var(--ztc-bg-color-w);
            color: var(--ztc-bg-main-bg-3);
            transition: all .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 .4s;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50%;
        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 .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 .4s
    }

    .work4 .work4-box:hover {
        background-color: var(--ztc-bg-color-w);
        border: 1px solid var(--ztc-bg-color-w);
        transition: all .4s;
        box-shadow: 0 20px 30px rgba(0,0,0,.068);
        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 .4s
        }

    .work4 .work4-box.active {
        background-color: var(--ztc-bg-color-w);
        border: 1px solid var(--ztc-bg-color-w);
        transition: all .4s;
        box-shadow: 0 20px 30px rgba(0,0,0,.068);
        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 .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 .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 .4s
    }

    .about-work .work4-box:hover {
        transition: all .4s;
        box-shadow: 0 20px 30px rgba(0,0,0,.068);
        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 .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 0 16px
    }

    .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;
        transition: all .4s
    }

        .work5 .work-box .learn span {
            display: inline-block;
            transform: rotate(-45deg)
        }

    .work5 .work-box:after {
        background: #f5f6f9;
        z-index: -2
    }

    .work5 .work-box:after, .work5 .work-box:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        border-radius: 4px
    }

    .work5 .work-box:before {
        background: linear-gradient(90deg,#3b32f6,#49a6ff);
        z-index: -1;
        transform: rotateY(80deg);
        opacity: 0;
        transition: all .4s
    }

    .work5 .work-box .number {
        -webkit-text-stroke-width: 2;
        -webkit-text-stroke-color: var(--Home-Page-4-Text-colors,#05092b);
        font-family: var(--body-color-font);
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
        position: absolute;
        bottom: 10px;
        right: 15px;
        transition: all .4s
    }

    .work5 .work-box:hover {
        transition: all .4s
    }

        .work5 .work-box:hover:before {
            transform: rotateY(0deg);
            opacity: 1;
            transition: all .4s
        }

        .work5 .work-box:hover h4 a {
            transition: all .4s;
            color: #fff
        }

        .work5 .work-box:hover p {
            color: hsla(0,0%,100%,.796);
            transition: all .4s
        }

        .work5 .work-box:hover .learn, .work5 .work-box:hover .number {
            transition: all .4s;
            color: #fff
        }

.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 .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
        }

        .works9 .work-box .heading-area p {
            color: var(--Paragraph-Color,#646375);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 26px;
            padding-top: 16px
        }

    .works9 .work-box:hover .heading-area {
        transform: translateY(-10px);
        transition: all .4s;
        background-color: #a2ea61
    }

.case9 {
    position: relative
}

    .case9 .case9-slider {
        margin-top: 60px
    }

        .case9 .case9-slider .single-slider {
            position: relative;
            margin: 0 10px
        }

            .case9 .case9-slider .single-slider .image {
                border-radius: 8px;
                overflow: hidden
            }

                .case9 .case9-slider .single-slider .image img {
                    width: 100%;
                    transition: all .4s
                }

            .case9 .case9-slider .single-slider .heading-area {
                position: absolute;
                bottom: 30px;
                margin: 0 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;
                    text-transform: uppercase
                }

                .case9 .case9-slider .single-slider .heading-area h5 a {
                    display: inline-block;
                    color: var(--Text-Color,hsla(0,0%,9%,.878));
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: 20px;
                    padding-top: 16px;
                    transition: all .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 .4s
            }

                .case9 .case9-slider .single-slider:hover .image img {
                    transition: all .4s;
                    transform: scale(1.1) rotate(2deg)
                }

                .case9 .case9-slider .single-slider:hover .heading-area h5 a {
                    color: #a2ea61;
                    transition: all .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 .4s;
            margin-right: 10px
        }

            .case9 .arrows-button button:hover {
                background-color: #a2ea61;
                transition: all .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 .4s
        }

    .case10 .case-box .hover-area {
        position: absolute;
        margin: 0 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;
            transform: translateY(100px);
            transition: all .4s;
            position: relative;
            z-index: 2
        }

        .case10 .case-box .hover-area p {
            color: hsla(0,0%,100%,.8);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            padding: 16px 0;
            transform: translateY(140px);
            transition: all .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;
            transform: translateY(100px);
            transition: all .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 .4s;
            z-index: 0
        }

    .case10 .case-box:hover {
        transition: all .4s
    }

        .case10 .case-box:hover .image img {
            transition: all .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;
            transform: translateY(0);
            transition: all .4s
        }

        .case10 .case-box:hover .hover-area p {
            color: hsla(0,0%,100%,.8);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            padding: 16px 0;
            transform: translateY(0);
            transition: all .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;
            transform: translateY(0);
            transition: all .4s
        }

        .case10 .case-box:hover .hover-area:after {
            height: 180px;
            transition: all .4s;
            border-radius: 8px
        }

.blog .blog-box {
    margin-top: 30px;
    border: 1px solid #eeeff1;
    border-radius: 7px
}

    .blog .blog-box .image {
        overflow: hidden;
        border-radius: 7px 7px 0 0
    }

        .blog .blog-box .image img {
            width: 100%;
            border-radius: 7px 7px 0 0;
            transition: all .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: 0 16px 0 0
        }

            .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 0;
            transition: all .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 .4s
        }

            .blog .blog-box .heading .learn span {
                display: inline-block;
                margin-left: 2px;
                transition: all .4s
            }

    .blog .blog-box:hover .image img {
        transition: all .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 .4s
    }

        .blog .blog-box:hover .learn span {
            display: inline-block;
            margin-left: 2px;
            transition: all .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(/assets/img/bg/bottom-shape2.png);
        background-position: 50%;
        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 .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 0;
        position: relative;
        z-index: 2;
        transition: all .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 .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 .4s
            }

    .blog .blog2-box:hover .image img {
        transform: scale(1.1) rotate(4deg);
        transition: all .4s
    }

    .blog .blog2-box:hover .heading2 {
        transform: translateY(-20px);
        transition: all .4s;
        border: 1px solid var(--ztc-bg-main-bg-4)
    }

.blog.blog-page .heading1 {
    border: 1px solid hsla(0,0%,100%,.1);
    background: var(--White,#fff);
    box-shadow: 0 4px 50px 0 rgba(0,0,0,.08);
    padding: 20px;
    border-radius: 7px;
    margin: -70px 30px 0;
    position: relative;
    z-index: 2;
    transition: all .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 .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 .4s
        }

.blog.blog-sidebar-page .heading1 {
    margin: -70px 0 0;
    border-radius: 0 0 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 .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 .4s
    }

        .blog3 .blog3-box .heading3 a.learn:hover {
            color: var(--ztc-bg-main-bg-3);
            transition: all .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 .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 .4s
        }

    .blog4 .blog4-box .heading4 {
        border-radius: 7px;
        padding: 20px;
        background-color: var(--ztc-bg-color-w);
        box-shadow: 0 20px 30px rgba(0,0,0,.068);
        margin: -130px 30px 0;
        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 .4s
        }

            .blog4 .blog4-box .heading4 a.learn:hover {
                color: var(--ztc-bg-main-bg-2);
                transition: all .4s
            }

            .blog4 .blog4-box .heading4 a.learn span {
                display: inline-block;
                transform: rotate(-45deg)
            }

    .blog4 .blog4-box:hover .image img {
        transition: all .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, .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 .4s
        }

            .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs .heading h5 a:hover {
                color: var(--ztc-bg-main-bg-1);
                transition: all .4s
            }

    .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs:last-child {
        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 .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 .4s
        }

            .details-post-area .comment-box .box-top-area .reply-btn a:hover {
                color: var(--ztc-bg-main-bg-1);
                transition: all .4s
            }

    .details-post-area .comment-box:hover {
        transform: translateY(-5px);
        transition: all .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 .4s
    }

        .tags-links .tags ul li.tag-text a:hover {
            background-color: var(--ztc-bg-main-bg-1);
            transition: all .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: 0 3px
    }

        .tags-links .social ul li a:hover {
            background-color: var(--ztc-bg-main-bg-1);
            transition: all .4s;
            color: var(--ztc-bg-color-w)
        }

.blog-details-border {
    background-color: rgba(76,77,108,.255);
    width: 100%;
    height: 1px;
    margin: 50px 0
}

.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::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, .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 .4s
        }

            .comon-body .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs .heading h5 a:hover {
                color: var(--ztc-bg-main-bg-4);
                transition: all .4s
            }

    .comon-body .sidebar-box-area .sidebar-blog-boxs .sidebar-blogs:last-child {
        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 .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 .4s
        }

            .comon-body .details-post-area .comment-box .box-top-area .reply-btn a:hover {
                color: var(--ztc-bg-main-bg-4);
                transition: all .4s
            }

    .comon-body .details-post-area .comment-box:hover {
        transform: translateY(-5px);
        transition: all .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 .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 .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: 0 3px
    }

        .comon-body .tags-links .social ul li a:hover {
            background-color: var(--ztc-bg-main-bg-4);
            transition: all .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::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: hsla(0,0%,100%,.714);
            font-weight: var(--f-fw-regular)
        }

.blog5, .blog5 .blog-box {
    position: relative
}

    .blog5 .blog-box {
        margin-top: 30px
    }

        .blog5 .blog-box .heading-area {
            border-radius: 4px 4px 0 0;
            background: var(--Home-Page-4-Gray-Colors,#f5f6f9);
            -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
            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;
                transition: all .4s;
                padding: 16px 0 20px
            }

                .blog5 .blog-box .heading-area h4 a:hover {
                    color: #fa7d3c;
                    transition: all .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;
                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;
                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;
                display: inline-block;
                transition: all .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 .4s
                }

        .blog5 .blog-box .image-area {
            border-radius: 0 0 4px 4px;
            overflow: hidden
        }

            .blog5 .blog-box .image-area img {
                width: 100%;
                transition: all .4s
            }

            .blog5 .blog-box .image-area .circle-learn {
                display: inline-block;
                background: linear-gradient(90deg,#fb3f52,#fa7d3c);
                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 .4s
        }

.blog6 .blog-box {
    margin-top: 40px;
    transition: all .4s
}

    .blog6 .blog-box .tags-area {
        padding: 16px 0
    }

        .blog6 .blog-box .tags-area a {
            display: inline-block;
            border-radius: 50px;
            background: rgba(250,100,68,.1);
            padding: 8px 10px 6px;
            border-radius: 111px;
            color: var(--Home-Page-3-text-Colors,#180d03);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            margin-right: 6px
        }

            .blog6 .blog-box .tags-area a img {
                transform: translateY(-2px)
            }

    .blog6 .blog-box .image {
        border-radius: 4px 4px 0 0;
        overflow: hidden
    }

        .blog6 .blog-box .image img {
            width: 100%;
            transition: all .4s
        }

    .blog6 .blog-box .heading6 p {
        padding: 12px 0 20px
    }

    .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;
        transition: all .4s
    }

        .blog6 .blog-box .heading6 .learn span {
            display: inline-block;
            transform: rotate(-45deg)
        }

        .blog6 .blog-box .heading6 .learn:hover {
            transition: all .4s;
            color: #fa6444
        }

    .blog6 .blog-box:hover {
        transition: all .4s;
        transform: translateY(-10px)
    }

        .blog6 .blog-box:hover .image img {
            transform: scale(1.1) rotate(2deg);
            transition: all .4s
        }

.blog7 .blog-box {
    margin-top: 40px;
    transition: all .4s
}

    .blog7 .blog-box .tags-area {
        padding: 16px 0
    }

        .blog7 .blog-box .tags-area a {
            display: inline-block;
            border-radius: 50px;
            background: #e5efff;
            padding: 8px 10px 6px;
            border-radius: 111px;
            color: var(--Home-Page-3-text-Colors,#180d03);
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;
            margin-right: 6px
        }

            .blog7 .blog-box .tags-area a img {
                transform: translateY(-2px)
            }

    .blog7 .blog-box .image {
        border-radius: 4px 4px 0 0;
        overflow: hidden
    }

        .blog7 .blog-box .image img {
            width: 100%;
            transition: all .4s
        }

    .blog7 .blog-box .heading7 p {
        padding: 12px 0 20px
    }

    .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;
        transition: all .4s
    }

        .blog7 .blog-box .heading7 .learn span {
            display: inline-block;
            transform: rotate(-45deg)
        }

        .blog7 .blog-box .heading7 .learn:hover {
            transition: all .4s;
            color: #0061ff
        }

    .blog7 .blog-box:hover {
        transition: all .4s;
        transform: translateY(-10px)
    }

        .blog7 .blog-box:hover .image img {
            transform: scale(1.1) rotate(2deg);
            transition: all .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;
    text-transform: uppercase
}

    .blog9 .blog-box .heading9 .date img {
        transform: translateY(-3px);
        margin-right: 2px;
        opacity: .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;
    transition: all .4s;
    margin: 14px 0
}

    .blog9 .blog-box .heading9 h4 a:hover {
        transition: all .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;
    text-transform: uppercase;
    transition: all .4s
}

    .blog9 .blog-box .heading9 .learn:hover {
        color: #325d28;
        transition: all .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 .4s
        }

    .blog10 .blog4-box .heading4 {
        border-radius: 7px;
        padding: 20px;
        background-color: var(--ztc-bg-color-w);
        box-shadow: 0 20px 30px rgba(0,0,0,.068);
        margin: -130px 30px 0;
        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 .4s
        }

            .blog10 .blog4-box .heading4 a.learn:hover {
                color: #24908d;
                transition: all .4s
            }

            .blog10 .blog4-box .heading4 a.learn span {
                display: inline-block;
                transform: rotate(-45deg)
            }

    .blog10 .blog4-box:hover .image img {
        transition: all .4s;
        transform: scale(1.1) rotate(2deg)
    }

.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 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) {
    .footer1 .single-footer-items h3 {
        margin-bottom: 16px;
        margin-top: 30px
    }
}

@media (max-width:767px) {
    .footer1 .single-footer-items h3 {
        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: 0 2px;
            transition: all .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 .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 0;
    transition: all .4s
}

    .footer1 .single-footer-items .menu-list li a:hover {
        color: var(--ztc-bg-main-bg-3);
        transform: translateX(5px);
        transition: all .4s
    }

.footer1 .single-footer-items .contact-box {
    display: flex;
    align-items: center;
    padding: 10px 0
}

    .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 .4s
    }

        .footer1 .single-footer-items .contact-box .pera a:hover {
            color: var(--ztc-bg-main-bg-1);
            transition: all .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
}

    .footer1 .copyright-area .coppyright.right-area a:first-child {
        position: relative
    }

@media (max-width:767px) {
    .footer1 .copyright-area .coppyright.right-area a:first-child {
        padding: 20px 20px 20px 0
    }
}

.footer1 .copyright-area .coppyright.right-area a:first-child: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: hsla(0,0%,100%,.145);
            height: 32px;
            width: 32px;
            text-align: center;
            line-height: 32px;
            border-radius: 50%;
            margin: 0 2px;
            transition: all .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 .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 0;
    transition: all .4s
}

    .footer2 .single-footer-items .menu-list li a:hover {
        color: var(--ztc-bg-main-bg-4);
        transform: translateX(5px);
        transition: all .4s
    }

.footer2 .single-footer-items .contact-box {
    display: flex;
    align-items: center;
    padding: 10px 0
}

    .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 .4s
    }

        .footer2 .single-footer-items .contact-box .pera a:hover {
            color: var(--ztc-bg-main-bg-4);
            transition: all .4s
        }

.footer2 .copyright-area {
    background: #191a1f;
    background: linear-gradient(90deg,#191a1f,#261944 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
}

    .footer2 .copyright-area .coppyright.right-area a:first-child {
        position: relative
    }

@media (max-width:767px) {
    .footer2 .copyright-area .coppyright.right-area a:first-child {
        padding: 20px 20px 20px 0
    }
}

.footer2 .copyright-area .coppyright.right-area a:first-child: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: hsla(0,0%,100%,.145);
            height: 32px;
            width: 32px;
            text-align: center;
            line-height: 32px;
            border-radius: 50%;
            margin: 0 2px;
            transition: all .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 .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 0;
    transition: all .4s
}

    .footer3 .single-footer-items .menu-list li a:hover {
        color: var(--ztc-bg-main-bg-3);
        transform: translateX(5px);
        transition: all .4s
    }

.footer3 .single-footer-items .contact-box {
    display: flex;
    align-items: center;
    padding: 10px 0
}

    .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 .4s
    }

        .footer3 .single-footer-items .contact-box .pera a:hover {
            color: var(--ztc-bg-main-bg-3);
            transition: all .4s
        }

.footer3 .copyright-area {
    background: #252830;
    background: linear-gradient(90deg,#252830,#273d93 48%,#25272d)
}

    .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
}

    .footer3 .copyright-area .coppyright.right-area a:first-child {
        position: relative
    }

@media (max-width:767px) {
    .footer3 .copyright-area .coppyright.right-area a:first-child {
        padding: 20px 20px 20px 0
    }
}

.footer3 .copyright-area .coppyright.right-area a:first-child: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: 0 2px;
            transition: all .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 .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 0;
    transition: all .4s
}

    .footer4 .single-footer-items .menu-list li a:hover {
        color: var(--ztc-bg-main-bg-2);
        transform: translateX(5px);
        transition: all .4s
    }

.footer4 .single-footer-items .contact-box {
    display: flex;
    align-items: center;
    padding: 10px 0
}

    .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 .4s
    }

        .footer4 .single-footer-items .contact-box .pera a:hover {
            color: var(--ztc-bg-main-bg-2);
            transition: all .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
}

    .footer4 .copyright-area .coppyright.right-area a:first-child {
        position: relative
    }

@media (max-width:767px) {
    .footer4 .copyright-area .coppyright.right-area a:first-child {
        padding: 20px 20px 20px 0
    }
}

.footer4 .copyright-area .coppyright.right-area a:first-child: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: 0 2px;
            transition: all .4s
        }

            .footer5 .single-footer-items .social-icon li a:hover {
                color: var(--ztc-bg-color-w);
                background-color: #fa6444;
                transition: all .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 0;
    transition: all .4s
}

    .footer5 .single-footer-items .menu-list li a:hover {
        color: #fa6444;
        transform: translateX(5px);
        transition: all .4s
    }

.footer5 .single-footer-items .contact-box {
    display: flex;
    align-items: center;
    padding: 10px 0
}

    .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 .4s
    }

        .footer5 .single-footer-items .contact-box .pera a:hover {
            color: #fa6444;
            transition: all .4s
        }

.footer5 .copyright-area {
    border-top: 1px solid #e8eaed;
    padding: 16px 0
}

    .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
}

    .footer5 .copyright-area .coppyright.right-area a:first-child {
        position: relative
    }

@media (max-width:767px) {
    .footer5 .copyright-area .coppyright.right-area a:first-child {
        padding: 20px 20px 20px 0
    }
}

.footer5 .copyright-area .coppyright.right-area a:first-child: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: 0 2px;
            transition: all .4s
        }

            .footer7 .single-footer-items .social-icon li a:hover {
                color: var(--ztc-bg-color-w);
                background-color: #0061ff;
                transition: all .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 0;
    transition: all .4s
}

    .footer7 .single-footer-items .menu-list li a:hover {
        color: #0061ff;
        transform: translateX(5px);
        transition: all .4s
    }

.footer7 .single-footer-items .contact-box {
    display: flex;
    align-items: center;
    padding: 10px 0
}

    .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 .4s
    }

        .footer7 .single-footer-items .contact-box .pera a:hover {
            color: #0061ff;
            transition: all .4s
        }

.footer7 .copyright-area {
    border-top: 1px solid #e8eaed;
    padding: 16px 0
}

    .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
}

    .footer7 .copyright-area .coppyright.right-area a:first-child {
        position: relative
    }

@media (max-width:767px) {
    .footer7 .copyright-area .coppyright.right-area a:first-child {
        padding: 20px 20px 20px 0
    }
}

.footer7 .copyright-area .coppyright.right-area a:first-child: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: 0 2px;
            transition: all .4s
        }

            .footer8 .single-footer-items .social-icon li a:hover {
                color: var(--ztc-bg-color-w);
                background-color: #4d32a5;
                transition: all .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 0;
    transition: all .4s
}

    .footer8 .single-footer-items .menu-list li a:hover {
        color: #4d32a5;
        transform: translateX(5px);
        transition: all .4s
    }

.footer8 .single-footer-items .contact-box {
    display: flex;
    align-items: center;
    padding: 10px 0
}

    .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 .4s
    }

        .footer8 .single-footer-items .contact-box .pera a:hover {
            color: #4d32a5;
            transition: all .4s
        }

.footer8 .copyright-area {
    border-top: 1px solid #e8eaed;
    padding: 16px 0
}

    .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
}

    .footer8 .copyright-area .coppyright.right-area a:first-child {
        position: relative
    }

@media (max-width:767px) {
    .footer8 .copyright-area .coppyright.right-area a:first-child {
        padding: 20px 20px 20px 0
    }
}

.footer8 .copyright-area .coppyright.right-area a:first-child: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: 0 2px;
            transition: all .4s
        }

            .footer9 .single-footer-items .social-icon li a:hover {
                color: var(--ztc-bg-color-w);
                background-color: #325d28;
                transition: all .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 0;
    transition: all .4s
}

    .footer9 .single-footer-items .menu-list li a:hover {
        color: #325d28;
        transform: translateX(5px);
        transition: all .4s
    }

.footer9 .single-footer-items .contact-box {
    display: flex;
    align-items: center;
    padding: 10px 0
}

    .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 .4s
    }

        .footer9 .single-footer-items .contact-box .pera a:hover {
            color: #325d28;
            transition: all .4s
        }

.footer9 .copyright-area {
    border-top: 1px solid #e8eaed;
    padding: 16px 0
}

    .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
}

    .footer9 .copyright-area .coppyright.right-area a:first-child {
        position: relative
    }

@media (max-width:767px) {
    .footer9 .copyright-area .coppyright.right-area a:first-child {
        padding: 20px 20px 20px 0
    }
}

.footer9 .copyright-area .coppyright.right-area a:first-child: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,.137);
            height: 32px;
            width: 32px;
            text-align: center;
            line-height: 32px;
            border-radius: 50%;
            margin: 0 2px;
            transition: all .4s
        }

            .footer10 .single-footer-items .social-icon li a:hover {
                color: var(--ztc-bg-color-w);
                background-color: #24908d;
                transition: all .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 0;
    transition: all .4s
}

    .footer10 .single-footer-items .menu-list li a:hover {
        color: #24908d;
        transform: translateX(5px);
        transition: all .4s
    }

.footer10 .single-footer-items .contact-box {
    display: flex;
    align-items: center;
    padding: 10px 0
}

    .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 .4s
    }

        .footer10 .single-footer-items .contact-box .pera a:hover {
            color: #24908d;
            transition: all .4s
        }

.footer10 .copyright-area {
    border-top: 1px solid #e8eaed;
    padding: 16px 0
}

    .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
}

    .footer10 .copyright-area .coppyright.right-area a:first-child {
        position: relative
    }

@media (max-width:767px) {
    .footer10 .copyright-area .coppyright.right-area a:first-child {
        padding: 20px 20px 20px 0
    }
}

.footer10 .copyright-area .coppyright.right-area a:first-child:after {
    content: "";
    position: absolute;
    top: 24px;
    right: 0;
    width: 2px;
    height: 20px;
    background-color: #e8eaed
}

.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_right_one .header1-buttons {
    display: flex;
    align-items: center
}

    .header_right_one .header1-buttons .contact-btn {
        display: flex;
        align-items: center;
        margin-right: 24px
    }

        .header_right_one .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_right_one .header1-buttons .contact-btn .headding p {
            font-size: 12px;
            line-height: 12px;
            color: var(--ztc-text-pera-text-1)
        }

        .header_right_one .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 {
    padding: 12px 0;
    position: absolute;
    background: transparent;
    width: 100%;
    z-index: 99
}

.site-logo {
    max-width: 130px;
    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;
    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: 0 20px 30px rgba(0,0,0,.2);
    position: absolute;
    background: var(--ztc-bg-color-w);
    top: 201.3%;
    transform: scaleY(0);
    z-index: 0;
    transition: all .4s;
    border-radius: 5px;
    padding: 20px;
    left: -255px;
    width: 1300px;
    max-height: 600px;
    overflow-x: hidden;
    overflow-y: scroll;
    transform-origin: top;
    display: block
}

.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 .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 .4s;
            visibility: visible;
            opacity: .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 .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 .4s;
                background: #000026;
                opacity: 0;
                border-radius: 4px;
                transform: scale(.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 .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 .4s !important;
            visibility: visible !important;
            opacity: .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 .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 .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 .4s
                }

                .header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
                    color: #fff;
                    transition: all .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 .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;
            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 .4s
            }

    .header-area.header-area1 .main-menu-ex ul li ul {
        position: absolute;
        left: 0;
        top: 50px;
        border-radius: 4px;
        width: 220px;
        box-shadow: 0 20px 30px rgba(0,0,0,.2);
        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 .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 .3s
    }

    .header-area.header-area1 .main-menu-ex ul li:hover .tp-submenu {
        visibility: visible;
        transition: all .5s ease-in-out;
        opacity: 1;
        z-index: 9;
        top: 150.3%;
        position: absolute;
        transition: all .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: 0 20px 30px rgba(0,0,0,.2);
        position: absolute;
        background: var(--ztc-bg-color-w);
        top: 201.3%;
        transform: scaleY(0);
        z-index: 0;
        transition: all .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 .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 .4s;
                visibility: visible;
                opacity: .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 .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 .4s;
                    background: #000026;
                    opacity: 0;
                    border-radius: 4px;
                    transform: scale(.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 .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 .4s !important;
                visibility: visible !important;
                opacity: .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 .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 .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 .4s
                    }

                    .header-area.header-area8 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
                        color: #fff;
                        transition: all .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 .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;
                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 .4s
                }

    .header-area.header-area8 .main-menu-ex ul li ul {
        position: absolute;
        left: 0;
        top: 50px;
        border-radius: 4px;
        width: 220px;
        box-shadow: 0 20px 30px rgba(0,0,0,.2);
        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 .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 .3s
    }

    .header-area.header-area8 .main-menu-ex ul li:hover .tp-submenu {
        visibility: visible;
        transition: all .5s ease-in-out;
        opacity: 1;
        z-index: 9;
        top: 150.3%;
        position: absolute;
        transition: all .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: 0 20px 30px rgba(0,0,0,.2);
        position: absolute;
        background: #fff;
        top: 201.3%;
        transform: scaleY(0);
        z-index: 0;
        transition: all .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,.11)
    }

        .header-area.header-area2 .main-menu-ex ul li .mega-menu-all ul {
            box-shadow: none !important;
            padding: 0 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: hsla(0,0%,57%,.212)
                }

            .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: hsla(0,0%,57%,.212)
            }

            .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 .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 .4s;
            visibility: visible;
            opacity: .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 .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 .4s;
                background: #000026;
                opacity: 0;
                border-radius: 4px;
                transform: scale(.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 .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 .4s !important;
            visibility: visible !important;
            opacity: .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 .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 .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 .4s
                }

                .header-area.header-area2 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
                    color: #000;
                    transition: all .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 .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;
            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 .4s
            }

    .header-area.header-area2 .main-menu-ex ul li ul {
        width: 200px;
        box-shadow: 0 20px 30px rgba(0,0,0,.2)
    }

        .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:hover .tp-submenu {
        visibility: visible;
        transition: all .5s ease-in-out;
        opacity: 1;
        z-index: 9;
        top: 150.3%;
        overflow-x: hidden;
        overflow-y: scroll;
        position: absolute;
        transition: all .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: 0 20px 30px rgba(0,0,0,.2);
        position: absolute;
        background: var(--ztc-bg-color-w);
        top: 201.3%;
        transform: scaleY(0);
        z-index: 0;
        transition: all .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: 0 20px 30px rgba(0,0,0,.2);
        position: absolute;
        background: #fff;
        top: 201.3%;
        transform: scaleY(0);
        z-index: 0;
        transition: all .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,.11)
    }

        .header-area.header-area3 .main-menu-ex ul li .mega-menu-all ul {
            box-shadow: none !important;
            padding: 0 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: hsla(0,0%,57%,.212)
                }

            .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: hsla(0,0%,57%,.212)
            }

            .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 .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 .4s;
                visibility: visible;
                opacity: .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 .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 .4s;
                    background: #000026;
                    opacity: 0;
                    border-radius: 4px;
                    transform: scale(.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 .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 .4s !important;
                visibility: visible !important;
                opacity: .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 .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 .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 .4s
                    }

                    .header-area.header-area3 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
                        color: #fff;
                        transition: all .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 .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;
                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 .4s
                }

    .header-area.header-area3 .main-menu-ex ul li ul {
        position: absolute;
        left: 0;
        top: 50px;
        border-radius: 4px;
        width: 200px;
        box-shadow: 0 20px 30px rgba(0,0,0,.2);
        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 .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 .3s
    }

    .header-area.header-area3 .main-menu-ex ul li:hover .tp-submenu {
        visibility: visible;
        transition: all .5s ease-in-out;
        opacity: 1;
        z-index: 9;
        top: 150.3%;
        position: absolute;
        transition: all .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 .main-menu-ex ul li .mega-menu-all {
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 20px 30px rgba(0,0,0,.2);
    position: absolute;
    background: #fff;
    top: 201.3%;
    transform: scaleY(0);
    z-index: 0;
    transition: all .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,.11)
}

    .header-area.header-area4 .main-menu-ex ul li .mega-menu-all ul {
        box-shadow: none !important;
        padding: 0 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: hsla(0,0%,57%,.212)
            }

        .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: hsla(0,0%,57%,.212)
        }

        .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 .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 .4s;
            visibility: visible;
            opacity: .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 .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 .4s;
                background: #000026;
                opacity: 0;
                border-radius: 4px;
                transform: scale(.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 .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 .4s !important;
            visibility: visible !important;
            opacity: .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 .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 .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 .4s
                }

                .header-area.header-area4 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
                    color: #fff;
                    transition: all .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 .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;
            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 .4s
            }

.header-area.header-area4 .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    width: 200px;
    box-shadow: 0 20px 30px rgba(0,0,0,.2);
    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 .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 .3s
}

.header-area.header-area4 .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all .5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all .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: 0 20px 30px rgba(0,0,0,.2);
    position: absolute;
    background: #fff;
    top: 201.3%;
    transform: scaleY(0);
    z-index: 0;
    transition: all .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,.11)
}

    .header-area.header-area5 .main-menu-ex ul li .mega-menu-all ul {
        box-shadow: none !important;
        padding: 0 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: hsla(0,0%,57%,.212)
            }

        .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: hsla(0,0%,57%,.212)
        }

        .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 .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 .4s;
            visibility: visible;
            opacity: .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 .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 .4s;
                background: #000026;
                opacity: 0;
                border-radius: 4px;
                transform: scale(.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 .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 .4s !important;
            visibility: visible !important;
            opacity: .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 .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 .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 .4s
                }

                .header-area.header-area5 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
                    color: #fff;
                    transition: all .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 .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;
            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 .4s
            }

.header-area.header-area5 .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    width: 200px;
    box-shadow: 0 20px 30px rgba(0,0,0,.2);
    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 .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 .3s
}

.header-area.header-area5 .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all .5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all .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: 0 20px 30px rgba(0,0,0,.2);
    position: absolute;
    background: #fff;
    top: 201.3%;
    transform: scaleY(0);
    z-index: 0;
    transition: all .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,.11)
}

    .header-area.header-area10 .main-menu-ex ul li .mega-menu-all ul {
        box-shadow: none !important;
        padding: 0 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: hsla(0,0%,57%,.212)
            }

        .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: hsla(0,0%,57%,.212)
        }

        .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 .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 .4s;
            visibility: visible;
            opacity: .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 .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 .4s;
                background: #000026;
                opacity: 0;
                border-radius: 4px;
                transform: scale(.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 .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 .4s !important;
            visibility: visible !important;
            opacity: .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 .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 .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 .4s
                }

                .header-area.header-area10 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
                    color: #fff;
                    transition: all .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 .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;
            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 .4s
            }

.header-area.header-area10 .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    width: 200px;
    box-shadow: 0 20px 30px rgba(0,0,0,.2);
    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 .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 .3s
}

.header-area.header-area10 .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all .5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all .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: 0 20px 30px rgba(0,0,0,.2);
    position: absolute;
    background: #fff;
    top: 201.3%;
    transform: scaleY(0);
    z-index: 0;
    transition: all .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,.11)
}

    .header-area.header-area9 .main-menu-ex ul li .mega-menu-all ul {
        box-shadow: none !important;
        padding: 0 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: hsla(0,0%,57%,.212)
            }

        .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: hsla(0,0%,57%,.212)
        }

        .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 .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 .4s;
            visibility: visible;
            opacity: .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 .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 .4s;
                background: #000026;
                opacity: 0;
                border-radius: 4px;
                transform: scale(.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 .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 .4s !important;
            visibility: visible !important;
            opacity: .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 .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: #000;
                padding: 16px;
                transition: all .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 .4s
                }

                .header-area.header-area9 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
                    color: #000;
                    transition: all .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 .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;
            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 .4s
            }

.header-area.header-area9 .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    width: 200px;
    box-shadow: 0 20px 30px rgba(0,0,0,.2);
    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 .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 .3s
}

.header-area.header-area9 .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all .5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all .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: 0 20px 30px rgba(0,0,0,.2);
    position: absolute;
    background: #fff;
    top: 201.3%;
    transform: scaleY(0);
    z-index: 0;
    transition: all .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,.11)
}

    .header-area.header-area6 .main-menu-ex ul li .mega-menu-all ul {
        box-shadow: none !important;
        padding: 0 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: hsla(0,0%,57%,.212)
            }

        .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: hsla(0,0%,57%,.212)
        }

        .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 .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 .4s;
            visibility: visible;
            opacity: .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 .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 .4s;
                background: #000026;
                opacity: 0;
                border-radius: 4px;
                transform: scale(.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 .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 .4s !important;
            visibility: visible !important;
            opacity: .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 .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 .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 .4s
                }

                .header-area.header-area6 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
                    color: #fff;
                    transition: all .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 .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;
            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 .4s
            }

.header-area.header-area6 .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    width: 200px;
    box-shadow: 0 20px 30px rgba(0,0,0,.2);
    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 .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 .3s
}

.header-area.header-area6 .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all .5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all .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: 0 20px 30px rgba(0,0,0,.2);
    position: absolute;
    background: #fff;
    top: 201.3%;
    transform: scaleY(0);
    z-index: 0;
    transition: all .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,.11)
}

    .header-area.header-area7 .main-menu-ex ul li .mega-menu-all ul {
        box-shadow: none !important;
        padding: 0 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: hsla(0,0%,57%,.212)
            }

        .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: hsla(0,0%,57%,.212)
        }

        .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 .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 .4s;
            visibility: visible;
            opacity: .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 .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 .4s;
                background: #000026;
                opacity: 0;
                border-radius: 4px;
                transform: scale(.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 .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 .4s !important;
            visibility: visible !important;
            opacity: .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 .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 .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 .4s
                }

                .header-area.header-area7 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
                    color: #fff;
                    transition: all .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 .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;
            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 .4s
            }

.header-area.header-area7 .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    width: 200px;
    box-shadow: 0 20px 30px rgba(0,0,0,.2);
    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 .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 .3s
}

.header-area.header-area7 .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all .5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all .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;
    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 .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 .3s;
        z-index: 99;
        transform: translateY(0)
    }

li.has-dropdown1 {
    position: relative
}

    li.has-dropdown1 span {
        position: absolute;
        right: 10px
    }

.header-area1.sticky, .header-area8.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateZ(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: 0 20px 30px rgba(0,0,0,.068);
    transition: all .3s ease-in-out;
    z-index: 999
}

@keyframes fade-in-down {
    0% {
        transform: translate3d(0,-50px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fade-in-down {
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards
}

.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: 0 20px 30px rgba(0,0,0,.2);
        position: absolute;
        background: #fff;
        top: 201.3%;
        transform: scaleY(0);
        z-index: 0;
        transition: all .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,.11)
    }

        .header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all ul {
            box-shadow: none !important;
            padding: 0 10px !important;
            border: none !important
        }

            .header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all ul li a {
                display: inline-block;
                padding: 8px 40px
            }

                .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
        }

            .header-area.header-area1 .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-area1 .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: hsla(0,0%,57%,.212)
                }

            .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: hsla(0,0%,57%,.212)
            }

            .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 .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 .4s;
            visibility: visible;
            opacity: .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 .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 .4s;
                background: #000;
                opacity: 0;
                border-radius: 4px;
                transform: scale(.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 .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 .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 .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 .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 .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 .4s
                    }

    .header-area.header-area1 .header-elements .main-menu-ex ul li ul {
        position: absolute;
        left: 0;
        top: 50px;
        border-radius: 4px;
        border: 4px solid rgba(106,92,255,.11);
        background: #fff;
        -webkit-backdrop-filter: blur(27px);
        backdrop-filter: blur(27px);
        width: 220px;
        box-shadow: 0 20px 30px rgba(0,0,0,.068);
        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 .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,.686);
                border-radius: 4px;
                width: 50px;
                left: 15px;
                opacity: 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 .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: 0 20px 30px rgba(0,0,0,.2);
        position: absolute;
        background: #fff;
        top: 201.3%;
        transform: scaleY(0);
        z-index: 0;
        transition: all .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,.11)
    }

        .header-area.header-area8 .header-elements .main-menu-ex ul li .mega-menu-all ul {
            box-shadow: none !important;
            padding: 0 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: hsla(0,0%,57%,.212)
                }

            .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: hsla(0,0%,57%,.212)
            }

            .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 .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 .4s;
            visibility: visible;
            opacity: .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 .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 .4s;
                background: #000;
                opacity: 0;
                border-radius: 4px;
                transform: scale(.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 .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 .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 .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 .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 .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 .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,.11);
        background: #fff;
        -webkit-backdrop-filter: blur(27px);
        backdrop-filter: blur(27px);
        width: 220px;
        box-shadow: 0 20px 30px rgba(0,0,0,.068);
        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 .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,.686);
                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 .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)
    }

.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: 0 20px 30px rgba(255,253,253,.2);
        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 .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 .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,.11);
            background: #fff;
            -webkit-backdrop-filter: blur(27px);
            backdrop-filter: blur(27px);
            width: 220px;
            box-shadow: 0 20px 30px rgba(0,0,0,.068);
            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 .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,.686);
                    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 .3s
        }

.header-area.header-area3 {
    background-color: transparent;
    border-bottom: 1px solid hsla(0,0%,100%,.192)
}

    .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,.11);
            background: #fff;
            -webkit-backdrop-filter: blur(27px);
            backdrop-filter: blur(27px);
            width: 220px;
            box-shadow: 0 20px 30px rgba(0,0,0,.068);
            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 .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,.686);
                    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 .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 .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,.11);
            background: #fff;
            -webkit-backdrop-filter: blur(27px);
            backdrop-filter: blur(27px);
            width: 220px;
            box-shadow: 0 20px 30px rgba(0,0,0,.068);
            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 .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,.686);
                    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 .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 .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,.11);
                background: #fff;
                -webkit-backdrop-filter: blur(27px);
                backdrop-filter: blur(27px);
                width: 220px;
                box-shadow: 0 20px 30px rgba(0,0,0,.068);
                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 .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,.686);
                        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 .3s
            }

.header-area.header-area10 {
    z-index: 99;
    transition: all .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,.11);
                background: #fff;
                -webkit-backdrop-filter: blur(27px);
                backdrop-filter: blur(27px);
                width: 220px;
                box-shadow: 0 20px 30px rgba(0,0,0,.068);
                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 .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,.686);
                        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 .3s
            }

.header-area.header-area9 {
    z-index: 99;
    transition: all .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,.11);
                background: #fff;
                -webkit-backdrop-filter: blur(27px);
                backdrop-filter: blur(27px);
                width: 220px;
                box-shadow: 0 20px 30px rgba(0,0,0,.068);
                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 .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,.686);
                        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 .3s
            }

.header-area.header-area6 {
    z-index: 99;
    transition: all .4s;
    background: hsla(0,0%,100%,.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 6px 0
}

    .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,.11);
            background: #fff;
            -webkit-backdrop-filter: blur(27px);
            backdrop-filter: blur(27px);
            width: 220px;
            box-shadow: 0 20px 30px rgba(0,0,0,.068);
            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 .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,.686);
                    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 .3s
        }

    .header-area.header-area6 .theme-btn10, .header-area.header-area6 .theme-btn12 {
        margin-top: 3px
    }

.header-area.header-area7 {
    z-index: 99;
    transition: all .4s;
    background: hsla(0,0%,100%,.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 6px 0 10px
}

    .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,.11);
            background: #fff;
            -webkit-backdrop-filter: blur(27px);
            backdrop-filter: blur(27px);
            width: 220px;
            box-shadow: 0 20px 30px rgba(0,0,0,.068);
            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 .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,.686);
                    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 .3s
        }

    .header-area.header-area7 .theme-btn10, .header-area.header-area7 .theme-btn12 {
        margin-top: 3px
    }

.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 0;
    transition: all .4s
}

    .mobile-sidebar .single-footer-items .menu-list li a:hover {
        color: var(--ztc-bg-main-bg-4);
        transform: translateX(5px);
        transition: all .4s
    }

.mobile-sidebar .single-footer-items .contact-box {
    display: flex;
    align-items: center;
    padding: 10px 0
}

    .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 .4s
    }

        .mobile-sidebar .single-footer-items .contact-box .pera a:hover {
            color: var(--ztc-bg-main-bg-4);
            transition: all .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
    }
}

.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: hsla(0,0%,100%,.145);
            height: 32px;
            width: 32px;
            text-align: center;
            line-height: 0;
            border-radius: 50%;
            margin: 0 2px;
            transition: all .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 .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)
}

.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: #000
}

.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, .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
}

.cs_site_header {
    position: absolute;
    width: 100%;
    z-index: 101;
    left: 0;
    top: 0;
    transition: all .4s ease
}

    .cs_site_header.cs_style_1 .cs_main_header_in, .cs_site_header.cs_style_1 .cs_top_header_in {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative
    }

    .cs_site_header.cs_style_1 .cs_main_header_in {
        height: 100px
    }

    .cs_site_header.cs_style_1 .cs_top_header_in {
        height: 45px
    }

    .cs_site_header.cs_style_1 .cs_main_header_right {
        display: flex;
        align-items: center;
        height: 100%
    }

    .cs_site_header.cs_style_1.cs_type_1 .cs_main_header {
        background-color: transparent;
        border-bottom: 1px solid #535353
    }

    .cs_site_header.cs_style_1.cs-sticky-active {
        background-color: #000;
        box-shadow: 0 10px 10px -10px rgba(33,43,53,.1)
    }

.cs_top_nav {
    list-style: none
}

    .cs_top_nav li:not(:last-child):after {
        content: "/";
        margin: 0 15px;
        color: #666;
        position: relative;
        top: 1px
    }

.cs_site_header_style1 {
    border-bottom: 1px solid #1a188d
}

    .cs_site_header_style1 .cs_main_header_right {
        display: flex;
        align-items: center
    }

    .cs_site_header_style1 .cs_nav .cs_nav_list > li.current-menu-item > a:before {
        bottom: -4px;
        background-color: #fff
    }

.header-search-form-wrapper {
    opacity: 0;
    visibility: hidden
}

.cs_header_search_form input {
    height: 60px;
    background: #f3f3f3;
    border: 1px solid rgba(62,62,62,.2);
    border-radius: inherit;
    outline: none;
    width: 100%;
    padding: 5px 70px 5px 22px;
    transition: all .3s ease
}

    .cs_header_search_form input:focus {
        border-color: rgba(62,62,62,.4)
    }

.cs_header_search_form .cs_header_search_sumbit_btn {
    position: absolute;
    top: 50%;
    right: 21px;
    transform: translateY(-50%);
    height: 56px;
    width: 60px;
    border: none;
    background-color: transparent;
    border-radius: 5px
}

    .cs_header_search_form .cs_header_search_sumbit_btn:hover {
        color: #e9a132
    }

.header2-buttons.active .header-search-form-wrapper {
    opacity: 1;
    visibility: visible
}

@media screen and (max-width:1199px) {
    .cs_main_header .container {
        max-width: 100%
    }

    .cs_site_header.cs_style_1 .cs_nav {
        display: flex
    }
}

.cs_nav {
    color: #fff
}

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

.cs_sticky_header {
    position: fixed !important;
    width: 100%;
    z-index: 999
}

.cs-gescout_sticky {
    position: fixed !important;
    top: -110px;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
    background-color: #000026
}

.header_style_3.cs-gescout_sticky {
    background-color: #123cdd
}

.cs-gescout_show {
    top: 0 !important;
    opacity: 1;
    visibility: visible
}

.cs_site_branding {
    display: inline-block
}

    .cs_site_branding + .cs_nav {
        margin-left: 65px
    }

.cs_header_contact {
    display: flex;
    align-items: center
}

    .cs_header_contact .cs_header_contact_icon {
        flex: none;
        margin-right: 12px
    }

.cs_toolbox {
    display: flex;
    align-items: center
}

    .cs_toolbox > :not(:first-child) {
        margin-left: 40px
    }

.cs_header_search_btn {
    transition: all .4s ease;
    color: #fff;
    cursor: pointer
}

    .cs_header_search_btn:hover {
        color: #e9a132
    }

.cs_site_header.cs_style_1.cs_color_1 {
    background-color: #fff
}

    .cs_site_header.cs_style_1.cs_color_1 .cs_main_header {
        border-color: #d6d6d6
    }

    .cs_site_header.cs_style_1.cs_color_1 .cs_nav_list > li > a {
        color: #18191d
    }

        .cs_site_header.cs_style_1.cs_color_1 .cs_nav_list > li > a:hover {
            color: #e9a132
        }

@media screen and (min-width:1200px) {
    .cs_main_header {
        position: relative
    }

        .cs_main_header .container-fluid {
            padding-right: 40px;
            padding-left: 40px
        }

    .cs_main_header_center, .cs_top_header_center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%)
    }

    .cs_site_header.cs_style_1 .cs_main_header_center {
        width: 100%;
        max-width: calc(100% - 300px)
    }

    .cs_site_header.cs_style_1 .cs_main_header_center, .cs_site_header.cs_style_1 .cs_main_header_left {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%
    }

    .cs_nav {
        display: flex;
        align-items: center;
        height: 100%;
        color: #fff
    }

    .header-area2 .cs_nav {
        color: #000
    }

    .cs_nav .cs_nav_list {
        display: flex !important;
        flex-wrap: wrap;
        height: inherit;
        padding-top: 5px
    }

        .cs_nav .cs_nav_list li:not(.cs-mega_menu) {
            position: relative
        }

        .cs_nav .cs_nav_list > li {
            margin-right: 30px;
            height: inherit
        }

            .cs_nav .cs_nav_list > li:last-child {
                margin-right: 0
            }

            .cs_nav .cs_nav_list > li > a {
                padding: 10px 0;
                display: inline-flex;
                position: relative;
                height: inherit;
                align-items: center;
                color: var(--heading-color)
            }

            .cs_nav .cs_nav_list > li > ul {
                left: 0;
                top: calc(100% + 15px)
            }

            .cs_nav .cs_nav_list > li:hover > ul {
                top: 90%;
                opacity: 1;
                visibility: visible;
                transition: all .4s ease
            }

            .cs_nav .cs_nav_list > li.menu-item-has-children > a {
                position: relative
            }

                .cs_nav .cs_nav_list > li.menu-item-has-children > a:after {
                    content: "\f282";
                    font-family: bootstrap-icons;
                    font-weight: 900;
                    display: inline-block;
                    border-left: 0;
                    border-top: 0;
                    margin-left: 10px;
                    position: relative;
                    top: 0;
                    font-size: 12px;
                    color: currentColor
                }

        .cs_nav .cs_nav_list ul {
            width: 230px;
            background-color: #fff;
            position: absolute;
            border-top: 2px solid #0e38b1;
            box-shadow: 0 1px 2px 0 rgba(2,0,181,.1);
            padding: 10px 0;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            display: block !important;
            border-radius: 0 0 5px 5px;
            transition: all .4s ease;
            color: var(--heading-color)
        }

            .cs_nav .cs_nav_list ul li:not(:last-child) a {
                position: relative
            }

                .cs_nav .cs_nav_list ul li:not(:last-child) a:after {
                    content: "";
                    position: absolute;
                    height: 1px;
                    width: calc(100% - 40px);
                    left: 20px;
                    bottom: 0;
                    background-color: hsla(0,0%,100%,.1)
                }

            .cs_nav .cs_nav_list ul li:hover ul {
                top: 0
            }

            .cs_nav .cs_nav_list ul li:hover > ul {
                opacity: 1;
                visibility: visible;
                transition: all .4s ease
            }

            .cs_nav .cs_nav_list ul a {
                display: block;
                line-height: inherit;
                padding: 10px 20px
            }

            .cs_nav .cs_nav_list ul ul {
                top: 15px;
                left: 100%
            }

    .cs-munu_dropdown_toggle, .cs-munu_toggle {
        display: none
    }

    .header_style_2.cs-gescout_sticky .cs_nav .cs_nav_list li a {
        color: #fff
    }

    .cs-gescout_sticky .cs_main_header {
        padding-top: 0
    }

    .cs-gescout_sticky .menu-item-has-children ul > li > a {
        color: #000 !important
    }

    .menu-item-has-children ul li a {
        color: #000
    }
}

@media screen and (max-width:1550px) {
    .cs_site_branding + .cs_nav {
        margin-left: 35px
    }

    .cs_toolbox > :not(:first-child) {
        margin-left: 25px
    }

    .cs_nav .cs_nav_list > li {
        margin-right: 30px
    }
}

@media screen and (max-width:1199px) {
    .cs_nav .cs_nav_list > li {
        margin-right: 0
    }

    .cs_site_header.cs_style_1 .cs_main_header_right {
        padding-right: 55px
    }

    .cs_site_header_full_width .container {
        padding: 0 15px
    }

    .cs-munu_dropdown_toggle {
        position: absolute;
        height: 30px;
        width: 30px;
        right: 20px;
        top: 5px
    }

        .cs-munu_dropdown_toggle:after, .cs-munu_dropdown_toggle:before {
            content: "";
            display: block;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
            height: 2px;
            width: 10px;
            background-color: currentColor;
            transition: all .3s ease
        }

        .cs-munu_dropdown_toggle:before {
            transform: translate(-50%,-50%) rotate(90deg)
        }

        .cs-munu_dropdown_toggle.active:before {
            transform: translate(-50%,-50%) rotate(0deg)
        }

    .cs_nav .cs_nav_list {
        position: absolute;
        width: 100vw;
        left: -15px;
        background-color: #181818;
        padding: 10px 0;
        display: none;
        top: 100%;
        border-top: 52 solid #4d4d4d;
        border-bottom: 52 solid #4d4d4d;
        overflow: auto;
        max-height: calc(100vh - 80px);
        line-height: 1.6em
    }

        .cs_nav .cs_nav_list ul {
            padding-left: 15px;
            display: none;
            text-transform: capitalize
        }

        .cs_nav .cs_nav_list a {
            display: block;
            padding: 8px 20px
        }

    .cs_nav .menu-item-has-children {
        position: relative
    }

    .cs-munu_toggle {
        display: inline-block;
        width: 30px;
        height: 27px;
        cursor: pointer;
        position: absolute;
        top: 27px;
        right: 30px
    }

        .cs-munu_toggle span, .cs-munu_toggle span:after, .cs-munu_toggle span:before {
            width: 100%;
            height: 2px;
            background-color: currentColor;
            display: block
        }

        .cs-munu_toggle span {
            margin: 0 auto;
            position: relative;
            top: 12px;
            transition-duration: 0s;
            transition-delay: .2s
        }

            .cs-munu_toggle span:before {
                margin-top: -9px
            }

            .cs-munu_toggle span:after, .cs-munu_toggle span:before {
                content: "";
                position: absolute;
                transition-property: margin,transform;
                transition-duration: .2s;
                transition-delay: .2s,0s
            }

            .cs-munu_toggle span:after {
                margin-top: 9px
            }

    .cs_site_header.cs_style_1 .cs-munu_toggle {
        top: 50%;
        right: 0;
        margin-top: -13px;
        color: #000
    }

    .header_style_2 .cs-munu_toggle {
        color: #fff !important
    }

    .cs-toggle_active span {
        background-color: transparent;
        transition-delay: .2s
    }

        .cs-toggle_active span:before {
            margin-top: 0;
            transform: rotate(45deg);
            transition-delay: 0s,.2s
        }

        .cs-toggle_active span:after {
            margin-top: 0;
            transform: rotate(-45deg);
            transition-delay: 0s,.2s
        }

    .cs_nav .cs_nav_list a {
        position: relative
    }

    .cs_site_header.cs_style_1 .cs_main_header_in {
        height: 80px
    }

    .cs_site_header .current-menu-item > a:before {
        display: none
    }

    .cs_site_header.cs_style_1 {
        top: 0
    }

        .cs_site_header.cs_style_1.cs_color_1 .cs-munu_dropdown_toggle, .cs_site_header.cs_style_1.cs_color_1 .cs-munu_toggle, .cs_site_header.cs_style_1.cs_color_1 .cs_nav .cs_nav_list ul {
            color: #18191d
        }

        .cs_site_header.cs_style_1.cs_color_1 .cs_nav .cs_nav_list {
            background-color: #fff
        }

    .header2-buttons {
        display: none
    }
}

@media screen and (max-width:991px) {
    .cs_site_header .container {
        max-width: 100%
    }

    .cs_site_header.cs_style_1 .cs-action_box > :not(:last-child) {
        margin-right: 25px
    }

    .cs_site_header.cs_style_1 .cs_btn {
        padding: 8px
    }
}

@media screen and (max-width:767px) {
    .cs_site_header.cs_style_1 .cs_top_header_in {
        justify-content: center
    }

    .cs_site_header.cs_style_1 .cs_main_header_right, .cs_site_header.cs_style_1 .cs_top_header_left {
        display: none
    }
}

@media screen and (max-width:575px) {
    .cs_site_header.cs_style_1 .cs_btn span {
        display: none
    }

    .cs_site_header.cs_style_1 .cs_btn svg {
        margin-right: 0;
        width: 20px;
        height: 20px
    }
}

@media screen and (max-width:500px) {
    .cs_header_contact {
        display: none
    }
}

.cs_nav .cs-munu_toggle.cs_teggle_active + .cs_nav_list, .cs_nav .cs_nav_list span.cs-munu_dropdown_toggle.active + ul {
    display: block
}

.cs_site_header.cs_color_1 .cs_header_search_btn {
    color: initial
}

@media (max-width:575px) {
    .cs_site_header.cs_color_1 .cs_header_search_btn {
        display: none !important
    }
}

@media (max-width:767px) {
    .cs_header_search_form {
        left: 50%;
        transform: translateX(-50%)
    }
}

@media (max-width:575px) {
    .cs_header_search_form {
        display: none
    }

    .cs_header_search_btn {
        display: none !important
    }
}

.cs_site_header_spacing_130 {
    height: 100px
}

.cs_site_header_spacing_140 {
    height: 90px
}

.cs_site_header.cs_style_1 .cs_top_header {
    padding: 16px 0;
    text-align: center;
    background-color: var(--ztc-bg-main-bg-1)
}

.cs_site_header.cs_style_1 .cs_top_header_in {
    height: 40px;
    position: relative;
    z-index: 1
}

.cs_top_header .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)
}

    .cs_top_header .pera p img {
        margin-top: -4px;
        margin-right: 2px
    }

.cs_main_header, .cs_site_header.cs_style_1 .cs_top_header .container {
    position: relative
}

.cs_accent_bg {
    background: #fff
}

.cs_site_header.cs_style_1 .cs_main_header .container {
    position: relative
}

.cs_site_header.cs_style_1 .cs_main_header_in {
    position: relative;
    z-index: 1;
    height: 90px
}

.cs_header_social_links_wrap {
    display: flex;
    align-items: center;
    gap: 20px
}

.cs_header_social_links {
    display: flex;
    font-size: 14px;
    line-height: 1.6em;
    gap: 20px
}

.cs_site_header.header_style_2.cs_style_1 .cs_main_header .container {
    max-width: 1320px
}

.cs_site_header.header_style_2.cs_style_1 .cs_main_header_right {
    display: flex;
    align-items: center;
    gap: 10px 40px
}

.cs_site_header.header_style_2.cs_style_1 .cs_main_header_in {
    height: 75px
}

.header_style_2 {
    border-bottom: 1px solid #2f3036
}

.header_style_3 {
    border-bottom: 1px solid hsla(0,0%,100%,.192)
}

.site_logo_2 img {
    max-width: 130px
}

.main-page-area {
    padding: 30px 0 0
}

@media (max-width:767px) {
    .cs_site_header.cs_style_1 .cs_top_header {
        display: none
    }

    .cs_site_header.header_style_2.cs_style_1 .cs_main_header_in, .cs_site_header_spacing_130, .cs_site_header_spacing_140 {
        height: 90px
    }
}

@media (max-width:1199px) {
    .cs_site_header.header_style_2.cs_style_1 .cs_header_social_links {
        display: none
    }

    .cs_site_header.header_style_2.cs_style_1.cs-gescout_sticky .container:before {
        opacity: 0
    }

    .main-page-area {
        padding: 0
    }

    .cs_nav .cs_nav_list li a {
        color: #fff
    }
}

.hero1 {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover
}

.cs_main_header_center1 {
    height: 100%
}

.cs-pd-video .cs_video_open, .cs-sample-img .cs_video_open {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 68px;
    transition: all .3s ease;
    line-height: 48px
}

    .cs-pd-video .cs_video_open:hover, .cs-sample-img .cs_video_open:hover {
        color: hsla(0,0%,100%,.7)
    }

.cs_video_popup {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 100%;
    left: -100%;
    transition-delay: .3s
}

    .cs_video_popup.active {
        transition-delay: 0s;
        left: 0
    }

.cs_video_popup-overlay {
    position: absolute;
    left: 0;
    right: 0;
    background: #000;
    transition: all .4s ease-out;
    opacity: 0
}

.cs_video_popup.active .cs_video_popup-overlay {
    opacity: .8;
    height: 100%;
    background: rgba(0,0,0,.5)
}

.cs_video_popup-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0;
    text-align: center;
    transition: all .4s ease-out;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    padding: 15px
}

.cs_video_popup.active .cs_video_popup-content {
    transform: translateY(0);
    opacity: 1;
    visibility: visible
}

.cs_video_popup-content:after {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.cs_video_popup-container {
    display: inline-block;
    position: relative;
    text-align: left;
    background: #fff;
    max-width: 1000px;
    width: 100%;
    vertical-align: middle
}

    .cs_video_popup-container .embed-responsive {
        width: 100%
    }

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
    height: 100%
}

.embed-responsive-16by9:before {
    display: block;
    content: "";
    padding-top: 56.25%
}

.embed-responsive iframe, .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.cs_video_popup-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: #d90d0d;
    cursor: pointer;
    transition: all .4s ease-in-out
}

.cs_video_popup iframe {
    width: 100%;
    height: 100%;
    position: absolute
}

.cs_video_popup-close:before {
    transform: rotate(-45deg)
}

.cs_video_popup-close:after, .cs_video_popup-close:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    background: #fff;
    margin-left: -10px;
    transition: all .4s ease-in-out
}

.cs_video_popup-close:after {
    transform: rotate(45deg)
}

.cs_video_popup-close:hover:after, .cs_video_popup-close:hover:before {
    background: #000
}

.cs_video_popup-layer {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0
}

.cs_video_popup-align {
    overflow: hidden
}

.slick-slide img {
    width: 100%
}

.cs_slider_gap_30 .slick-slide {
    padding-left: 15px;
    padding-right: 15px
}

.progressbar {
    background-color: #eee
}

.proggress, .progressbar {
    width: 100%;
    border-radius: 15px
}

.proggress {
    background-color: #a1e934;
    height: 6px
}

.cs_slider_gap_10 .slick-slide {
    padding-left: 10px;
    padding-right: 10px
}

.hero3 {
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat
}

.accordion-content {
    display: none
}

.accordion-item.active .accordion-content {
    display: block
}

.footer_3 {
    background-image: url(/assets/img/bg/footer-bg3.png);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat
}

.project3 .nav-item.active button {
    background: var(--ztc-bg-main-bg-3);
    color: #fff
}

.header-four img {
    width: 130px
}

.cs_site_header_spacing_88 {
    height: 88px
}

.hero_gap_4 .slick-slide {
    padding-left: 20px;
    padding-right: 20px
}

.testimonial4 {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain
}

.single-testimonial-nav img {
    max-width: 80px;
    margin: auto
}

.testimonial4 .testimonial-arrows button {
    width: 60px;
    height: 60px;
    text-align: center;
    background: none;
    border-radius: 50px;
    transition: all .3s;
    border: none;
    border: 1px solid hsla(0,0%,100%,.745);
    color: #fff
}

    .testimonial4 .testimonial-arrows button:hover {
        transition: all .3s;
        background-color: var(--ztc-bg-color-w);
        color: var(--ztc-text-text-1)
    }

.hero7 {
    background-image: url(/assets/img/bg/hero-bg7.jpg)
}

.header_style_5 {
    z-index: 99;
    transition: all .4s;
    background: hsla(0,0%,100%,.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: unset;
    padding: 5px 0
}

.quote_icon_5 img {
    max-width: 64px
}

.brand-image-area img {
    width: 150px
}

.header_style_5.cs-gescout_sticky {
    background: rgba(0,0,0,.62)
}

.proggress2 {
    background-color: var(--ztc-bg-main-bg-1);
    height: 10px;
    border-radius: 15px;
    width: 100%
}

.percentCount6 {
    color: #000 !important
}

.comon-body .heading2 span img {
    display: none
}

.comon-body .about2 {
    padding-top: 100px
}

.comon-body .team2 {
    padding-bottom: 100px
}

.comon-body .service-details-area-all .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-bg-color-w)
}

.comon-body .service-details-area-all .heading1 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)
}

.comon-body .service-details-area-all .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-2)
}

.comon-body .service-details-area-all .heading1 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 .4s
}

.comon-body .service-details-area-all .theme-btn1 {
    background-color: var(--ztc-bg-main-bg-4);
    color: var(--ztc-text-text-1)
}

.service-page-dark .cta2 {
    padding-top: 100px
}

.comon-body .service-details-area-all .servcie2-box.servcie2-box-2 {
    background-color: unset
}

img {
    height: auto
}
