@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Malayalam:wght@100..900&display=swap');


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

@keyframes shape-animaiton2 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(30px);
    }
}

@keyframes shape-animaiton3 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

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

@keyframes animate1 {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-20px);
    }
}

@keyframes animate2 {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(20px);
    }
}

@keyframes animate3 {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(15px);
    }
}

@keyframes animate4 {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-25px);
    }
}

@keyframes animate5 {
    0% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

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

.shape-animaiton1 {
    position: relative;
    animation-name: shape-animaiton1;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}

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

.shape-animaiton3 {
    position: relative;
    animation-name: shape-animaiton3;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.shape-animaiton4 {
    position: relative;
    animation-name: shape-animaiton4;
    animation-duration: 62s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
}

.animate1 {
    position: relative;
    animation-name: animate1;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.animate2 {
    position: relative;
    animation-name: animate2;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.animate3 {
    position: relative;
    animation-name: animate3;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.animate4 {
    position: relative;
    animation-name: animate4;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.animate5 {
    position: relative;
    animation-name: animate5;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.animate6 {
    position: relative;
    animation-name: animate6;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

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

/*
::::::::::::::::::::::::::
ANIMATION AREA CSS
::::::::::::::::::::::::::
*/

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

@media screen and (max-width: 769px) {
    body.body1,
    html {
        overflow-x: hidden;
    }
}

.img100 img {
    width: 100%;
}

body {
    font-family: "Noto Sans Malayalam", sans-serif;
    font-size: var(--f-fs-font-fs16);
}

.body3 {
    overflow-x: hidden !important;
}

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

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

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

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

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

p {
    padding: 0;
    margin: 0;
}

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

a,
a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}

body.body {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    overflow-x: hidden;
    z-index: -33;
    position: relative;
}

.sp {
    padding: 80px 0px;
}

.sp2 {
    padding: 120px 0px;
}

.pt100 {
    padding-top: 100px;
}

.pt140 {
    padding-top: 140px;
}

.pb120 {
    padding-bottom: 120px;
}

.pl60 {
    padding-left: 60px;
}

.pb40 {
    padding-bottom: 40px;
}

.pr60 {
    padding-right: 60px;
}

@media (max-width: 768px) {
    .sp {
        padding: 50px 0px;
    }
    .pt100 {
        padding-top: 50px;
    }
    .pt140 {
        padding-top: 70px;
    }
    .pb120 {
        padding-bottom: 60px;
    }
    .sp2 {
        padding: 60px 0px;
    }
    .pl60 {
        padding-left: 0;
    }
    .pr60 {
        padding-right: 0;
    }
}

.space4 {
    height: 4px;
}

.space6 {
    height: 6px;
}

.space28 {
    height: 28px;
}

.space8 {
    height: 8px;
}

.space12 {
    height: 12px;
}

.space14 {
    height: 14px;
}

.space16 {
    height: 16px;
}

.space24 {
    height: 24px;
}

.space32 {
    height: 32px;
}

.space10 {
    height: 10px;
}

.space5 {
    height: 5px;
}

.space5 {
    height: 5px;
}

@media (max-width: 767px) {
    .space10 {
        height: 5px;
    }
    .sp5 {
        padding-bottom: 50px;
    }
}

.space20 {
    height: 20px;
}

@media (max-width: 767px) {
    .space20 {
        height: 10px;
    }
}

.space30 {
    height: 30px;
}

@media (max-width: 767px) {
    .space30 {
        height: 15px;
    }
}

.space40 {
    height: 40px;
}

@media (max-width: 767px) {
    .space40 {
        height: 20px;
    }
}

.space50 {
    height: 50px;
}

.space45 {
    height: 45px;
}

@media (max-width: 768px) {
    .space50 {
        height: 25px;
    }
    .space60 {
        height: 30px !important;
    }
}

.space60 {
    height: 60px;
}

.space55 {
    height: 55px;
}

.space70 {
    height: 70px;
}

.space80 {
    height: 80px;
}

.space90 {
    height: 90px;
}

.space100 {
    height: 100px;
}

.space120 {
    height: 120px;
}

.text-right {
    text-align: right;
}

.section-padding {
    padding: 120px 0;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }
}

.section-padding2 {
    padding: 120px 0 90px;
}

@media (max-width: 991px) {
    .section-padding2 {
        padding: 60px 0 30px;
    }
}

.padding-bottom {
    padding-bottom: 120px;
}

@media (max-width: 991px) {
    .padding-bottom {
        padding-bottom: 60px;
    }
}

.padding-bottom2 {
    padding-bottom: 90px;
}

@media (max-width: 991px) {
    .padding-bottom2 {
        padding-bottom: 30px;
    }
}

.padding-top {
    padding-top: 120px;
}

@media (max-width: 991px) {
    .padding-top {
        padding-top: 60px;
    }
}

.padding-top2 {
    padding-top: 90px;
}

@media (max-width: 991px) {
    .padding-top2 {
        padding-top: 30px;
    }
}

.padding-90 {
    padding: 90px 0;
}

@media (max-width: 991px) {
    .padding-90 {
        padding: 50px 0;
    }
}

.w-full {
    width: 100%;
}

@media (min-width: 992px) {
    .w-lg-full {
        width: 100%;
    }
}

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

@media (min-width: 992px) {
    .text-lg-center {
        text-align: center;
    }
}

.text-left {
    text-align: left !important;
}

.weight-400 {
    font-weight: 400 !important;
}

.weight-500 {
    font-weight: 500 !important;
}

.weight-600 {
    font-weight: 600 !important;
}

.weight-700 {
    font-weight: 700 !important;
}

.weight-800 {
    font-weight: 800 !important;
}

.weight-900 {
    font-weight: 900 !important;
}

.font-f-1 {
    font-family: "Hind", sans-serif !important;
}

.font-f-2 {
    font-family: "Plus Jakarta Sans", sans-serif !important;
}

.font-f-3 {
    font-family: "Spline Sans", sans-serif !important;
}

.font-f-4 {
    font-family: "Catamaran", sans-serif !important;
}

.font-12 {
    font-size: 12px;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

.font-18 {
    font-size: 18px;
}

.font-20 {
    font-size: 20px;
}

.font-22 {
    font-size: 22px;
}

.font-24 {
    font-size: 24px;
}

.font-26 {
    font-size: 26px;
}

.font-28 {
    font-size: 28px;
}

.font-30 {
    font-size: 30px;
}

.font-32 {
    font-size: 32px;
}

.font-34 {
    font-size: 34px;
}

.font-36 {
    font-size: 36px;
}

.font-40 {
    font-size: 40px;
}

.font-42 {
    font-size: 42px;
}

.font-44 {
    font-size: 44px;
}

.font-46 {
    font-size: 48px;
}

.font-48 {
    font-size: 48px;
}

.font-50 {
    font-size: 60px;
}

.font-52 {
    font-size: 52px;
}

.font-54 {
    font-size: 54px;
}

.font-56 {
    font-size: 56px;
}

.font-58 {
    font-size: 58px;
}

.font-60 {
    font-size: 60px;
}

.font-62 {
    font-size: 62px;
}

.font-70 {
    font-size: 70px;
}

.font-72 {
    font-size: 72px;
}

.font-74 {
    font-size: 74px;
}

.font-76 {
    font-size: 76px;
}

.font-78 {
    font-size: 78px;
}

.font-80 {
    font-size: 80px;
}

.font-82 {
    font-size: 82px;
}

.font-84 {
    font-size: 84px;
}

.font-86 {
    font-size: 86px;
}

.font-88 {
    font-size: 88px;
}

.font-90 {
    font-size: 90px;
}

.font-92 {
    font-size: 92px;
}

.font-94 {
    font-size: 94px;
}

.font-96 {
    font-size: 96px;
}

.font-98 {
    font-size: 98px;
}

.font-100 {
    font-size: 100px;
}

@media screen and (min-width: 1024px) {
    .text-md-right {
        text-align: right;
    }
    .text-md-center {
        text-align: center;
    }
    .text-md-left {
        text-align: left;
    }
    .font-lg-12 {
        font-size: 12px;
    }
    .font-lg-14 {
        font-size: 14px;
    }
    .font-lg-16 {
        font-size: 16px;
    }
    .font-lg-18 {
        font-size: 18px;
    }
    .font-lg-20 {
        font-size: 20px;
    }
    .font-lg-22 {
        font-size: 22px;
    }
    .font-lg-24 {
        font-size: 24px;
    }
    .font-lg-26 {
        font-size: 26px;
    }
    .font-lg-28 {
        font-size: 28px;
    }
    .font-lg-30 {
        font-size: 30px;
    }
    .font-lg-32 {
        font-size: 32px;
    }
    .font-lg-34 {
        font-size: 34px;
    }
    .font-lg-36 {
        font-size: 36px;
    }
    .font-lg-40 {
        font-size: 40px;
    }
    .font-lg-42 {
        font-size: 42px;
    }
    .font-lg-44 {
        font-size: 44px;
    }
    .font-lg-45 {
        font-size: 45px;
    }
    .font-lg-46 {
        font-size: 48px;
    }
    .font-lg-48 {
        font-size: 48px;
    }
    .font-lg-50 {
        font-size: 60px;
    }
    .font-lg-52 {
        font-size: 52px;
    }
    .font-lg-54 {
        font-size: 54px;
    }
    .font-lg-56 {
        font-size: 56px;
    }
    .font-lg-58 {
        font-size: 58px;
    }
    .font-lg-60 {
        font-size: 60px;
    }
    .font-lg-62 {
        font-size: 62px;
    }
    .font-lg-66 {
        font-size: 66px;
    }
    .font-lg-70 {
        font-size: 70px;
    }
    .font-lg-72 {
        font-size: 72px;
    }
    .font-lg-74 {
        font-size: 74px;
    }
    .font-lg-76 {
        font-size: 76px;
    }
    .font-lg-78 {
        font-size: 78px;
    }
    .font-lg-80 {
        font-size: 80px;
    }
    .font-lg-82 {
        font-size: 82px;
    }
    .font-lg-84 {
        font-size: 84px;
    }
    .font-lg-86 {
        font-size: 86px;
    }
    .font-lg-88 {
        font-size: 88px;
    }
    .font-lg-90 {
        font-size: 90px;
    }
    .font-lg-92 {
        font-size: 92px;
    }
    .font-lg-94 {
        font-size: 94px;
    }
    .font-lg-96 {
        font-size: 96px;
    }
    .font-lg-98 {
        font-size: 98px;
    }
    .font-lg-100 {
        font-size: 100px;
    }
    .line-height-lg-14 {
        line-height: 14px;
    }
    .line-height-lg-16 {
        line-height: 16px;
    }
    .line-height-lg-18 {
        line-height: 18px;
    }
    .line-height-lg-20 {
        line-height: 20px;
    }
    .line-height-lg-22 {
        line-height: 22px;
    }
    .line-height-lg-24 {
        line-height: 24px;
    }
    .line-height-lg-26 {
        line-height: 26px;
    }
    .line-height-lg-28 {
        line-height: 28px;
    }
    .line-height-lg-30 {
        line-height: 30px;
    }
    .line-height-lg-32 {
        line-height: 32px;
    }
    .line-height-lg-34 {
        line-height: 34px;
    }
    .line-height-lg-36 {
        line-height: 36px;
    }
    .line-height-lg-38 {
        line-height: 38px;
    }
    .line-height-lg-40 {
        line-height: 40px;
    }
    .line-height-lg-42 {
        line-height: 42px;
    }
    .line-height-lg-44 {
        line-height: 44px;
    }
    .line-height-lg-48 {
        line-height: 48px;
    }
    .line-height-lg-50 {
        line-height: 50px;
    }
    .line-height-lg-52 {
        line-height: 52px;
    }
    .line-height-lg-54 {
        line-height: 54px;
    }
    .line-height-lg-56 {
        line-height: 56px;
    }
    .line-height-lg-58 {
        line-height: 58px;
    }
    .line-height-lg-60 {
        line-height: 60px;
    }
    .line-height-lg-62 {
        line-height: 62px;
    }
    .line-height-lg-64 {
        line-height: 64px;
    }
    .line-height-lg-66 {
        line-height: 66px;
    }
    .line-height-lg-68 {
        line-height: 68px;
    }
    .line-height-lg-70 {
        line-height: 70px;
    }
    .line-height-lg-72 {
        line-height: 72px;
    }
    .line-height-lg-74 {
        line-height: 74px;
    }
    .line-height-lg-76 {
        line-height: 76px;
    }
    .line-height-lg-78 {
        line-height: 78px;
    }
    .line-height-lg-80 {
        line-height: 80px;
    }
    .line-height-lg-82 {
        line-height: 82px;
    }
    .line-height-lg-84 {
        line-height: 84px;
    }
    .line-height-lg-86 {
        line-height: 86px;
    }
    .line-height-lg-88 {
        line-height: 88px;
    }
    .line-height-lg-90 {
        line-height: 90px;
    }
    .line-height-lg-92 {
        line-height: 92px;
    }
    .line-height-lg-94 {
        line-height: 94px;
    }
    .line-height-lg-96 {
        line-height: 96px;
    }
    .line-height-lg-98 {
        line-height: 98px;
    }
    .line-height-lg-100 {
        line-height: 100px;
    }
}

@media screen and (min-width: 768px) {
    .font-md-12 {
        font-size: 12px;
    }
    .font-md-14 {
        font-size: 14px;
    }
    .font-md-16 {
        font-size: 16px;
    }
    .font-md-18 {
        font-size: 18px;
    }
    .font-md-20 {
        font-size: 20px;
    }
    .font-md-22 {
        font-size: 22px;
    }
    .font-md-24 {
        font-size: 24px;
    }
    .font-md-26 {
        font-size: 26px;
    }
    .font-md-28 {
        font-size: 28px;
    }
    .font-md-30 {
        font-size: 30px;
    }
    .font-md-32 {
        font-size: 32px;
    }
    .font-md-34 {
        font-size: 34px;
    }
    .font-md-36 {
        font-size: 36px;
    }
    .font-md-40 {
        font-size: 40px;
    }
    .font-md-42 {
        font-size: 42px;
    }
    .font-md-44 {
        font-size: 44px;
    }
    .font-md-46 {
        font-size: 48px;
    }
    .font-md-48 {
        font-size: 48px;
    }
    .font-md-50 {
        font-size: 60px;
    }
    .font-md-52 {
        font-size: 52px;
    }
    .font-md-54 {
        font-size: 54px;
    }
    .font-md-56 {
        font-size: 56px;
    }
    .font-md-58 {
        font-size: 58px;
    }
    .font-md-60 {
        font-size: 60px;
    }
    .font-md-62 {
        font-size: 62px;
    }
    .font-md-74 {
        font-size: 74px;
    }
    .font-md-76 {
        font-size: 76px;
    }
    .font-md-78 {
        font-size: 78px;
    }
    .font-md-80 {
        font-size: 80px;
    }
    .font-md-82 {
        font-size: 82px;
    }
    .font-md-84 {
        font-size: 84px;
    }
    .font-md-86 {
        font-size: 86px;
    }
    .font-md-88 {
        font-size: 88px;
    }
    .font-md-90 {
        font-size: 90px;
    }
    .font-md-92 {
        font-size: 92px;
    }
    .font-md-94 {
        font-size: 94px;
    }
    .font-md-96 {
        font-size: 96px;
    }
    .font-md-98 {
        font-size: 98px;
    }
    .font-md-100 {
        font-size: 100px;
    }
    .line-height-md-12 {
        line-height: 12px;
    }
    .line-height-md-14 {
        line-height: 14px;
    }
    .line-height-md-16 {
        line-height: 16px;
    }
    .line-height-md-18 {
        line-height: 18px;
    }
    .line-height-md-20 {
        line-height: 20px;
    }
    .line-height-md-22 {
        line-height: 22px;
    }
    .line-height-md-24 {
        line-height: 24px;
    }
    .line-height-md-26 {
        line-height: 26px;
    }
    .line-height-md-28 {
        line-height: 28px;
    }
    .line-height-md-30 {
        line-height: 30px;
    }
    .line-height-md-32 {
        line-height: 32px;
    }
    .line-height-md-34 {
        line-height: 34px;
    }
    .line-height-md-36 {
        line-height: 36px;
    }
    .line-height-md-38 {
        line-height: 38px;
    }
    .line-height-md-40 {
        line-height: 40px;
    }
    .line-height-md-42 {
        line-height: 42px;
    }
    .line-height-md-44 {
        line-height: 44px;
    }
    .line-height-md-48 {
        line-height: 48px;
    }
    .line-height-md-50 {
        line-height: 50px;
    }
    .line-height-md-52 {
        line-height: 52px;
    }
    .line-height-md-54 {
        line-height: 54px;
    }
    .line-height-md-56 {
        line-height: 56px;
    }
    .line-height-md-58 {
        line-height: 58px;
    }
    .line-height-md-60 {
        line-height: 60px;
    }
    .line-height-md-62 {
        line-height: 62px;
    }
    .line-height-md-64 {
        line-height: 64px;
    }
    .line-height-md-66 {
        line-height: 66px;
    }
    .line-height-md-68 {
        line-height: 68px;
    }
    .line-height-md-70 {
        line-height: 70px;
    }
    .line-height-md-72 {
        line-height: 72px;
    }
    .line-height-md-74 {
        line-height: 74px;
    }
    .line-height-md-76 {
        line-height: 76px;
    }
    .line-height-md-78 {
        line-height: 78px;
    }
    .line-height-md-80 {
        line-height: 80px;
    }
    .line-height-md-82 {
        line-height: 82px;
    }
    .line-height-md-84 {
        line-height: 84px;
    }
    .line-height-md-86 {
        line-height: 86px;
    }
    .line-height-md-88 {
        line-height: 88px;
    }
    .line-height-md-90 {
        line-height: 90px;
    }
    .line-height-md-92 {
        line-height: 92px;
    }
    .line-height-md-94 {
        line-height: 94px;
    }
    .line-height-md-96 {
        line-height: 96px;
    }
    .line-height-md-98 {
        line-height: 98px;
    }
    .line-height-md-100 {
        line-height: 100px;
    }
}

@media screen and (min-width: 576px) {
    .font-sm-12 {
        font-size: 12px;
    }
    .font-sm-14 {
        font-size: 14px;
    }
    .font-sm-16 {
        font-size: 16px;
    }
    .font-sm-18 {
        font-size: 18px;
    }
    .font-sm-20 {
        font-size: 20px;
    }
    .font-sm-22 {
        font-size: 22px;
    }
    .font-sm-24 {
        font-size: 24px;
    }
    .font-sm-26 {
        font-size: 26px;
    }
    .font-sm-28 {
        font-size: 28px;
    }
    .font-sm-30 {
        font-size: 30px;
    }
    .font-sm-32 {
        font-size: 32px;
    }
    .font-sm-34 {
        font-size: 34px;
    }
    .font-sm-36 {
        font-size: 36px;
    }
    .font-sm-40 {
        font-size: 40px;
    }
    .font-sm-42 {
        font-size: 42px;
    }
    .font-sm-44 {
        font-size: 44px;
    }
    .font-sm-46 {
        font-size: 48px;
    }
    .font-sm-48 {
        font-size: 48px;
    }
    .font-sm-50 {
        font-size: 60px;
    }
    .font-sm-52 {
        font-size: 52px;
    }
    .font-sm-54 {
        font-size: 54px;
    }
    .font-sm-56 {
        font-size: 56px;
    }
    .font-sm-58 {
        font-size: 58px;
    }
    .font-sm-60 {
        font-size: 60px;
    }
    .font-sm-62 {
        font-size: 62px;
    }
    .font-sm-74 {
        font-size: 74px;
    }
    .font-sm-76 {
        font-size: 76px;
    }
    .font-sm-78 {
        font-size: 78px;
    }
    .font-sm-80 {
        font-size: 80px;
    }
    .font-sm-82 {
        font-size: 82px;
    }
    .font-sm-84 {
        font-size: 84px;
    }
    .font-sm-86 {
        font-size: 86px;
    }
    .font-sm-88 {
        font-size: 88px;
    }
    .font-sm-90 {
        font-size: 90px;
    }
    .font-sm-92 {
        font-size: 92px;
    }
    .font-sm-94 {
        font-size: 94px;
    }
    .font-sm-96 {
        font-size: 96px;
    }
    .font-sm-98 {
        font-size: 98px;
    }
    .font-sm-100 {
        font-size: 100px;
    }
    .line-height-sm-12 {
        line-height: 12px;
    }
    .line-height-sm-14 {
        line-height: 14px;
    }
    .line-height-sm-16 {
        line-height: 16px;
    }
    .line-height-sm-18 {
        line-height: 18px;
    }
    .line-height-sm-20 {
        line-height: 20px;
    }
    .line-height-sm-22 {
        line-height: 22px;
    }
    .line-height-sm-24 {
        line-height: 24px;
    }
    .line-height-sm-26 {
        line-height: 26px;
    }
    .line-height-sm-28 {
        line-height: 28px;
    }
    .line-height-sm-30 {
        line-height: 30px;
    }
    .line-height-sm-32 {
        line-height: 32px;
    }
    .line-height-sm-34 {
        line-height: 34px;
    }
    .line-height-sm-36 {
        line-height: 36px;
    }
    .line-height-sm-38 {
        line-height: 38px;
    }
    .line-height-sm-40 {
        line-height: 40px;
    }
    .line-height-sm-42 {
        line-height: 42px;
    }
    .line-height-sm-44 {
        line-height: 44px;
    }
    .line-height-sm-48 {
        line-height: 48px;
    }
    .line-height-sm-50 {
        line-height: 50px;
    }
    .line-height-sm-52 {
        line-height: 52px;
    }
    .line-height-sm-54 {
        line-height: 54px;
    }
    .line-height-sm-56 {
        line-height: 56px;
    }
    .line-height-sm-58 {
        line-height: 58px;
    }
    .line-height-sm-60 {
        line-height: 60px;
    }
    .line-height-sm-62 {
        line-height: 62px;
    }
    .line-height-sm-64 {
        line-height: 64px;
    }
    .line-height-sm-66 {
        line-height: 66px;
    }
    .line-height-sm-68 {
        line-height: 68px;
    }
    .line-height-sm-70 {
        line-height: 70px;
    }
    .line-height-sm-72 {
        line-height: 72px;
    }
    .line-height-sm-74 {
        line-height: 74px;
    }
    .line-height-sm-76 {
        line-height: 76px;
    }
    .line-height-sm-78 {
        line-height: 78px;
    }
    .line-height-sm-80 {
        line-height: 80px;
    }
    .line-height-sm-82 {
        line-height: 82px;
    }
    .line-height-sm-84 {
        line-height: 84px;
    }
    .line-height-sm-86 {
        line-height: 86px;
    }
    .line-height-sm-88 {
        line-height: 88px;
    }
    .line-height-sm-90 {
        line-height: 90px;
    }
    .line-height-sm-92 {
        line-height: 92px;
    }
    .line-height-sm-94 {
        line-height: 94px;
    }
    .line-height-sm-96 {
        line-height: 96px;
    }
    .line-height-sm-98 {
        line-height: 98px;
    }
    .line-height-sm-100 {
        line-height: 100px;
    }
}

.mr-2 {
    margin-right: 8px;
}

@media (max-width: 767px) {
    .mobile-hidden {
        display: none;
    }
}

.mb-30 {
    margin-bottom: 30px;
}

.mobile-sidebar .single-footer h3 {
    color: #ffffff;
}

.mobile-sidebar .single-contact a {
    color: #ffffff;
}

.lg-ml-15 {
    margin-left: 15px;
}

@media (max-width: 767px) {
    .lg-ml-15 {
        margin-left: 0;
    }
}

.lg-mr-15 {
    margin-right: 15px;
}

@media (max-width: 767px) {
    .lg-mr-15 {
        margin-right: 0;
    }
}

._relative {
    position: relative;
}

._absolute {
    position: absolute;
}

.bg-cover {
    background-size: cover;
    background-position: center center;
}

.bg-contain {
    background-size: contain;
    background-position: center center;
}

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

.width100 img {
    width: 100%;
}

/*
 ::::::::::::::::::::::::::
  fonts area css
 ::::::::::::::::::::::::::
 */

:root {
    --blue:#19aaed;
    --dark:#120935;
    --vtc-text-heading-1: #001518;
    --vtc-text-pera-1: #565858;
    --vtc-text-pera-2: #CCCCCE;
    --vtc-text-white-1: #ffffff;
    --vtc-bg-main-1: #2293A7;
    --vtc-bg-main-2: #F69434;
    --vtc-bg-main-3: #1C74F0;
    --vtc-bg-main-4: #8D65FF;
    --vtc-bg-main-5: #FD4A12;
    --vtc-bg-common-1: #E9F4F6;
    --vtc-bg-common-2: #D9ECF0;
    --vtc-bg-common-3: #001518;
    --vtc-bg-common-4: #F6F8FA;
    --vtc-bg-common-5: #EDF4FE;
    --vtc-bg-common-6: #F9F8FE;
    --vtc-bg-common-7: #F4F1FE;
    --vtc-bg-white: #ffffff;
    --vtc-border-color-1: #4b2c2c;
    --f-fw-regular: 400;
    --f-fw-medium: 500;
    --f-fw-semibold: 600;
    --f-fw-bold: 700;
    --f-fw-ex-bold: 800;
    --f-ff-font-1: 'Figtree', sans-serif;
    --f-fs-font-fs16: 16px;
    --f-fs-font-fs18: 18px;
    --f-fs-font-fs20: 20px;
    --f-fs-font-fs22: 22px;
    --f-fs-font-fs24: 24px;
    --f-fs-font-fs26: 26px;
    --f-fs-font-fs28: 28px;
    --f-fs-font-fs30: 30px;
    --f-fs-font-fs32: 32px;
    --f-fs-font-fs34: 34px;
    --f-fs-font-fs36: 36px;
    --f-fs-font-fs40: 40px;
    --f-fs-font-fs42: 42px;
    --f-fs-font-fs44: 44px;
    --f-fs-font-fs48: 48px;
    --f-fs-font-fs50: 50px;
    --f-fs-font-fs52: 52px;
    --f-fs-font-fs54: 54px;
    --f-fs-font-fs56: 56px;
    --f-fs-font-fs58: 58px;
    --f-fs-font-fs60: 60px;
    --f-fs-font-fs62: 62px;
    --f-fs-font-fs64: 64px;
    --f-fs-font-fs66: 66px;
    --f-fs-font-fs68: 68px;
    --f-fs-font-fs70: 70px;
    --f-fs-font-fs72: 72px;
    --f-fs-font-fs74: 74px;
    --f-fs-font-fs76: 76px;
    --f-fs-font-fs78: 78px;
    --f-fs-font-fs80: 80px;
    --f-fs-font-fs82: 82px;
    --f-fs-font-fs84: 84px;
    --f-fs-font-fs86: 86px;
    --f-fs-font-fs88: 88px;
}

/*
::::::::::::::::::::::::::
 COMMON AREA CSS
::::::::::::::::::::::::::
*/

.heading1-w span.span {
    display: inline-block;
    padding: 8px 14px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 111px;
    color: var(--03-home-text-colors, #fff);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    margin-bottom: 16px;
}

.heading1-w span.span img {
    margin-top: -5px;
    margin-right: 5px;
    filter: brightness(0) invert(1);
}

.heading1-w h2 {
    color: var(--vtc-text-white-1);
    font-size: var(--f-fs-font-fs44);
    font-style: normal;
    font-weight: var(--f-fw-semibold);
    line-height: var(--f-fs-font-fs52);
    /* 118.182% */
}

@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 {
    color: var(--White-colors, rgba(255, 255, 255, 0.7450980392));
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs24);
    /* 133.333% */
}

.heading1 span.span {
    display: inline-block;
    padding: 8px 14px;
    background-color: var(--vtc-bg-common-2);
    border-radius: 111px;
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    margin-bottom: 16px;
}

.heading1 span.span img {
    margin-top: -5px;
    margin-right: 2px;
}

.heading1 h2 {
    color: var(--vtc-text-heading-1);
    font-size: var(--f-fs-font-fs44);
    font-style: normal;
    font-weight: var(--f-fw-semibold);
    line-height: var(--f-fs-font-fs52);
    /* 118.182% */
}

@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 {
    color: var(--03-home-text-colors, #001518);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    /* 125% */
}

.heading1 h4 a {
    display: inline-block;
    color: var(--03-home-text-colors, #001518);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
   
    padding: 16px 0px;
    transition: all 0.4s;
}

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

.heading1 h5 a {
    display: inline-block;
    color: var(--dark);
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    transition: all 0.4s;
}

.heading1 h5 a:hover {
    color: var(--vtc-bg-main-1);
    transition: all 0.4s;
}

.heading1 p {
     color: #4e4d4d;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    transition: all 0.4s;
}

.heading2 span.span {
     display: inline-block;
    padding: 8px 22px;
    background-color: #19aaed33;
    border-radius: 20px 0px 20px 0px;
    color: var(--blue);
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 16px;
    font-weight: 500;
}

.heading2 span.span img {
    margin-top: -5px;
    margin-right: 2px;
}

.heading2 h2 {
    color: var(--01-home-text-colors, #010915);
font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 37px;
    letter-spacing: 0;
    /* 118.182% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .heading2 h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .mycontact .contact4 .work-hours .contact-info .single-box .heading h6 {
    color: var(--blue)!important;
    font-size: 13px!important;
    }
    .mycontact .contact4 .work-hours .contact-info .single-box .heading a {
    color: #ffffff;
    font-size: 14px!important;
    font-style: normal;
    font-weight: 400;
    line-height: 13px!important;
    padding-top: 6px!important;
}
    .digit {
    width: 30px!important;
    height: 41px!important;
    background: linear-gradient(180deg, #3a3a3a, #191919);
    border-radius: 6px!important;
    /* box-shadow: inset 0 2px 0 #444, inset 0 -2px 0 #000; */
    color: #fff;
    font-size: 28px!important;
    font-weight: bold;
    text-align: center;
    line-height: 47px!important;
    }
.footer2 .footer-list h5 {
    font-size: 15px;
    margin-bottom: 8px;
}
    .footer2 .footer-list.list ul li a {
     font-size: 12px!important;
    font-style: normal;
    font-weight: 400;
    line-height: 18px!important;
    padding-bottom: 4px!important;
}
    .hero-area4 {
    padding: 10px 0px
    }
    .hero-area4 {
    padding: 10px 0px
    }
    .mycontact h5{
            font-size: 16px;
    }
    .heading2 h2 {
                font-size: 23px;
        line-height: 27px;
    }
    .heading2 span.span {
    display: inline-block;
    padding: 5px 16px;
    background-color: #19aaed33;
    border-radius: 20px 0px 20px 0px;
    color: var(--blue);
    font-size: 13px;
    font-style: italic;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 16px;
    font-weight: 500;
}
.theme-btn4
 {
    color: var(--White-colors, #FFF);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    padding: 5px 13px;
    border-radius: 40px;
    display: flex;
    transition: all 0.4s;
    border: none;
    position: relative;
    z-index: 33;
    overflow: hidden;
    align-items: center;
}
.theme-btn4 span.arrow {
    height: 27px;
    width: 27px;
}
}

.heading2 h4 a {
    display: inline-block;
    color: var(--01-home-text-colors, #010915);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
   
    transition: all 0.4s;
}

.heading2 p {
    color: var(--01-home-paragraph, #404245);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    transition: all 0.4s;
}

.heading2-w span.span {
    display: inline-block;
    padding: 8px 14px;
    background-color: #1A222C;
    border-radius: 7px;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    margin-bottom: 16px;
}

.heading2-w span.span img {
    margin-top: -5px;
    margin-right: 2px;
    filter: brightness(0) invert(1);
}

.heading2-w h2 {
    color: var(--White-colors, #FFF);
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 52px;
    /* 118.182% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .heading2-w h2 {
        font-size: var(--f-fs-font-fs32);
        line-height: var(--f-fs-font-fs40);
    }
}

@media (max-width: 767px) {
    .heading2-w h2 {
        font-size: var(--f-fs-font-fs32);
        line-height: var(--f-fs-font-fs40);
    }
}

.heading2-w p {
    color: var(--White-colors, rgba(255, 255, 255, 0.8823529412));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
}

.heading3 span.span {
    display: inline-block;
    color: var(--02-home-main-colors, #8D65FF);
       font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
   
    padding: 8px 12px;
    border-radius: 60px;
    background: rgba(141, 101, 255, 0.05);
    margin-bottom: 16px;
}

.heading3 span.span img {
    margin-top: -4px;
}

.heading3 h4 a {
    color: var(--02-home-text-colors, #04000E);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
   
    transition: all 0.4s;
}

.heading3 h4 a:hover {
    transition: all 0.4s;
    color: var(--vtc-bg-main-4);
}

.heading3 h2 {
   color: #010915;
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 52px;
    /* 118.182% */
}

@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);
    }
}
@media (max-width:991px){
    .tp-slider-img {
        background-position: center!important;
    }
   .abt{
    padding-top: 0px;
   }
   .mobile-header-elements img{
    width: 210px;
   }
   .tp-slider-wrapper {
    min-height: 590px!important;
   }
   .choose-boxs{
    text-align: start!important;
}
}
.choose-boxs{
    text-align: end;
}
.heading3 p {
    color: var(--02-home-paragraph, #5A5A5A);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
}

.heading3-w span.span {
    display: inline-block;
    color: var(--02-home-main-colors, white);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    padding: 8px 12px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 16px;
}

.heading3-w span.span img {
    margin-top: -4px;
    margin-right: 2px;
    filter: brightness(0) invert(1);
}

.heading3-w h2 {
    color: var(--White-colors, #FFF);
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
   
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .heading3-w h2 {
        font-size: var(--f-fs-font-fs32);
        line-height: var(--f-fs-font-fs40);
    }
}

@media (max-width: 767px) {
    .heading3-w h2 {
        font-size: var(--f-fs-font-fs32);
        line-height: var(--f-fs-font-fs40);
    }
}

.heading3-w p {
    color: var(--White-colors, rgba(255, 255, 255, 0.8));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
}

.heading3-w h4 a {
    display: inline-block;
    transition: all 0.4s;
    color: var(--White-colors, #FFF);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    /* 125% */
}

.heading4-w h2 {
    color: var(--White-colors, #FFF);
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
   
}

@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 p {
    color: var(--White-colors, rgba(255, 255, 255, 0.8352941176));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
}

.heading4 span.span {
    display: inline-block;
    color: var(--02-home-main-colors, #FD4A12);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    padding: 8px 12px;
    border-radius: 60px;
    background: rgba(253, 73, 18, 0.062745098);
    margin-bottom: 16px;
}

.heading4 span.span img {
    margin-top: -4px;
    margin-right: 3px;
}

.heading4 h4 a {
    display: inline-block;
    color: var(--04-home-text-colors, #0E0401);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    /* 130% */
    transition: all 0.4s;
}

.heading4 h4 a:hover {
    color: var(--vtc-bg-main-5);
    transition: all 0.4s;
}

.heading4 p {
    color: var(--04-home-paragraph, #565251);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
}

.heading4 h2 {
    color: var(--04-home-text-colors, #0E0401);
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 52px;
    /* 118.182% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .heading4 h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .heading4 h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

.heading4 h3 {
    color: var(--04-home-text-colors, #0E0401);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
   
}

.bg1 {
    background-color: var(--vtc-bg-common-2);
}

.bg2 {
    background-color: var(--vtc-bg-common-4);
}

.bg3 {
    background-color: var(--vtc-bg-common-6);
}

/*============================
++++PAGE-PROGRESS-SATRT+++++
=============================*/

.blok:nth-of-type(odd) {
    background-color: white;
}

.blok:nth-of-type(even) {
    background-color: black;
}

/* #Progress
================================================== */

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 999;
}

.progress-wrap::after {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f062";
    text-align: center;
    line-height: 56px;
    font-size: 18px;
    color: #03256c;
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f062";
    text-align: center;
    line-height: 56px;
    font-size: 18px;
    opacity: 0;
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear;
}

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

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #03256c;
    /* --- Lijn progres kleur --- */
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

/*============================
++++PAGE-PROGRESS-END+++++
=============================*/

.progress-wrap.progress-wrap2 {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.267);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

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

.progress-wrap.progress-wrap2::after {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f062";
    text-align: center;
    line-height: 56px;
    font-size: 18px;
    color: #f7f7f7;
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.progress-wrap.progress-wrap2:hover::after {
    opacity: 0;
}

.progress-wrap.progress-wrap2::before {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f062";
    text-align: center;
    line-height: 56px;
    font-size: 18px;
    opacity: 0;
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear;
}

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

.progress-wrap.progress-wrap2 svg path {
    fill: none;
}

.progress-wrap.progress-wrap2 svg.progress-circle path {
    stroke: #ffffff;
    /* --- Lijn progres kleur --- */
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

/* video button  */

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

@media (max-width: 767px) {
    .video-play-button {
        margin: 0px 30px 0px 0px;
    }
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3764705882);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 45px;
    height: 45px;
    background: var(--vtc-bg-main-bg-2);
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-button:hover:after {
    background-color: #da0528;
}

.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: 14px;
    margin-left: 7px;
    width: 0;
    height: 0;
    border-radius: 4px;
    border-left: 13px solid #000;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.hero-button1 {
    display: flex;
    align-items: center;
    cursor: pointer;
}

@media (max-width: 767px) {
    .hero-button1 {
        margin-top: 20px;
    }
}

.hero7-all-buttons {
    display: flex;
    align-items: center;
}

.video-play-area .video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.4117647059);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-area .video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-area .video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
    margin-top: 5px;
}

.video-play-area .video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    margin-top: 14px;
    margin-left: 7px;
    width: 0;
    height: 0;
    border-radius: 4px;
    border-left: 15px solid #8D65FF;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.video-play-area p {
    color: var(--White-Colors, #FFF);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
   
    text-align: center;
    margin-top: 30px;
}

.video-play2 .video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--vtc-bg-main-1);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play2 .video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    background: var(--vtc-bg-main-1);
    border-radius: 50%;
    transition: all 200ms;
}

.video-play2 .video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
    margin-top: 5px;
}

.video-play2 .video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    margin-top: 14px;
    margin-left: 7px;
    width: 0;
    height: 0;
    border-radius: 4px;
    border-left: 15px solid #ffffff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/*Pagination*/

.theme-pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.theme-pagination li {
    display: inline-block;
    color: var(--ztc-bg-color-w);
}

.theme-pagination li a {
    width: 55px;
    height: 55px;
    text-align: center;
    line-height: 55px;
    background-color: #E9F4F6;
    margin: 0 4px;
    transition: all 0.3s;
    display: block;
    color: var(--ztc-text-text-1);
    border-radius: 7px;
    font-weight: 700;
}

.recent-post-content {
    padding-right: 20px;
}

.theme-pagination li a:hover,
.theme-pagination li a.active {
    background: var(--vtc-bg-main-1);
    box-shadow: 0px 4px 10px 0px rgba(122, 120, 198, 0.2);
    transition: all 0.3s;
    color: #fff;
}

/*
::::::::::::::::::::::::::
 COMMON AREA CSS
::::::::::::::::::::::::::
*/

/*
::::::::::::::::::::::::::
 BUTTONS AREA CSS
::::::::::::::::::::::::::
*/

.theme-btn1 {
    color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    padding: 10px 10px 10px 16px;
    background-color: var(--vtc-bg-main-1);
    border-radius: 25px;
    display: inline-block;
    transition: all 0.4s;
    border: none;
}

.theme-btn1 span.arrow {
    display: inline-block;
    background-color: var(--vtc-bg-white);
    height: 32px;
    width: 32px;
    color: var(--vtc-bg-main-1);
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    transform: rotate(-45deg);
    margin-left: 6px;
}

.theme-btn1:hover {
    background-color: #28a8be;
    transform: translateY(-5px);
    transition: all 0.4s;
    color: var(--vtc-bg-white);
}

.theme-btn2 {
    color: var(--vtc-text-heading-1);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    padding: 10px 10px 10px 16px;
    background-color: var(--vtc-bg-white);
    border-radius: 25px;
    display: inline-block;
    transition: all 0.4s;
}

.theme-btn2 span.arrow {
    display: inline-block;
    background-color: rgba(34, 147, 167, 0.2196078431);
    height: 32px;
    width: 32px;
    color: var(--vtc-bg-main-1);
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    transform: rotate(-45deg);
    margin-left: 6px;
    transition: all 0.4s;
}

.theme-btn2:hover {
    background-color: #28a8be;
    transform: translateY(-5px);
    transition: all 0.4s;
    color: var(--vtc-bg-white);
}

.theme-btn2:hover span.arrow {
    color: var(--vtc-bg-white);
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s;
}

.theme-btn3 {
    color: var(--vtc-bg-white);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    padding: 9px 10px 9px 16px;
    background: transparent;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.4s;
    border: 2px solid var(--vtc-bg-white);
    margin-left: 12px;
}

.theme-btn3 span.arrow {
    display: inline-block;
    background-color: #fff;
    height: 32px;
    width: 32px;
    color: var(--vtc-bg-main-1);
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    transform: rotate(-45deg);
    margin-left: 6px;
    transition: all 0.4s;
}

.theme-btn3:hover {
    background-color: #fff;
    transform: translateY(-5px);
    transition: all 0.4s;
    color: var(--vtc-text-heading-1);
}

.theme-btn3:hover span.arrow {
    color: var(--vtc-bg-white);
    background-color: var(--vtc-bg-main-1);
    transition: all 0.4s;
}

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

.theme-btn4 {
    color: var(--White-colors, #FFF);
       font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    padding: 5px 23px;
    border-radius: 40px;
    display: inline-block;
    transition: all 0.4s;
    border: none;
    position: relative;
    z-index: 33;
    overflow: hidden;
}

.theme-btn4 span.arrow {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1176470588);
    height: 32px;
    width: 32px;
    color: var(--vtc-bg-white);
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    margin-left: 6px;
}

.theme-btn4::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  /* background-color: #120935; */
      background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    /* border-radius: 7px; */
    z-index: -3;
}

.theme-btn4::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: var(--blue);
    border-radius: 7px;
    z-index: -2;
    transition: all 0.4s;
    animation-timing-function: ease-in;
}

.theme-btn4:hover {
    transform: translateY(-5px);
    transition: all 0.4s;
    color: var(--vtc-bg-white);
}

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

.theme-btn5 {
    color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    padding: 13px 16px 13px 16px;
    border-radius: 7px;
    display: inline-block;
    transition: all 0.4s;
    border: none;
    position: relative;
    z-index: 33;
    overflow: hidden;
    margin-left: 18px;
}

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

.theme-btn5 span.arrow {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1176470588);
    height: 32px;
    width: 32px;
    color: var(--vtc-bg-white);
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    margin-left: 6px;
}

.theme-btn5::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 2px solid #fff;
    border-radius: 7px;
    z-index: -3;
}

.theme-btn5::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: #5199FF;
    border-radius: 7px;
    z-index: -2;
    transition: all 0.4s;
    animation-timing-function: ease-in;
}

.theme-btn5:hover {
    transform: translateY(-5px);
    transition: all 0.4s;
    color: var(--vtc-bg-white);
}

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

.cta2-btn1 {
    color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    padding: 14px 16px 14px 16px;
    border-radius: 7px;
    display: inline-block;
    transition: all 0.4s;
    border: none;
    position: relative;
    z-index: 33;
    overflow: hidden;
}

.cta2-btn1 span.arrow {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1176470588);
    height: 32px;
    width: 32px;
    color: var(--vtc-bg-white);
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    margin-left: 6px;
}

.cta2-btn1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #010915;
    border-radius: 7px;
    z-index: -3;
}

.cta2-btn1::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: #5199FF;
    border-radius: 7px;
    z-index: -2;
    transition: all 0.4s;
    animation-timing-function: ease-in;
}

.cta2-btn1:hover {
    transform: translateY(-5px);
    transition: all 0.4s;
    color: var(--vtc-bg-white);
}

.cta2-btn1:hover::before {
    width: 100%;
    transition: all 0.4s;
    right: auto;
    left: 0;
}

.cta2-btn2 {
    color: var(--White-colors, #010915);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    padding: 14px 16px 14px 16px;
    border-radius: 7px;
    display: inline-block;
    transition: all 0.4s;
    border: none;
    position: relative;
    z-index: 33;
    overflow: hidden;
    margin-left: 16px;
}

@media (max-width: 767px) {
    .cta2-btn2 {
        margin-left: 0;
        margin-top: 10px;
    }
}

.cta2-btn2 span.arrow {
    display: inline-block;
    background-color: rgba(1, 9, 21, 0.1294117647);
    height: 32px;
    width: 32px;
    color: #010915;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    margin-left: 6px;
    transition: all 0.4s;
}

.cta2-btn2::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    border-radius: 7px;
    z-index: -3;
}

.cta2-btn2::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: #5199FF;
    border-radius: 7px;
    z-index: -2;
    transition: all 0.4s;
    animation-timing-function: ease-in;
}

.cta2-btn2:hover {
    transform: translateY(-5px);
    transition: all 0.4s;
    color: var(--vtc-bg-white);
}

.cta2-btn2:hover::before {
    width: 100%;
    transition: all 0.4s;
    right: auto;
    left: 0;
}

.cta2-btn2:hover span.arrow {
    color: #fff;
    transition: all 0.4s;
    background-color: rgba(255, 255, 255, 0.1098039216);
}

.theme-btn6 {
    display: inline-block;
    padding: 18px 22px;
    border-radius: 30px;
    position: relative;
    z-index: 99;
    overflow: hidden;
    color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    transition: all 0.4s;
    border: none;
}

.theme-btn6::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 30px;
    background-color: var(--vtc-bg-main-4);
    z-index: -2;
    transition: all 0.4s;
}

.theme-btn6::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 12px;
    height: 36px;
    width: 36px;
    border-radius: 36px;
    background-color: rgba(255, 255, 255, 0.11);
    z-index: -1;
    transition: all 0.4s;
}

.theme-btn6:hover {
    color: #fff;
}

.theme-btn6:hover::before {
    width: 85%;
    transition: all 0.4s;
}

.theme-btn7 {
    display: inline-block;
    padding: 18px 22px;
    border-radius: 30px;
    position: relative;
    z-index: 99;
    overflow: hidden;
    color: var(--vtc-bg-main-4);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    transition: all 0.4s;
    margin-left: 10px;
}

.theme-btn7::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 30px;
    border: 1px solid var(--vtc-bg-main-4);
    z-index: -2;
    transition: all 0.4s;
}

.theme-btn7::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 12px;
    height: 36px;
    width: 36px;
    border-radius: 36px;
    background-color: rgba(142, 101, 255, 0.1568627451);
    z-index: -1;
    transition: all 0.4s;
}

.theme-btn7:hover {
    color: var(--vtc-bg-main-4);
}

.theme-btn7:hover::before {
    width: 85%;
    transition: all 0.4s;
}

.theme-btn8 {
    display: inline-block;
    background-color: var(--vtc-bg-main-5);
    padding: 18px 22px;
    color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    border-radius: 7px;
    transition: all 0.4s;
    overflow: hidden;
    position: relative;
    z-index: 9;
    border: none;
}

.theme-btn8:hover {
    color: var(--vtc-bg-white);
    transition: all 0.4s;
    transform: translateY(-5px);
}

.theme-btn8:hover::after {
    opacity: 1;
    transition: all 0.4s;
    transform: rotateY(0deg);
}

.theme-btn8::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #FF784E;
    z-index: -1;
    transform: rotateY(70deg);
    opacity: 0;
    transition: all 0.4s;
}

.theme-btn9 {
    display: inline-block;
    border: 1px solid #fff;
    padding: 17px 22px;
    color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    border-radius: 7px;
    transition: all 0.4s;
    overflow: hidden;
    position: relative;
    z-index: 9;
    margin-left: 16px;
}

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

.theme-btn9:hover {
    color: var(--vtc-bg-white);
    transition: all 0.4s;
    transform: translateY(-5px);
    border-color: var(--vtc-bg-main-5);
}

.theme-btn9:hover::after {
    opacity: 1;
    transition: all 0.4s;
    transform: rotateY(0deg);
}

.theme-btn9::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--vtc-bg-main-5);
    z-index: -1;
    transform: rotateY(70deg);
    opacity: 0;
    transition: all 0.4s;
}

.rtl-dir .theme-btn6 {
    display: inline-block;
    padding: 18px 22px;
    border-radius: 30px;
    position: relative;
    z-index: 99;
    overflow: hidden;
    color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    transition: all 0.4s;
    border: none;
}

.rtl-dir .theme-btn6 span {
    display: inline-block;
    transform: rotate(180deg);
}

.rtl-dir .theme-btn6::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 30px;
    background-color: var(--vtc-bg-main-4);
    z-index: -2;
    transition: all 0.4s;
}

.rtl-dir .theme-btn6::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 12px;
    height: 36px;
    width: 36px;
    border-radius: 36px;
    background-color: rgba(255, 255, 255, 0.11);
    z-index: -1;
    transition: all 0.4s;
}

.rtl-dir .theme-btn6:hover {
    color: #fff;
}

.rtl-dir .theme-btn6:hover::before {
    width: 85%;
    transition: all 0.4s;
}

.rtl-dir .theme-btn7 {
    display: inline-block;
    padding: 18px 22px;
    border-radius: 30px;
    position: relative;
    z-index: 99;
    overflow: hidden;
    color: var(--vtc-bg-main-4);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    transition: all 0.4s;
    margin-left: 10px;
}

.rtl-dir .theme-btn7 span {
    display: inline-block;
    transform: rotate(180deg);
}

.rtl-dir .theme-btn7::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 30px;
    border: 1px solid var(--vtc-bg-main-4);
    z-index: -2;
    transition: all 0.4s;
}

.rtl-dir .theme-btn7::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 12px;
    height: 36px;
    width: 36px;
    border-radius: 36px;
    background-color: rgba(142, 101, 255, 0.1568627451);
    z-index: -1;
    transition: all 0.4s;
}

.rtl-dir .theme-btn7:hover {
    color: var(--vtc-bg-main-4);
}

.rtl-dir .theme-btn7:hover::before {
    width: 85%;
    transition: all 0.4s;
}

/*
::::::::::::::::::::::::::
    BUTOTNS AREA CSS
::::::::::::::::::::::::::
*/

/*
::::::::::::::::::::::::::
 ABOUT AREA CSS
::::::::::::::::::::::::::
*/

.about1 {
    position: relative;
}

.about1 .heading1 span.span {
    background-color: rgba(34, 147, 167, 0.1529411765);
}

.about1 .about1-box {
    margin-top: 30px;
}

.about1 .about1-box .progressbar {
    position: relative;
}

.about1 .about1-box .progressbar .circle canvas {
    width: 60px;
    height: 60px;
}

.about1 .about1-box .progressbar .count {
    position: absolute;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    margin-top: -45px;
    margin-left: 14px;
}

.about1 .buttons {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .about1 .buttons {
        display: block;
    }
}

.about1 .buttons .contact-btn {
    display: flex;
    align-items: center;
    margin-left: 16px;
}

@media (max-width: 767px) {
    .about1 .buttons .contact-btn {
        margin-left: 0;
        margin-top: 20px;
    }
}
.mycontact{
    background-image: url('../img/14882924.jpg');
}
.mycontact .contact4 .work-hours .contact-info .single-box .heading h6 {
         color: var(--blue);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}
.mycontact .heading{
    text-align: left;
}
.mycontact hr {
    color: #dddddd;
}
.mycontact .contact4 .work-hours .contact-info .single-box .heading a {
      color: #ffffff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 13px;
    padding-top: 8px;
    display: inline-block;
}
.mycontact .contact4 .work-hours .contact-info .single-box .icon img {
    transition: all 0.4s;
    width: 20px;
}
.mycontact .contact4 .work-hours .contact-info .single-box .icon {
    background-color: var(--blue);
    height: 35px;
    width: 35px;
    line-height: 35px;
}
.mycontact .contact-info {
     
}
.about1 .buttons .contact-btn .icon {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--vtc-text-white-1);
    border-radius: 50%;
    margin-right: 10px;
}

.about1 .buttons .contact-btn .pera a {
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
   
}

.about1::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 45%;
    background-image: url(../img/about/about1-main-image.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about1::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .about1::after {
        display: none;
    }
}

.about1 .shape1 {
    position: absolute;
    top: 100px;
    left: 0;
}

.about1 .shape2 {
    position: absolute;
    top: 20px;
    right: 50%;
}

.about1 .shape3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.about1 .about-main-image {
    display: none;
    margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about1 .about-main-image {
        display: block;
    }
}

@media (max-width: 767px) {
    .about1 .about-main-image {
        display: block;
    }
}
.about2{
    position: relative;
}
.about2 .sucsusse-box {
    background-color: var(--vtc-bg-common-4);
    padding: 32px;
    text-align: center;
    border-radius: 7px;
    margin: -60px 32px 0px 32px;
    position: relative;
    z-index: 2;
}

.about2 .sucsusse-box .arrow {
    display: inline-block;
    height: 56px;
    width: 56px;
    border-radius: 50%;
    text-align: center;
    line-height: 56px;
    background-color: var(--vtc-bg-main-3);
    color: var(--vtc-text-white-1);
    font-size: 20px;
    transform: rotate(-45deg);
    margin-bottom: 10px;
    transition: all 0.4s;
}

.about2 .sucsusse-box .arrow:hover {
    background-color: #010915;
    transition: all 0.4s;
}

.about2 .sucsusse-box p {
    color: var(--01-home-text-colors, #010915);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    /* 125% */
}

.about2 .circle-area {
    position: relative;
    margin-left: 20px;
}

@media (max-width: 767px) {
    .about2 .circle-area {
        margin-top: 20px;
    }
}

.about2 .circle-area .bg {
    position: absolute;
}

.about2 .circle-area .arrow {
    position: absolute;
    top: 58px;
    left: 55px;
}

.about2 .image-2 {
    margin-top: 190px;
    margin-left: 20px;
}

@media (max-width: 767px) {
    .about2 .image-2 {
        margin-left: 0;
    }
}

.about2 .heading2 {
    padding-left: 30px;
    position: relative;
}

@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 .heading2 .list {
    margin-top: 20px;
}

.about2 .heading2 .list li {
    color: var(--01-home-text-colors, #010915);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
   
    padding-top: 16px;
}

.about2 .heading2 .list li span {
    display: inline-block;
    background-color: var(--vtc-bg-common-5);
    height: 24px;
    width: 24px;
    border-radius: 50%;
    line-height: 24px;
    text-align: center;
    font-size: 14px;
    margin-right: 5px;
}

.about2 .sce-shape {
    position: absolute;
    top:8px;
    right: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about2 .sce-shape {
        display: none;
    }
}

@media (max-width: 767px) {
    .about2 .sce-shape {
        display: none;
    }
}

.about-page-sec .about1-box {
    margin-top: 30px;
}

.about-page-sec .about1-box .progressbar {
    position: relative;
}

.about-page-sec .about1-box .progressbar .circle canvas {
    width: 60px !important;
    height: 60px !important;
}

@media (max-width: 767px) {
    .about-page-sec .about1-box .progressbar .circle canvas {
        width: 60px !important;
        height: 60px !important;
    }
}

.about-page-sec .about1-box .progressbar .count {
    position: absolute;
    top: 22px;
    left: 16px;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.about-page-sec .buttons {
    display: flex;
    align-items: center;
}

.about-page-sec .buttons .contact-btn {
    display: flex;
    align-items: center;
    margin-left: 16px;
}

.about-page-sec .buttons .contact-btn .icon {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #E9F4F6;
    border-radius: 50%;
    margin-right: 10px;
}

.about-page-sec .buttons .contact-btn .pera a {
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
   
}

.about-page-sec .about-sec-images {
    height: 670px;
    position: relative;
    margin-right: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-page-sec .about-sec-images {
        margin-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .about-page-sec .about-sec-images {
        margin-right: 0;
        margin-bottom: 40px;
        height: 660px;
    }
}

.about-page-sec .about-sec-images .image1 {
    position: absolute;
    top: 0;
    right: 0;
}

.about-page-sec .about-sec-images .image2 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.about-choose .heading1 {
    padding-left: 30px;
}

.about-choose .about-choose-list {
    display: flex;
    align-items: center;
    margin-top: 36px;
}

.about-choose .about-choose-list .arrow {
    position: relative;
}

.about-choose .about-choose-list .arrow span {
    font-size: 12px;
    color: #fff;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    align-items: center;
    background-color: #2293A7;
    display: inline-block;
    border-radius: 50%;
    margin-right: 20px;
}

.about-choose .about-choose-list .arrow::after {
    position: absolute;
    content: "";
    height: 40px;
    width: 40px;
    border-radius: 50%;
    left: -10px;
    top: -7px;
    background-color: rgba(34, 147, 167, 0.1725490196);
}

.about-choose .about-choose-list .pera p {
    color: var(--03-home-text-colors, #001518);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
   
}

.about-choose .images-all {
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-choose .images-all {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .about-choose .images-all .image1 {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .about-choose .images-all .image2 {
        margin-top: 30px;
    }
}

.about-choose .images-all .shape {
    position: absolute;
    bottom: 0;
    left: 60px;
}

.about-value {
    background-color: #001518;
    position: relative;
}

.about-value .heading1-w {
    padding-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-value .heading1-w {
        padding-left: 0;
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .about-value .heading1-w {
        padding-left: 0;
        padding-top: 40px;
    }
}

.about-value .images {
    position: relative;
}

.about-value .images .image1 img {
    width: 100%;
}

.about-value .images .shape {
    position: absolute;
    top: -40px;
    right: -40px;
}

.about-value .tabs-area {
    margin-top: 30px;
    padding-top: 10px;
}

.about-value .tabs-area .nav {
    border-top: 1px solid rgba(255, 255, 255, 0.1529411765);
    display: flex;
    justify-content: space-between;
    margin-right: 80px;
}

.about-value .tabs-area .nav li button {
    background: none;
    padding: 20px;
    color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
   
    position: relative;
}

.about-value .tabs-area .nav li button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: #fff;
    opacity: 0;
}

.about-value .tabs-area .nav li button.active::after {
    opacity: 1;
}

.about-value .tabs-area .tab-content .tab-pane p {
    padding-bottom: 30px;
}

.about-value .tabs-area .tab-content .tab-pane p span {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
   
    display: inline-block;
}

.about-value .shape1 {
    position: absolute;
    top: 0;
    left: 0;
}

.about-value .shape2 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.about-value .shape3 {
    position: absolute;
    bottom: 0;
    right: 0;
}

/*
::::::::::::::::::::::::::
 ABOUT AREA CSS
::::::::::::::::::::::::::
*/

/*
::::::::::::::::::::::::::
 SERVICE AREA CSS
::::::::::::::::::::::::::
*/

.service1-box {
    height: 370px;
    width: 370px;
    background-color: var(--vtc-bg-common-1);
    border: 2px solid #D2DEE0;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 0px 24px;
    position: relative;
    transition: all 0.4s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service1-box {
        margin-top: 30px;
        width: 320px;
        height: 320px;
        border-radius: 7px;
    }
}

@media (max-width: 767px) {
    .service1-box {
        margin-top: 30px;
        width: 320px;
        height: 320px;
        border-radius: 7px;
    }
}

.service1-box.box2 {
    margin-left: -20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service1-box.box2 {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .service1-box.box2 {
        margin-left: 0;
    }
}

.service1-box.box3 {
    margin-left: -40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service1-box.box3 {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .service1-box.box3 {
        margin-left: 0;
    }
}

.service1-box.box4 {
    margin-left: -60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service1-box.box4 {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .service1-box.box4 {
        margin-left: 0;
    }
}

.service1-box .icon {
    background-color: var(--vtc-bg-common-2);
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    margin: auto;
}

.service1-box .learn {
    display: inline-block;
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    margin-top: 16px;
    transition: all 0.4s;
}

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

.service1-box .learn:hover {
    color: var(--vtc-bg-main-1);
    transition: all 0.4s;
}

.service1-box:hover {
    background-color: var(--vtc-bg-main-1);
    transition: all 0.4s;
    z-index: 99;
}

.service1-box:hover .icon {
    transition: all 0.4s;
    background-color: #fff;
}

.service1-box:hover .heading1 h4 a {
    color: var(--vtc-text-white-1);
    transition: all 0.4s;
}

.service1-box:hover .heading1 p {
    color: rgba(255, 255, 255, 0.6431372549);
    transition: all 0.4s;
}

.service1-box:hover .heading1 .learn {
    color: #fff;
    transition: all 0.4s;
}

.service2 {
    position: relative;
}

.service2::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--vtc-bg-common-4);
    z-index: -3;
}

.service2 .service2-box {
    margin-top: 40px;
    padding: 32px;
    border-radius: 7px;
    position: relative;
    transition: all 0.4s;
}

.service2 .service2-box .icon {
    background-color: #D2E3FC;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.4s;
}

.service2 .service2-box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    z-index: -2;
    border-radius: 7px;
}

.service2 .service2-box::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0%;
    width: 100%;
    background-image: url(../img/service/service2-img2.png);
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
    border-radius: 7px;
    transition: all 0.4s;
    opacity: 0;
}

.service2 .service2-box .button {
    color: var(--White-colors, #010915);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    padding: 13px 16px 13px 16px;
    border-radius: 7px;
    display: inline-block;
    transition: all 0.4s;
    border: none;
    position: relative;
    z-index: 33;
    overflow: hidden;
}

.service2 .service2-box .button span.arrow {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.1176470588);
    height: 32px;
    width: 32px;
    color: #010915;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    margin-left: 6px;
}

.service2 .service2-box .button::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 2px solid #010915;
    border-radius: 7px;
    z-index: -3;
}

.service2 .service2-box .button::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: #5199FF;
    border-radius: 7px;
    z-index: -2;
    transition: all 0.4s;
    animation-timing-function: ease-in;
}

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

.service2 .service2-box:hover h4 a {
    color: var(--vtc-text-white-1);
    transition: all 0.4s;
}

.service2 .service2-box:hover .icon {
    background-color: #fff;
    transition: all 0.4s;
}

.service2 .service2-box:hover p {
    color: rgba(255, 255, 255, 0.7882352941);
    transition: all 0.4s;
}

.service2 .service2-box:hover::before {
    height: 100%;
    transition: all 0.4s;
    opacity: 1;
}

.service2 .service2-box:hover .button {
    transform: translateY(-5px);
    transition: all 0.4s;
    color: var(--vtc-bg-white);
}

.service2 .service2-box:hover .button::before {
    width: 100%;
    transition: all 0.4s;
    right: auto;
    left: 0;
    animation-timing-function: ease-in;
}

.service2 .service2-box:hover .button span.arrow {
    background-color: rgba(255, 255, 255, 0.1176470588);
    color: #fff;
    transition: all 0.4s;
}

.service2 .shape1 {
    position: absolute;
    left: 0;
    top: 0;
}

.service2 .shape2 {
    position: absolute;
    right: 0;
    top: 0;
}

.service2 .shape3 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.service2 .shape4 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.service4 .service4-slider-all .single-slider {
    margin: 0px 10px;
    position: relative;
}

.service4 .service4-slider-all .single-slider .image img {
    width: 100%;
}

.service4 .service4-slider-all .single-slider .heading-area {
      position: absolute;
    bottom: 20px;
    margin: 0 20px;
    text-align: center;
    padding: 10px 24px;
    overflow: hidden;
    width: 87%;
}
.service4 .service4-slider-all .single-slider .heading-area  h4{
       
}
.sug{
        position: absolute;
    width: 355px;
    opacity: .8;
    bottom: 0;
    right: 30px;

}
.service4 .service4-slider-all .single-slider .heading-area h4 a {
      display: inline-block;
    color: var(--White-colors, #FFF);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    transform: translateY(0);
    position: relative;
    z-index: 2;
    transition: all 0.4s;
    margin-bottom: 7px;

    /* display: inline-block;
    color: var(--White-colors, #FFF);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    transform: translateY(90px);
    position: relative;
    z-index: 2;
    transition: all 0.4s; */
}

.service4 .service4-slider-all .single-slider .heading-area p {
    color: var(--White-colors, rgba(255, 255, 255, 0.7725490196));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    padding: 16px 0;
    transform: translateY(90px);
    opacity: 0;
    transition: all 0.4s;
    position: relative;
    z-index: 2;
}
.myu{
    background-image: url('../img/dot-map.png');
    background-size: contain;
    background-position: center;
    position: relative;
    background-repeat: no-repeat;
}
.service4 .service4-slider-all .single-slider .heading-area .learn {
color: var(--White-colors, #FFF);
    font-size: 13px;
    font-style: italic;
    font-weight: 500;
    line-height: 18px;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s;
    position: relative;
    z-index: 2;

    /* color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    transform: translateY(90px);
    opacity: 0;
    transition: all 0.4s;
    position: relative;
    z-index: 2; */
}

.service4 .service4-slider-all .single-slider .heading-area::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
       background: var(--blue);
    border-radius: 7px;
    transition: all 0.4s;
    background-image: linear-gradient(to top, #4481eb 0%, #04befe 100%);
}

.service4 .service4-slider-all .single-slider.slick-current.slick-active .heading-area::after {
    height: 100%;
    transition: all 0.4s;
}

.service4 .service4-slider-all .single-slider.slick-current.slick-active .heading-area h4 a {
    display: inline-block;
    color: var(--White-colors, #FFF);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    /* 130% */
    transform: translateY(0);
    position: relative;
    z-index: 2;
    transition: all 0.4s;
        margin-bottom: 7px;
}

.service4 .service4-slider-all .single-slider.slick-current.slick-active .heading-area p {
    color: var(--White-colors, rgba(255, 255, 255, 0.7725490196));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    padding: 16px 0;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s;
    position: relative;
    z-index: 2;
}

.service4 .service4-slider-all .single-slider.slick-current.slick-active .heading-area .learn {
    color: var(--White-colors, #FFF);
   font-size: 14px;
    font-style: italic;
    font-weight: 600;
    line-height: 18px;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s;
    position: relative;
    z-index: 2;
}

.service4 .service-arrows {
    text-align: end;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service4 .service-arrows {
        text-align: start;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .service4 .service-arrows {
        text-align: start;
        margin-top: 30px;
    }
}

.service4 .service-arrows button {
    border: none;
    background: var(--dark);
    height: 48px;
    width: 48px;
    line-height: 52px;
    text-align: center;
    border-radius: 7px;
    font-size: 20px;
    color: #fff;
    margin-left: 10px;
    transition: all 0.4s;
}
.curv{
    position: absolute;
    right: 0px;
    top: 0;
        /* z-index: 1; */
}
.service4 .service-arrows button:hover {
    background: var(--blue);
    color: #fff;
    transition: all 0.4s;
}
.contact4 h5{
    font-size: 18px;
    font-weight: 300;
}
.service3 {
    padding-top: 120px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service3 {
        padding-top: 60px;
    }
}

@media (max-width: 767px) {
    .service3 {
        padding-top: 60px;
    }
}

.service3 .service2-box {
    margin-top: 40px;
    padding: 24px;
    position: relative;
    transform: translateY(180px);
    transition: all 0.4s;
}

.service3 .service2-box .icon {
    height: 80px;
    width: 80px;
    transition: all 0.4s;
    background-color: #fff;
    border-radius: 50%;
    line-height: 80px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
}

.service3 .service2-box .heading3-w {
    position: relative;
    z-index: 2;
}

.service3 .service2-box .heading3-w p {
    padding: 24px 0px 32px 0px;
    opacity: 0;
    transition: all 0.4s;
    color: var(--02-home-paragraph, #5A5A5A);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
}

.service3 .service2-box::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #fff;
    height: 0%;
    width: 100%;
    border-radius: 7px 7px 0px 0px;
    transition: all 0.4s;
}

.service3 .service2-box:hover {
    transform: translateY(0);
}

.service3 .service2-box:hover::after {
    height: 100%;
    transition: all 0.4s;
}

.service3 .service2-box:hover .icon {
    background-color: rgba(142, 101, 255, 0.0666666667);
}

.service3 .service2-box:hover .heading3-w h4 a {
    transition: all 0.4s;
    color: #001518;
}

.service3 .service2-box:hover .heading3-w p {
    opacity: 1;
    transition: all 0.4s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service3 .service2-box {
        transform: translateY(0);
    }
    .service3 .service2-box::after {
        height: 100%;
        transition: all 0.4s;
    }
    .service3 .service2-box .icon {
        background-color: rgba(142, 101, 255, 0.0666666667);
    }
    .service3 .service2-box .heading3-w h4 a {
        transition: all 0.4s;
        color: #001518;
    }
    .service3 .service2-box .heading3-w p {
        opacity: 1;
        transition: all 0.4s;
    }
}

@media (max-width: 767px) {
    .service3 .service2-box {
        transform: translateY(0);
    }
    .service3 .service2-box::after {
        height: 100%;
        transition: all 0.4s;
    }
    .service3 .service2-box .icon {
        background-color: rgba(142, 101, 255, 0.0666666667);
    }
    .service3 .service2-box .heading3-w h4 a {
        transition: all 0.4s;
        color: #001518;
    }
    .service3 .service2-box .heading3-w p {
        opacity: 1;
        transition: all 0.4s;
    }
}

.service3 .service2-box.active {
    transform: translateY(0);
}

.service3 .service2-box.active::after {
    height: 100%;
    transition: all 0.4s;
}

.service3 .service2-box.active .icon {
    background-color: rgba(142, 101, 255, 0.0666666667);
}

.service3 .service2-box.active .heading3-w h4 a {
    transition: all 0.4s;
    color: #001518;
}

.service3 .service2-box.active .heading3-w p {
    opacity: 1;
    transition: all 0.4s;
}

.about-page-service {
    position: relative;
}

.about-page-service::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--vtc-bg-common-1);
    z-index: -3;
}

.about-page-service .service2-box {
    margin-top: 40px;
    padding: 32px;
    border-radius: 7px;
    position: relative;
    transition: all 0.4s;
}

.about-page-service .service2-box .icon {
    background-color: var(--vtc-bg-common-1);
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.4s;
}

.about-page-service .service2-box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    z-index: -2;
    border-radius: 7px;
}

.about-page-service .service2-box::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0%;
    width: 100%;
    background-image: url(../img/service/service2-img2.png);
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
    border-radius: 7px;
    transition: all 0.4s;
    opacity: 0;
}

.about-page-service .service2-box .button {
    color: var(--White-colors, #2293A7);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    padding: 13px 16px 13px 16px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.4s;
    border: none;
    position: relative;
    z-index: 33;
    overflow: hidden;
}

.about-page-service .service2-box .button span.arrow {
    display: inline-block;
    background-color: #2293A7;
    height: 32px;
    width: 32px;
    color: #fff;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    margin-left: 6px;
}

.about-page-service .service2-box .button::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 2px solid #2293A7;
    border-radius: 30px;
    z-index: -3;
}

.about-page-service .service2-box .button::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: #2293A7;
    border-radius: 30px;
    z-index: -2;
    transition: all 0.4s;
    animation-timing-function: ease-in;
}

.about-page-service .service2-box:hover {
    transform: translateY(-10px);
    transition: all 0.4s;
}

.about-page-service .service2-box:hover h4 a {
    color: var(--vtc-text-white-1);
    transition: all 0.4s;
}

.about-page-service .service2-box:hover .icon {
    background-color: #fff;
    transition: all 0.4s;
}

.about-page-service .service2-box:hover p {
    color: rgba(255, 255, 255, 0.7882352941);
    transition: all 0.4s;
}

.about-page-service .service2-box:hover::before {
    height: 100%;
    transition: all 0.4s;
    opacity: 1;
}

.about-page-service .service2-box:hover .button {
    transform: translateY(-5px);
    transition: all 0.4s;
    color: var(--vtc-bg-white);
}

.about-page-service .service2-box:hover .button::before {
    width: 100%;
    transition: all 0.4s;
    right: auto;
    left: 0;
    animation-timing-function: ease-in;
}

.about-page-service .service2-box:hover .button span.arrow {
    background-color: rgba(255, 255, 255, 0.1176470588);
    color: #fff;
    transition: all 0.4s;
}

.about-page-service .shape1 {
    position: absolute;
    left: 0;
    top: 0;
}

.about-page-service .shape2 {
    position: absolute;
    right: 0;
    top: 0;
}

.about-page-service .shape3 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.about-page-service .shape4 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.about-page-service.service-page::after {
    display: none;
}

.about-page-service.service-page .service2-box {
    margin-bottom: 30px;
    padding: 32px;
    border-radius: 7px;
    position: relative;
    transition: all 0.4s;
    margin-top: 0;
}

.about-page-service.service-page .service2-box .icon {
    background-color: rgba(34, 147, 167, 0.1843137255);
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.4s;
}

.about-page-service.service-page .service2-box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #E9F4F6;
    border: 2px solid #D2DEE0;
    z-index: -2;
    border-radius: 7px;
}

.about-page-service.service-page .service2-box::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0%;
    width: 100%;
    background-image: url(../img/service/service2-img2.png);
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
    border-radius: 7px;
    transition: all 0.4s;
    opacity: 0;
}

.about-page-service.service-page .service2-box .button {
    color: var(--White-colors, #2293A7);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    padding: 13px 16px 13px 16px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.4s;
    border: none;
    position: relative;
    z-index: 33;
    overflow: hidden;
}

.about-page-service.service-page .service2-box .button span.arrow {
    display: inline-block;
    background-color: #2293A7;
    height: 32px;
    width: 32px;
    color: #fff;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    margin-left: 6px;
}

.about-page-service.service-page .service2-box .button::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 2px solid #2293A7;
    border-radius: 30px;
    z-index: -3;
}

.about-page-service.service-page .service2-box .button::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: #2293A7;
    border-radius: 30px;
    z-index: -2;
    transition: all 0.4s;
    animation-timing-function: ease-in;
}

.about-page-service.service-page .service2-box:hover {
    transform: translateY(-10px);
    transition: all 0.4s;
}

.about-page-service.service-page .service2-box:hover h4 a {
    color: var(--vtc-text-white-1);
    transition: all 0.4s;
}

.about-page-service.service-page .service2-box:hover .icon {
    background-color: #fff;
    transition: all 0.4s;
}

.about-page-service.service-page .service2-box:hover p {
    color: rgba(255, 255, 255, 0.7882352941);
    transition: all 0.4s;
}

.about-page-service.service-page .service2-box:hover::before {
    height: 100%;
    transition: all 0.4s;
    opacity: 1;
}

.about-page-service.service-page .service2-box:hover .button {
    transform: translateY(-5px);
    transition: all 0.4s;
    color: var(--vtc-bg-white);
}

.about-page-service.service-page .service2-box:hover .button::before {
    width: 100%;
    transition: all 0.4s;
    right: auto;
    left: 0;
    animation-timing-function: ease-in;
}

.about-page-service.service-page .service2-box:hover .button span.arrow {
    background-color: rgba(255, 255, 255, 0.1176470588);
    color: #fff;
    transition: all 0.4s;
}

.about-page-service.service-details-page .service2-box {
    margin-bottom: 0;
    margin-top: 40px;
}

.details-sidebar {
    background-color: #E9F4F6;
    padding: 32px 20px;
    border-radius: 7px;
    position: sticky;
    top: 100px;
    left: 0px;
}

.details-sidebar .sidebar-box h3 {
    color: var(--03-home-text-colors, #001518);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
   
}

.details-sidebar .sidebar-box .form-area {
    position: relative;
    margin-top: 30px;
}

.details-sidebar .sidebar-box .form-area input {
    padding: 18px;
    border-radius: 30px;
    border: none;
    width: 100%;
}

.details-sidebar .sidebar-box .form-area input:focus {
    outline: none;
}

.details-sidebar .sidebar-box .form-area input::-moz-placeholder {
    color: var(--03-home-text-colors, rgba(0, 21, 24, 0.5568627451));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.details-sidebar .sidebar-box .form-area input::placeholder {
    color: var(--03-home-text-colors, rgba(0, 21, 24, 0.5568627451));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.details-sidebar .sidebar-box .form-area button {
    width: 60px;
    height: 60px;
    border: none;
    text-align: center;
    line-height: 60px;
    background: #2293A7;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    color: #fff;
}

.details-sidebar .sidebar-box.mb40 {
    margin-bottom: 40px;
}

.details-sidebar .sidebar-box .service-list li a {
    display: flex;
    justify-content: space-between;
    padding: 21px 20px;
    border-radius: 111px;
    background: #fff;
    color: var(--03-home-text-colors, #001518);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
   
    transition: all 0.4s;
    margin-top: 20px;
}

.details-sidebar .sidebar-box .service-list li a:hover {
    color: #fff;
    background-color: var(--vtc-bg-main-1);
    transition: all 0.4s;
}

.details-sidebar .sidebar-box .recent-box {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.details-sidebar .sidebar-box .recent-box .image {
    width: 100px;
}

.details-sidebar .sidebar-box .recent-box .image img {
    width: 100px;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 7px;
}

.details-sidebar .sidebar-box .recent-box .heading {
    padding-left: 20px;
}

.details-sidebar .sidebar-box .recent-box .heading .date {
    display: inline-block;
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    margin-bottom: 10px;
}

.details-sidebar .sidebar-box .recent-box .heading .date img {
    margin-top: -3px;
    margin-right: 2px;
}

.details-sidebar .sidebar-box .recent-box .heading h5 a {
    color: var(--03-home-text-colors, #001518);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    /* 130% */
    transition: all 0.4s;
}

.details-sidebar .sidebar-box .recent-box .heading h5 a:hover {
    transition: all 0.4s;
    color: var(--vtc-bg-main-1);
}

.details-sidebar .tag-list li {
    display: inline-block;
}

.details-sidebar .tag-list li a {
    display: inline-block;
    background-color: #fff;
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
   
    padding: 12px 16px;
    border-radius: 111px;
    margin-top: 12px;
    margin-right: 10px;
    transition: all 0.4s;
}

.details-sidebar .tag-list li a:hover {
    transition: all 0.4s;
    background-color: var(--vtc-bg-main-1);
    color: #fff;
}

.details-sidebar .phone-area {
    padding: 24px;
    background-color: var(--vtc-bg-main-1);
    border-radius: 7px;
}

.details-sidebar .phone-area p {
    color: var(--White-colors, #FFF);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    /* 125% */
}

.details-sidebar .phone-area .phone-btn {
    display: inline-block;
    padding: 19px 17px 17px 17px;
    border-radius: 111px;
    background: #fff;
    color: var(--03-home-main-colors, #2293A7);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    margin-top: 30px;
    transition: all 0.4s;
}

.details-sidebar .phone-area .phone-btn:hover {
    transform: translateY(-5px);
    transition: all 0.4s;
}

.details-sidebar .phone-area .phone-btn img {
    margin-top: -3px;
}

.details-sidebar .contact-area {
    background-color: #fff;
    padding: 24px 20px;
    border-radius: 7px;
}

.details-sidebar .contact-area .single-input {
    margin-top: 20px;
}

.details-sidebar .contact-area .single-input input,
.details-sidebar .contact-area .single-input textarea {
    border-radius: 7px;
    border: 1px solid #CCD0D1;
    padding: 14px;
    width: 100%;
}

.details-sidebar .contact-area .single-input input:focus,
.details-sidebar .contact-area .single-input textarea:focus {
    outline: none;
}

.details-sidebar .social-area {
    background-color: #fff;
    padding: 24px 20px;
    border-radius: 7px;
}

.details-sidebar .social-area ul {
    padding-top: 24px;
}

.details-sidebar .social-area ul li {
    display: inline-block;
}

.details-sidebar .social-area ul li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    background-color: #E9F4F6;
    border-radius: 50%;
    color: #001518;
    margin: 0px 4px;
    transition: all 0.4s;
}

.details-sidebar .social-area ul li a:hover {
    transition: all 0.4s;
    color: #fff;
    background-color: var(--vtc-bg-main-1);
}

.mb40 {
    margin-bottom: 40px;
}

.details-border {
    background-color: #E5E8E8;
    height: 1px;
    width: 100%;
    margin: 40px 0;
}

.sp-lft30 {
    padding-left: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sp-lft30 {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .sp-lft30 {
        padding-left: 0;
    }
}

.sp-right30 {
    padding-right: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sp-right30 {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .sp-right30 {
        padding-right: 0;
    }
}

.details-info-box .icon-text-list ul li {
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
   
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.details-info-box .icon-text-list ul li span.check {
    display: inline-block;
    height: 20px;
    width: 20px;
    line-height: 20px;
    color: #fff;
    background-color: #2293A7;
    border-radius: 50%;
    font-size: 12px;
    text-align: center;
    margin-right: 5px;
}

.details-info-box .image img {
    width: 100%;
    border-radius: 7px;
}

.details-info-box .planing-box {
    display: flex;
    align-items: start;
    padding: 24px 32px;
    background-color: #E9F4F6;
    border-radius: 7px;
}

.details-info-box .planing-box .heading1 {
    padding-left: 20px;
}

.details-info-box .planing-box .heading1 h4 {
    line-height: 24px;
}

.details-info-box .planing-box .heading1 h4 a {
    line-height: 24px;
    padding: 0;
}

.details-info-box .planing-box .icon {
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    background-color: #D5EAEE;
}

.details-info-box .after-content-box {
    background-color: #E9F4F6;
    padding: 24px 32px;
    border-radius: 7px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.details-info-box .after-content-box p {
    color: var(--03-home-paragrapjh, #565858);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
}

.details-info-box .after-content-box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1%;
    background-color: var(--vtc-bg-main-1);
}

.details-info-box .autor-list a {
    display: inline-block;
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    margin-right: 30px;
    position: relative;
}

.details-info-box .autor-list a img {
    margin-top: -5px;
    margin-right: 3px;
}

.details-info-box .autor-list a::after {
    content: "";
    position: absolute;
    top: 0px;
    left: -15px;
    height: 20px;
    width: 2px;
    background: rgba(0, 21, 24, 0.4745098039);
}

.details-info-box .autor-list a:nth-child(1)::after {
    display: none;
}

.details-info-box .black-icon-list li {
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
   
    display: flex;
    align-items: center;
    padding: 8px 0px;
}

.details-info-box .black-icon-list li .check {
    display: inline-block;
    height: 20px;
    width: 20px;
    background-color: #001518;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    color: #fff;
    font-size: 12px;
    margin-right: 8px;
}

.details-info-box.video-box .details-video-area {
    position: relative;
}

.details-info-box.video-box .details-video-area .image img {
    width: 100%;
    border-radius: 4px;
}

.details-info-box.video-box .details-video-area .video-play2 {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -40px;
    margin-left: -70px;
}

.service-details .accordion {
    border: none;
}

.service-details .accordion .accordion-item {
    margin-top: 20px;
    border: none;
    background: #E9F4F6;
    border-radius: 7px;
}

.service-details .accordion .accordion-item button {
    border: none;
    background: none;
    padding: 20px;
    color: var(--03-home-text-colors, #001518);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
   
    transition: all 0.4s;
}

.service-details .accordion .accordion-item .accordion-body {
    border: none;
    padding-top: 0;
    color: var(--White-colors, rgba(255, 255, 255, 0.7725490196));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    transition: all 0.4s;
}

.service-details .accordion .accordion-item.active {
    background: var(--vtc-bg-main-1);
    transition: all 0.4s;
}

.service-details .accordion .accordion-item.active button {
    color: #fff;
    transition: all 0.4s;
}

.service-details .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);
}

.service-details .accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.service-details .details-social-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-details .details-social-area .tags-area ul li.text {
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
   
}

.service-details .details-social-area .tags-area ul li {
    display: inline-block;
}

.service-details .details-social-area .tags-area ul li a {
    display: inline-block;
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
   
    background-color: #E9F4F6;
    padding: 10px 14px;
    border-radius: 111px;
    margin-left: 5px;
    transition: all 0.4s;
}

.service-details .details-social-area .tags-area ul li a:hover {
    transition: all 0.4s;
    color: #fff;
    background-color: var(--vtc-bg-main-1);
}

.service-details .details-social-area .icons ul li.text {
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
   
}

.service-details .details-social-area .icons ul li {
    display: inline-block;
}

.service-details .details-social-area .icons ul li a {
    display: inline-block;
    height: 32px;
    width: 32px;
    line-height: 32px;
    text-align: center;
    background-color: #E9F4F6;
    border-radius: 50%;
    margin-left: 4px;
    color: #001518;
    transition: all 0.4s;
}

.service-details .details-social-area .icons ul li a:hover {
    transition: all 0.4s;
    color: #fff;
    background-color: var(--vtc-bg-main-1);
}

.project-page-all .single-slider {
    position: relative;
    margin-bottom: 30px;
}

.project-page-all .single-slider .image img {
    width: 100%;
}

.project-page-all .single-slider .heading-area {
    position: absolute;
    bottom: 30px;
    margin: 0 30px;
    text-align: center;
    padding: 24px;
    overflow: hidden;
}

.project-page-all .single-slider .heading-area h4 a {
    display: inline-block;
    color: var(--White-colors, #FFF);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    /* 130% */
    transform: translateY(90px);
    position: relative;
    z-index: 2;
    transition: all 0.4s;
}

.project-page-all .single-slider .heading-area p {
    color: var(--White-colors, rgba(255, 255, 255, 0.7725490196));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    padding: 16px 0;
    transform: translateY(90px);
    opacity: 0;
    transition: all 0.4s;
    position: relative;
    z-index: 2;
}

.project-page-all .single-slider .heading-area .learn {
    color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    transform: translateY(90px);
    opacity: 0;
    transition: all 0.4s;
    position: relative;
    z-index: 2;
}

.project-page-all .single-slider .heading-area::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2%;
    width: 100%;
    background: #2293A7;
    border-radius: 7px;
    transition: all 0.4s;
}

.project-page-all .single-slider.active .heading-area::after {
    height: 100%;
    transition: all 0.4s;
}

.project-page-all .single-slider.active .heading-area h4 a {
    display: inline-block;
    color: var(--White-colors, #FFF);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    /* 130% */
    transform: translateY(0);
    position: relative;
    z-index: 2;
    transition: all 0.4s;
}

.project-page-all .single-slider.active .heading-area p {
    color: var(--White-colors, rgba(255, 255, 255, 0.7725490196));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    padding: 16px 0;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s;
    position: relative;
    z-index: 2;
}

.project-page-all .single-slider.active .heading-area .learn {
    color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s;
    position: relative;
    z-index: 2;
}

.project-page-all .single-slider:hover .heading-area::after {
    height: 100%;
    transition: all 0.4s;
}

.project-page-all .single-slider:hover .heading-area h4 a {
    display: inline-block;
    color: var(--White-colors, #FFF);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    transform: translateY(0);
    position: relative;
    z-index: 2;
    transition: all 0.4s;
}

.project-page-all .single-slider:hover .heading-area p {
    color: var(--White-colors, rgba(255, 255, 255, 0.7725490196));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    padding: 16px 0;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s;
    position: relative;
    z-index: 2;
}

.project-page-all .single-slider:hover .heading-area .learn {
    color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s;
    position: relative;
    z-index: 2;
}

/*
::::::::::::::::::::::::::
 SERVICE AREA CSS
::::::::::::::::::::::::::
*/

.porgress-line-all .progress-line {
    margin-top: 50px;
}

.porgress-line-all .progress-line h6 {
    color: var(--03-home-text-colors, #001518);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
   
    margin-bottom: 16px;
}

.porgress-line-all .progress-line .percentCount {
    color: var(--03-home-text-colors, #001518);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
   
    float: right;
    margin-top: -30px;
}

.commnet-boxs .commnet-box {
    background-color: #E9F4F6;
    padding: 24px;
    border-radius: 7px;
    margin-top: 30px;
}

.commnet-boxs .commnet-box .top-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.commnet-boxs .commnet-box .top-area .author-area {
    display: flex;
    align-items: center;
}

.commnet-boxs .commnet-box .top-area .author-area .heading1 {
    padding-left: 16px;
}

.commnet-boxs .commnet-box .top-area .author-area .heading1 p {
    padding-top: 6px;
}

.commnet-boxs .commnet-box .top-area .reply a {
    color: var(--03-home-text-colors, #001518);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
   
    display: inline-block;
    transition: all 0.4s;
}

.commnet-boxs .commnet-box .top-area .reply a:hover {
    color: var(--vtc-bg-main-1);
    transition: all 0.4s;
}

.commnet-boxs .commnet-box.bottom {
    margin-left: 30px;
}

.details-contact-area {
    background-color: #E9F4F6;
    padding: 24px;
    border-radius: 7px;
    margin-top: 40px;
}

.details-contact-area .single-input {
    margin-top: 20px;
}

.details-contact-area .single-input input,
.details-contact-area .single-input textarea {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 7px;
    background: #fff;
}

.details-contact-area .single-input input::-moz-placeholder,
.details-contact-area .single-input textarea::-moz-placeholder {
    color: var(--03-home-text-colors, rgba(0, 21, 24, 0.6235294118));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.details-contact-area .single-input input::placeholder,
.details-contact-area .single-input textarea::placeholder {
    color: var(--03-home-text-colors, rgba(0, 21, 24, 0.6235294118));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.details-contact-area .single-input input:focus,
.details-contact-area .single-input textarea:focus {
    outline: none;
}

.details-contact-area .button {
    text-align: end;
}

/*
::::::::::::::::::::::::::
 CHOOSE AREA CSS
::::::::::::::::::::::::::
*/

.choose3 .choose-boxs .signle {
    border-bottom: 1px solid var(--vtc-bg-main-4);
    padding: 18px 0px;
}

.choose3 .choose-boxs .signle h3 {
    color: var(--02-home-text-colors, #04000E);
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
   
}

.choose3 .choose-boxs .signle P {
    color: var(--02-home-text-colors, #04000E);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
   
    padding-top: 16px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .choose3 .image {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .choose3 .image {
        margin-top: 30px;
    }
}

.choose3 .image img {
    width: 100%;
}

.choose3 .shape1 {
    position: absolute;
    left: -100px;
    top: 0;
}

.choose3 .shape2 {
    position: absolute;
    left: -60px;
    bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .choose3 .top-shape {
        height: 16px;
    }
}

@media (max-width: 767px) {
    .choose3 .top-shape {
        height: 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .choose3 .top-shape img {
        display: none;
    }
}

@media (max-width: 767px) {
    .choose3 .top-shape img {
        display: none;
    }
}

.choose4 {
    position: relative;
    background: #F9F9F9;
}

.choose4 .main-image {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .choose4 .main-image {
        display: block;
    }
}

@media (max-width: 767px) {
    .choose4 .main-image {
        display: block;
    }
}

.choose4 .main-image img {
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    margin-bottom: 40px;
}

.choose4 .heading4 {
    padding-left: 40px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .choose4 .heading4 {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .choose4 .heading4 {
        padding-left: 0;
    }
}

.choose4 .heading4 .list li {
    color: var(--04-home-text-colors, #0E0401);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
   
    padding-top: 36px;
    display: flex;
    align-items: center;
}

.choose4 .heading4 .list li span.check {
    display: inline-block;
    height: 20px;
    width: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    background-color: var(--vtc-bg-main-5);
    color: #fff;
    border-radius: 50%;
    margin-right: 24px;
    position: relative;
}

.choose4 .heading4 .list li span.check::after {
    content: "";
    position: absolute;
    left: -10px;
    top: -10px;
    height: 40px;
    width: 40px;
    background-color: rgba(253, 73, 18, 0.0941176471);
    border-radius: 50%;
}

.choose4 .heading4 .buttons {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .choose4 .heading4 .buttons {
        display: block;
    }
}

.choose4 .heading4 .buttons .contact-btn {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

@media (max-width: 767px) {
    .choose4 .heading4 .buttons .contact-btn {
        margin-left: 0;
    }
}

.choose4 .heading4 .buttons .contact-btn .icon {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background-color: rgba(253, 73, 18, 0.1019607843);
    border-radius: 50%;
    margin-right: 12px;
}

.choose4 .heading4 .buttons .contact-btn .text p {
    color: var(--04-home-text-colors, #0E0401);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    letter-spacing: 0.1px;
}

.choose4 .heading4 .buttons .contact-btn .text a {
    color: var(--04-home-text-colors, #0E0401);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
   
    display: inline-block;
    padding-top: 10px;
    letter-spacing: 0.1px;
}

.choose4 .heading4 .shape3 {
    position: absolute;
    right: 0;
    top: 50%;
}

.choose4::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background-image: url(../img/others/choose4-image.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .choose4::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .choose4::after {
        display: none;
    }
}

.choose4 .counter-box {
    background: #fff;
    height: 122px;
    width: 180px;
    position: absolute;
    right: 0;
    z-index: 2;
    bottom: 100px;
    padding: 24px 32px;
    border-radius: 7px 0px 0px 7px;
}

.choose4 .counter-box h4 {
    color: var(--04-home-text-colors, #0E0401);
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
   
}

.choose4 .counter-box h4 span {
    color: var(--vtc-bg-main-5);
}

.choose4 .counter-box p {
    color: var(--04-home-text-colors, #0E0401);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
   
    padding-top: 8px;
}

.choose4 .shape1 {
    position: absolute;
    right: 0;
    top: 0;
}

.choose4 .shape2 {
    position: absolute;
    right: 0;
    bottom: 0;
}

/*
 ::::::::::::::::::::::::::
  CHOOSE AREA CSS
 ::::::::::::::::::::::::::
 */

/*
::::::::::::::::::::::::::
 CTA AREA CSS
::::::::::::::::::::::::::
*/

.cta1 {
    background-color: var(--blue);
    padding: 80px 0px;
    position: relative;
}

.cta1 .cta1-shape1 {
    position: absolute;
    top: 0;
    left: 0;
}

.cta1 .cta1-shape2 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.cta1 .cta1-shape3 {
    position: absolute;
    right: 0;
    top: 0;
}

.cta1 .buttons {
    text-align: end;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta1 .buttons {
        text-align: start;
        padding-top: 24px;
    }
}

@media (max-width: 767px) {
    .cta1 .buttons {
        text-align: start;
        padding-top: 24px;
    }
}

.cta2 {
    padding: 75px 0px;
    overflow: hidden;
    position: relative;
}

.cta2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--blue);
    z-index: -2;
}

.cta2 .buttons {
    text-align: end;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta2 .buttons {
        text-align: start;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .cta2 .buttons {
        text-align: start;
        margin-top: 10px;
    }
}

.cta2 .cta1-shape1 {
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.1);
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta2 .cta1-shape1 {
        display: none;
    }
}

@media (max-width: 767px) {
    .cta2 .cta1-shape1 {
        display: none;
    }
}

.cta2 .cta1-shape2 {
    position: absolute;
    top: 120px;
    left: 47%;
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta2 .cta1-shape2 {
        display: none;
    }
}

@media (max-width: 767px) {
    .cta2 .cta1-shape2 {
        display: none;
    }
}

.cta2 .cta1-shape3 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.cta3 {
    padding: 100px 0px;
}

.cta3 .form-area {
    margin-top: 50px;
    position: relative;
}

.cta3 .form-area form input {
    background-color: rgba(142, 101, 255, 0.1019607843);
    border: none;
    padding: 16px;
    border-radius: 30px;
    width: 270px;
    margin-right: 100px;
}

.cta3 .form-area form input:focus {
    outline: none;
}

.cta3 .form-area form input::-moz-placeholder {
    color: var(--02-home-text-colors, #04000E);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cta3 .form-area form input::placeholder {
    color: var(--02-home-text-colors, #04000E);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cta3 .form-area .button {
    position: absolute;
    right: 70px;
    top: 0;
}

.cta3 .shape1 {
    position: absolute;
    top: 50px;
    left: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta3 .shape1 {
        display: none;
    }
}

@media (max-width: 767px) {
    .cta3 .shape1 {
        display: none;
    }
}

.cta3 .shape2 {
    position: absolute;
    top: 50px;
    right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta3 .shape2 {
        display: none;
    }
}

@media (max-width: 767px) {
    .cta3 .shape2 {
        display: none;
    }
}

.cta4 {
    padding: 80px 0;
    background-color: #0E0401;
    position: relative;
}

.cta4 .form-area {
    margin-top: 50px;
    position: relative;
}

.cta4 .form-area form input {
    background-color: rgba(255, 255, 255, 0.137254902);
    border: none;
    padding: 16px;
    border-radius: 7px;
    width: 270px;
    margin-right: 160px;
    color: #fff;
}

.cta4 .form-area form input:focus {
    outline: none;
}

.cta4 .form-area form input::-moz-placeholder {
    color: var(--02-home-text-colors, rgba(255, 255, 255, 0.6039215686));
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cta4 .form-area form input::placeholder {
    color: var(--02-home-text-colors, rgba(255, 255, 255, 0.6039215686));
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cta4 .form-area .button {
    position: absolute;
    right: 90px;
    top: 0;
}

.cta4 .shape1 {
    position: absolute;
    left: 240px;
    top: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta4 .shape1 {
        display: none;
    }
}

@media (max-width: 767px) {
    .cta4 .shape1 {
        display: none;
    }
}

.cta4 .shape2 {
    position: absolute;
    left: 190px;
    bottom: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta4 .shape2 {
        display: none;
    }
}

@media (max-width: 767px) {
    .cta4 .shape2 {
        display: none;
    }
}

.cta4 .shape3 {
    position: absolute;
    right: 140px;
    bottom: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta4 .shape3 {
        display: none;
    }
}

@media (max-width: 767px) {
    .cta4 .shape3 {
        display: none;
    }
}

.cta4 .shape4 {
    position: absolute;
    top: 0;
    right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta4 .shape4 {
        display: none;
    }
}

@media (max-width: 767px) {
    .cta4 .shape4 {
        display: none;
    }
}

/*
::::::::::::::::::::::::::
 CTA AREA CSS
::::::::::::::::::::::::::
*/

/*
::::::::::::::::::::::::::
 FAQ AREA CSS
::::::::::::::::::::::::::
*/

.faq .faq-image {
    margin-right: 30px;
}

.faq .faq-image img {
    width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq .faq-image img {
        height: 300px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .faq .faq-image img {
        height: 300px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

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

@media (max-width: 767px) {
    .faq .faq-image {
        margin-right: 0;
    }
}

.faq .accordion .accordion-item {
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #E5E8E8;
    padding: 6px 0px;
}

.faq .accordion .accordion-item button {
    border: none;
    background: none;
    box-shadow: none;
    color: var(--03-home-text-colors, #001518);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
   
    padding: 17px 0px;
    border: 0;
}

@media (max-width: 767px) {
    .faq .accordion .accordion-item button {
        font-size: 18px;
        line-height: 22px;
        padding-right: 40px;
    }
}

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

.faq .accordion .accordion-item .accordion-body {
    color: var(--03-home-paragrapjh, #565858);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    padding: 5px 0px 10px 0px;
}

.faq .accordion .accordion-item:nth-child(1) {
    border-top: 2px solid #E5E8E8;
}

.faq .accordion .accordion-button::after {
    display: none;
}

.faq .accordion .accordion-button::before {
    float: right !important;
    font-family: FontAwesome;
    content: "−";
    padding-right: 5px;
    position: absolute;
    right: 0;
}

.faq .accordion .accordion-button.collapsed::before {
    float: right !important;
    content: "+";
}

.faq-page-sec .images-all {
    position: relative;
    height: 700px;
    margin-left: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq-page-sec .images-all {
        padding-left: 0;
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .faq-page-sec .images-all {
        padding-left: 0;
        padding-top: 40px;
    }
}

.faq-page-sec .images-all .image1 {
    position: absolute;
    left: 0;
    top: 50px;
}

.faq-page-sec .images-all .image2 {
    position: absolute;
    right: 0;
    top: 0;
}

.faq-page-sec .images-all .image3 {
    position: absolute;
    bottom: 30px;
    right: 0;
}

.faq-logo-area .heading1 span.span {
    background-color: rgba(34, 147, 167, 0.2117647059);
}

.faq-logo-area .logo-area ul li {
    display: inline-block;
    border: 1px solid #D2DEE0;
    width: 220px;
    padding: 24px;
    border-radius: 7px;
    margin: 10px;
    transition: all 0.4s;
}

.faq-logo-area .logo-area ul li:hover {
    transition: all 0.4s;
    border-radius: 7px;
    background: #FFF;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
}

.faq-logo-area .logo-area ul li.active {
    transition: all 0.4s;
    border-radius: 7px;
    background: #FFF;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
}

.faq-bottom-area .accordion {
    border: none;
}

.faq-bottom-area .accordion .accordion-item {
    margin-top: 20px;
    border: none;
    border-radius: 7px;
    background-color: #E9F4F6;
}

.faq-bottom-area .accordion .accordion-item .accordion-button {
    border: none;
    background: none;
    color: var(--03-home-p-age-text-colors, #042327);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
   
    padding: 20px;
    box-shadow: none;
}

.faq-bottom-area .accordion .accordion-item .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.faq-bottom-area .accordion .accordion-item .accordion-body {
    color: var(--White-Colors, rgba(255, 255, 255, 0.7960784314));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    text-align: start;
    padding: 0px 20px 20px 20px;
}

.faq-bottom-area .accordion .accordion-item.active {
    background: #2293A7;
}

.faq-bottom-area .accordion .accordion-item.active .accordion-button {
    color: #fff;
}

.faq-bottom-area .accordion .accordion-item.active .accordion-button::after {
    filter: brightness(0) invert(1);
}

/*
::::::::::::::::::::::::::
 FAQ AREA CSS
::::::::::::::::::::::::::
*/

/*
::::::::::::::::::::::::::
 OTHERS AREA CSS
::::::::::::::::::::::::::
*/

.project2 {
    position: relative;
    background-color: #010915;
}

.project2 .shape {
    position: absolute;
    left: 0;
    top: 0;
}

.project2 .shape2 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.project2 .tabs-buttons {
    margin-top: 40px;
}

.project2 .tabs-buttons button.nav-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1568627451);
    border: 0 0 0 0;
}

.project2 .tabs-buttons button.nav-link .titel {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    display: block;
    text-align: start;
    padding-bottom: 16px;
}

.project2 .tabs-buttons button.nav-link .heading {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
   
}

.project2 .tabs-buttons button.nav-link .arrow {
    background: #151D28;
    height: 32px;
    width: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    color: #fff;
}

.project2 .tabs-buttons button.nav-link.active {
    background: none;
}


.main-menu-ex ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .25rem .15rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.header-area.header-area2 .header-elements .main-menu-ex ul li  a.active{
    /* background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%); */
    background-color: #120935;
    color: #ffffff!important;
    border-radius: 40px;
    transition: all .3s ease-in-out;
}
/* .header-area.header-area2 .header-elements .main-menu-ex ul li .sub1 li a:hover{
      background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    color: #ffffff!important;  
}
.header-area.header-area2 .header-elements .main-menu-ex ul li  a:hover{
   background-color: #120935;
    color: #ffffff!important;  
      border-radius: 40px;  
} */
.project2 .tabs-buttons button.nav-link.active .titel {
    color: #fff;
}

.project2 .tabs-buttons button.nav-link.active .heading {
    color: #fff;
}

.project2 .tabs-buttons button.nav-link.active .arrow {
    background: #1C74F0;
}

.project2 .tab-content {
    margin-top: 40px;
    padding-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .project2 .tab-content {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .project2 .tab-content {
        padding-left: 0;
    }
}

.project2 .tab-content .image img {
    width: 100%;
    border-radius: 5px;
}

.video-area {
    background-color: #04000E;
    position: relative;
}

.video-area .video-image-area {
    position: relative;
}

.video-area .video-image-area .image img {
    width: 100%;
}

.video-area .video-image-area .video-play-area {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -60px;
    margin-left: -70px;
}

@media (max-width: 767px) {
    .video-area .video-image-area .video-play-area {
        margin-left: -30px;
    }
}

.video-area .video-image-area .video-play-area p {
    margin-left: -40px;
}

@media (max-width: 767px) {
    .video-area .video-image-area .video-play-area p {
        margin-left: -80px;
    }
}

.video-area .logo-slider-all {
    text-align: center;
}

.video-area .logo-slider-all p {
    color: var(--White-Colors, #FFF);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
   
}

.video-area .logo-slider-all .all-slider-area {
    margin-top: 50px;
}

.video-area .logo-slider-all .all-slider-area .single-slider {
    margin: 0px 10px;
}

.video-area .logo-slider-all .all-slider-area2 {
    margin-top: 50px;
}

.video-area .logo-slider-all .all-slider-area2 .single-slider {
    margin: 0px 10px;
}

.video-area .shape1 {
    position: absolute;
    top: 0;
    left: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .video-area .shape1 {
        display: none;
    }
}

@media (max-width: 767px) {
    .video-area .shape1 {
        display: none;
    }
}

.video-area .shape2 {
    position: absolute;
    bottom: 0;
    left: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .video-area .shape2 {
        display: none;
    }
}

@media (max-width: 767px) {
    .video-area .shape2 {
        display: none;
    }
}

.video-area .shape3 {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .video-area .shape3 {
        display: none;
    }
}

@media (max-width: 767px) {
    .video-area .shape3 {
        display: none;
    }
}

.rtl-dir .video-play-area .video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    margin-top: 12px;
    margin-left: 0;
    margin-right: 10px;
    width: 0;
    height: 0;
    border-radius: 4px;
    border-left: 15px solid #8D65FF;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

.rtl-dir .video-play-button {
    margin-right: 80px;
}

.Call-area {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0;
}

.Call-area span.span {
    display: inline-block;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.11);
    padding: 8px 12px;
    border-radius: 7px;
    color: var(--White-Colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.Call-area span.span img {
    margin-top: -4px;
    margin-right: 3px;
    filter: brightness(0) invert(1);
}

.Call-area h2 a {
    display: inline-block;
    color: #FFF;
    font-size: 96px;
    font-style: italic;
    font-weight: 600;
    line-height: 96px;
   
    transition: all 0.4s;
    padding: 16px 0px;
}

@media (max-width: 767px) {
    .Call-area h2 a {
        font-size: 40px;
        line-height: 40px;
    }
}

.Call-area h2 a:hover {
    color: var(--vtc-bg-main-5);
    transition: all 0.4s;
}

.gallery .gallrey-slider .single-slider {
    position: relative;
    margin-right: 30px;
}

.gallery .gallrey-slider .single-slider .image {
    margin-right: 30px;
}

.gallery .gallrey-slider .single-slider .image img {
    width: 100%;
}

.gallery .gallrey-slider .single-slider .heading-area {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.gallery .gallrey-slider .single-slider .heading-area .pera {
    background-color: #0E0401;
    padding: 16px;
    display: inline-block;
    border-radius: 7px 7px 0px 0px;
}

.gallery .gallrey-slider .single-slider .heading-area .pera h6 {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.gallery .gallrey-slider .single-slider .heading-area .heading {
    border-radius: 0px 7px 7px 7px;
    background: var(--White-colors, #FFF);
    box-shadow: 2px 2px 24px 0px rgba(0, 0, 0, 0.09);
    padding: 24px;
}

.gallery .gallrey-slider .single-slider .heading-area .heading h4 a {
    display: inline-block;
    color: var(--04-home-text-colors, #0E0401);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    /* 130% */
}

.gallery .gallrey-slider .single-slider.slick-current.slick-active .heading-area .pera {
    background-color: var(--vtc-bg-main-5);
    transition: all 0.4s;
}

.gallery .gallery-arrows {
    text-align: end;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .gallery .gallery-arrows {
        text-align: start;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .gallery .gallery-arrows {
        text-align: start;
        margin-top: 30px;
    }
}

.gallery .gallery-arrows button {
    border: none;
    background: #FFEDE7;
    height: 48px;
    width: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 7px;
    font-size: 20px;
    color: var(--vtc-bg-main-5);
    margin-left: 10px;
    transition: all 0.4s;
}

.gallery .gallery-arrows button:hover {
    background: var(--vtc-bg-main-5);
    color: #fff;
    transition: all 0.4s;
}

.project-page-all2 .single-slider {
    position: relative;
    transition: all 0.4s;
    margin-bottom: 30px;
}

.project-page-all2 .single-slider .image {
    margin-right: 30px;
}

.project-page-all2 .single-slider .image img {
    width: 100%;
}

.project-page-all2 .single-slider .heading-area {
    position: absolute;
    bottom: 30px;
    left: 30px;
    transition: all 0.4s;
}

.project-page-all2 .single-slider .heading-area .pera {
    background-color: #0E0401;
    padding: 16px;
    display: inline-block;
    border-radius: 7px 7px 0px 0px;
    transition: all 0.4s;
}

.project-page-all2 .single-slider .heading-area .pera h6 {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.project-page-all2 .single-slider .heading-area .heading {
    border-radius: 0px 7px 7px 7px;
    background: var(--White-colors, #FFF);
    box-shadow: 2px 2px 24px 0px rgba(0, 0, 0, 0.09);
    padding: 24px;
}

.project-page-all2 .single-slider .heading-area .heading h4 a {
    display: inline-block;
    color: var(--04-home-text-colors, #0E0401);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    /* 130% */
}

.project-page-all2 .single-slider.slick-current.slick-active .heading-area .pera {
    background-color: var(--vtc-bg-main-1);
    transition: all 0.4s;
}

.project-page-all2 .single-slider:hover {
    transform: translateY(-10px);
    transition: all 0.4s;
}

.project-page-all2 .single-slider:hover .heading-area {
    transform: translateY(-10px);
    transition: all 0.4s;
}

.project-page-all2 .single-slider:hover .heading-area .pera {
    background-color: var(--vtc-bg-main-1);
    transition: all 0.4s;
}

.project-page-all2.details-page-boxs .single-slider {
    margin-bottom: 0;
    margin-top: 30px;
}

/*
::::::::::::::::::::::::::
 OTHERS AREA CSS
::::::::::::::::::::::::::
*/

/*
 ::::::::::::::::::::::::::
  CONTACT AREA CSS
 ::::::::::::::::::::::::::
 */
.suggi{
    background-image: url('../img/pattern_h.png');
    background-size: contain;
    background-position: center;
}
.contact2 {
    background-color: var(--vtc-bg-common-4);
        border-radius: 25px;
}

.contact2 .contact2-form {
    background-color: #fff;
    border-radius: 7px;
    padding: 32px 24px;
}

.contact2 .contact2-form .single-input {
    margin-bottom: 20px;
}

.contact2 .contact2-form .single-input label {
    color: var(--01-home-text-colors, #010915);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    padding-bottom: 6px;
}

.contact2 .contact2-form .single-input input,
.contact2 .contact2-form .single-input textarea {
    width: 100%;
    border: 1px solid #E6E6E8;
    border-radius: 7px;
    padding: 9px 16px;
    font-size: 14px;
}

.contact2 .contact2-form .single-input input::-moz-placeholder,
.contact2 .contact2-form .single-input textarea::-moz-placeholder {
    color: var(--01-home-paragraph, rgba(64, 66, 69, 0.7725490196));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.contact2 .contact2-form .single-input input::placeholder,
.contact2 .contact2-form .single-input textarea::placeholder {
    color: var(--01-home-paragraph, rgba(64, 66, 69, 0.7725490196));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.contact2 .contact2-form .single-input input:focus,
.contact2 .contact2-form .single-input textarea:focus {
    outline: none;
}

.contact2 .heading2 {
    padding-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact2 .heading2 {
        padding-left: 0;
        padding-top: 30px;
    }
}

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

.contact2 .work-hours h6 {
    color: var(--01-home-text-colors, #010915);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
   
}

.contact2 .work-hours .time-line {
    display: flex;
    align-items: center;
    color: var(--01-home-paragraph, #404245);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    padding-top: 20px;
}

.contact2 .work-hours .time-line p {
    margin-right: 30px;
}

.contact2 .work-hours .time-line p img {
    margin-top: -4px;
    margin-right: 3px;
}

.contact2 .work-hours .border-contact {
    background-color: #DDE0E3;
    width: 100%;
    height: 1px;
    margin: 22px 0px;
}

.contact2 .work-hours .contact-info {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .contact2 .work-hours .contact-info {
        display: block;
    }
}

.contact2 .work-hours .contact-info .single-box {
    margin-right: 60px;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .contact2 .work-hours .contact-info .single-box {
        margin-top: 30px;
    }
}

.contact2 .work-hours .contact-info .single-box .icon {
    background-color: #E5EDF9;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    margin-right: 16px;
    transition: all 0.4s;
}

.contact2 .work-hours .contact-info .single-box .icon img {
    transition: all 0.4s;
}

.contact2 .work-hours .contact-info .single-box .heading h6 {
    color: var(--01-home-text-colors, #010915);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
   
}

.contact2 .work-hours .contact-info .single-box .heading a {
    color: var(--01-home-paragraph, #404245);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    padding-top: 12px;
    display: inline-block;
}

.contact2 .work-hours .contact-info .single-box:hover {
    transition: all 0.4s;
}

.contact2 .work-hours .contact-info .single-box:hover .icon {
    transition: all 0.4s;
    background: var(--vtc-bg-main-3);
}

.contact2 .work-hours .contact-info .single-box:hover .icon img {
    transition: all 0.4s;
    filter: brightness(0) invert(1);
}

.contact4 {
    background-color: #F9F9F9;
}

.contact4 .contact2-form {
    background-color: #fff;
    border-radius: 7px;
    padding: 32px 24px;
}

.contact4 .contact2-form .single-input {
    margin-bottom: 20px;
}

.contact4 .contact2-form .single-input label {
    color: var(--01-home-text-colors, #010915);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
   
    padding-bottom: 12px;
}

.contact4 .contact2-form .single-input input,
.contact4 .contact2-form .single-input textarea {
    width: 100%;
    border: 1px solid #E6E6E8;
    border-radius: 7px;
    padding: 16px;
}

.contact4 .contact2-form .single-input input::-moz-placeholder,
.contact4 .contact2-form .single-input textarea::-moz-placeholder {
    color: var(--01-home-paragraph, rgba(64, 66, 69, 0.7725490196));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.contact4 .contact2-form .single-input input::placeholder,
.contact4 .contact2-form .single-input textarea::placeholder {
    color: var(--01-home-paragraph, rgba(64, 66, 69, 0.7725490196));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.contact4 .contact2-form .single-input input:focus,
.contact4 .contact2-form .single-input textarea:focus {
    outline: none;
}

.contact4 .heading4 {
    padding-right: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact4 .heading4 {
        padding-right: 0;
        padding-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .contact4 .heading4 {
        padding-right: 0;
        padding-bottom: 30px;
    }
}

.contact4 .work-hours h6 {
    color: var(--01-home-text-colors, #010915);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
   
}

.contact4 .work-hours .time-line {
    display: flex;
    align-items: center;
    color: var(--01-home-paragraph, #404245);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    padding-top: 20px;
}

.contact4 .work-hours .time-line p {
    margin-right: 30px;
}

.contact4 .work-hours .time-line p img {
    margin-top: -4px;
    margin-right: 3px;
}

.contact4 .work-hours .border-contact {
    background-color: #DDE0E3;
    width: 100%;
    height: 1px;
    margin: 22px 0px;
}

.contact4 .work-hours .contact-info {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .contact4 .work-hours .contact-info {
        display: block;
    }
}

.contact4 .work-hours .contact-info .single-box {
    /* margin-right: 60px; */
    display: flex;
    /* align-items: center; */
        margin-bottom: 20px;
}

@media (max-width: 767px) {
    .contact4 .work-hours .contact-info .single-box {
        margin-top: 30px;
    }
}

.contact4 .work-hours .contact-info .single-box .icon {
    background-color: rgba(253, 73, 18, 0.0823529412);
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    margin-right: 16px;
    transition: all 0.4s;
}

.contact4 .work-hours .contact-info .single-box .icon img {
    transition: all 0.4s;
}

.contact4 .work-hours .contact-info .single-box .heading h6 {
    color: var(--01-home-text-colors, #010915);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
   
}

.contact4 .work-hours .contact-info .single-box .heading a {
    color: var(--01-home-paragraph, #404245);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    padding-top: 12px;
    display: inline-block;
}

.contact4 .work-hours .contact-info .single-box:hover {
    transition: all 0.4s;
}

.contact4 .work-hours .contact-info .single-box:hover .icon {
    transition: all 0.4s;
    background: var(--vtc-bg-main-5);
}

.contact4 .work-hours .contact-info .single-box:hover .icon img {
    transition: all 0.4s;
    filter: brightness(0) invert(1);
}

.contact-page-sec .form-area {
    border-radius: 7px;
    background: var(--White-colors, #FFF);
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    padding: 24px;
}

.contact-page-sec .form-area .single-input {
    margin-top: 20px;
}

.contact-page-sec .form-area .single-input label {
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
   
    padding-bottom: 16px;
}

.contact-page-sec .form-area .single-input input,
.contact-page-sec .form-area .single-input textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #E5E8E8;
    border-radius: 7px;
}

.contact-page-sec .form-area .single-input input::-moz-placeholder,
.contact-page-sec .form-area .single-input textarea::-moz-placeholder {
    color: var(--03-home-paragrapjh, rgba(86, 88, 88, 0.8274509804));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.contact-page-sec .form-area .single-input input::placeholder,
.contact-page-sec .form-area .single-input textarea::placeholder {
    color: var(--03-home-paragrapjh, rgba(86, 88, 88, 0.8274509804));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.contact-page-sec .form-area .single-input input:focus,
.contact-page-sec .form-area .single-input textarea:focus {
    outline: none;
}

.contact-page-sec .heading1 {
    padding-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-page-sec .heading1 {
        padding-left: 0;
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .contact-page-sec .heading1 {
        padding-left: 0;
        padding-top: 30px;
    }
}

.contact-page-sec .heading1 .hours-area {
    padding-top: 20px;
}

.contact-page-sec .heading1 .hours-area ul li {
    display: inline-block;
    margin-right: 30px;
    color: var(--03-home-paragrapjh, #565858);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.contact-page-sec .heading1 .hours-area ul li img {
    margin-top: -3px;
}

.contact-page-sec .contact-page-box {
    background-color: #E9F4F6;
    padding: 32px;
    display: flex;
    align-items: start;
    border-radius: 7px;
    margin-top: 50px;
    min-height: 150px;
    transition: all 0.4s;
}

.contact-page-sec .contact-page-box .icon img {
    transition: all 0.4s;
}

.contact-page-sec .contact-page-box .heading {
    padding-left: 20px;
}

.contact-page-sec .contact-page-box .heading h5 {
    color: var(--03-home-text-colors, #001518);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
   
    padding-bottom: 10px;
    transition: all 0.4s;
}

.contact-page-sec .contact-page-box .heading a {
    display: inline-block;
    color: var(--03-home-paragrapjh, #565858);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    transition: all 0.4s;
}

.contact-page-sec .contact-page-box:hover {
    transition: all 0.4s;
    transform: translateY(-10px);
    background-color: var(--vtc-bg-main-1);
}

.contact-page-sec .contact-page-box:hover .icon img {
    transition: all 0.4s;
    filter: brightness(0) invert(1);
}

.contact-page-sec .contact-page-box:hover .heading h5 {
    color: #fff;
    transition: all 0.4s;
}

.contact-page-sec .contact-page-box:hover .heading a {
    color: rgba(255, 255, 255, 0.7450980392);
    transition: all 0.4s;
}

.contact-map-page iframe {
    width: 100%;
    border-radius: 7px;
}

/*
 ::::::::::::::::::::::::::
  CONTACT AREA CSS
 ::::::::::::::::::::::::::
 */

/*
::::::::::::::::::::::::::
 HERO AREA CSS
::::::::::::::::::::::::::
*/

.hero-area1 {
    min-height: 900px;
    background: var(--vtc-bg-common-3);
    position: relative;
    z-index: 0;
    padding-top: 200px;
}

.hero-area1 .sec-shape1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-area1 .sec-shape2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.hero-area1 .sec-shape3 {
    position: absolute;
    top: 100px;
    right: 0;
    z-index: -1;
}

.hero-area1 .sec-shape4 {
    position: absolute;
    bottom: 50px;
    left: 60px;
    z-index: -1;
}

.hero-area1 .main-heading {
    position: relative;
}

.hero-area1 .main-heading h1 {
    color: var(--White-colors, #FFF);
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: 70px;
    /* 109.375% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area1 .main-heading h1 {
        font-size: 40px;
        line-height: 48px;
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero-area1 .main-heading h1 {
        font-size: 40px;
        line-height: 48px;
        padding-top: 30px;
    }
}

.hero-area1 .main-heading .image1 {
    margin-right: 100px;
}

.hero-area1 .main-heading .image1 img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area1 .main-heading .image1 {
        margin-right: 0;
        height: 300px;
    }
}

@media (max-width: 767px) {
    .hero-area1 .main-heading .image1 {
        margin-right: 0;
        height: 300px;
    }
}

.hero-area1 .main-heading .image2 {
    position: absolute;
    top: -40px;
    right: 70px;
    z-index: -1;
}

.hero-area1 .main-heading .image3 {
    position: absolute;
    top: 200px;
    right: 0;
    z-index: -1;
}

.hero-area1 .main-heading .main-image {
    margin-left: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area1 .main-heading .main-image {
        margin-left: 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .hero-area1 .main-heading .main-image {
        margin-left: 0;
        margin-bottom: 50px;
    }
}

.hero-area1 .main-heading .shape {
    position: absolute;
    right: -40px;
    top: 140px;
    z-index: -1;
}

.tp-slider-wrapper {
    /* min-height: 740px; */
    min-height: 70vh;
    position: relative;
}

@media (max-width: 767px) {
    .tp-slider-wrapper {
        min-height: auto;
    }
}

.tp-slider-wrapper .tp-slider-arrow-box {
    position: absolute;
    top: 50%;
    right: 100px;
    z-index: 55;
    transform: translateY(-50%);
    margin-top: 0px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-slider-arrow-box {
        right: 100px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-slider-arrow-box {
        right: 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .tp-slider-arrow-box {
        display: none;
    }
}

.tp-slider-arrow-box button {
    height: 60px;
    width: 60px;
    display: inline-block;
    border-radius: 50%;
    font-size: 20px;
    display: block;
    margin: 20px 0;
    color: var(--tp-common-white);
    background-color: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    border: none;
    color: #fff;
    border: 2px solid #fff;
        line-height: 20px;
}

.tp-slider-arrow-box button:hover {
    background: var(--blue);
    transition: all 0.4s;
    border: 2px solid var(--blue);
}

.tp-slider-bg {
    /* height: 740px; */
    height: 70vh;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tp-slider-bg .shape1 {
    position: absolute;
    left: -100px;
    top: 0;
    opacity: 0;
    transition: all 0.4s;
    transform: scale(2.5);
}

.tp-slider-bg .shape2 {
    position: absolute;
    left: 500px;
    bottom: 0;
    opacity: 0;
    transition: all 0.4s;
    transform: scale(2.6);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-slider-bg {
        height: 650px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-slider-bg {
        height: 600px;
    }
}

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

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

.tp-slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    transform: scale(1);
    transition: transform 7000ms ease, opacity 1500ms ease-in;
}

.tp-slider-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.tp-slider-title {
    font-size: 100px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .tp-slider-title {
        font-size: 45px;
    }
    .tp-slider-title br {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-slider-title {
        font-size: 54px;
    }
    .tp-slider-title br {
        display: none;
    }
}

@media only screen and (min-width: 440px) and (max-width: 576px) {
    .tp-slider-title {
        font-size: 50px;
    }
}

.tp-slider-title-box {
    opacity: 0;
    z-index: 3;
    position: relative;
    transform: translateY(-150px);
}

.tp-slider-title-box p {
    color: var(--01-home-paragraph, rgba(255, 255, 255, 0.8235294118));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
   
}

.tp-slider-title-box h1 {
    color: var(--White-colors, #FFF);
     font-size: 50px;
    font-style: normal;
    font-weight: 300;
    line-height: 54px;
    /* 109.375% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-slider-title-box h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 767px) {
    .tp-slider-title-box h1 {
              font-size: 27px;
        line-height: 38px;
        font-weight: 300;
    }
}

.tp-slider-title-box span.span {
    color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    line-height: 18px;
   
    padding: 6px 10px;
    border-radius: 2px;
    background-color: #1A222C;
    margin-bottom: 16px;
}

.tp-slider-title-box span.span img {
    filter: brightness(0) invert(1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .tp-slider-title-box p {
        display: none;
    }
}

.tp-slider-video-box {
    opacity: 0;
    z-index: 3;
    position: relative;
    transform: translateY(150px);
}

@media (max-width: 767px) {
    .tp-slider-video-box {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-slider-video-box {
        flex-wrap: nowrap;
    }
}

.tp-slider-video a {
    height: 60px;
    width: 60px;
    line-height: 63px;
    text-align: center;
    background-color: var(--tp-common-white);
    color: var(--tp-common-black);
    display: inline-block;
    font-size: 18px;
    border-radius: 50%;
    margin-right: 20px;
}

.tp-slider-video a i {
    margin-left: 5px;
    display: inline-block;
}

.tp-slider-video span {
    font-size: 16px;
    font-weight: 400;
    color: var(--tp-common-white);
}

.tp-slider-btn {
    line-height: 0;
}

@media (max-width: 767px) {
    .tp-slider-btn {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-slider-btn {
        margin-bottom: 0px;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .tp-slider-btn {
        margin-bottom: 30px;
        margin-right: 50px;
    }
}

.tp-slider-meta {
    position: absolute;
    bottom: 50px;
    right: 180px;
    z-index: 5;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-slider-meta {
        right: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-slider-meta {
        right: 50px;
    }
}

@media (max-width: 767px) {
    .tp-slider-meta {
        display: none;
    }
}

.tp-slider-meta-icon {
    line-height: 0;
    margin-right: 20px;
    animation: circle-animations 5s forwards infinite alternate;
}

.tp-slider-meta-icon i {
    font-size: 58px;
    color: var(--tp-theme-1);
}

.tp-slider-meta-content span {
    font-size: 16px;
    font-weight: 400;
    color: var(--tp-common-white);
}

.tp-slider-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-500px);
    opacity: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-slider-shape-1 {
        left: -30%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-slider-shape-1 {
        left: -50%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .tp-slider-shape-1 {
        display: none;
    }
}

.tp-slider-shape-2 {
    position: absolute;
    top: 0px;
    left: 150px;
    transform: translateY(-300px);
    opacity: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-slider-shape-2 {
        right: -140px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .tp-slider-shape-2 {
        display: none;
    }
}

.tp-slider-shape-3 {
    position: absolute;
    bottom: 0;
    left: 70px;
    transform: translateX(300px);
    opacity: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-slider-shape-3 {
        bottom: -20%;
        right: -10%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .tp-slider-shape-3 {
        display: none;
    }
}

.tp-slider-shape-4 {
    position: absolute;
    bottom: -3px;
    left: -70px;
    transform: translateX(200px);
    opacity: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .tp-slider-shape-4 {
        display: none;
    }
}

.tp-slider-shape-5 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .tp-slider-shape-5 {
        display: none;
    }
}

.tp-slider-shape-5 img {
    opacity: 0.3;
}

.tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-img {
    transform: scale(1.1);
}

.tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-shape-1 {
    opacity: 1;
    transform: translateX(0px);
    transition: all 3000ms ease;
}

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

.tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-shape-3 {
    opacity: 0.4;
    transform: translatey(0px);
    transition: all 5000ms ease;
}

.tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-title-box {
    opacity: 1;
    transform: translatey(0px);
    transition: all 2500ms ease;
}

.tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-video-box {
    opacity: 1;
    transform: translatey(0px);
    transition: all 2500ms ease;
}

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

.tp-slider-2-bg {
    height: 840px;
    position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-slider-2-bg {
        height: 750px;
    }
}

@media (max-width: 767px) {
    .tp-slider-2-bg {
        height: 620px;
    }
}

.tp-slider-2-bg::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.802;
}

.tp-slider-2-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    transform: scale(1);
    transition: transform 9000ms ease, opacity 2000ms ease-in;
}

.tp-slider-2-icon {
    transform: translateY(-200px);
    opacity: 0;
}

.tp-slider-2-icon img {
    margin-bottom: 25px;
}

.tp-slider-2-btn {
    transform: translateY(200px);
    opacity: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-slider-2-title {
        font-size: 80px;
    }
}

@media (max-width: 767px) {
    .tp-slider-2-title {
        font-size: 45px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-slider-2-title {
        font-size: 65px;
    }
}

.tp-slider-2-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-500px);
    opacity: 0;
}

.tp-slider-2-shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateX(500px);
    opacity: 0;
}

.tp-slider-2-wrapper button {
    font-size: 26px;
    color: var(--tp-common-white);
    z-index: 5;
}

.tp-slider-2-wrapper button:hover {
    color: var(--tp-theme-1);
}

.tp-slider-2-wrapper .slider-2-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 7.5%;
}

.tp-slider-2-wrapper .slider-2-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 7.5%;
}

.tp-slider-2-wrapper .swiper-slide.swiper-slide-active .tp-slider-2-img {
    transform: scale(1.15);
}

.tp-slider-2-wrapper .swiper-slide.swiper-slide-active .tp-slider-2-shape-1 {
    position: absolute;
    top: 0;
    left: 23%;
    z-index: 5;
    opacity: 1;
    transform: translateX(0px);
    transition: all 3500ms ease;
}

.tp-slider-2-wrapper .swiper-slide.swiper-slide-active .tp-slider-2-shape-2 {
    position: absolute;
    bottom: 0;
    right: 17%;
    z-index: 5;
    opacity: 1;
    transform: translateX(0px);
    transition: all 3000ms ease;
}

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

.tp-slider-2-wrapper .swiper-slide.swiper-slide-active .tp-slider-2-btn {
    opacity: 1;
    transform: translateY(0px);
    transition: all 3000ms ease;
    opacity: 1;
}

.tp-slider-content-wrap {
    padding-top: 80px;
}

.tp-slider-content-wrap .review-area {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 32px;
    transform: translateY(100px);
    transition: all 3000ms ease;
    opacity: 0;
}

.tp-slider-content-wrap .review-area .heading {
    padding-left: 20px;
    display: flex;
    align-items: center;
}

.tp-slider-content-wrap .review-area .heading h4 {
    color: var(--White-colors, #FFF);
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
   
}

.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 3000ms ease;
    opacity: 1;
}

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

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

.rtl-dir .hero-area3 .buttons a {
    margin-left: 16px;
}

@media (max-width: 767px) {
    .rtl-dir .hero-area3 .buttons a {
        margin-left: 0;
    }
}

.hero-area3 {
    min-height: 750px;
    background-color: var(--vtc-bg-common-6);
    display: flex;
    align-items: center;
    position: relative;
}

.hero-area3 .main-heading {
    padding-top: 110px;
}

.hero-area3 .main-heading span.span {
    display: inline-block;
    color: var(--02-home-main-colors, #8D65FF);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    padding: 8px 12px;
    border-radius: 60px;
    background: rgba(141, 101, 255, 0.05);
    margin-bottom: 16px;
}

.hero-area3 .main-heading span.span img {
    margin-top: -4px;
}

.hero-area3 .main-heading h1 {
    color: var(--02-home-text-colors, #04000E);
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: 70px;
    /* 109.375% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area3 .main-heading h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 767px) {
    .hero-area3 .main-heading h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

.hero-area3 .main-heading p {
    color: var(--02-home-paragraph, #5A5A5A);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
}

.hero-area3 .all-images {
    position: relative;
    height: 480px;
    z-index: 3;
    margin-top: 110px;
}

@media (max-width: 767px) {
    .hero-area3 .all-images {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}

.hero-area3 .all-images .image1 {
    position: absolute;
    left: 100px;
    bottom: 10px;
}

.hero-area3 .all-images .image2 {
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 767px) {
    .hero-area3 .all-images .image2 {
        height: 250px;
    }
}

.hero-area3 .all-images .image3 {
    position: absolute;
    right: 0;
    bottom: 0;
}

@media (max-width: 767px) {
    .hero-area3 .all-images .image3 {
        height: 250px;
    }
}

.hero-area3 .all-images .image4 {
    position: absolute;
    left: -50px;
    top: 100px;
}

.hero-area3 .shape1 {
    position: absolute;
    left: 0;
    bottom: 0;
}

@media (max-width: 767px) {
    .hero-area3 .shape1 {
        display: none;
    }
}

.hero-area3 .shape2 {
    position: absolute;
    right: 50%;
    bottom: 0;
}

@media (max-width: 767px) {
    .hero-area3 .shape2 {
        display: none;
    }
}

.hero-area3 .shape3 {
    position: absolute;
    right: 0;
    bottom: 0;
}

@media (max-width: 767px) {
    .hero-area3 .shape3 {
        display: none;
    }
}

.hero-area4 {
    padding: 60px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
}

.hero-area4 .main-heading {
    position: relative;
    z-index: 9;
    margin-top: 100px;
}

.hero-area4 .main-heading span.span {
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    display: inline-block;
    margin-bottom: 16px;
}

.hero-area4 .main-heading span.span img {
    filter: brightness(0) invert(1);
    margin-top: -3px;
    margin-right: 3px;
}

.hero-area4 .main-heading h1 {
    color: var(--White-colors, #FFF);
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: 70px;
    /* 109.375% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area4 .main-heading h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 767px) {
    .hero-area4 .main-heading h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

.hero-area4 .main-heading p {
    color: var(--White-colors, rgba(255, 255, 255, 0.8901960784));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
}

.hero-area4 .main-heading::after {
    content: "";
    position: absolute;
    left: -80px;
    top: -155px;
    border-radius: 500px;
    opacity: 0.08;
    background: #0E0401;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    height: 650px;
    width: 650px;
    z-index: -2;
}

.hero-area4 .main-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: -80px;
    border-radius: 500px;
    opacity: 0.08;
    background: #0E0401;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    height: 500px;
    width: 500px;
    z-index: -1;
}

.inner-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.inner-hero::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #001518;
    z-index: -3;
}

.inner-hero .main-heading {
    position: relative;
    z-index: 8;
    padding-top: 80px;
}

.inner-hero .main-heading h1 {
    color: var(--White-colors, #FFF);
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: 64px;
   
    text-transform: capitalize;
}

.inner-hero .main-heading .page-intro {
    position: relative;
    z-index: 3;
    padding-top: 12px;
}

.inner-hero .main-heading .page-intro a {
    color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    display: inline-block;
}

.inner-hero .main-heading .page-intro span {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    margin: 0px 3px;
}

.inner-hero .main-heading .page-intro p {
    color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    display: inline-block;
}

.inner-hero .shape1 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.inner-hero .shape2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.inner-hero .shape3 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/*
::::::::::::::::::::::::::
 HERO AREA CSS
::::::::::::::::::::::::::
*/

.pricing {
    background-color: #001518;
    position: relative;
}

.pricing .pricing-box-area {
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pricing .pricing-box-area {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .pricing .pricing-box-area {
        margin-top: 40px;
    }
}

.pricing .pricing-box-area .single-box {
    margin-bottom: 30px;
    background-color: #fff;
    padding: 32px;
    border-radius: 4px;
}

.pricing .pricing-box-area .single-box:nth-child(1) {
    position: sticky;
    top: 100px;
}

.pricing .pricing-box-area .single-box:nth-child(2) {
    position: sticky;
    top: 100px;
}

.pricing .pricing-box-area .single-box:nth-child(3) {
    position: sticky;
    top: 100px;
}

.pricing .pricing-box-area .single-box .icon {
    background-color: rgba(34, 147, 167, 0.1215686275);
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 16px;
    transition: all 0.4s;
}

.pricing .pricing-box-area .single-box .icon img {
    transition: all 0.4s;
}

.pricing .pricing-box-area .single-box:hover .icon {
    background-color: var(--vtc-bg-main-1);
    transition: all 0.4s;
}

.pricing .pricing-box-area .single-box:hover .icon img {
    transition: all 0.4s;
    filter: brightness(0) invert(1);
}

.pricing .pricing-box-area .single-box .left-side {
    padding-right: 32px;
}

.pricing .pricing-box-area .pricing-list {
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pricing .pricing-box-area .pricing-list {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .pricing .pricing-box-area .pricing-list {
        margin-top: 20px;
    }
}

.pricing .pricing-box-area .pricing-list .heading {
    background-color: #EDF6F8;
    padding: 16px;
    border-radius: 4px;
    color: var(--03-home-text-colors, #001518);
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
   
}

.pricing .pricing-box-area .pricing-list .heading span {
    color: var(--03-home-paragrapjh, #565858);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    display: inline-block;
}

.pricing .pricing-box-area .pricing-list ul {
    padding-top: 10px;
}

.pricing .pricing-box-area .pricing-list ul li {
    padding-top: 15px;
    color: var(--03-home-paragrapjh, #565858);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.pricing .pricing-box-area .pricing-list ul li .check {
    display: inline-block;
    height: 20px;
    width: 20px;
    line-height: 20px;
    background-color: #001518;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 12px;
    margin-right: 4px;
}

.pricing .pricing-box-area .pricing-list ul li .crose {
    display: inline-block;
    height: 20px;
    width: 20px;
    line-height: 20px;
    background-color: red;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 12px;
    margin-right: 4px;
}

.pricing .pricing-box-area .pricing-list::after {
    position: absolute;
    content: "";
    top: 0;
    left: -24px;
    height: 100%;
    width: 2px;
    background-color: #F5F6F6;
}

.pricing .image img {
    width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pricing .image img {
        height: 300px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .pricing .image img {
        height: 300px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.pricing .images-area {
    position: sticky;
    top: 100px;
}

.pricing .images-area .shape1 {
    position: absolute;
    left: 60px;
    top: -160px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pricing .images-area .shape1 {
        display: none;
    }
}

@media (max-width: 767px) {
    .pricing .images-area .shape1 {
        display: none;
    }
}

.pricing .sec-shape1 {
    position: absolute;
    top: 0;
    left: 0;
}

.pricing .sec-shape2 {
    position: absolute;
    top: 0;
    right: 0;
}

.pricing.pricing-page {
    background: #fff;
}

.pricing.pricing-page .single-box {
    background-color: #E9F4F6;
}

.pricing.pricing-page .single-box .pricing-list .heading {
    background-color: rgba(58, 151, 165, 0.137254902);
}

.pricing-page-sec .pass-box {
    background-color: #E9F4F6;
    border-radius: 7px;
    padding: 24px;
    margin-top: 30px;
}

.pricing-page-sec .pass-box .pass-list .single-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.pricing-page-sec .pass-box .pass-list .single-list .check-list {
    display: flex;
    align-items: center;
    color: var(--03-home-paragrapjh, #565858);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.pricing-page-sec .pass-box .pass-list .single-list .check-list .check-icon {
    background-color: #001518;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #fff;
    margin-right: 10px;
}

.pricing-page-sec .pass-box .pass-list .single-list .check-list .check-icon.crose {
    background-color: #ff0a0a;
}

.pricing-page-sec .pass-box .pass-list .single-list .dots-border {
    position: relative;
}

.pricing-page-sec .pass-box .pass-list .single-list .dots-border::after {
    content: "";
    position: absolute;
    left: -60px;
    top: 0;
    height: 1px;
    width: 120px;
    background-image: url(../img/shapes/pricing-line.svg);
}

.pricing-page-sec .pass-box .pass-list .single-list .tk {
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

/*
::::::::::::::::::::::::::
 SHOP AREA CSS
::::::::::::::::::::::::::
*/

.shop4 .shop-box {
    margin-top: 40px;
    text-align: center;
}

.shop4 .shop-box .image-area {
    position: relative;
}

.shop4 .shop-box .image-area .image img {
    width: 100%;
}

.shop4 .shop-box .image-area .icons {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -25px;
    margin-left: -58px;
    z-index: 3;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.6s;
}

.shop4 .shop-box .image-area .icons ul li {
    display: inline-block;
}

.shop4 .shop-box .image-area .icons ul li a {
    display: inline-block;
    background-color: #fff;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.4s;
    margin: 0px 3px;
}

.shop4 .shop-box .image-area .icons ul li a img {
    transition: all 0.4s;
}

.shop4 .shop-box .image-area .icons ul li a:hover {
    transition: all 0.4s;
    background-color: var(--vtc-bg-main-5);
}

.shop4 .shop-box .image-area .icons ul li a:hover img {
    transition: all 0.4s;
    filter: brightness(0) invert(1);
}

.shop4 .shop-box .image-area::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 7px;
    background-color: #000;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.6s;
}

.shop4 .shop-box .heading4 h3 {
    padding: 20px 0px;
}

.shop4 .shop-box:hover {
    transition: all 0.4s;
}

.shop4 .shop-box:hover .image-area::after {
    transition: all 0.6s;
    opacity: 0.4;
    transform: scale(1);
}

.shop4 .shop-box:hover .image-area .icons {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s;
}

.shop-page-sec .shop-box {
    margin-bottom: 30px;
}

.shop-page-sec .shop-box .image-area {
    position: relative;
}

.shop-page-sec .shop-box .image-area .image img {
    width: 100%;
}

.shop-page-sec .shop-box .image-area .hart {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.3294117647);
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.4s;
    transform: scale(0.3);
    opacity: 0;
}

.shop-page-sec .shop-box .image-area .icon-area {
    background-color: #fff;
    padding: 10px 16px;
    border-radius: 111px;
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 2;
    margin-left: -80px;
    transform: translateY(50px) scale(0.7);
    opacity: 0;
    transition: all 0.4s;
}

.shop-page-sec .shop-box .image-area .icon-area ul li {
    display: inline-block;
}

.shop-page-sec .shop-box .image-area .icon-area ul li a {
    display: inline-block;
    height: 32px;
    width: 32px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: #E9F4F6;
    margin: 0px 4px;
    transition: all 0.4s;
}

.shop-page-sec .shop-box .image-area .icon-area ul li a img {
    transition: all 0.4s;
}

.shop-page-sec .shop-box .image-area .icon-area ul li a:hover {
    transition: all 0.4s;
    background-color: #2293A7;
}

.shop-page-sec .shop-box .image-area .icon-area ul li a:hover img {
    transition: all 0.4s;
    filter: brightness(0) invert(1);
}

.shop-page-sec .shop-box .image-area::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 7px;
    background-color: #000;
    opacity: 0;
    z-index: 1;
    transform: scale(0.7);
    transition: all 0.4s;
}

.shop-page-sec .shop-box .heading {
    padding-top: 20px;
}

.shop-page-sec .shop-box .heading .stars li {
    display: inline-block;
    color: #2293A7;
    margin: 0px 2px;
}

.shop-page-sec .shop-box .heading h4 a {
    display: inline-block;
    color: var(--03-home-text-colors, #001518);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
   
    transition: all 0.4s;
    margin: 12px 0px;
}

.shop-page-sec .shop-box .heading h4 a:hover {
    color: #2293A7;
    transition: all 0.4s;
}

.shop-page-sec .shop-box .heading p {
    color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    background-color: #2293A7;
    padding: 10px 14px;
    border-radius: 111px;
    display: inline-block;
}

.shop-page-sec .shop-box:hover .image-area::after {
    opacity: 0.5;
    transform: scale(1);
    transition: all 0.4s;
}

.shop-page-sec .shop-box:hover .image-area .icon-area {
    transform: translateY(0px) scale(1);
    opacity: 1;
    transition: all 0.4s;
}

.shop-page-sec .shop-box:hover .image-area .hart {
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s;
}

.shop-details-area .shop-left-area {
    position: sticky;
    top: 100px;
    border-radius: 7px;
    padding: 32px 20px;
    background: #E9F4F6;
}

.shop-details-area .shop-left-area h3 {
    color: var(--03-home-text-colors, #001518);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
   
    display: inline-block;
}

.shop-details-area .shop-left-area .search-area form {
    background: var(--ztc-bg-bg-1);
    border-radius: 4px;
    position: relative;
    height: 54px;
}

.shop-details-area .shop-left-area .search-area form input {
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s18);
    line-height: 17px;
    font-weight: var(--ztc-weight-semibold);
    color: var(--ztc-text-text-3);
    padding: 16px;
    width: 100%;
    outline: none;
    border: none;
}

.shop-details-area .shop-left-area .search-area form input::-moz-placeholder {
    color: var(--ztc-text-text-4);
    font-weight: var(--ztc-weight-regular);
}

.shop-details-area .shop-left-area .search-area form input::placeholder {
    color: var(--ztc-text-text-4);
    font-weight: var(--ztc-weight-regular);
}

.shop-details-area .shop-left-area .search-area form button {
    background: none;
    border: none;
    position: absolute;
    right: 16px;
    top: 10px;
}

.shop-details-area .shop-left-area .search-area form button img {
    filter: brightness(0);
    transition: all 0.4s;
}

.shop-details-area .shop-left-area .filter-area .header-btn7 {
    width: 120px;
    text-align: center;
}

.shop-details-area .shop-left-area .filter-area .filter-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-details-area .shop-left-area .filter-area .range-slider-output {
    display: flex;
    align-items: center;
}

.shop-details-area .shop-left-area .filter-area .range-slider-output .number-group {
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.shop-details-area .shop-left-area .filter-area .range-slider-output p {
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    padding-right: 10px;
}

.shop-details-area .shop-left-area .filter-area .range-slider-output input {
    color: #001518;
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s18);
    font-style: normal;
    font-weight: var(--ztc-weight-semibold);
    line-height: 16px;
    border: none;
    background: none;
}

.shop-details-area .shop-left-area .filter-area .range-slider-output input:focus {
    outline: none;
}

.shop-details-area .shop-left-area .filter-area .filter-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-details-area .shop-left-area .filter-area .filter-options .theme-btn1 {
    padding: 14px 20px;
}

.shop-details-area .shop-left-area .filter-area .range-slider-output {
    display: flex;
    align-items: center;
}

.shop-details-area .shop-left-area .filter-area .range-slider .number-group .number-input::-webkit-outer-spin-button,
.shop-details-area .shop-left-area .filter-area .range-slider .number-group .number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.shop-details-area .shop-left-area .filter-area .range-slider .range-group {
    position: relative;
    flex: 0 0 100%;
    height: 0;
}

.shop-details-area .shop-left-area .filter-area .range-slider .range-group .range-input {
    position: absolute;
    left: 0;
    bottom: 0;
    margin-bottom: 0;
    width: 100%;
    border-bottom: 0;
    accent-color: #001518;
}

.shop-details-area .shop-left-area .filter-area .range-slider .range-group .range-input:focus {
    outline: 0;
}

.shop-details-area .shop-left-area .filter-area .range-slider .range-group .range-input::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animation: 0.2s;
    background: rgba(0, 21, 24, 0.0745098039);
    border-radius: 1px;
    box-shadow: none;
    border: none;
}

.shop-details-area .shop-left-area .filter-area .range-slider .range-group .range-input::-webkit-slider-thumb {
    z-index: 2;
    position: relative;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background: red;
    cursor: pointer;
    margin-top: -5px;
}

.shop-details-area .shop-left-area .filter-area .range-slider .range-group .range-input::-moz-range-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    animation: 0.2s;
    background: red;
    border-radius: 1px;
    box-shadow: none;
    border: 0;
}

.shop-details-area .shop-left-area .products-area {
    padding: 20px 0;
    position: relative;
    border-bottom: 1px solid #BFC9C9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-details-area .shop-left-area .products-area .heading {
    padding-top: 20px;
}

.shop-details-area .shop-left-area .products-area .heading .stars li {
    display: inline-block;
    color: #2293A7;
    margin: 0px 2px;
}

.shop-details-area .shop-left-area .products-area .heading h4 a {
    display: inline-block;
    color: var(--03-home-text-colors, #001518);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
   
    transition: all 0.4s;
    margin: 12px 0px;
}

.shop-details-area .shop-left-area .products-area .heading h4 a:hover {
    color: #2293A7;
    transition: all 0.4s;
}

.shop-details-area .shop-left-area .products-area .heading p {
    color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    background-color: #2293A7;
    padding: 10px 14px;
    border-radius: 111px;
    display: inline-block;
}

.shop-details-area .shop-left-area .products-area .img1 img {
    height: 120px;
    width: 120px;
    -o-object-fit: cover;
    object-fit: cover;
}

.shop-details-area .shop-left-area .tags-area ul li {
    display: inline-block;
}

.shop-details-area .shop-left-area .tags-area ul li a {
    color: var(--ztc-text-text-3);
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s18);
    font-style: normal;
    font-weight: var(--ztc-weight-semibold);
    line-height: 18px;
    display: inline-block;
    border-radius: 4px;
    transition: all 0.4s;
    padding: 12px 16px;
    background: var(--ztc-bg-bg-1);
    margin: 16px 10px 0 0;
}

.shop-details-area .shop-left-area .tags-area ul li a:hover {
    background: var(--ztc-bg-bg-2);
    transition: all 0.4s;
    color: var(--ztc-bg-bg-1);
}

@media (max-width: 767px) {
    .cart-table-area {
        overflow-x: scroll;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart-table-area {
        overflow-x: scroll;
    }
}

.cart-table-area p.pera1 {
    color: #F4524F;
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s20);
    font-style: normal;
    font-weight: var(--ztc-weight-semibold);
    line-height: 20px;
    text-align: center;
    padding-bottom: 48px;
    padding-top: 24px;
}

@media (max-width: 767px) {
    .cart-table-area .table.table-borderless {
        width: 800px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart-table-area .table.table-borderless {
        width: 800px;
    }
}

.cart-table-area .table.table-borderless tr.cart-head {
    background: #E9F4F6;
    overflow: hidden;
    border: none;
    border-radius: 5px;
    padding: 16px;
}

.cart-table-area .table.table-borderless tr.cart-product-list {
    max-width: 12px;
}

.cart-table-area .table.table-borderless tr.cart-product-list td {
    vertical-align: middle;
}

.cart-table-area .table.table-borderless .cart-prodct img {
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 8px;
    margin-right: 120px;
    height: 120px;
    width: 120px;
}

.cart-table-area .table.table-borderless .cart-prodct .cart-product-details ul li {
    display: inline-block;
    color: #2293A7;
}

.cart-table-area .table.table-borderless .cart-prodct .cart-product-details ul li:nth-last-child(1) {
    color: #CDD3D4;
}

.cart-table-area .table.table-borderless .cart-prodct .cart-product-details p {
    color: var(--03-home-text-colors, #001518);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
   
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
}

.cart-table-area .table.table-borderless .cart-prodct .cart-product-details a {
    color: #F23936;
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s18);
    font-style: normal;
    font-weight: var(--ztc-weight-semibold);
    line-height: 16px;
    display: block;
    transition: all 0.4s;
}

.cart-table-area .table.table-borderless .cart-price {
    line-height: 20px;
    border-radius: 4px;
    background: var(--ztc-bg-bg-2);
    padding: 12px 14px;
    display: inline-block;
    margin-top: 52px;
    color: var(--White-Colors, #FFF);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
   
    background-color: #2293A7;
    border-radius: 111px;
    padding: 10px 14px;
}

@media (max-width: 767px) {
    .cart-table-area .table.table-borderless .cart-price {
        margin-top: 45px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart-table-area .table.table-borderless .cart-price {
        margin-top: 45px;
    }
}

.cart-table-area .table.table-borderless .qty-container {
    display: inline-block;
    align-items: center;
    text-align: center;
    border: 1px solid #E9F4F6;
    padding: 14px;
    border-radius: 4px;
    background: #E9F4F6;
}

.cart-table-area .table.table-borderless .qty-container button {
    background: none;
    border: none;
    font-size: 16px;
    color: var(--ztc-text-text-3);
}

.cart-table-area .table.table-borderless .qty-container input {
    text-align: center;
    width: 60px;
    border: none;
    font-size: 16px;
    color: var(--ztc-text-text-3);
    outline: none;
    font-size: var(--ztc-font-size-font-s18);
    font-weight: var(--ztc-weight-semibold);
    background: none;
}

.cart-table-area .table.table-borderless .qty-quianttity {
    display: flex;
    align-items: center;
}

.cart-table-area .table.table-borderless th.table-product {
    width: 40%;
}

.cart-table-area .table.table-borderless th.table-price {
    width: 20%;
}

.cart-table-area .table.table-borderless th.table-quantity {
    width: 20%;
}

.cart-table-area .table.table-borderless th.table-subtotal {
    width: 20%;
}

.specing {
    padding-top: 48px;
    border-top: 1px solid #E9F4F6;
}

.cart-bottom-area {
    padding: 24px;
    border-radius: 4px;
    position: relative;
    background: #E9F4F6;
}

.cart-bottom-area ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-bottom-area ul li span {
    color: var(--03-home-text-colors, #001518);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
   
    display: inline-block;
    transition: all 0.4s;
}

.checkout-section-area {
    position: relative;
    z-index: 1;
}

.checkout-section-area .checkout-boxarea {
    background: #E9F4F6;
    border-radius: 4px;
    padding: 32px;
}

.checkout-section-area .checkout-boxarea h3 {
    color: var(--03-home-text-colors, #001518);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    display: inline-block;
    margin-bottom: 16px;
}

.checkout-section-area .checkout-boxarea p {
    color: var(--03-home-paragrapjh, #565858);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
}

.checkout-section-area .input-area {
    margin-top: 24px;
}

.checkout-section-area .input-area p {
    color: var(--ztc-text-text-3);
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s18);
    font-style: normal;
    font-weight: var(--ztc-weight-semibold);
    line-height: 16px;
    margin-bottom: 16px;
}

.checkout-section-area .input-area input,
.checkout-section-area .input-area textarea {
    width: 100%;
    color: var(--03-home-paragrapjh, #565858);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
   
    padding: 16px;
    border-radius: 4px;
    border: 1px solid #D7DDDE;
    background: #E9F4F6;
}

.checkout-section-area .input-area input::-moz-placeholder,
.checkout-section-area .input-area textarea::-moz-placeholder {
    color: var(--03-home-paragrapjh, rgba(86, 88, 88, 0.7882352941));
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
   
}

.checkout-section-area .input-area input::placeholder,
.checkout-section-area .input-area textarea::placeholder {
    color: var(--03-home-paragrapjh, rgba(86, 88, 88, 0.7882352941));
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
   
}

.checkout-section-area .input-area input:focus,
.checkout-section-area .input-area textarea:focus {
    outline: none;
}

.checkout-section-area .input-area .nice-select {
    width: 100%;
    outline: none;
    border: 1px solid #D7DDDE;
    background: none;
    height: 56px;
    line-height: 56px;
    color: var(--03-home-paragrapjh, rgba(86, 88, 88, 0.7450980392));
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.checkout-section-area .input-area .nice-select ul {
    width: 100%;
}

.checkout-section-area .input-area .nice-select ul li:hover {
    background: var(--ztc-bg-bg-2);
    transition: all 0.4s;
    color: var(--ztc-bg-bg-1);
}

.checkout-section-area .input-area button {
    border: none;
}

.checkout-section-area .checkout-right-area {
    padding: 0 0 0 50px;
}

@media (max-width: 767px) {
    .checkout-section-area .checkout-right-area {
        padding: 0;
        margin-top: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .checkout-section-area .checkout-right-area {
        padding: 0;
        margin-top: 30px;
    }
}

.checkout-section-area .checkout-right-area .coupon-area {
    position: relative;
}

.checkout-section-area .checkout-right-area .coupon-area h3 {
    color: var(--ztc-text-text-3);
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s18);
    font-style: normal;
    font-weight: var(--ztc-weight-semibold);
    line-height: 16px;
    margin-bottom: 20px;
}

.checkout-section-area .checkout-right-area .coupon-area form {
    position: relative;
}

.checkout-section-area .checkout-right-area .coupon-area form input {
    padding: 16px;
    width: 100%;
    line-height: 17px;
    border: 1px solid #BAC7CA;
    border-radius: 111px;
}

.checkout-section-area .checkout-right-area .coupon-area form input::-moz-placeholder {
    font-weight: var(--ztc-weight-regular);
    color: var(--ztc-text-text-4);
    line-height: 17px;
}

.checkout-section-area .checkout-right-area .coupon-area form input::placeholder {
    font-weight: var(--ztc-weight-regular);
    color: var(--ztc-text-text-4);
    line-height: 17px;
}

.checkout-section-area .checkout-right-area .coupon-area form input:focus {
    outline: none;
}

.checkout-section-area .checkout-right-area .coupon-area form button {
    border: none;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
}

.checkout-section-area .checkout-right-area .coupon-area form button::after {
    display: none;
}

.checkout-section-area .checkout-right-area .cart-checkout-area {
    position: relative;
    z-index: 1;
    background: #001518;
    border-radius: 4px;
    padding: 32px;
}

.checkout-section-area .checkout-right-area .cart-checkout-area h3 {
    color: var(--White-colors, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
   
    padding-bottom: 24px;
    border-bottom: 1px solid #374F52;
}

.checkout-section-area .checkout-right-area .cart-checkout-area ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-section-area .checkout-right-area .cart-checkout-area ul li span {
    color: var(--White-colors, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
   
    transition: all 0.4s;
    display: inline-block;
}

.checkout-section-area .checkout-right-area .cart-checkout-area ul li:nth-last-child(1) {
    padding: 20px 0 32px 0;
    border-top: 1px solid #374F52;
    border-bottom: 1px solid #374F52;
}

.checkout-section-area .checkout-right-area .cart-checkout-area .input-area {
    display: flex;
    align-items: center;
    padding: 0 0 24px 0;
    border-bottom: 1px solid #374F52;
}

.checkout-section-area .checkout-right-area .cart-checkout-area .input-area input {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    accent-color: #2293A7;
    background: none;
}

.checkout-section-area .checkout-right-area .cart-checkout-area .input-area label {
    color: var(--White-colors, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
   
    padding-left: 10px;
    margin: 0 24px 0 0;
}

.checkout-section-area .checkout-right-area .cart-checkout-area .input-area img {
    margin: 0 8px 0 0;
}

.shop-details-area .img1 img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.shop-details-area .shop-header-area {
    padding: 0 0 0 50px;
}

@media (max-width: 767px) {
    .shop-details-area .shop-header-area {
        padding: 0;
        margin-top: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-details-area .shop-header-area {
        padding: 0;
        margin-top: 30px;
    }
}

.shop-details-area .shop-header-area .stocks li {
    color: var(--03-home-text-colors, #001518);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
   
    display: block;
    margin-top: 12px;
}

.shop-details-area .shop-header-area ul {
    padding-top: 20px;
}

.shop-details-area .shop-header-area ul li {
    display: inline-block;
    color: #2293A7;
}

.shop-details-area .shop-header-area .price {
    color: var(--03-home-main-colors, #2293A7);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
   
    padding-top: 20px;
}

.shop-details-area .shop-header-area h3 {
    color: var(--ztc-text-text-2);
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s32);
    font-style: normal;
    font-weight: var(--ztc-weight-semibold);
    line-height: 32px;
    display: inline-block;
}

.shop-details-area .shop-header-area .qty-container {
    display: flex;
    align-items: center;
    text-align: center;
    border: 1px solid #E1E3E8;
    padding: 14px;
    border-radius: 111px;
    background: rgba(0, 21, 24, 0.1529411765);
}

.shop-details-area .shop-header-area .qty-container button {
    background: none;
    border: none;
    font-size: 16px;
    color: var(--ztc-text-text-3);
}

.shop-details-area .shop-header-area .qty-container input {
    text-align: center;
    width: 60px;
    border: none;
    font-size: 16px;
    color: var(--ztc-text-text-3);
    outline: none;
    background: none;
    border: none;
}

.shop-details-area .shop-header-area .qty-quianttity {
    display: flex;
    align-items: center;
}

.shop-details-area .shop-header-area .btn-area {
    margin-left: 16px;
}

.shop-tabs-area {
    position: relative;
    z-index: 1;
    background: var(--ztc-bg-bg-6);
}

.shop-tabs-area .nav.nav-pills button {
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    line-height: 18px;
    display: block;
    width: 100%;
    text-align: start;
    padding: 16px 20px;
    border-radius: 4px;
    transition: all 0.4s;
    background: #E9F4F6;
    margin-bottom: 30px;
}

.shop-tabs-area .nav.nav-pills button i {
    margin-left: 4px;
    transform: rotate(-45deg);
}

.shop-tabs-area .nav.nav-pills button.active {
    background-color: #2293A7;
    transition: all 0.4s;
    color: #fff;
}

.shop-tabs-area .tab-content {
    padding: 0 0 0 50px;
}

@media (max-width: 767px) {
    .shop-tabs-area .tab-content {
        padding: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-tabs-area .tab-content {
        padding: 0;
    }
}

/*
::::::::::::::::::::::::::
 SHOP AREA CSS
::::::::::::::::::::::::::
*/

/*
::::::::::::::::::::::::::
 PRELOADER AREA CSS
::::::::::::::::::::::::::
*/

#preloader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100%;
}



.preloader2 {
    background-color: #fff;
    z-index: 99099;
}



.progress-circle-all {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 180px;
    border-radius: 50%;
}

.circle-inner {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: textFade 2s infinite ease-in-out;
}

.circle-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top: 2px solid var(--blue);
    border-right: 5px solid var(--blue);
    animation: spin 3s linear infinite;
}

.fish {
    width: 80px;
    /* Adjust the size of the logo */
    height: auto;
}

.text {
    margin-top: 20px;
    font-size: 24px;
    color: #fff;
    font-family: "Courier New", Courier, monospace;
    /* Change the font style */
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: textFade 2s infinite ease-in-out;
}

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

@keyframes textFade {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/*
::::::::::::::::::::::::::
 PRELOADER AREA CSS
::::::::::::::::::::::::::
*/

/*
::::::::::::::::::::::::::
 CASE AREA CSS
::::::::::::::::::::::::::
*/

.case1-section-area {
    position: relative;
    z-index: 1;
}

.case1-section-area .case-header-area {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .case1-section-area .case-header-area {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .case1-section-area .case-header-area {
        margin-bottom: 30px;
    }
}

.case1-section-area .cs_case_study_1_list {
    display: flex;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .case1-section-area .cs_case_study_1_list {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .case1-section-area .cs_case_study_1_list {
        flex-direction: column;
    }
}

.case1-section-area .cs_case_study_1_list>.cs_case_study.cs_style_1 {
    flex: 1;
}

.case1-section-area .cs_case_study_1_list .cs_case_study.cs_style_1 {
    min-height: 400px;
    transition: all 0.8s;
}

.case1-section-area .cs_case_study_1_list .cs_case_study.cs_style_1 .cs_case_study_in {
    transition: all 0.8s ease;
    left: 80px;
    opacity: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .case1-section-area .cs_case_study_1_list .cs_case_study.cs_style_1 .cs_case_study_in {
        left: 0;
        opacity: 1;
        transition: all 0.5s;
    }
}

.case1-section-area .cs_case_study_1_list .cs_case_study.cs_style_1.active {
    flex: 8;
    transition: all 0.9s;
}

.case1-section-area .cs_case_study_1_list .cs_case_study.cs_style_1.active .cs_case_study_in {
    opacity: 1;
    left: 0;
    transition: all 0.6s ease;
    transition-delay: 0.3s;
}

.case1-section-area .cs_case_study_1_list .cs_case_study.cs_style_1.active .cs_case_study_icon {
    transform: scale(0) rotate(360deg);
    transition-delay: 0.1s;
}

.case1-section-area .cs_case_study.cs_style_1 {
    height: 700px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .case1-section-area .cs_case_study.cs_style_1 {
        height: 600px;
    }
}

.case1-section-area .cs_case_study.cs_style_1 .cs_case_study_title a {
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% 3px;
    transition: all 0.8s;
}

.case1-section-area .cs_case_study.cs_style_1 .cs_case_study_number {
    left: 70px;
    top: 70px;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .case1-section-area .cs_case_study.cs_style_1 .cs_case_study_number {
        left: 30px;
        top: 40px;
        transition: all 0.4s;
    }
}

.case1-section-area .cs_case_study.cs_style_1 .cs_case_study_category {
    margin-bottom: 15px;
}

.case1-section-area .cs_case_study.cs_style_1 .cs_case_study_thumb {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #fff;
}

.case1-section-area .cs_case_study.cs_style_1 .cs_case_study_in {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 88px 72px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .case1-section-area .cs_case_study.cs_style_1 .cs_case_study_in {
        padding: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .case1-section-area .cs_case_study.cs_style_1 .cs_case_study_in {
        padding: 30px;
    }
}

.case1-section-area .cs_case_study.cs_style_1 .cs_case_study_icon {
    left: 70px;
    bottom: 86px;
    z-index: 1;
    height: 55px;
    width: 55px;
    transition: all 0.6s ease;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .case1-section-area .cs_case_study.cs_style_1 .cs_case_study_icon {
        left: 40px;
        bottom: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .case1-section-area .cs_case_study.cs_style_1 .cs_case_study_icon {
        display: none;
    }
}

.case1-section-area .cs_case_study_thumb {
    background-image: url(../img/i1.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.case1-section-area .cs_case_study_thumb.cs_case_study_thumb2 {
    background-image: url(../img/i2.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.case1-section-area .cs_case_study_thumb.cs_case_study_thumb3 {
    background-image: url(../img/i3.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.case1-section-area .cs_case_study_thumb.cs_case_study_thumb4 {
    background-image: url(../img/i5.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.case1-section-area .cs_case_study_thumb.cs_case_study_thumb5 {
    background-image: url(../img/i6.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.case1-section-area .cs_case_study_thumb.cs_case_study_thumb6 {
    background-image: url(../img/i2.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.case1-section-area .cs_case_study_thumb.cs_case_study_thumb7 {
    background-image: url(../img/i1.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.case1-section-area .cs_case_study.cs_style_1.cs_hover_active {
    margin: 0px 8px;
    border-radius: 5px;
    height: 440px;
    position: relative;
   box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .case1-section-area .cs_case_study.cs_style_1.cs_hover_active {
        margin: 0 0 24px 0;
    }
}

@media (max-width: 767px) {
    .case1-section-area .cs_case_study.cs_style_1.cs_hover_active {
        margin: 0 0 24px 0;
    }
}

.case1-section-area .cs_case_study.cs_style_1.cs_hover_active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    opacity: 1;
    transition: all 0.4s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .case1-section-area .cs_case_study.cs_style_1.cs_hover_active .content-area1 {
        opacity: 0;
        transition: all 0.4s;
    }
    .case1-section-area .cs_case_study.cs_style_1.cs_hover_active .content-area {
        left: 0;
        transition: all 0.4s;
        opacity: 1;
    }
    .case1-section-area .cs_case_study.cs_style_1.cs_hover_active::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: #fff;
        opacity: 0;
        transition: all 0.4s;
    }
}

@media (max-width: 767px) {
    .case1-section-area .cs_case_study.cs_style_1.cs_hover_active .content-area1 {
        opacity: 0;
        transition: all 0.4s;
    }
    .case1-section-area .cs_case_study.cs_style_1.cs_hover_active .content-area {
        left: 0;
        transition: all 0.4s;
        opacity: 1;
    }
    .case1-section-area .cs_case_study.cs_style_1.cs_hover_active::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: #fff;
        opacity: 0;
        transition: all 0.4s;
    }
}

.case1-section-area .cs_case_study.cs_style_1.cs_hover_active.active .content-area1 {
    opacity: 0;
    transition: all 0.4s;
}

.case1-section-area .cs_case_study.cs_style_1.cs_hover_active.active .content-area {
    left: 0;
    transition: all 0.4s;
    opacity: 1;
}

.case1-section-area .cs_case_study.cs_style_1.cs_hover_active.active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #b0dcf1;
    opacity: 0;
    transition: all 0.4s;
}
/* CSS Custom Properties */
@property --animate-duration {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@property --Color {
  syntax: '<color>';
  initial-value: #4afd71;
  inherits: false;
}

/* Animation Keyframes */
@keyframes rotate {
  0% {
    --animate-duration: 0deg;
    --Color: #4afd71;
  }
  100% {
    --animate-duration: 360deg;
    --Color: #4afd71;
  }
}

/* Button Styling */
.btn {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: none;
  padding: 3px; /* Border width */
  border-radius: 100px;
  background: transparent;
}

.btnSpan {
  position: relative;
  z-index: 1;
  width: 100%;
  /* background: rgb(255, 255, 255); */
background-image: linear-gradient(-225deg, #FF057C 0%, #8D0B93 50%, #321575 100%);
  border-radius: 100px;
  padding: 9px 15px;
  font-size: 16px;
  color:#fff;
  backdrop-filter: blur(40px);
  font-size: 13px;
}

/* Gradient Border Animation */
.btn:after,
.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: calc(100px + 3px); /* Matches 3px border width */
  background-size: 100% 100%;
  background-position: 0px 0px;
  background-image: conic-gradient(
    from var(--animate-duration) at 50% 50%,
    #B6F500 0%,
    #FFE100 20%,
    #00FF9C 50%,
    #fc00ff 66%,
    #fff 100%
  );
  /* background-image: linear-gradient(to top, #50cc7f 0%, #f5d100 100%); */
  animation: rotate 3s infinite linear;
}

.btn:before {
  filter: blur(20px);
}

#blinking-button{
    padding: 8px 35px;
border: 0px solid #6C8003;
}
@keyframes blink {
  0%, 100% {background-color:#3F06FF;}
  50% {background-color: #8EDDBE;}
}
#blinking-button {
  background-color: #8EDDBE;
  color: white;
  animation: blink 3s linear infinite;
}
.case1-section-area .content-area1 {
    position: absolute;
    transform: rotate(-90deg);
    width: 450px;
    height: auto;
    left: -182px;
    bottom: 220px;
    transition: all 0.4s;
    opacity: 1;
    z-index: 99;
}

.case1-section-area .content-area1 a {
  color: var(--dark);
       font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    display: inline-block;
    text-transform: capitalize;
    transition: all 0.4s;
    width: 100%;
}

.case1-section-area .content-area1 .cirle-arrow {
    position: absolute;
    top: 0px;
    left:380px;
    height: 40px;
    width: 40px;
    transform: rotate(45deg);
    background: #EDF6F8;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
}

.case1-section-area .content-area {
    position: absolute;
    z-index: 1;
    transition: all 0.4s;
    padding: 0 24px 24px 24px;
    bottom: 0;
    left: -100%;
    opacity: 0;
}

.case1-section-area .content-area a {
    color: var(--White-colors, #FFF);
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
   
    display: inline-block;
    text-transform: capitalize;
    transition: all 0.4s;
    width: 100%;
    margin-bottom: 8px;
}

.case1-section-area .content-area .learn {
      display: inline-block;
    position: absolute;
    top: -6px;
    left: 630px;
    height: 40px;
    width: 40px;
    transform: rotate(359deg);
    background: var(--blue);
    font-size: 20px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    color: #ffffff;
}

/*
 ::::::::::::::::::::::::::
  CASE AREA CSS
 ::::::::::::::::::::::::::
 */

/*
::::::::::::::::::::::::::
 TEAM AREA CSS
::::::::::::::::::::::::::
*/

.team2 .team2-box {
    margin-top: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team2 .team2-box .image {
    overflow: hidden;
    border-radius: 7px;
}

.team2 .team2-box .image img {
    width: 100%;
}

.team2 .team2-box .hover-area {
    position: absolute;
    bottom: 24px;
    left: -50%;
    right: -50%;
    z-index: 2;
    transform: translateY(70px);
    opacity: 0;
    transition: all 0.4s;
}

.team2 .team2-box .hover-area h4 a {
    color: var(--White-colors, #FFF);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
   
}

.team2 .team2-box .hover-area p {
    color: var(--White-colors, rgba(255, 255, 255, 0.8549019608));
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    text-transform: capitalize;
    padding-top: 6px;
}

.team2 .team2-box .hover-area ul.icons {
    padding-top: 16px;
}

.team2 .team2-box .hover-area ul.icons li {
    display: inline-block;
}

.team2 .team2-box .hover-area ul.icons li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    font-size: 20px;
    margin: 0 4px;
    color: #000;
    transition: all 0.4s;
}

.team2 .team2-box .hover-area ul.icons li a:hover {
    background: var(--vtc-bg-main-3);
    transition: all 0.4s;
    color: #fff;
}

.team2 .team2-box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 7px;
    background-color: #000;
    opacity: 0;
    z-index: 1;
    transform: scale(0.7);
    transition: all 0.4s;
}

.team2 .team2-box:hover {
    transition: all 0.4s;
}

.team2 .team2-box:hover::after {
    transform: scale(1);
    transition: all 0.4s;
    opacity: 0.5;
}

.team2 .team2-box:hover .hover-area {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s;
}

.team3 .team3-box {
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.team3 .team3-box .image-area {
    position: relative;
    overflow: hidden;
}

.team3 .team3-box .image-area .image {
    border-radius: 7px;
    overflow: hidden;
}

.team3 .team3-box .image-area .image img {
    width: 100%;
}

.team3 .team3-box .image-area .hover-area {
    background: var(--vtc-bg-main-4);
    width: 224px;
    border-radius: 100px;
    padding: 16px;
    position: absolute;
    left: 100px;
    bottom: -30px;
    z-index: 2;
    transition: all 0.4s;
    opacity: 0;
}

.team3 .team3-box .image-area .hover-area ul li {
    display: inline-block;
}

.team3 .team3-box .image-area .hover-area ul li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.0823529412);
    border-radius: 50%;
    color: #fff;
    margin: 0px 2px;
    transition: all 0.4s;
}

.team3 .team3-box .image-area .hover-area ul li a:hover {
    color: var(--vtc-bg-main-4);
    background-color: #fff;
}

.team3 .team3-box .image-area::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 7px;
    background-color: #000;
    opacity: 0;
    z-index: 1;
    transform: scale(0.5);
    transition: all 0.4s;
}

.team3 .team3-box .heading3 {
    margin-top: 24px;
}

.team3 .team3-box .heading3 p {
    padding-top: 8px;
}

.team3 .team3-box:hover .image-area::after {
    transform: scale(1);
    transition: all 0.4s;
    opacity: 0.4;
}

.team3 .team3-box:hover .hover-area {
    transition: all 0.4s;
    opacity: 1;
    bottom: 30px;
}

.team3 .team3-box.active .image-area::after {
    transform: scale(1);
    transition: all 0.4s;
    opacity: 0.4;
}

.team3 .team3-box.active .hover-area {
    transition: all 0.4s;
    opacity: 1;
    bottom: 30px;
}

.team3.team-page .team3-box {
    margin-top: 0;
    margin-bottom: 30px;
}

.team3.team-page .team3-box .hover-area {
    background-color: var(--vtc-bg-main-1);
}

.team3.team-page .team3-box .hover-area ul li a:hover {
    color: var(--vtc-bg-main-1);
}

.about-team .team3-box {
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.about-team .team3-box .image-area {
    position: relative;
    overflow: hidden;
}

.about-team .team3-box .image-area .image {
    border-radius: 7px;
    overflow: hidden;
}

.about-team .team3-box .image-area .image img {
    width: 100%;
}

.about-team .team3-box .image-area .hover-area {
    background: var(--vtc-bg-main-1);
    width: 224px;
    border-radius: 100px;
    padding: 16px;
    position: absolute;
    left: 100px;
    bottom: -30px;
    z-index: 2;
    transition: all 0.4s;
    opacity: 0;
}

.about-team .team3-box .image-area .hover-area ul li {
    display: inline-block;
}

.about-team .team3-box .image-area .hover-area ul li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.0823529412);
    border-radius: 50%;
    color: #fff;
    margin: 0px 2px;
    transition: all 0.4s;
}

.about-team .team3-box .image-area .hover-area ul li a:hover {
    color: var(--vtc-bg-main-1);
    background-color: #fff;
}

.about-team .team3-box .image-area::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 7px;
    background-color: #000;
    opacity: 0;
    z-index: 1;
    transform: scale(0.5);
    transition: all 0.4s;
}

.about-team .team3-box .heading3 {
    margin-top: 24px;
}

.about-team .team3-box .heading3 p {
    padding-top: 8px;
}

.about-team .team3-box:hover .image-area::after {
    transform: scale(1);
    transition: all 0.4s;
    opacity: 0.4;
}

.about-team .team3-box:hover .hover-area {
    transition: all 0.4s;
    opacity: 1;
    bottom: 30px;
}

.about-team .team3-box.active .image-area::after {
    transform: scale(1);
    transition: all 0.4s;
    opacity: 0.4;
}

.about-team .team3-box.active .hover-area {
    transition: all 0.4s;
    opacity: 1;
    bottom: 30px;
}

.about-team .shape {
    position: absolute;
    top: 60px;
    left: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-team .shape {
        display: none;
    }
}

@media (max-width: 767px) {
    .about-team .shape {
        display: none;
    }
}

/*
::::::::::::::::::::::::::
 TEAM AREA CSS
::::::::::::::::::::::::::
*/

/*
::::::::::::::::::::::::::
 TESTIMONIAL AREA CSS
::::::::::::::::::::::::::
*/

.tes1 {
    background-color: var(--vtc-bg-common-2);
    position: relative;
}

.tes1 .heading1 span.span {
    background-color: #b2d9e1;
}

.tes1 .tes1-slider-all .single-slider {
    background-color: var(--vtc-bg-white);
    padding: 32px;
    border-radius: 5px;
    position: relative;
    margin: 0px 5px;
}

.tes1 .tes1-slider-all .single-slider .tes1-image-area .image img {
    width: 100%;
}

.tes1 .tes1-slider-all .single-slider .tes1-image-area .logo {
    width: 100px;
    margin-top: 20px;
}

.tes1 .tes1-slider-all .single-slider .tes1-image-area .stars {
    padding-top: 10px;
}

.tes1 .tes1-slider-all .single-slider .tes1-image-area .stars li {
    display: inline-block;
    color: #FA8100;
    margin: 0px 2px;
}

.tes1 .tes1-slider-all .single-slider .heading-area {
    padding-left: 10px;
}

.tes1 .tes1-slider-all .single-slider .heading-area h5 {
    color: var(--03-home-text-colors, #001518);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    /* 130% */
}

.tes1 .tes1-slider-all .single-slider .heading-area p {
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    padding: 16px 0px;
}

.tes1 .tes1-slider-all .single-slider .heading-area .bottom-area h4 a {
    display: inline-block;
    color: var(--03-home-text-colors, #001518);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    /* 130% */
}

.tes1 .tes1-slider-all .single-slider .heading-area .bottom-area p {
    padding: 4px 0px 0px 0px;
}

.tes1 .tes1-slider-all .single-slider .qute {
    height: 40px;
    width: 40px;
    position: absolute;
    right: 40px;
    bottom: 40px;
}

.tes1 .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.tes1 .owl-dots button.owl-dot.active span,
.tes1 .owl-dots button.owl-dot:hover span {
    background-color: #2293A7;
    border-radius: 50%;
    height: 8px;
    width: 8px;
    position: absolute;
    top: 3px;
    left: 3px;
}

.tes1 .owl-dots button.owl-dot {
    border: 1px solid rgba(128, 128, 128, 0);
    background: rgba(34, 147, 167, 0.2470588235);
    border-radius: 50%;
    height: 16px;
    width: 16px;
    position: relative;
    margin: 0px 5px;
}

.tes1 .owl-dots button.owl-dot.active {
    border: 1px solid var(--vtc-bg-main-1);
}

.tes1 .shape1 {
    position: absolute;
    top: 0;
    left: 0;
}

.tes1 .shape2 {
    position: absolute;
    top: 0;
    right: 0;
}

.tes1 .shape3 {
    position: absolute;
    top: 90px;
    right: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tes1 .shape3 {
        display: none;
    }
}

@media (max-width: 767px) {
    .tes1 .shape3 {
        display: none;
    }
}

.tes1 .shape4 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.tes1 .shape5 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.tes2 .tes2-box {
    margin-bottom: 30px;
    border-radius: 7px;
    padding: 32px;
    transition: all 0.4s;
    border: 2px solid #CCCED0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tes2 .tes2-box {
        margin-bottom: 0;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .tes2 .tes2-box {
        margin-bottom: 0;
        margin-top: 30px;
    }
}

.tes2 .tes2-box .icon {
    margin-left: -20px;
}

.tes2 .tes2-box .bottom-area {
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tes2 .tes2-box .bottom-area .heading h3 {
    color: var(--01-home-text-colors, #010915);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
   
}

.tes2 .tes2-box .bottom-area .stars {
    border-radius: 7px;
    background: rgba(28, 116, 240, 0.08);
    box-shadow: 0px 4px 10px 0px rgba(220, 237, 243, 0.5);
    padding: 10px 14px;
}

.tes2 .tes2-box .bottom-area .stars ul li {
    display: inline-block;
    color: #1C74F0;
    margin: 0px 2px;
}

.tes2 .tes2-box .bottom-area .stars ul .text {
    color: var(--01-home-text-colors, #010915);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.tes2 .tes2-box:hover {
    transform: translateY(-10px);
    transition: all 0.4s;
    background-color: var(--vtc-bg-common-4);
    border: 2px solid var(--vtc-bg-common-4);
}

.tes2.testimonial-page .tes2-box {
    border: 1px solid #E7E7E5;
}

.tes2.testimonial-page .tes2-box .icon {
    margin-left: 0;
    margin-bottom: 20px;
}

.tes2.testimonial-page .tes2-box .bottom-area .stars {
    background-color: rgba(34, 147, 167, 0.1019607843);
}

.tes2.testimonial-page .tes2-box .bottom-area .stars ul li {
    color: #2293A7;
}

.tes2.testimonial-page .tes2-box .bottom-area .stars ul li.text {
    color: #001518;
}

.tes2.testimonial-page .tes2-box:hover {
    background-color: rgba(34, 147, 167, 0.0666666667);
}

.testimonial4-section-area {
    position: relative;
    overflow: hidden;
}

.testimonial4-section-area .testimonial3-header {
    margin-bottom: 60px;
}

.testimonial4-section-area .testimonial3-header span {
    padding: 8px 10px;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 24px;
}

.testimonial4-section-area .testimonial3-header h1 {
    line-height: 54px;
}

@media (max-width: 767px) {
    .testimonial4-section-area .testimonial3-header h1 {
        line-height: 42px;
    }
}

.testimonial4-section-area .testiomnial-img3 {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial4-section-area .slider-galeria-thumbs.text-center.slick-initialized.slick-slider.slick-vertical {
    position: relative;
    left: 50px;
}

.testimonial4-section-area .slider-galeria-thumbs2.text-center.slick-initialized.slick-slider.slick-vertical {
    position: relative;
    left: 50px;
}

.testimonial4-section-area .testimonial3-slider-content-area {
    border-radius: 0.933px;
    border-radius: 4px;
    padding: 32px;
    background-color: #fff;
}

.testimonial4-section-area .testimonial3-slider-content-area .testimonial3-author-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial4-section-area .testimonial3-slider-content-area .testimonial3-author-area ul li {
    display: inline-block;
}

.testimonial4-section-area .testimonial3-slider-content-area .testimonial3-author-area ul li a {
    height: 36px;
    width: 36px;
    text-align: center;
    display: inline-block;
    color: #8D65FF;
    line-height: 36px;
    border-radius: 1.429px;
    background: rgba(142, 101, 255, 0.062745098);
    margin-right: 4px;
    border-radius: 7px;
}

.testimonial4-section-area .testimonial3-slider-content-area p {
    color: var(--02-home-paragraph, #5A5A5A);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 130% */
    padding: 24px 0px;
}

.testimonial4-section-area .testimonial3-slider-content-area .bottom-area a {
    display: inline-block;
    color: var(--02-home-text-colors, #04000E);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    /* 130% */
}

.testimonial4-section-area .testimonial3-slider-content-area .bottom-area p {
    color: var(--02-home-text-colors, #04000E);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    padding: 0;
    margin-top: 12px;
}

.testimonial4-section-area .slider-galeria-thumbs {
    width: 100%;
}

.testimonial4-section-area .slider-galeria-thumbs .testimonial3-sliders-img {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .testimonial4-section-area .slider-galeria-thumbs .testimonial3-sliders-img {
        text-align: center;
        position: relative;
        left: 26%;
        right: 26%;
        top: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial4-section-area .slider-galeria-thumbs .testimonial3-sliders-img {
        text-align: center;
        position: relative;
        left: 26%;
        right: 26%;
        top: 20px;
    }
}

.testimonial4-section-area .slider-galeria-thumbs .testimonial3-sliders-img img {
    width: 70px;
    height: 70px;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial4-section-area .slider-galeria-thumbs2 {
    display: none;
    width: 100%;
}

.testimonial4-section-area .slider-galeria-thumbs2 .testimonial3-sliders-img {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .testimonial4-section-area .slider-galeria-thumbs2 .testimonial3-sliders-img {
        text-align: center;
        position: relative;
        left: 26%;
        right: 26%;
        top: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial4-section-area .slider-galeria-thumbs2 .testimonial3-sliders-img {
        text-align: center;
        position: relative;
        left: 26%;
        right: 26%;
        top: 20px;
    }
}

.testimonial4-section-area .slider-galeria-thumbs2 .testimonial3-sliders-img img {
    width: 70px;
    height: 70px;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial4-section-area .testimonial-sliders {
    margin-bottom: 100px;
    position: relative;
}

@media (max-width: 767px) {
    .testimonial4-section-area .testimonial-sliders {
        margin-bottom: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial4-section-area .testimonial-sliders {
        margin-bottom: 50px;
    }
}

.testimonial4-section-area .testimonial-sliders .slider-galeria {
    float: left;
    width: 100%;
}

.testimonial4-section-area .testimonial-sliders .slider-galeria2 {
    float: left;
    width: 100%;
}

.testimonial4-section-area .scetion-background {
    background-image: url(../../img/bg/tes8-bg-img.png);
    position: absolute;
    left: 0;
}

.testimonial4-section-area .slider-galeria {
    position: relative;
    top: 60px;
}

.testimonial4-section-area .slider-galeria-thumbs {
    position: relative;
    top: 60px;
}

.testimonial4-section-area .slider-galeria2 {
    position: relative;
    top: 60px;
}

.testimonial4-section-area .slider-galeria-thumbs2 {
    position: relative;
    top: 60px;
}

.testimonial4-section-area .testimonial3-sliders-img.slick-slide.slick-current.slick-active:after {
    position: absolute;
    content: "";
    height: 90px;
    width: 90px;
    border: 2px solid #8D65FF;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.testimonial4-section-area .testimonial3-sliders-img.slick-slide.slick-current.slick-active {
    position: relative;
}

.testimonial4-section-area .slider-galeria-thumbs.text-center.slick-initialized.slick-slider.slick-vertical img {
    position: relative;
    left: 10px;
    top: 11px;
}

.testimonial4-section-area .slider-galeria-thumbs2.text-center.slick-initialized.slick-slider.slick-vertical img {
    position: relative;
    left: 10px;
    top: 11px;
}

.testimonial4-section-area .shape1 {
    position: absolute;
    right: 100px;
    top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial4-section-area .shape1 {
        display: none;
    }
}

@media (max-width: 767px) {
    .testimonial4-section-area .shape1 {
        display: none;
    }
}

.testimonial4-section-area .shape2 {
    position: absolute;
    left: 0;
    bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial4-section-area .shape2 {
        display: none;
    }
}

@media (max-width: 767px) {
    .testimonial4-section-area .shape2 {
        display: none;
    }
}

.testimonial4-section-area .shape3 {
    position: absolute;
    right: 0;
    bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial4-section-area .shape3 {
        display: none;
    }
}

@media (max-width: 767px) {
    .testimonial4-section-area .shape3 {
        display: none;
    }
}

/*
::::::::::::::::::::::::::
 TESTIMONIAL AREA CSS
::::::::::::::::::::::::::
*/

/*
::::::::::::::::::::::::::
 WORK AREA CSS
::::::::::::::::::::::::::
*/

.work3 {
    position: relative;
}

.work3 .work3-box {
    text-align: center;
    margin-top: 40px;
    padding: 0px 14px;
}

.work3 .work3-box .icon {
    height: 70px;
    width: 70px;
    text-align: center;
    line-height: 70px;
    background-color: #F4F0FF;
    border-radius: 50%;
    margin: auto;
    transition: all 0.4s;
}

.work3 .work3-box .bol {
    background-color: #F4F0FF;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    display: inline-block;
    margin: 20px 0px;
    transition: all 0.4s;
    position: relative;
    z-index: 99;
}

.work3 .work3-box:hover .icon {
    background-color: #8D65FF;
    transition: all 0.4s;
}

.work3 .work3-box:hover .bol {
    background-color: #8D65FF;
    transition: all 0.4s;
}

.work3 .bol-line {
    position: relative;
}

.work3 .bol-line::after {
    content: "";
    position: absolute;
    left: 155px;
    top: 140px;
    height: 1px;
    width: 75%;
    background-color: #F4F0FF;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .work3 .bol-line::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .work3 .bol-line::after {
        display: none;
    }
}

/*
::::::::::::::::::::::::::
 WORK AREA CSS
::::::::::::::::::::::::::
*/

/*
::::::::::::::::::::::::::
 BLOG AREA CSS
::::::::::::::::::::::::::
*/
.blog1{
    background-color: #f6f8fa;
}
.blog1 .blog-box {
    margin-top: 10px;
}

.blog1 .blog-box .heading1 {
 background-color: #fff;
    border-radius: 7px;
    padding: 18px;
    margin-top: 18px;
    transition: all 0.4s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.blog1 .blog-box .heading1 .blog-border {
    background-color: #D2DEE0;
    width: 100%;
    height: 1px;
    margin: 12px 0;
    transition: all 0.4s;
}

.blog1 .blog-box .heading1 .tags a {
    color: var(--03-home-text-colors, #001518);
     font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: inline-block;
    margin-right: 16px;
    transition: all 0.4s;
}

.blog1 .blog-box .heading1 .tags a img {
    margin-top: -4px;
    margin-right: 2px;
    transition: all 0.4s;
}

.blog1 .blog-box .heading1 a.learn {
  display: inline-block;
    color: var(--03-home-text-colors, #001518);
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    line-height: 18px;
    transition: all 0.4s;
}

.blog1 .blog-box .heading1 a.learn span.arrow {
  display: inline-block;
    background-color: var(--blue);
    height: 30px;
    width: 30px;
    border-radius: 50%;
    line-height: 34px;
    text-align: center;
    color: #ffffff;
    margin-left: 2px;
    transition: all 0.4s;
}

.blog1 .blog-box .image {
    overflow: hidden;
    border-radius: 7px;
}

.blog1 .blog-box .image img {
    width: 100%;
    transition: all 0.4s;
}

.blog1 .blog-box:hover .image img {
    transition: all 0.4s;
    transform: rotate(2deg) scale(1.1);
}

.blog1 .blog-box:hover .heading1 {
    background-color: var(--dark);
    transition: all 0.4s;
}

.blog1 .blog-box:hover .heading1 h5 a {
    transition: all 0.4s;
    color: #fff;
}

.blog1 .blog-box:hover .heading1 p {
    color: rgba(255, 255, 255, 0.7607843137);
    transition: all 0.4s;
}

.blog1 .blog-box:hover .heading1 .tags a {
    transition: all 0.4s;
    color: #fff;
}

.blog1 .blog-box:hover .heading1 .tags a img {
    transition: all 0.4s;
    filter: brightness(0) invert(1);
}

.blog1 .blog-box:hover .heading1 a.learn {
    display: inline-block;
    color: var(--03-home-text-colors, #ffffff);
       font-size: 15px;
    font-style: italic;
    font-weight: 500;
    line-height: 18px;
   
    transition: all 0.4s;
}

.blog1 .blog-box:hover .heading1 a.learn span.arrow {
    display: inline-block;
    background-color: #fff;
    height: 33px;
    width: 33px;
    border-radius: 50%;
    line-height: 38px;
    text-align: center;
    color: var(--vtc-bg-main-1);
    transform: rotate(-45deg);
    margin-left: 2px;
    transition: all 0.4s;
}

.blog1.blog-page2 .blog-box {
    margin-top: 0;
    margin-bottom: 30px;
}

.blog2 .blog2-box {
    margin-top: 40px;
}

.blog2 .blog2-box .image {
    border-radius: 7px;
    overflow: hidden;
}

.blog2 .blog2-box .image img {
    width: 100%;
    transition: all 0.4s;
}

.blog2 .blog2-box .heading2 {
    background: #F6F8FA;
    border-radius: 7px;
    padding: 32px 24px;
    position: relative;
    margin: -100px 20px 0px 20px;
    transition: all 0.4s;
}

.blog2 .blog2-box .heading2 .tags {
    padding-bottom: 20px;
}

.blog2 .blog2-box .heading2 .tags a {
    display: inline-block;
    color: var(--01-home-paragraph, #404245);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    margin-right: 24px;
    transition: all 0.4s;
}

.blog2 .blog2-box .heading2 .tags a img {
    margin-top: -5px;
    margin-right: 2px;
    transition: all 0.4s;
}

.blog2 .blog2-box .heading2 h4 a {
    display: inline-block;
    font-size: 20px;
    line-height: 28px;
    transition: all 0.4s;
}

.blog2 .blog2-box .heading2 p {
    padding-top: 10px;
}

.blog2 .blog2-box .heading2 .learn {
    display: inline-block;
    color: var(--01-home-text-colors, #010915);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    transition: all 0.4s;
}

.blog2 .blog2-box .heading2 .learn span.arrow {
    display: inline-block;
    height: 24px;
    width: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(1, 9, 21, 0.0941176471);
    margin-left: 4px;
}

.blog2 .blog2-box:hover {
    transition: all 0.4s;
}

.blog2 .blog2-box:hover .tags a {
    transition: all 0.4s;
    color: #fff;
}

.blog2 .blog2-box:hover .tags a img {
    transition: all 0.4s;
    filter: brightness(0) invert(1);
}

.blog2 .blog2-box:hover .heading2 {
    background: var(--vtc-bg-main-3);
    transition: all 0.4s;
    transform: translateY(-10px);
}

.blog2 .blog2-box:hover .heading2 h4 a {
    color: #fff;
    transition: all 0.4s;
}

.blog2 .blog2-box:hover .heading2 p {
    color: rgba(255, 255, 255, 0.8235294118);
    transition: all 0.4s;
}

.blog2 .blog2-box:hover .heading2 a.learn {
    color: #fff;
    transition: all 0.4s;
}

.blog2 .blog2-box:hover .heading2 a.learn span.arrow {
    background-color: rgba(255, 255, 255, 0.1843137255);
}

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

.blog2 .blog2-box.active {
    transition: all 0.4s;
}

.blog2 .blog2-box.active .tags a {
    transition: all 0.4s;
    color: #fff;
}

.blog2 .blog2-box.active .tags a img {
    transition: all 0.4s;
    filter: brightness(0) invert(1);
}

.blog2 .blog2-box.active .heading2 {
    background: var(--vtc-bg-main-3);
    transition: all 0.4s;
    transform: translateY(-10px);
}

.blog2 .blog2-box.active .heading2 h4 a {
    color: #fff;
    transition: all 0.4s;
}

.blog2 .blog2-box.active .heading2 p {
    color: rgba(255, 255, 255, 0.8235294118);
    transition: all 0.4s;
}

.blog2 .blog2-box.active .heading2 a.learn {
    color: #fff;
    transition: all 0.4s;
}

.blog2 .blog2-box.active .heading2 a.learn span.arrow {
    background-color: rgba(255, 255, 255, 0.1843137255);
}

.blog2 .blog2-box.active .image img {
    transition: all 0.4s;
    transform: scale(1.1) rotate(2deg);
}

.blog3 .blog3-box {
    margin-top: 40px;
    transition: all 0.4s;
}

.blog3 .blog3-box .image {
    overflow: hidden;
    border-radius: 7px 7px 0px 0px;
}

.blog3 .blog3-box .image img {
    transition: all 0.4s;
    width: 100%;
}

.blog3 .blog3-box .heading3 {
    background-color: #F9F8FE;
    padding: 24px;
}

.blog3 .blog3-box .heading3 h4 {
    margin: 12px 0px;
}

.blog3 .blog3-box .heading3 .tags a {
    display: inline-block;
    color: var(--02-home-text-colors, #04000E);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    margin-right: 20px;
}

.blog3 .blog3-box .heading3 .tags a img {
    margin-top: -4px;
    margin-right: 3px;
}

.blog3 .blog3-box .heading3 .learn {
    color: var(--02-home-text-colors, #04000E);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
   
    transition: all 0.4s;
}

.blog3 .blog3-box .heading3 .learn:hover {
    transition: all 0.4s;
    color: var(--vtc-bg-main-4);
}

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

.blog3 .blog3-box:hover .learn {
    transition: all 0.4s;
    color: var(--vtc-bg-main-4);
}

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

.rtl-dir .blog3 .blog3-box {
    margin-top: 40px;
    transition: all 0.4s;
}

.rtl-dir .blog3 .blog3-box .image {
    overflow: hidden;
    border-radius: 7px 7px 0px 0px;
}

.rtl-dir .blog3 .blog3-box .image img {
    transition: all 0.4s;
    width: 100%;
}

.rtl-dir .blog3 .blog3-box .heading3 {
    background-color: #F9F8FE;
    padding: 24px;
}

.rtl-dir .blog3 .blog3-box .heading3 h4 {
    margin: 12px 0px;
}

.rtl-dir .blog3 .blog3-box .heading3 .tags a {
    display: inline-block;
    color: var(--02-home-text-colors, #04000E);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    margin-right: 20px;
}

.rtl-dir .blog3 .blog3-box .heading3 .tags a img {
    margin-top: -4px;
    margin-right: 3px;
}

.rtl-dir .blog3 .blog3-box .heading3 .learn {
    color: var(--02-home-text-colors, #04000E);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
   
    transition: all 0.4s;
}

.rtl-dir .blog3 .blog3-box .heading3 .learn span {
    display: inline-block;
    transform: rotate(180deg);
}

.rtl-dir .blog3 .blog3-box .heading3 .learn:hover {
    transition: all 0.4s;
    color: var(--vtc-bg-main-4);
}

.rtl-dir .blog3 .blog3-box:hover {
    transform: translateY(-10px);
    transition: all 0.4s;
}

.rtl-dir .blog3 .blog3-box:hover .learn {
    transition: all 0.4s;
    color: var(--vtc-bg-main-4);
}

.rtl-dir .blog3 .blog3-box:hover .image img {
    transition: all 0.4s;
    transform: scale(1.1) rotate(2deg);
}

.blog4 .blog4-box {
    transition: all 0.4s;
    margin-top: 40px;
    border-radius: 0px 0px 7px 7px;
    background: var(--04-home-gray-colors, #F9F9F9);
}

.blog4 .blog4-box .image-area {
    position: relative;
}

.blog4 .blog4-box .image-area .image {
    border-radius: 7px 7px 0px 0px;
    overflow: hidden;
}

.blog4 .blog4-box .image-area .image img {
    width: 100%;
    transition: all 0.4s;
}

.blog4 .blog4-box .image-area .tags {
    position: absolute;
    transition: all 0.4s;
    bottom: 0;
    padding: 16px;
    border-radius: 0px 7px 0px 0px;
    background: var(--04-home-text-colors, rgba(14, 4, 1, 0.4431372549));
}

.blog4 .blog4-box .image-area .tags a {
    display: inline-block;
    color: var(--White-colors, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.blog4 .blog4-box .image-area .tags a img {
    margin-top: -4px;
    margin-right: 3px;
}

.blog4 .blog4-box .image-area .tags a:nth-child(1) {
    margin-right: 16px;
}

.blog4 .blog4-box .heading4 {
    padding: 24px;
}

.blog4 .blog4-box .heading4 p {
    padding: 12px 0px 20px 0px;
}

.blog4 .blog4-box .heading4 .learn {
    display: inline-block;
    color: var(--04-home-text-colors, #0E0401);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    display: flex;
    align-items: center;
    transition: all 0.4s;
}

.blog4 .blog4-box .heading4 .learn span {
    display: inline-block;
    margin-left: 2px;
}

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

.blog4 .blog4-box:hover .learn {
    display: inline-block;
    color: var(--vtc-bg-main-5);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    display: flex;
    align-items: center;
    transition: all 0.4s;
}

.blog4 .blog4-box:hover .learn span {
    display: inline-block;
    margin-left: 2px;
}

.blog4 .blog4-box:hover .tags {
    transition: all 0.4s;
    background-color: var(--vtc-bg-main-5);
}

.blog-page-all .blog-box {
    margin-bottom: 30px;
    background-color: #E9F4F6;
    border-radius: 7px;
    transition: all 0.4s;
}

.blog-page-all .blog-box .image {
    border-radius: 7px 7px 0px 0px;
    overflow: hidden;
}

.blog-page-all .blog-box .image img {
    width: 100%;
    transition: all 0.4s;
}

.blog-page-all .blog-box .heading1 {
    padding: 24px;
}

.blog-page-all .blog-box .heading1 .blog-border {
    background-color: #D2DEE0;
    width: 100%;
    height: 1px;
    margin: 16px 0;
    transition: all 0.4s;
}

.blog-page-all .blog-box .heading1 h5 a {
    line-height: 26px;
}

.blog-page-all .blog-box .heading1 .tags a {
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
    display: inline-block;
    margin-right: 16px;
    transition: all 0.4s;
}

.blog-page-all .blog-box .heading1 .tags a img {
    margin-top: -4px;
    margin-right: 2px;
    transition: all 0.4s;
}

.blog-page-all .blog-box .heading1 a.learn {
    display: inline-block;
    color: var(--03-home-text-colors, #001518);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
   
    transition: all 0.4s;
}

.blog-page-all .blog-box .heading1 a.learn span.arrow {
    display: inline-block;
    border-radius: 50%;
    line-height: 36px;
    text-align: center;
    transform: rotate(-45deg);
    margin-left: 2px;
    transition: all 0.4s;
}

.blog-page-all .blog-box .heading1 a.learn:hover {
    color: var(--vtc-bg-main-1);
    transition: all 0.4s;
}

.blog-page-all .blog-box:hover {
    transition: all 0.4s;
    transform: translateY(-10px);
}

.blog-page-all .blog-box:hover .image img {
    transition: all 0.4s;
    transform: scale(1.1) rotate(2deg);
}

    .flip-counter {
      display: flex;
      gap: 10px;
    }

    .digit {
     width: 35px;
    height: 49px;
    background: linear-gradient(180deg, #3a3a3a, #191919);
    border-radius: 6px;
    /* box-shadow: inset 0 2px 0 #444, inset 0 -2px 0 #000; */
    color: #fff;
    font-size: 33px;
    font-weight: bold;
    text-align: center;
    line-height: 59px;
    position: relative;
    }

    .digit::before,
    .digit::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      height: 1px;
      background: #999;
    }

    .digit::before {
      top: 50%;
    }

    .digit::after {
      bottom: 0;
      height: 3px;
      background: rgba(255, 255, 255, 0.1);
    }

    .digit.glossy::before {
      background: #777;
    }

    .digit.glossy::after {
      background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
    }
/*
::::::::::::::::::::::::::
 BLOG AREA CSS
::::::::::::::::::::::::::
*/

/*
::::::::::::::::::::::::::
 FOOTER AREA CSS
::::::::::::::::::::::::::
*/


.footer2 {
    padding-top: 50px;
    position: relative;
    background-image: url('../img/dot-map.png');
    background-position: center;
    background-size: contain;
}

.footer2 .footer-logo-area {
    padding-right: 60px;
}

.footer2 .footer-logo-area p {
    padding: 24px 0;
}

.footer2 .footer-logo-area .social-icons ul li {
    display: inline-block;
    padding-right: 4px;
}

.footer2 .footer-logo-area .social-icons ul li a {
    display: inline-block;
    background-color: #E5EDF9;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    color: var(--vtc-text-heading-1);
    font-size: 16px;
    transition: all 0.4s;
}
.footer2 .footer-logo-area .social-icons ul li a i{
    font-size: 19px;
}
.footer2 .footer-logo-area .social-icons ul li a:hover {
    color: var(--vtc-text-white-1);
    background-color: var(--vtc-bg-main-3);
    transition: all 0.4s;
}

.footer2 .footer-list h5 {
       color: var(--dark);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer2 .footer-list h5 {
        padding-bottom: 16px;
        padding-top: 24px;
    }
}

@media (max-width: 767px) {
    .footer2 .footer-list h5 {
        padding-bottom: 16px;
        padding-top: 24px;
    }
}

.footer2 .footer-list form input {
    padding: 16px 20px;
    border-radius: 4px;
    background-color: #E5EDF9;
    width: 100%;
    border: none;
    margin-top: 20px;
}

.footer2 .footer-list form input:focus {
    outline: none;
}

.footer2 .footer-list form input::-moz-placeholder {
    color: var(--03-home-paragrapjh, #565858);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.footer2 .footer-list form input::placeholder {
    color: var(--03-home-paragrapjh, #565858);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}

.footer2 .footer-list form .button {
    margin-top: 20px;
}

.footer2 .footer-list form .button button {
    width: 100%;
}

.footer2 .footer-list.list ul li a {
    display: inline-block;
    color: var(--03-home-paragrapjh, #565858);
      font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    padding-bottom: 10px;
    transition: all 0.4s;
}

.footer2 .footer-list.list ul li a:hover {
    color: var(--vtc-bg-main-3);
    transition: all 0.4s;
    transform: translateX(5px);
}

.footer2 .footer-border {
    background-color: var(--vtc-bg-common-2);
    width: 100%;
    height: 1px;
}

.footer2 .copyright-area {
    padding: 8px 0px;
}

.footer2 .copyright-area p {
       color: var(--dark);
    font-size: 14px;
    font-style: normal;
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs24);
    /* 133.333% */
}
.mobile{
    width: 260px;
    margin-bottom: -30px;
}
.footer2 .copyright-area a {
       color: var(--dark);
    font-size: 14px;
    font-style: normal;
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs24);
    /* 133.333% */
    display: inline-block;
    position: relative;
    transition: all 0.4s;
}

.footer2 .copyright-area a:hover {
    color: var(--vtc-bg-main-3);
    transition: 0 0.4s;
    text-decoration: underline;
}

.footer2 .copyright-area a:nth-child(1) {
    padding-right: 20px;
}

.footer2 .copyright-area a:nth-child(1)::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 5px;
    height: 14px;
    width: 1px;
    background-color: var(--vtc-text-pera-1);
}

.footer2 .copyright-area.right {
    text-align: end;
}

@media (max-width: 767px) {
    .footer2 .copyright-area.right {
        text-align: start;
    }
}

.footer2 .sec-shape1 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -2;
}

.footer2 .sec-shape2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -2;
}


/*
::::::::::::::::::::::::::
 FOOTER AREA CSS
::::::::::::::::::::::::::
*/

/*
::::::::::::::::::::::::::
 HEADER AREA CSS
::::::::::::::::::::::::::
*/

.header-area.header-area1 .header1-buttons {
    display: flex;
    align-items: center;
}

.header-area.header-area1 .header1-buttons .contact-btn {
    display: flex;
    align-items: center;
    margin-right: 24px;
}

.header-area.header-area1 .header1-buttons .contact-btn .icon {
    height: 38px;
    width: 38px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    background-color: var(--ztc-bg-bg-2);
    margin-right: 10px;
}

.header-area.header-area1 .header1-buttons .contact-btn .headding p {
    font-size: 12px;
    line-height: 12px;
    color: var(--ztc-text-pera-text-1);
}

.header-area.header-area1 .header1-buttons .contact-btn .headding a {
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs16);
    font-weight: var(--f-fw-blod);
    color: var(--ztc-text-text-1);
    display: inline-block;
    margin-top: 10px;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li a.active {
    color: #2293A7;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li a.active {
    color: #1C74F0;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li a.active {
    color: #8D65FF !important;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li a.active {
    color: #FD4A12;
}

/*
::::::::::::::::::::::::::
 HEADER AREA CSS
::::::::::::::::::::::::::
*/

/*
 ::::::::::::::::::::::::::
  NAV MENU AREA CSS
 ::::::::::::::::::::::::::
 */

.header-area {
    padding: 0px 0;
    /* position: absolute; */
    background: transparent;
    width: 100%;
    z-index: 99;
}

.site-logo {
    max-width: 440px;
    height: auto;
    display: flex;
    align-items: center;
}
.site-logo a img{
    width: 250px;
}
.bld{
        font-weight: 500;
        color: #fff;
}
.site-logo a {
    display: inline-block;
    position: relative;
    z-index: 9;
}

.header-area .header-elements {
    display: flex;
    align-items: center;
    align-items: center;
    justify-content: space-between;
}

.header-area1.sticky .header-elements .main-menu-ex {
    padding: 7px 24px;
    position: relative;
}

.tp-submenu {
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    position: absolute;
    background: var(--vtc-bg-color-w);
    top: 201.3%;
    transform: scale(1, 0);
    z-index: 0;
    transition: all 0.4s;
    border-radius: 5px;
    padding: 20px;
    left: -330px;
    width: 1300px;
    max-height: 600px;
    overflow: hidden;
    transform-origin: top;
    display: block;
}

/* 
++++++++++++++++++++++++++++++++++
=========nav menu all ==========
+++++++++++++++++++++++++++++++++
*/

.main-menu-ex li {
    display: inline-block;
}

.main-menu-ex li {
    position: relative;
    z-index: 9;
}

.main-menu-ex li li {
    display: block;
}

.main-menu-ex li>ul {
    opacity: 0;
    visibility: hidden;
    top: 60px;
    right: 0;
    transition: all 0.3s;
    transform: translateY(20px) rotateX(45deg);
}

.main-menu-ex li li>ul {
    left: 100%;
    right: auto;
}

.main-menu-ex li li:hover>ul {
    top: 0;
}

.main-menu-ex li:hover>ul {
    visibility: visible;
    opacity: 1;
    top: 50px;
    transition: all 0.3s;
    z-index: 99;
    transform: translateY(0);
}

li.has-dropdown1 {
    position: relative;
}

li.has-dropdown1 span {
    position: absolute;
    right: 10px;
}

.header-area1.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    z-index: 111;
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    background-color: var(--vtc-bg-bg-white);
    box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
    transition: all 0.3s ease-in-out;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1921568627);
    background-color: var(--vtc-bg-common-3);
}

.header-area1.sticky .header-elements {
    padding: 0 0 !important;
    margin-top: 0px !important;
    border-bottom: none !important;
}
.sticky .menuRow{
        padding: 6px 0px;
}
.header-area.header-area2.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    z-index: 111;
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    background-color: var(--vtc-bg-bg-white);
    box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
    transition: all 0.3s ease-in-out;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1921568627);
    /* background-color: #fff; */
    margin-top: 0;
    /* padding: 5px 0; */
}

.header-area.header-area2.sticky .header-elements {
    padding: 0 0 !important;
    margin-top: 0px !important;
    border-bottom: none !important;
    background: none !important;
}

.header-area.header-area3.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    z-index: 111;
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    background-color: var(--vtc-bg-bg-white);
    box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
    transition: all 0.3s ease-in-out;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1921568627);
    background-color: #fff;
    margin-top: 0;
    padding: 8px 0;
}

.header-area.header-area3.sticky .header-elements {
    padding: 0 0 !important;
    margin-top: 0px !important;
    border-bottom: none !important;
    background: none !important;
}

.header-area.header-area4.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    z-index: 111;
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    background-color: var(--vtc-bg-bg-white);
    box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
    transition: all 0.3s ease-in-out;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1921568627);
    background-color: #000;
    margin-top: 0;
    padding: 8px 0;
}

.header-area.header-area4.sticky .header-elements {
    padding: 0 0 !important;
    margin-top: 0px !important;
    border-bottom: none !important;
    background: none !important;
}

@keyframes fade-in-down {
    0% {
        transform: translate3d(0, -50px, 0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

.fade-in-down {
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

/* 
++++++++++++++++++++++++++++++++++
==== =====nav menu all ====== ======
+++++++++++++++++++++++++++++++++
*/

/* 
++++++++++++++++++++++++++++++++++
==== =====nav menu all 2 ====== ======
+++++++++++++++++++++++++++++++++
*/

.header-area.header-area1 .header-elements {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1921568627);
    padding: 10px 0px 20px 0px;
}

.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 .tp-submenu {
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    position: absolute;
    background: var(--vtc-bg-color-w);
    top: 201.3%;
    transform: scale(1, 0);
    z-index: 0;
    transition: all 0.4s;
    border-radius: 5px;
    padding: 20px;
    left: -353px;
    width: 1300px;
    max-height: 600px;
    overflow: hidden;
    transform-origin: top;
    display: block;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .all-images-menu {
    display: flex;
    align-items: center;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb {
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    margin: 0 20px 0 0;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .heading {
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    margin-top: 8px;
    color: #000;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
    transform: scale(1);
    transition: all 0.4s;
    visibility: visible;
    opacity: 0.4;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
    top: 26%;
    visibility: visible;
    opacity: 1;
    transition: all 0.6s;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.4s;
    background: #000026;
    opacity: 0;
    border-radius: 4px;
    transform: scale(0.8);
    z-index: 1;
    visibility: hidden;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 0.4s;
    border: 1px solid #E5E7EB;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
    position: absolute;
    top: 45%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    transition: all 0.6s;
    margin: 0 auto;
    left: 20%;
    right: 20%;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
    display: inline-block;
    background-color: var(--vtc-bg-main-1) !important;
    padding: 16px !important;
    transition: all 0.4s;
    border-radius: 8px;
    position: relative;
    width: 140px;
    z-index: 1;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
    transform: rotate(-45deg);
    margin-left: 4px;
    transition: all 0.4s;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
    color: #fff;
    transition: all 0.4s;
    transform: translateY(-5px);
    background: #4e7afd;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
    transform: rotate(0);
    transition: all 0.4s;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    background: #fff;
    width: 206px;
    box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
    padding: 10px;
    z-index: 99;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li ul:hover>a {
    transition: all 0.4s;
    padding-left: 25px;
    color: red;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li ul:hover>a::after {
    background: blue;
    transition: all 0.4s;
    visibility: visible;
    opacity: 1;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li ul li ul {
    left: 190px;
    top: 10px;
    z-index: 99;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li ul li a {
    color: var(--qt-text-h-text3);
}

.header-area.header-area1 .header-elements .main-menu-ex ul li ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 0px;
    height: 100%;
    color: var(--qt-text-h-text3);
    border-radius: 4px;
    transition: all 0.4s;
    z-index: -1;
    opacity: 1;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li ul li a::after i {
    font-size: 12px;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li ul li a:hover {
    color: var(--vtc-bg-main-1);
    transition: all 0.4s;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li ul li a:hover::after {
    background-color: var(--vtc-bg-main-1);
    border-radius: 4px;
    width: 5px;
    left: -10px;
    opacity: 1;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li a {
    color: var(--vtc-text-white-1);
    font-size: 18px;
    display: block;
    font-weight: 500;
    padding: 8px 15px;
    transition: all 0.3s;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li a i {
    font-size: 12px;
}

.header-area.header-area1 .header-elements .main-menu-ex ul li a:hover {
    color: var(--vtc-bg-main-1);
}

.header-area.header-area1 .header-elements .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all 0.4s;
    transform: scale(1);
    background-color: #fff;
}

.header-area.header-area1 .login {
    color: var(--Home-Page-3-Color-Text-Color, #070811);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
   
    text-transform: capitalize;
    display: inline-block;
    margin-right: 20px;
}

.header-area.header-area1 .login img {
    margin-left: 2px;
    margin-top: -2px;
}

.header2-top {
     padding: 8px 0px 8px 0px;
    background-color: var(--blue);
}

.header2-top .contact-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header2-top .contact-area .single-contact {
    display: flex;
    align-items: center;
}

.header2-top .contact-area .single-contact .icon {
    padding-right: 5px;
    margin-top: -4px;
}

.header2-top .contact-area .single-contact .heading a {
    display: inline-block;
    color: #efefef;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
   
}
.lang  .active {
    color: var(--dark);
}
.header-area.header-area2 {
    /* margin-top: -68px; */
}
.sticky .fst{
    display: none;
}
.topd p{
    color: gray;
}
.topd h5{
    line-height: normal;
    font-size: 16px;
    font-weight: 600;
    color: #161e3e;
}
.header-area.header-area2 .header-elements {
    border-radius: 7px;
    background: var(--White-colors, #FFF);
    padding: 10px;
}
.bld{
    color:#404245;
}
.bld.active{
    color: var(--blue);;
}
.menuRow{
        background-image: linear-gradient(225deg, #FF057C 0%, #8D0B93 50%, #321575 100%);
        background-image: linear-gradient(to right, #0250c5 0%, #d43f8d 100%);
}
.menuRow .header-elements{
            background: transparent!important;
        }
.header-area.header-area2 .header-elements .theme-btn4 {
    margin-top: 10px;
}

.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 .tp-submenu {
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    position: absolute;
    background: var(--vtc-bg-color-w);
    top: 201.3%;
    transform: scale(1, 0);
    z-index: 0;
    transition: all 0.4s;
    border-radius: 5px;
    padding: 20px;
    left: -353px;
    width: 1300px;
    max-height: 600px;
    overflow: hidden;
    transform-origin: top;
    display: block;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .all-images-menu {
    display: flex;
    align-items: center;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb {
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    margin: 0 20px 0 0;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .heading {
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    margin-top: 8px;
    color: #000;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
    transform: scale(1);
    transition: all 0.4s;
    visibility: visible;
    opacity: 0.4;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
    top: 27%;
    visibility: visible;
    opacity: 1;
    transition: all 0.6s;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.4s;
    background: #000026;
    opacity: 0;
    border-radius: 4px;
    transform: scale(0.8);
    z-index: 1;
    visibility: hidden;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 0.4s;
    border: 1px solid #E5E7EB;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
    position: absolute;
    top: 45%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    transition: all 0.6s;
    margin: 0 auto;
    left: 20%;
    right: 20%;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
    display: inline-block;
    background-color: var(--vtc-bg-main-3);
    padding: 16px !important;
    transition: all 0.4s;
    border-radius: 8px;
    color: #FFF;
    position: relative;
    width: 140px;
    z-index: 1;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
    transform: rotate(-45deg);
    margin-left: 4px;
    transition: all 0.4s;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
    color: #fff;
    transition: all 0.4s;
    transform: translateY(-5px);
    background: #4e7afd;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
    transform: rotate(0);
    transition: all 0.4s;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 35px;
    border-radius: 4px;
    background: #C6DAFC;
    width: 206px;
    box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
    /* padding: 10px; */
    z-index: 99;
    color: #000!important;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li ul:hover>a {
    transition: all 0.4s;
    padding-left: 25px;
    color: red;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li ul:hover>a::after {
    background: blue;
    transition: all 0.4s;
    visibility: visible;
    opacity: 1;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li ul li ul {
    left: 190px;
    top: 10px;
    z-index: 99;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li ul li a {
    color: var(--qt-text-h-text3);
}

.header-area.header-area2 .header-elements .main-menu-ex ul li ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 0px;
    height: 100%;
    color: var(--qt-text-h-text3);
    border-radius: 4px;
    transition: all 0.4s;
    z-index: -1;
    opacity: 1;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li ul li:hover {
    color: #fff!important;
      border-radius: 0px;
    background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%)!important;
    transition: all 0.4s;
}
.header-area.header-area2 .header-elements .main-menu-ex ul li ul li a:hover{
      color: #fff!important;  
}
/* .header-area.header-area2 .header-elements .main-menu-ex ul li ul li a:hover::after {
    background-color: var(--vtc-bg-main-3);
    border-radius: 4px;
    width: 5px;
    left: -10px;
    opacity: 1;
} */

.header-area.header-area2 .header-elements .main-menu-ex ul li a {
    color: #fff;
    font-size: 15.5px;
    display: block;
    font-weight: 500;
    padding: 8px 9px;
    transition: all 0.3s;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li a i {
       font-size: 11px;
    margin-left: 2px;
    font-weight: bold;
}
.secpng{
        position: absolute;
    right: 0;
    width: 780px;
    bottom: 0;
    opacity: .2!important;

}
.news-container{
    overflow: hidden;
    padding: 6px 0px;
background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
}
.news-container ul {
    display: flex;
    list-style: none;
    margin: 0;
    animation: scroll 40s infinite linear;
}
.news-container ul li {
    white-space: nowrap;
    padding: 3px 10px;
    color: #000000;
    position: relative;
}
.news-container ul li  a{
    font-size: 14px;
    /* color: var(--dark); */
    color: #fff;
}

.news-container ul li:last-child::after {
    display: none;
}
.w-news img {
    position: absolute;
    left: 0;
    z-index: 1;
}
@keyframes scroll {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-1083px);

    }
}
.news-container ul:hover {
    animation-play-state: paused;
}
.header-area.header-area2 .header-elements .main-menu-ex ul li a:hover {
    color: var(--blue);
}

.header-area.header-area2 .header-elements .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all 0.4s;
    transform: scale(1);
    background-color: #fff;
}

.header-area.header-area2 .login {
    color: var(--Home-Page-3-Color-Text-Color, #070811);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
   
    text-transform: capitalize;
    display: inline-block;
    margin-right: 20px;
}

.header-area.header-area2 .login img {
    margin-left: 2px;
    margin-top: -2px;
}

.header-area.header-area3 .header-elements {
    background-color: var(--vtc-bg-common-7);
    padding: 18px 24px;
    border-radius: 100px;
    margin-top: 5px;
}

.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 .tp-submenu {
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    position: absolute;
    background: var(--vtc-bg-color-w);
    top: 201.3%;
    transform: scale(1, 0);
    z-index: 0;
    transition: all 0.4s;
    border-radius: 5px;
    padding: 20px;
    left: -353px;
    width: 1300px;
    max-height: 600px;
    overflow: hidden;
    transform-origin: top;
    display: block;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .all-images-menu {
    display: flex;
    align-items: center;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb {
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    margin: 0 20px 0 0;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .heading {
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    margin-top: 8px;
    color: #000;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
    transform: scale(1);
    transition: all 0.4s;
    visibility: visible;
    opacity: 0.4;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
    top: 26%;
    visibility: visible;
    opacity: 1;
    transition: all 0.6s;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.4s;
    background: #000026;
    opacity: 0;
    border-radius: 4px;
    transform: scale(0.8);
    z-index: 1;
    visibility: hidden;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 0.4s;
    border: 1px solid #E5E7EB;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
    position: absolute;
    top: 45%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    transition: all 0.6s;
    margin: 0 auto;
    left: 20%;
    right: 20%;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
    display: inline-block;
    background-color: var(--vtc-bg-main-4) !important;
    padding: 16px !important;
    color: #fff;
    transition: all 0.4s;
    border-radius: 8px;
    position: relative;
    width: 140px;
    z-index: 1;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
    transform: rotate(-45deg);
    margin-left: 4px;
    transition: all 0.4s;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
    color: #fff;
    transition: all 0.4s;
    transform: translateY(-5px);
    background: #4e7afd;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
    transform: rotate(0);
    transition: all 0.4s;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    background: #fff;
    width: 206px;
    box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
    padding: 10px;
    z-index: 99;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li ul:hover>a {
    transition: all 0.4s;
    padding-left: 25px;
    color: red;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li ul:hover>a::after {
    background: blue;
    transition: all 0.4s;
    visibility: visible;
    opacity: 1;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li ul li ul {
    left: 190px;
    top: 10px;
    z-index: 99;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li ul li a {
    color: var(--qt-text-h-text3);
}

.header-area.header-area3 .header-elements .main-menu-ex ul li ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 0px;
    height: 100%;
    color: var(--qt-text-h-text3);
    border-radius: 4px;
    transition: all 0.4s;
    z-index: -1;
    opacity: 1;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li ul li a:hover {
    color: var(--vtc-bg-main-4);
    transition: all 0.4s;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li ul li a:hover::after {
    background-color: var(--vtc-bg-main-4);
    border-radius: 4px;
    width: 5px;
    left: -10px;
    opacity: 1;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li a {
    color: var(--vtc-text-heading-1);
    font-size: 18px;
    display: block;
    font-weight: 500;
    padding: 8px 15px;
    transition: all 0.3s;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li a i {
    font-size: 12px;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li a:hover {
    color: var(--vtc-bg-main-4);
}

.header-area.header-area3 .header-elements .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all 0.4s;
    transform: scale(1);
    background-color: #fff;
}

.rtl-dir .header-area.header-area3 .header-elements {
    background-color: var(--vtc-bg-common-7);
    padding: 18px 24px;
    border-radius: 100px;
    margin-top: 5px;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex {
    padding: 2px 24px;
    position: relative;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex .tp-submenu {
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    position: absolute;
    background: var(--vtc-bg-color-w);
    top: 201.3%;
    transform: scale(1, 0);
    z-index: 0;
    transition: all 0.4s;
    border-radius: 5px;
    padding: 20px;
    left: auto;
    right: -365px;
    width: 1300px;
    max-height: 600px;
    overflow: hidden;
    transform-origin: top;
    display: block;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li.has-dropdown1 span {
    position: absolute;
    right: auto;
    left: 10px;
    transform: rotate(180deg);
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .all-images-menu {
    display: flex;
    align-items: center;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb {
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    margin: 0 0 0 20px;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .heading {
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    margin-top: 8px;
    color: #000;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
    transform: scale(1);
    transition: all 0.4s;
    visibility: visible;
    opacity: 0.4;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
    top: 26%;
    visibility: visible;
    opacity: 1;
    transition: all 0.6s;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.4s;
    background: #000026;
    opacity: 0;
    border-radius: 4px;
    transform: scale(0.8);
    z-index: 1;
    visibility: hidden;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 0.4s;
    border: 1px solid #E5E7EB;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
    position: absolute;
    top: 45%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    transition: all 0.6s;
    margin: 0 auto;
    left: 20%;
    right: 20%;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
    display: inline-block;
    background-color: var(--vtc-bg-main-4) !important;
    padding: 16px !important;
    color: #fff;
    transition: all 0.4s;
    border-radius: 8px;
    position: relative;
    width: 140px;
    z-index: 1;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
    transform: rotate(-45deg);
    margin-left: 4px;
    transition: all 0.4s;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
    color: #fff;
    transition: all 0.4s;
    transform: translateY(-5px);
    background: #4e7afd;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
    transform: rotate(0);
    transition: all 0.4s;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    background: #fff;
    width: 206px;
    box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
    padding: 10px;
    z-index: 99;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li ul:hover>a {
    transition: all 0.4s;
    padding-left: 25px;
    color: red;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li ul:hover>a::after {
    background: blue;
    transition: all 0.4s;
    visibility: visible;
    opacity: 1;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li ul li ul {
    right: 190px;
    top: 10px;
    z-index: 99;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li ul li a {
    color: var(--qt-text-h-text3);
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 0px;
    height: 100%;
    color: var(--qt-text-h-text3);
    border-radius: 4px;
    transition: all 0.4s;
    z-index: -1;
    opacity: 1;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li ul li a:hover {
    color: var(--vtc-bg-main-4);
    transition: all 0.4s;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li ul li a:hover::after {
    background-color: var(--vtc-bg-main-4);
    border-radius: 4px;
    width: 5px;
    left: -10px;
    opacity: 1;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li a {
    color: var(--vtc-text-heading-1);
    font-size: 18px;
    display: block;
    font-weight: 500;
    padding: 8px 15px;
    transition: all 0.3s;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li a i {
    font-size: 12px;
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li a:hover {
    color: var(--vtc-bg-main-4);
}

.rtl-dir .header-area.header-area3 .header-elements .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all 0.4s;
    transform: scale(1);
    background-color: #fff;
}

.header-area.header-area4 .header-elements {
    background-color: var(--vtc-bg-common-7);
    padding: 18px 24px;
    border-radius: 100px;
    border-radius: 7px;
    background: rgba(14, 4, 1, 0.1215686275);
    box-shadow: 14, 4, 1, 0.37 ur(10px);
}

.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 .tp-submenu {
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    position: absolute;
    background: var(--vtc-bg-color-w);
    top: 201.3%;
    transform: scale(1, 0);
    z-index: 0;
    transition: all 0.4s;
    border-radius: 5px;
    padding: 20px;
    left: -358px;
    width: 1300px;
    max-height: 600px;
    overflow: hidden;
    transform-origin: top;
    display: block;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .all-images-menu {
    display: flex;
    align-items: center;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb {
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    margin: 0 20px 0 0;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .heading {
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    margin-top: 8px;
    color: #000;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
    transform: scale(1);
    transition: all 0.4s;
    visibility: visible;
    opacity: 0.4;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
    top: 26%;
    visibility: visible;
    opacity: 1;
    transition: all 0.6s;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.4s;
    background: #000026;
    opacity: 0;
    border-radius: 4px;
    transform: scale(0.8);
    z-index: 1;
    visibility: hidden;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 0.4s;
    border: 1px solid #E5E7EB;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
    position: absolute;
    top: 45%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    transition: all 0.6s;
    margin: 0 auto;
    left: 20%;
    right: 20%;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
    display: inline-block;
    background-color: var(--vtc-bg-main-5) !important;
    padding: 16px !important;
    transition: all 0.4s;
    border-radius: 8px;
    position: relative;
    width: 140px;
    z-index: 1;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
    transform: rotate(-45deg);
    margin-left: 4px;
    transition: all 0.4s;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
    color: #fff;
    transition: all 0.4s;
    transform: translateY(-5px);
    background: #4e7afd;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
    transform: rotate(0);
    transition: all 0.4s;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    background: #fff;
    width: 206px;
    box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
    padding: 10px;
    z-index: 99;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li ul:hover>a {
    transition: all 0.4s;
    padding-left: 25px;
    color: red;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li ul:hover>a::after {
    background: blue;
    transition: all 0.4s;
    visibility: visible;
    opacity: 1;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li ul li ul {
    left: 190px;
    top: 10px;
    z-index: 99;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li ul li a {
    color: var(--qt-text-h-text3);
}

.header-area.header-area4 .header-elements .main-menu-ex ul li ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 0px;
    height: 100%;
    color: var(--qt-text-h-text3);
    border-radius: 4px;
    transition: all 0.4s;
    z-index: -1;
    opacity: 1;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li ul li a:hover {
    color: var(--vtc-bg-main-5);
    transition: all 0.4s;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li ul li a:hover::after {
    background-color: var(--vtc-bg-main-5);
    border-radius: 4px;
    width: 5px;
    left: -10px;
    opacity: 1;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li a {
    color: #fff;
    font-size: 18px;
    display: block;
    font-weight: 500;
    padding: 8px 15px;
    transition: all 0.3s;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li a i {
    font-size: 12px;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li a:hover {
    color: var(--vtc-bg-main-5);
}

.header-area.header-area4 .header-elements .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all 0.4s;
    transform: scale(1);
    background-color: #fff;
}

.header-area.header-area4 .header-elements .button {
    margin-bottom: -8px;
}

.header-area.header-area1 .main-menu-ex.main-menu-ex1 li.has-dropdown:hover a.main1 {
    color: var(--vtc-bg-main-1);
}

.header-area.header-area1 .main-menu-ex.main-menu-ex1 li.dropdown-menu-parrent:hover a.main1 {
    color: var(--vtc-bg-main-1);
}

.header-area.header-area1 .main-menu-ex.main-menu-ex1 li.has-dropdown.has-dropdown1:hover a.main {
    color: var(--vtc-bg-main-1);
}

.header-area.header-area1 .main-menu-ex.main-menu-ex1 li.has-dropdown.has-dropdown1:hover a.main::after {
    background-color: var(--vtc-bg-main-1);
    border-radius: 4px;
    width: 5px;
    left: -10px;
    opacity: 1;
}

.header-area.header-area2 .main-menu-ex.main-menu-ex1 li.has-dropdown:hover a.main1 {
    color: var(--vtc-bg-main-3);
}

.header-area.header-area2 .main-menu-ex.main-menu-ex1 li.dropdown-menu-parrent:hover a.main1 {
    color: var(--vtc-bg-main-3);
}

.header-area.header-area2 .main-menu-ex.main-menu-ex1 li.has-dropdown.has-dropdown1:hover a.main {
    color: var(--vtc-bg-main-3);
}

/* .header-area.header-area2 .main-menu-ex.main-menu-ex1 li.has-dropdown.has-dropdown1:hover a.main::after {
    background-color: var(--vtc-bg-main-3);
    border-radius: 4px;
    width: 5px;
    left: -10px;
    opacity: 1;
} */

.header-area.header-area3 .main-menu-ex.main-menu-ex1 li.has-dropdown:hover a.main1 {
    color: var(--vtc-bg-main-4);
}

.header-area.header-area3 .main-menu-ex.main-menu-ex1 li.dropdown-menu-parrent:hover a.main1 {
    color: var(--vtc-bg-main-4);
}

.header-area.header-area3 .main-menu-ex.main-menu-ex1 li.has-dropdown.has-dropdown1:hover a.main {
    color: var(--vtc-bg-main-4);
}

.header-area.header-area3 .main-menu-ex.main-menu-ex1 li.has-dropdown.has-dropdown1:hover a.main::after {
    background-color: var(--vtc-bg-main-4);
    border-radius: 4px;
    width: 5px;
    left: -10px;
    opacity: 1;
}

.header-area.header-area4 .main-menu-ex.main-menu-ex1 li.has-dropdown:hover a.main1 {
    color: var(--vtc-bg-main-5);
}

.header-area.header-area4 .main-menu-ex.main-menu-ex1 li.dropdown-menu-parrent:hover a.main1 {
    color: var(--vtc-bg-main-5);
}

.header-area.header-area4 .main-menu-ex.main-menu-ex1 li.has-dropdown.has-dropdown1:hover a.main {
    color: var(--vtc-bg-main-5);
}

.header-area.header-area4 .main-menu-ex.main-menu-ex1 li.has-dropdown.has-dropdown1:hover a.main::after {
    background-color: var(--vtc-bg-main-5);
    border-radius: 4px;
    width: 5px;
    left: -10px;
    opacity: 1;
}

/*
::::::::::::::::::::::::::
 NAV MENU AREA CSS
::::::::::::::::::::::::::
*/

/*# sourceMappingURL=main.css.map */