:root {
    --clr-common-white: #ffffff;
    --clr-common-black: #0f2923;
    --clr-common-gray: #333333;
    --clr-common-border: #525252;
    --clr-common-lightBlack: #2a4741;
    --clr-body-heading: #ffffff;
    --clr-body-text: #ffffff;
    --clr-color-skyBlue: #a1eeff;
    --clr-color-lightPink: #ffbd8c;
    --clr-color-lightGreen: #906baf;
    --clr-theme-primary: #441474;
    --clr-bg-gray: #f6f6f6;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes wcSlideBottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes wcSlideBottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes reveal {
    to {
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

@keyframes reveal {
    to {
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

@-webkit-keyframes wcfadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes wcfadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes wcSpinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes wcSpinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

body {
    font-family: "Outfit",sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--clr-body-text);
    font-size: 16px;
    line-height: 24px;
    background: var(--clr-common-black);
}

.body-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 10px;
    background: var(--clr-common-black);
}

::-webkit-scrollbar-thumb {
    background: var(--clr-theme-primary);
    border-radius: 50px;
}

.img,img {
    max-width: 100%;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

a,.button,button {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

a:focus,.button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,a:hover {
    color: inherit;
    text-decoration: none;
}

a,button {
    color: inherit;
    outline: medium none;
}

button:focus,input:focus,input:focus,textarea,textarea:focus {
    outline: 0;
}

h1,h2,h3,h4,h5,h6 {
    margin-top: 0;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: "Outfit",sans-serif;
}

h1 a,h2 a,h3 a,h4 a,h5 a,h6 a {
    color: inherit;
}

h1 {
    font-size: 64px;
}

h2 {
    font-size: 44px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

a {
    text-decoration: none;
    transition: all 0.3s linear 0s;
}

p {
    font-family: "Outfit",sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--clr-body-text);
}

ul {
    margin: 0;
    padding: 0;
}

hr {
    border-top: 0 none;
    padding: 0;
    opacity: 1;
}

label {
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: #4f3f4f;
}

*::-moz-selection {
    background-color: var(--clr-theme-primary);
    color: var(--clr-common-white);
    text-shadow: none;
}

::-moz-selection {
    background-color: var(--clr-theme-primary);
    color: var(--clr-common-white);
    text-shadow: none;
}

::selection {
    background-color: var(--clr-theme-primary);
    color: var(--clr-common-white);
    text-shadow: none;
}

input:focus::placeholder,textarea:focus::placeholder {
    opacity: 0;
}

input::-webkit-input-placeholder {
    color: var(--clr-body-text);
    font-size: 14px;
    opacity: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h3_hero-area {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
}

.floating_socialmedia {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
}

.inner_floating {
    position: relative;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.inner_floating .banner-social {
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

span.banner-social.ggl-icn {
    right: -500px;
    position: absolute;
    top: -50px;
}

.fade-out {
    opacity: 0.1;
    transition: opacity 0.5s ease-out;
}

.fade-in {
    opacity: 1;
    transition: opacity 0.5s ease-in;
}

span.banner-social.bhnc-icn {
    right: 410px;
    position: absolute;
    top: 150px;
    width: 60px;
}

span.banner-social.fb-icn {
    left: 450px;
    position: absolute;
    top: 150px;
    width: 60px;
}

span.banner-social.lnkdn-icn {
    right: 170px;
    position: absolute;
    top: 180px;
    width: 110px;
}

.zq_h3_choose-area,.zq_footer-area {
    position: relative;
    width: 100%;
    height: 100%;
}

.zq_h2_choose-area {
    position: relative;
}

.zq_h2_choose-area::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(../webImages/choose_bg.jpg) no-repeat center center;
    z-index: -1;
    opacity: 0.1;
    background-repeat: no-repeat;
    background-size: cover;
}

span.banner-social.ins-icn {
    left: 150px;
    position: absolute;
    top: 280px;
    width: 160px;
    height: 160px;
}

span.banner-social.tktk-icn {
    left: 350px;
    position: absolute;
    top: 410px;
    width: 90px;
}

span.banner-social.yt-icn {
    right: 50px;
    position: absolute;
    top: 350px;
}

span.banner-social.pnt-icn {
    right: 310px;
    position: absolute;
    top: 450px;
    width: 50px;
}

span.banner-social.drbl-icn {
    left: 220px;
    position: absolute;
    top: 530px;
    width: 70px;
}

span.banner-social.wtsp-icn {
    right: 110px;
    position: absolute;
    top: 530px;
    width: 160px;
}

span.banner-social.x-icn {
    left: 450px;
    position: absolute;
    top: 660px;
    width: 55px;
}

span.banner-social.snp-icn {
    right: 400px;
    position: absolute;
    top: 647px;
    width: 85px;
}

.vantajs_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.2;
    top: 0;
    left: 0;
    background: transparent;
    z-index: -1;
}

.vantajs_bg2 {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.2;
    top: 0;
    left: 0;
    background: transparent;
    z-index: -1;
}

#vantajs {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.1;
    top: 0;
    left: 0;
    background: transparent;
    z-index: 0;
}

.zq_h3_hero-single .container {
    position: relative;
    z-index: 999;
}

input:-moz-placeholder {
    color: var(--clr-body-text);
    font-size: 14px;
    opacity: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

input::-moz-placeholder {
    color: var(--clr-body-text);
    font-size: 14px;
    opacity: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

input:-ms-input-placeholder {
    color: var(--clr-body-text);
    font-size: 14px;
    opacity: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

textarea::-webkit-input-placeholder {
    color: var(--clr-body-text);
    font-size: 14px;
    opacity: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

textarea:-moz-placeholder {
    color: var(--clr-body-text);
    font-size: 14px;
    opacity: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

textarea::-moz-placeholder {
    color: var(--clr-body-text);
    font-size: 14px;
    opacity: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

textarea:-ms-input-placeholder {
    color: var(--clr-body-text);
    font-size: 14px;
    opacity: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

.zq_common_width {
    max-width: 1780px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.zq_common_width_inner {
    border-radius: 34px;
    background-color: var(--clr-common-lightBlack);
}

.zq_common_width-2 {
    max-width: 1750px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.zq_common_width-2_inner {
    border-radius: 8px;
    background-color: var(--clr-common-lightBlack);
}

.zq_common_width-3 {
    max-width: 1790px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.zq_common_width-3_inner {
    border-radius: 16px;
    background-color: var(--clr-common-lightBlack);
}

.zq_border-top {
    border-top: 1px solid rgba(255,255,255,0.2);
}

.zq_border-bottom {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.zq_dark_bg {
    background-color: rgb(15,15,15);
}

.pt-205 {
    padding-top: 205px;
}

.mb-05 {
    margin-bottom: 5px;
}

.zq_navigation {
    display: flex;
    gap: 15px;
    align-items: center;
}

.zq_navigation div {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(138,241,53,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: var(--clr-theme-primary);
}

.zq_navigation div:hover {
    background: var(--clr-theme-primary);
    color: var(--clr-common-black);
}

@media (max-width: 1599px) {
    .body-wrapper.pt-30 {
        padding-top:15px;
    }
}

.z-index-9 {
    z-index: 9;
}

[data-overlay] {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

[data-overlay]::before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-65 {
    margin-top: 65px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-85 {
    margin-top: 85px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-95 {
    margin-top: 95px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-105 {
    margin-top: 105px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-115 {
    margin-top: 115px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-125 {
    margin-top: 125px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-135 {
    margin-top: 135px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-145 {
    margin-top: 145px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-155 {
    margin-top: 155px;
}

.mt-160 {
    margin-top: 160px;
}

.mt-165 {
    margin-top: 165px;
}

.mt-170 {
    margin-top: 170px;
}

.mt-175 {
    margin-top: 175px;
}

.mt-180 {
    margin-top: 180px;
}

.mt-185 {
    margin-top: 185px;
}

.mt-190 {
    margin-top: 190px;
}

.mt-195 {
    margin-top: 195px;
}

.mt-200 {
    margin-top: 200px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-85 {
    margin-bottom: 85px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-95 {
    margin-bottom: 95px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-105 {
    margin-bottom: 105px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-115 {
    margin-bottom: 115px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-125 {
    margin-bottom: 125px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-135 {
    margin-bottom: 135px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-145 {
    margin-bottom: 145px;
}

.mb-150 {
    margin-bottom: 150px;
}

.mb-155 {
    margin-bottom: 155px;
}

.mb-160 {
    margin-bottom: 160px;
}

.mb-165 {
    margin-bottom: 165px;
}

.mb-170 {
    margin-bottom: 170px;
}

.mb-175 {
    margin-bottom: 175px;
}

.mb-180 {
    margin-bottom: 180px;
}

.mb-185 {
    margin-bottom: 185px;
}

.mb-190 {
    margin-bottom: 190px;
}

.mb-195 {
    margin-bottom: 195px;
}

.mb-200 {
    margin-bottom: 200px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-25 {
    margin-left: 25px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-35 {
    margin-left: 35px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-45 {
    margin-left: 45px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-55 {
    margin-left: 55px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-65 {
    margin-left: 65px;
}

.ml-70 {
    margin-left: 70px;
}

.ml-75 {
    margin-left: 75px;
}

.ml-80 {
    margin-left: 80px;
}

.ml-85 {
    margin-left: 85px;
}

.ml-90 {
    margin-left: 90px;
}

.ml-95 {
    margin-left: 95px;
}

.ml-100 {
    margin-left: 100px;
}

.ml-105 {
    margin-left: 105px;
}

.ml-110 {
    margin-left: 110px;
}

.ml-115 {
    margin-left: 115px;
}

.ml-120 {
    margin-left: 120px;
}

.ml-125 {
    margin-left: 125px;
}

.ml-130 {
    margin-left: 130px;
}

.ml-135 {
    margin-left: 135px;
}

.ml-140 {
    margin-left: 140px;
}

.ml-145 {
    margin-left: 145px;
}

.ml-150 {
    margin-left: 150px;
}

.ml-155 {
    margin-left: 155px;
}

.ml-160 {
    margin-left: 160px;
}

.ml-165 {
    margin-left: 165px;
}

.ml-170 {
    margin-left: 170px;
}

.ml-175 {
    margin-left: 175px;
}

.ml-180 {
    margin-left: 180px;
}

.ml-185 {
    margin-left: 185px;
}

.ml-190 {
    margin-left: 190px;
}

.ml-195 {
    margin-left: 195px;
}

.ml-200 {
    margin-left: 200px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-25 {
    margin-right: 25px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-35 {
    margin-right: 35px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-45 {
    margin-right: 45px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-55 {
    margin-right: 55px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-65 {
    margin-right: 65px;
}

.mr-70 {
    margin-right: 70px;
}

.mr-75 {
    margin-right: 75px;
}

.mr-80 {
    margin-right: 80px;
}

.mr-85 {
    margin-right: 85px;
}

.mr-90 {
    margin-right: 90px;
}

.mr-95 {
    margin-right: 95px;
}

.mr-100 {
    margin-right: 100px;
}

.mr-105 {
    margin-right: 105px;
}

.mr-110 {
    margin-right: 110px;
}

.mr-115 {
    margin-right: 115px;
}

.mr-120 {
    margin-right: 120px;
}

.mr-125 {
    margin-right: 125px;
}

.mr-130 {
    margin-right: 130px;
}

.mr-135 {
    margin-right: 135px;
}

.mr-140 {
    margin-right: 140px;
}

.mr-145 {
    margin-right: 145px;
}

.mr-150 {
    margin-right: 150px;
}

.mr-155 {
    margin-right: 155px;
}

.mr-160 {
    margin-right: 160px;
}

.mr-165 {
    margin-right: 165px;
}

.mr-170 {
    margin-right: 170px;
}

.mr-175 {
    margin-right: 175px;
}

.mr-180 {
    margin-right: 180px;
}

.mr-185 {
    margin-right: 185px;
}

.mr-190 {
    margin-right: 190px;
}

.mr-195 {
    margin-right: 195px;
}

.mr-200 {
    margin-right: 200px;
}

.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-55 {
    padding-top: 55px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-65 {
    padding-top: 65px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-85 {
    padding-top: 85px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-95 {
    padding-top: 95px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-105 {
    padding-top: 105px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-115 {
    padding-top: 115px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-125 {
    padding-top: 125px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-135 {
    padding-top: 135px;
}

.pt-140 {
    padding-top: 140px;
}

.pt-145 {
    padding-top: 145px;
}

.pt-150 {
    padding-top: 150px;
}

.pt-155 {
    padding-top: 155px;
}

.pt-160 {
    padding-top: 160px;
}

.pt-165 {
    padding-top: 165px;
}

.pt-170 {
    padding-top: 170px;
}

.pt-175 {
    padding-top: 175px;
}

.pt-180 {
    padding-top: 180px;
}

.pt-185 {
    padding-top: 185px;
}

.pt-190 {
    padding-top: 190px;
}

.pt-195 {
    padding-top: 195px;
}

.pt-200 {
    padding-top: 200px;
}

.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-55 {
    padding-bottom: 55px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-85 {
    padding-bottom: 85px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-105 {
    padding-bottom: 105px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-125 {
    padding-bottom: 125px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-135 {
    padding-bottom: 135px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-145 {
    padding-bottom: 145px;
}

.pb-150 {
    padding-bottom: 150px;
}

.pb-155 {
    padding-bottom: 155px;
}

.pb-160 {
    padding-bottom: 160px;
}

.pb-165 {
    padding-bottom: 165px;
}

.pb-170 {
    padding-bottom: 170px;
}

.pb-175 {
    padding-bottom: 175px;
}

.pb-180 {
    padding-bottom: 180px;
}

.pb-185 {
    padding-bottom: 185px;
}

.pb-190 {
    padding-bottom: 190px;
}

.pb-195 {
    padding-bottom: 195px;
}

.pb-200 {
    padding-bottom: 200px;
}

.pb-205 {
    padding-bottom: 205px;
}

.pb-210 {
    padding-bottom: 210px;
}

.pb-215 {
    padding-bottom: 215px;
}

.pb-220 {
    padding-bottom: 220px;
}

.pb-225 {
    padding-bottom: 225px;
}

.pb-230 {
    padding-bottom: 230px;
}

.pb-235 {
    padding-bottom: 235px;
}

.pb-240 {
    padding-bottom: 240px;
}

.pb-245 {
    padding-bottom: 245px;
}

.pb-250 {
    padding-bottom: 250px;
}

.pb-255 {
    padding-bottom: 255px;
}

.pb-260 {
    padding-bottom: 260px;
}

.pb-265 {
    padding-bottom: 265px;
}

.pb-270 {
    padding-bottom: 270px;
}

.pb-275 {
    padding-bottom: 275px;
}

.pb-280 {
    padding-bottom: 280px;
}

.pb-285 {
    padding-bottom: 285px;
}

.pb-290 {
    padding-bottom: 290px;
}

.pb-295 {
    padding-bottom: 295px;
}

.pb-300 {
    padding-bottom: 300px;
}

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-45 {
    padding-left: 45px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-55 {
    padding-left: 55px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-65 {
    padding-left: 65px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-75 {
    padding-left: 75px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-85 {
    padding-left: 85px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-95 {
    padding-left: 95px;
}

.pl-100 {
    padding-left: 100px;
}

.pl-105 {
    padding-left: 105px;
}

.pl-110 {
    padding-left: 110px;
}

.pl-115 {
    padding-left: 115px;
}

.pl-120 {
    padding-left: 120px;
}

.pl-125 {
    padding-left: 125px;
}

.pl-130 {
    padding-left: 130px;
}

.pl-135 {
    padding-left: 135px;
}

.pl-140 {
    padding-left: 140px;
}

.pl-145 {
    padding-left: 145px;
}

.pl-150 {
    padding-left: 150px;
}

.pl-155 {
    padding-left: 155px;
}

.pl-160 {
    padding-left: 160px;
}

.pl-165 {
    padding-left: 165px;
}

.pl-170 {
    padding-left: 170px;
}

.pl-175 {
    padding-left: 175px;
}

.pl-180 {
    padding-left: 180px;
}

.pl-185 {
    padding-left: 185px;
}

.pl-190 {
    padding-left: 190px;
}

.pl-195 {
    padding-left: 195px;
}

.pl-200 {
    padding-left: 200px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-45 {
    padding-right: 45px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-55 {
    padding-right: 55px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-65 {
    padding-right: 65px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-75 {
    padding-right: 75px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-85 {
    padding-right: 85px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-95 {
    padding-right: 95px;
}

.pr-100 {
    padding-right: 100px;
}

.pr-105 {
    padding-right: 105px;
}

.pr-110 {
    padding-right: 110px;
}

.pr-115 {
    padding-right: 115px;
}

.pr-120 {
    padding-right: 120px;
}

.pr-125 {
    padding-right: 125px;
}

.pr-130 {
    padding-right: 130px;
}

.pr-135 {
    padding-right: 135px;
}

.pr-140 {
    padding-right: 140px;
}

.pr-145 {
    padding-right: 145px;
}

.pr-150 {
    padding-right: 150px;
}

.pr-155 {
    padding-right: 155px;
}

.pr-160 {
    padding-right: 160px;
}

.pr-165 {
    padding-right: 165px;
}

.pr-170 {
    padding-right: 170px;
}

.pr-175 {
    padding-right: 175px;
}

.pr-180 {
    padding-right: 180px;
}

.pr-185 {
    padding-right: 185px;
}

.pr-190 {
    padding-right: 190px;
}

.pr-195 {
    padding-right: 195px;
}

.pr-200 {
    padding-right: 200px;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
}

.row {
    --bs-gutter-x: 30px;
}

.row.g-0 {
    --bs-gutter-x: 0;
}

.row.g-20 {
    --bs-gutter-x: 20px;
}

@media (min-width: 1400px) {
    .container {
        max-width:1350px;
    }
}

@media (min-width: 576px) {
    .container.container-custom-1 {
        max-width:1750px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .zq_contact-form {
        padding: 30px 10px 30px;
    }
}

i[class^="flaticon-"]:before,i[class*=" flaticon-"]:before {
    line-height: inherit;
}

.eu_header_nav_menu ul>li>a .menu-text {
    display: flex;
    overflow: hidden;
    text-shadow: 0 16px 0 var(--black-2);
    color: var(--clr-common-white);
}

.eu_header_nav_menu ul>li>a .menu-text span {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease,-webkit-transform 0.4s ease;
    -webkit-transform: translateY(var(--m)) translateZ(0);
    transform: translateY(var(--m)) translateZ(0);
    transform: translateY(-16px) translateZ(0);
    transform: translateY(0) translateZ(0);
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(1) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(3) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(4) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(5) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(6) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(7) {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(8) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(9) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(10) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(11) {
    -webkit-transition-delay: 0.55s;
    transition-delay: 0.55s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(12) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(13) {
    -webkit-transition-delay: 0.65s;
    transition-delay: 0.65s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(14) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(15) {
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(16) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(17) {
    -webkit-transition-delay: 0.85s;
    transition-delay: 0.85s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(18) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(19) {
    -webkit-transition-delay: 0.95s;
    transition-delay: 0.95s;
}

.eu_header_nav_menu ul>li>a .menu-text span:nth-child(20) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.eu_header_nav_menu ul>li>a:hover,.eu_header_nav_menu ul>li>a:hover {
    --y: -4px;
    transform: translateY(0);
}

.eu_header_nav_menu ul>li>a:hover span,.eu_header_nav_menu ul>li>a:hover span {
    --m: calc(16px * - 1);
    transform: translateY(-25px) translateZ(0);
}

.cursor {
    position: fixed;
    left: 0;
    pointer-events: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    color: var(--white);
    background-color: var(--clr-common-primary);
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 999;
    opacity: 0;
    mix-blend-mode: hard-light;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.cursor.large {
    width: 180px;
    height: 180px;
    text-align: center;
    font-size: 19px;
    font-weight: 400;
}

.cursor1 {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--clr-common-primary);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: 0.15s;
    transition: 0.15s;
    z-index: 999;
    mix-blend-mode: difference;
}

@media (max-width: 1200px) {
    .cursor1 {
        display:none;
    }
}

.cursor1.hide {
    opacity: 0;
    visibility: hidden;
}

.cursor2 {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--clr-common-primary);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 999;
    mix-blend-mode: difference;
}

.ba-search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-110%);
    -webkit-transition: all 500ms cubic-bezier(0.86,0,0.07,1);
    -moz-transition: all 500ms cubic-bezier(0.86,0,0.07,1);
    -o-transition: all 500ms cubic-bezier(0.86,0,0.07,1);
    transition: all 1500ms cubic-bezier(0.86,0,0.07,1);
    -webkit-transition-timing-function: cubic-bezier(0.86,0,0.07,1);
    -moz-transition-timing-function: cubic-bezier(0.86,0,0.07,1);
    -o-transition-timing-function: cubic-bezier(0.86,0,0.07,1);
    transition-timing-function: cubic-bezier(0.86,0,0.07,1);
    -webkit-transition: all 0.6s linear 0s;
    -moz-transition: all 0.6s linear 0s;
    -ms-transition: all 0.6s linear 0s;
    -o-transition: all 0.6s linear 0s;
    transition: all 0.6s linear 0s;
}

.ba-search-popup::after {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
    background-image: url(../webImages/bg/waves-shape.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0;
    content: "";
}

.ba-search-popup .ba-color-layer {
    position: fixed;
    content: "";
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 999;
    background-color: rgba(0,0,0,0.9);
    -webkit-transition: all 500ms cubic-bezier(0.86,0,0.07,1);
    -moz-transition: all 500ms cubic-bezier(0.86,0,0.07,1);
    -o-transition: all 500ms cubic-bezier(0.86,0,0.07,1);
    transition: all 1500ms cubic-bezier(0.86,0,0.07,1);
    -webkit-transition-timing-function: cubic-bezier(0.86,0,0.07,1);
    -moz-transition-timing-function: cubic-bezier(0.86,0,0.07,1);
    -o-transition-timing-function: cubic-bezier(0.86,0,0.07,1);
    transition-timing-function: cubic-bezier(0.86,0,0.07,1);
}

.ba-search-popup-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 9999;
    transform: translate(-50%,-50%);
    width: 50%;
}

@media (max-width: 991px) {
    .ba-search-popup-inner {
        width:70%;
    }
}

@media (max-width: 575px) {
    .ba-search-popup-inner {
        width:85%;
    }
}

@media (max-width: 767px) {
    .ba-search-popup-inner {
        width:70%;
    }

    .our_reviews img.img-fluid {
        height: 70px;
        margin: 1rem auto;
        text-align: center;
        display: flex;
    }

    .zq_contact-area .container {
        max-width: 95%;
    }
}

.ba-search-popup-inner form {
    position: relative;
}

.ba-search-popup-inner form input {
    width: 100%;
    height: 70px;
    border: 0;
    border-radius: 4px;
    padding: 0 20px;
    padding-right: 90px;
}

.ba-search-popup-inner form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 70px;
    border: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background: var(--clr-theme-primary);
    color: #fff;
    font-size: 20px;
}

.search-active .ba-search-popup {
    transform: translateY(0%);
    margin-top: var(--margin-zero);
}

.zq_header-left {
    display: flex;
    align-items: center;
    gap: 120px;
}

@media (max-width: 1199px) {
    .zq_header-left {
        gap:50px;
    }
}

.zq_header-logo {
    max-width: 150px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .zq_header-logo {
        max-width:140px;
    }
}

@media (max-width: 991px) {
    .zq_header-menu {
        display:none;
    }
}

.zq_header-menu nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

@media (max-width: 1199px) {
    .zq_header-menu nav ul {
        gap:20px;
    }
}

.zq_header-menu nav ul .menu-has-child {
    position: relative;
    z-index: 99;
    text-align: start;
}

.zq_header-menu nav ul li a {
    color: var(--clr-body-text);
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    height: 44px;
    line-height: 44px;
}

.zq_header-menu nav ul li .submenu {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    box-shadow: 0 9px 19px rgba(0,0,0,0.1);
    display: block;
}

.zq_header-menu nav ul li .submenu li {
    display: block;
    margin-right: 0;
    position: relative;
    z-index: 99;
}

.zq_header-menu nav ul li .submenu li a {
    padding: 12px 25px;
    color: var(--clr-common-black);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    height: auto;
    line-height: 20px;
}

.zq_header-menu nav ul li .submenu li .submenu {
    left: 100%;
    top: 0;
}

.zq_header-menu nav ul li .submenu li:hover>a {
    background-color: var(--clr-theme-primary);
    color: #fff;
}

.zq_header-menu nav ul li .submenu li:not(:last-child) {
    border-bottom: 1px solid #f2f2f2;
}

.zq_header-menu nav ul li:hover>.submenu {
    opacity: 1;
    visibility: visible;
}

.zq_header-menu nav ul li:hover>a {
    color: var(--clr-theme-primary);
}

.zq_header-right {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--clr-theme-primary);
    padding: 18px 45px 18px 45px;
    border-radius: 34px 34px 0 0;
    width: max-content;
    position: relative;
    z-index: 1;
}

@media (max-width: 1599px) {
    .zq_header-right {
        padding:18px 35px 18px 35px;
    }
}

@media (max-width: 1199px) {
    .zq_header-right {
        padding:18px 25px 18px 25px;
        gap: 20px;
    }
}

.zq_header-action-shape {
    position: absolute;
    left: -34px;
    bottom: 0;
    z-index: 999;
    transform: rotate(180deg);
}

.zq_header-action-shape svg {
    color: var(--clr-theme-primary);
    width: 34px;
}

.zq_header-btn {
    border-radius: 60px;
    background: rgb(15,41,35);
    color: rgb(255,255,255);
    font-family: Outfit;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 30px;
    height: 56px;
}

.zq_header-btn svg {
    width: 12px;
    height: 15px;
}

.zq_header-btn:hover {
    background-color: #fff;
    color: var(--clr-common-black);
}

@media (max-width: 575px) {
    .zq_header-btn {
        display:none;
    }
}

.zq_header-menuIcon {
    color: var(--clr-common-black);
    font-size: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_header-menuIcon:hover {
    color: #fff;
}

.zq_h2_header-area {
    position: absolute;
    left: 0;
    top: 35px;
    right: 0;
    z-index: 9;
}

@media (max-width: 991px) {
    .zq_h2_header-area {
        top:25px;
    }
}

@media (max-width: 767px) {
    .zq_h2_header-area {
        top:20px;
    }
}

@media (max-width: 575px) {
    .zq_h2_header-area {
        top:15px;
    }
}

.zq_h2_header-wrap {
    background-color: #2a4741;
    padding: 16px 30px 16px;
    margin-left: -30px;
    margin-right: -30px;
    border-radius: 88px;
}

@media (max-width: 1199px) {
    .zq_h2_header-wrap {
        margin-left:0;
        margin-right: 0;
    }
}

@media (max-width: 991px) {
    .zq_h2_header-wrap {
        margin-left:-15px;
        margin-right: -15px;
    }
}

@media (max-width: 575px) {
    .zq_h2_header-wrap {
        margin-left:0;
        margin-right: 0;
    }
}

.zq_h2_header-left {
    display: flex;
    align-items: center;
    gap: 100px;
}

@media (max-width: 1199px) {
    .zq_h2_header-left {
        gap:50px;
    }
}

.zq_h2_header-logo {
    max-width: 150px;
    flex-shrink: 0;
}

@media (max-width: 1199px) {
    .zq_h2_header-logo {
        max-width:140px;
    }
}

@media (max-width: 991px) {
    .zq_h2_header-menu {
        display:none;
    }
}

.zq_h2_header-menu nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

@media (max-width: 1199px) {
    .zq_h2_header-menu nav ul {
        gap:25px;
    }
}

.zq_h2_header-menu nav ul .menu-has-child {
    position: relative;
    z-index: 99;
    text-align: start;
}

.zq_h2_header-menu nav ul li a {
    color: var(--clr-body-text);
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    height: 44px;
    line-height: 44px;
}

.zq_h2_header-menu nav ul li .submenu {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    box-shadow: 0 9px 19px rgba(0,0,0,0.1);
    display: block;
}

.zq_h2_header-menu nav ul li .submenu li {
    display: block;
    margin-right: 0;
    position: relative;
    z-index: 99;
}

.zq_h2_header-menu nav ul li .submenu li a {
    padding: 12px 25px;
    color: var(--clr-common-black);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    height: auto;
    line-height: 20px;
}

.zq_h2_header-menu nav ul li .submenu li .submenu {
    left: 100%;
    top: 0;
}

.zq_h2_header-menu nav ul li .submenu li:hover>a {
    background-color: var(--clr-theme-primary);
    color: #fff;
}

.zq_h2_header-menu nav ul li .submenu li:not(:last-child) {
    border-bottom: 1px solid #f2f2f2;
}

.zq_h2_header-menu nav ul li:hover>.submenu {
    opacity: 1;
    visibility: visible;
}

.zq_h2_header-menu nav ul li:hover>a {
    color: var(--clr-theme-primary);
}

.zq_h2_header-action {
    display: flex;
    align-items: center;
    gap: 30px;
}

.zq_h2_header-action-search {
    color: #fff;
}

@media (max-width: 480px) {
    .zq_h2_header-action-search {
        display:none;
    }
}

.zq_h2_header-action-btn {
    border-radius: 60px;
    background: var(--clr-theme-primary);
    color: var(--clr-common-black);
    font-family: Outfit;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 30px;
    height: 56px;
}

.zq_h2_header-action-btn svg {
    width: 12px;
    height: 15px;
}

.zq_h2_header-action-btn:hover {
    background-color: #fff;
    color: var(--clr-common-black);
}

@media (max-width: 767px) {
    .zq_h2_header-action-btn {
        display:none;
    }
}

.zq_h3_header-area {
    position: absolute;
    left: 0;
    top: 35px;
    right: 0;
    z-index: 99999;
}

.zq_h3_header-logo {
    max-width: 330px;
    flex-shrink: 0;
}

.zq_h3_header-area .container {
    max-width: 95%;
    background: #ffffff20;
    border-radius: 50px;
}

@media (max-width: 1420px) {
    .zq_h3_header-menu nav ul {
        gap:10px !important;
    }

    .zq_h3_header-menu ul>li {
        padding: 0 0.5rem;
    }
}

@media (max-width: 1199px) {
    .zq_h3_header-logo {
        max-width:240px;
    }
}

.zq_h3_header-menu {
    display: flex;
    justify-content: center;
}

@media (max-width: 1199px) {
    .zq_h3_header-menu {
        justify-content:flex-start;
    }

    .zq_h3_header-menu ul>li {
        padding: 0 0.2rem !important;
    }
}

@media (max-width: 991px) {
    .zq_h3_header-menu {
        display:none;
    }

    .inner_floating {
        height: 100%;
    }

    span.banner-social.bhnc-icn {
        right: 4%;
        top: 20%;
    }

    span.banner-social.fb-icn {
        left: 4%;
        top: 20%;
    }

    span.banner-social.ins-icn {
        left: 20%;
        top: 12%;
    }

    span.banner-social.lnkdn-icn {
        right: 20%;
        top: 23%;
    }

    span.banner-social.x-icn {
        left: 50%;
        top: 19%;
        width: 35px;
    }

    span.banner-social.wtsp-icn {
        right: 7%;
        position: absolute;
        bottom: 15%;
        top: unset;
    }

    span.banner-social.yt-icn {
        right: 4%;
        bottom: 21%;
        top: unset;
    }

    span.banner-social.wtsp-icn {
        right: 15%;
        bottom: 10%;
        top: unset;
    }

    span.banner-social.pnt-icn {
        right: 45%;
        bottom: 10%;
        top: unset;
    }

    span.banner-social.snp-icn {
        left: 24%;
        top: 25%;
    }

    span.banner-social.drbl-icn {
        left: 20%;
        bottom: 5%;
        top: unset;
        width: 50px;
    }

    span.banner-social.tktk-icn {
        left: 4%;
        bottom: 20%;
        top: unset;
        width: 75px;
    }
}

.zq_h3_header-menu nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 20px !important;
}

@media (max-width: 1199px) {
    .zq_h3_header-menu nav ul {
        gap:25px;
    }
}

.zq_h3_header-menu nav ul .menu-has-child {
    position: relative;
    z-index: 99;
    text-align: start;
}

.zq_h3_header-menu nav ul li a {
    color: var(--clr-body-text);
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    height: 44px;
    line-height: 44px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 44px;
}

.zq_h3_header-menu nav ul li .submenu {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    border-radius: 0;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    box-shadow: 0 9px 19px rgba(0,0,0,0.1);
    display: block;
}

.zq_h3_header-menu li {
    border-top: 5px solid transparent;
    border-radius: 10px;
    transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h3_header-menu ul>li {
    padding: 0 1rem;
    border-left: 0;
    border-right: 0;
    border-radius: 0 !important;
}

.zq_h3_header-menu li:hover {
    border-top: 5px solid #441474;
}

.zq_h3_header-menu li.active {
    border-top: 5px solid #441474;
    border-radius: 10px;
}

.zq_h3_header-menu nav ul li .submenu li {
    display: block;
    margin-right: 0;
    position: relative;
    z-index: 99;
    padding: 0;
}

.zq_h3_header-menu nav ul li .submenu li a {
    padding: 12px 25px;
    color: var(--clr-common-black);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    height: auto;
    line-height: 20px;
}

.zq_h3_header-menu nav ul li .submenu li .submenu {
    left: 100%;
    top: 0;
}

.zq_h3_header-menu nav ul li .submenu li:hover>a {
    background-color: var(--clr-theme-primary);
    color: #fff;
}

.zq_h3_header-menu nav ul li .submenu li:not(:last-child) {
    border-bottom: 1px solid #f2f2f2;
}

.zq_h3_header-menu nav ul li:hover>.submenu {
    opacity: 1;
    visibility: visible;
}

.zq_h3_header-menu nav ul li:hover>a {
    color: var(--clr-theme-primary);
}

.zq_h3_header-action {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-right: 1rem;
}

.zq_h3_header-action-search {
    color: #fff;
}

@media (max-width: 480px) {
    .zq_h3_header-action-search {
        display:none;
    }
}

.zq_h3_header-action-btn {
    border-radius: 60px;
    background: var(--clr-theme-primary);
    color: var(--clr-common-black);
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 30px;
    height: 56px;
}

@media (max-width: 767px) {
    .zq_h3_header-action-btn {
        display:none;
    }
}

.zq_h3_header-action-btn svg {
    width: 12px;
    height: 15px;
}

.zq_h3_header-action-btn:hover {
    background-color: #fff;
    color: var(--clr-common-black);
}

.zq_h4_header-wrap {
    border-radius: 8px;
}

.zq_h5_header-area {
    position: absolute;
    left: 0;
    right: 0;
    top: 30px;
    z-index: 9;
    width: 100%;
}

.zq_h5_header-left {
    display: flex;
    align-items: center;
    gap: 120px;
}

@media (max-width: 1199px) {
    .zq_h5_header-left {
        gap:50px;
    }

    .zq_h3_header-menu nav ul li a {
        font-size: 12px !important;
    }
}

.zq_h5_header-logo {
    max-width: 150px;
    flex-shrink: 0;
}

@media (max-width: 1199px) {
    .zq_h5_header-logo {
        max-width:140px;
    }
}

@media (max-width: 991px) {
    .zq_h5_header-menu {
        display:none;
    }
}

.zq_h5_header-menu nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

@media (max-width: 1199px) {
    .zq_h5_header-menu nav ul {
        gap:25px;
    }
}

.zq_h5_header-menu nav ul .menu-has-child {
    position: relative;
    z-index: 99;
    text-align: start;
}

.zq_h5_header-menu nav ul li a {
    color: var(--clr-body-text);
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    height: 44px;
    line-height: 44px;
}

.zq_h5_header-menu nav ul li .submenu {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    box-shadow: 0 9px 19px rgba(0,0,0,0.1);
    display: block;
}

.zq_h5_header-menu nav ul li .submenu li {
    display: block;
    margin-right: 0;
    position: relative;
    z-index: 99;
}

.zq_h5_header-menu nav ul li .submenu li a {
    padding: 12px 25px;
    color: var(--clr-common-black);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    height: auto;
    line-height: 20px;
}

.zq_h5_header-menu nav ul li .submenu li .submenu {
    left: 100%;
    top: 0;
}

.zq_h5_header-menu nav ul li .submenu li:hover>a {
    background-color: var(--clr-theme-primary);
    color: #fff;
}

.zq_h5_header-menu nav ul li .submenu li:not(:last-child) {
    border-bottom: 1px solid #f2f2f2;
}

.zq_h5_header-menu nav ul li:hover>.submenu {
    opacity: 1;
    visibility: visible;
}

.zq_h5_header-menu nav ul li:hover>a {
    color: var(--clr-theme-primary);
}

.zq_h5_header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.zq_h5_header-btn {
    border-radius: 60px;
    background: #8af135;
    color: #0f2923;
    font-family: Outfit;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 30px;
    height: 56px;
}

@media (max-width: 575px) {
    .zq_h5_header-btn {
        display:none;
    }
}

.zq_h5_header-btn svg {
    width: 12px;
    height: 15px;
}

.zq_h5_header-btn:hover {
    background-color: #fff;
    color: var(--clr-common-black);
}

.zq_h5_header_icon {
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h5_header_icon:hover {
    color: #fff;
}

.zq_hero-container {
    background: var(--clr-theme-primary);
    border-radius: 34px 0 34px 34px;
}

.zq_hero-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-top: 44px;
    padding-bottom: 58px;
    max-width: 1560px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

@media (max-width: 767px) {
    .zq_hero-wrap {
        flex-wrap:wrap;
    }
}

@media (max-width: 575px) {
    .zq_hero-wrap {
        padding-left:15px;
        padding-right: 15px;
    }
}

.zq_hero-circle-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(3%,-54%);
    width: 180px;
    height: 180px;
    border: 50%;
}

@media (max-width: 1199px) {
    .zq_hero-circle-btn {
        width:120px;
        height: 120px;
    }
}

@media (max-width: 767px) {
    .zq_hero-circle-btn {
        transform:translate(-50%,-100%);
    }
}

@media (max-width: 575px) {
    .zq_hero-circle-btn {
        transform:translate(-50%,-60%);
    }
}

.zq_hero-circle-btn::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(180deg,rgba(255,255,255,0) 30.994%,rgb(15,41,35) 88.889%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
}

.zq_hero-circle-btn img {
    width: 100%;
    height: 100%;
    animation: hero-circle-1 10s linear 0s infinite;
}

.zq_hero-circle-btn a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 9;
}

.zq_hero-content {
    width: 100%;
}

.zq_hero-content-title {
    color: var(--clr-common-black);
    font-family: Outfit;
    font-size: 130px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media (max-width: 1399px) {
    .zq_hero-content-title {
        font-size:115px;
    }

    .zq_h3_header-menu ul>li {
        padding: 0 .5rem;
    }

    .zq_h3_header-menu nav ul li a {
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .zq_hero-content-title {
        font-size:90px;
    }
}

@media (max-width: 991px) {
    .zq_hero-content-title {
        font-size:70px;
    }
}

@media (max-width: 767px) {
    .zq_hero-content-title {
        font-size:80px;
    }
}

@media (max-width: 575px) {
    .zq_hero-content-title {
        font-size:70px;
    }
}

@media (max-width: 480px) {
    .zq_hero-content-title {
        font-size:50px;
        font-size: 15vw;
    }
}

.zq_hero-content-title span {
    display: block;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--clr-common-black);
}

.zq_hero-content p {
    color: rgba(0,0,0,0.7);
    font-family: Outfit;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .zq_hero-content p br {
        display:none;
    }
}

.zq_hero-img {
    max-width: 662px;
    width: 100%;
}

.zq_h2_hero-area {
    position: relative;
    z-index: 1;
    padding-top: 210px;
    padding-bottom: 110px;
    background-color: rgba(138,241,53,0.05);
}

.zq_h2_hero-shape {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
}

.zq_h2_hero-content-title {
    color: rgb(255,255,255);
    font-size: 100px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    text-align: left;
}

@media (max-width: 1399px) {
    .zq_h2_hero-content-title {
        font-size:90px;
    }
}

@media (max-width: 1199px) {
    .zq_h2_hero-content-title {
        font-size:75px;
    }
}

@media (max-width: 575px) {
    .zq_h2_hero-content-title {
        font-size:65px;
    }
}

@media (max-width: 480px) {
    .zq_h2_hero-content-title {
        font-size:48px;
    }
}

.zq_h2_hero-content-title span {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: max-content;
}

.zq_h2_hero-content-title span img {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
}

.zq_h2_hero-content p {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 33px;
}

@media (max-width: 1399px) {
    .zq_h2_hero-content p br {
        display:none;
    }
}

.zq_h2_hero-brand span {
    color: #8af135;
    font-size: 14px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.zq_h2_hero-content {
    margin-bottom: 69px;
}

.zq_h2_hero-brand-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.zq_h2_hero-brand-item {
    border: 1px solid rgba(255,255,255,0.08);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h2_hero-brand-item img {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    filter: opacity(0.6);
}

.zq_h2_hero-brand-item:hover {
    border-color: var(--clr-theme-primary);
    background: var(--clr-common-lightBlack);
}

.zq_h2_hero-brand-item:hover img {
    filter: opacity(1);
}

.zq_h2_hero-form {
    background: var(--clr-common-lightBlack);
    padding: 30px 30px 35px;
    border-radius: 8px;
}

.zq_h2_hero-form-title {
    color: var(--clr-body-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.zq_h2_hero-form-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 480px) {
    .zq_h2_hero-form-item {
        flex-wrap:wrap;
    }
}

.zq_h2_hero-form-item input {
    background: transparent;
    height: 56px;
    line-height: 52px;
    border: 1px solid rgba(255,255,255,0.3);
    color: #b3b3b3;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -1px;
    padding: 0 15px;
    width: 100%;
    border-radius: 8px;
}

.zq_h2_hero-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zq_h2_hero-form-item textarea {
    background: transparent;
    height: 140px;
    line-height: 52px;
    border: 1px solid rgba(255,255,255,0.3);
    color: #b3b3b3;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -1px;
    padding: 0 15px;
    width: 100%;
    border-radius: 8px;
}

.zq_h2_hero-form-item button {
    width: 112px;
    height: 112px;
    border: 0;
    padding: 0;
    margin: 0;
    background: var(--clr-theme-primary);
    border-radius: 50%;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zq_h2_hero-form-item button:hover {
    background-color: var(--clr-common-black);
    color: #fff;
}

.zq_h2_hero-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

@media (max-width: 480px) {
    .zq_h2_hero-bottom {
        flex-wrap:wrap;
    }
}

.zq_h2_hero-bottom-item {
    width: 100%;
    background: var(--clr-common-lightBlack);
    height: 100%;
    min-height: 218px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 30px 22px;
}

.zq_h2_hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zq_h2_hero-bottom-item img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-38%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.zq_h2_hero-bottom-item h2 {
    color: var(--clr-body-heading);
    font-size: 44px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 0;
}

.zq_h2_hero-bottom-item p {
    color: rgb(255,255,255);
    font-family: Outfit;
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -1px;
    margin-bottom: 0;
}

.zq_h2_hero-bottom-item:first-child:before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    content: "";
    width: 85px;
    height: 85px;
    filter: blur(30px);
    background: linear-gradient(180deg,rgb(138,241,53),rgba(138,241,53,0) 100%);
    opacity: 0.8;
    border-radius: 50%;
}

.zq_h3_hero-single {
    background-color: rgba(24,66,57,0.2);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100%;
    display: flex;
    align-items: center;
}

.zq_h3_hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 70px;
}

.zq_h3_hero-content h1 {
    color: var(--clr-body-heading);
    font-size: 88px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .zq_h3_hero-content h1 {
        font-size:90px;
    }
}

@media (max-width: 991px) {
    .zq_h3_hero-content h1 {
        font-size:80px;
    }
}

@media (max-width: 767px) {
    .zq_h3_hero-content h1 {
        font-size:70px;
    }
}

@media (max-width: 480px) {
    .zq_h3_hero-content h1 {
        font-size:45px;
    }
}

.zq_h3_hero-content p {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

@media (max-width: 575px) {
    .zq_h3_hero-content p {
        font-size:18px;
    }
}

@media (max-width: 480px) {
    .zq_h3_hero-content p {
        font-size:16px;
    }
}

.zq_h3_hero-content form {
    max-width: 530px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    margin-right: auto;
}

.zq_h3_hero-content form input {
    width: 100%;
    height: 64px;
    border: 2px solid var(--clr-theme-primary);
    border-radius: 70px;
    background: #2a4741;
    padding: 0 40px;
    color: rgba(255,255,255,0.5);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.zq_h3_hero-content form button {
    width: 64px;
    height: 64px;
    background: var(--clr-theme-primary);
    border: none;
    border-radius: 50%;
    font-size: 26px;
    color: var(--clr-common-black);
    flex-shrink: 0;
}

.zq_h4_hero-area {
    position: relative;
    z-index: 1;
    padding-top: 235px;
    padding-bottom: 95px;
    background-color: rgb(15,41,35);
}

.zq_h4_hero-area::before {
    position: absolute;
    left: calc(29% + 9px);
    top: calc(37% - 5px);
    content: "";
    width: 237px;
    height: 240px;
    filter: blur(400px);
    background: rgb(138,241,53);
    z-index: -1;
}

.zq_h4_hero-area::after {
    position: absolute;
    top: -46px;
    right: -50px;
    content: "";
    width: 168px;
    height: 170px;
    filter: blur(400px);
    background: rgb(138,241,53);
    z-index: -1;
}

.zq_h4_hero-shape {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
}

.zq_h4_hero-shape-1 {
    position: absolute;
    left: 205px;
    top: 225px;
}

.zq_h4_hero-shape-2 {
    position: absolute;
    left: 47%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.zq_h4_hero-shape-3 {
    position: absolute;
    bottom: 85px;
    right: 385px;
}

.zq_h4_hero-form {
    margin-left: 37px;
    margin-right: -5px;
}

@media (max-width: 1199px) {
    .zq_h4_hero-form {
        margin-left:0;
        margin-right: 0;
    }
}

.zq_h4_hero-form form {
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    backdrop-filter: blur(54px);
    background: rgba(42,71,65,0.3);
    padding: 30px 40px 50px;
}

.zq_h4_hero-form form input,.zq_h4_hero-form form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    background-color: transparent;
    padding-bottom: 14px;
    margin-bottom: 21px;
    color: rgb(255,255,255);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: -0.5px;
}

.zq_h4_hero-form form textarea {
    padding-bottom: 62px;
}

.zq_h4_hero-form form button {
    margin-top: 6px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    padding: 0 30px;
    border-radius: 50px;
    border: none;
    background-color: var(--clr-theme-primary);
    color: rgb(0,0,0);
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    text-transform: capitalize;
}

@media (max-width: 1399px) {
    .zq_h4_hero-content {
        margin-left:50px;
    }
}

@media (max-width: 991px) {
    .zq_h4_hero-content {
        margin-left:0;
    }
}

.zq_h4_hero-content-title {
    color: #8af135;
    font-size: 100px;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 20px;
}

@media (max-width: 1399px) {
    .zq_h4_hero-content-title {
        font-size:90px;
    }
}

@media (max-width: 1199px) {
    .zq_h4_hero-content-title {
        font-size:80px;
    }
}

@media (max-width: 575px) {
    .zq_h4_hero-content-title {
        font-size:70px;
    }
}

@media (max-width: 480px) {
    .zq_h4_hero-content-title {
        font-size:50px;
    }
}

.zq_h4_hero-content-title span {
    display: block;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #8af135;
}

.zq_h4_hero-content p {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .zq_h4_hero-content p br {
        display:none;
    }
}

@media (max-width: 1350px) {
    .zq_h3_hero-content h1 {
        font-size:58px;
    }

    .zq_h3_hero-content p {
        font-size: 16px;
    }
}

.zq_h4_hero-content-admin {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.zq_h4_hero-content-admin img {
    flex-shrink: 0;
}

.zq_h4_hero-content-admin h4 {
    color: rgb(255,255,255);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.7px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.zq_h4_hero-content-admin h4 span {
    display: block;
    color: rgb(255,255,255);
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

.zq_h5_hero-single {
    padding-top: 240px;
    padding-bottom: 160px;
    position: relative;
    z-index: 1;
}

.zq_h5_hero-circle {
    position: absolute;
    left: 50%;
    top: 115px;
    transform: translateX(-50%);
    width: max-content;
    height: auto;
    z-index: -1;
}

.zq_h5_hero-content {
    text-align: center;
    margin-bottom: 120px;
}

.zq_h5_hero-content-title {
    color: #fff;
    font-size: 100px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 19px;
}

@media (max-width: 1199px) {
    .zq_h5_hero-content-title {
        font-size:90px;
    }
}

@media (max-width: 991px) {
    .zq_h5_hero-content-title {
        font-size:80px;
    }
}

@media (max-width: 767px) {
    .zq_h5_hero-content-title {
        font-size:60px;
    }
}

@media (max-width: 480px) {
    .zq_h5_hero-content-title {
        font-size:50px;
    }
}

.zq_h5_hero-content p {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 42px;
}

@media (max-width: 991px) {
    .zq_h5_hero-content p br {
        display:none;
    }
}

@media (max-width: 480px) {
    .zq_h5_hero-content p {
        font-size:16px;
    }
}

.zq_h5_hero-content-btn {
    border-radius: 58px;
    background: rgb(138,241,53);
    height: 56px;
    display: inline-flex;
    align-items: center;
    padding: 0 30px;
    color: rgb(0,0,0);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.zq_h5_hero-img {
    margin-left: -27px;
    margin-right: -27px;
}

.zq_h5_hero-single::before {
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    top: 50%;
    content: "";
    filter: blur(600px);
    background: rgb(138,241,53);
    width: 500px;
    height: 500px;
    z-index: -1;
}

@keyframes hero-circle-1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.zq_section-subtitle {
    color: var(--clr-theme-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    display: block;
    letter-spacing: 2.5px;
}

.zq_section-title {
    color: var(--clr-body-heading);
    font-size: 44px;
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -1.1px;
}

@media (max-width: 1199px) {
    .zq_section-title {
        font-size:38px;
    }
}

@media (max-width: 991px) {
    .zq_section-title br {
        display:none;
    }
}

@media (max-width: 575px) {
    .zq_section-title {
        font-size:34px;
    }
}

@media (max-width: 480px) {
    .zq_section-title {
        font-size:28px;
    }
}

.zq_section-text {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.77;
}

.zq_h2_section-subtitle {
    border-radius: 40px;
    background: var(--clr-common-lightBlack);
    height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    color: var(--clr-theme-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-transform: capitalize;
    margin-bottom: 18px;
}

.zq_h2_section-title {
    color: var(--clr-body-heading);
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
}

@media (max-width: 1199px) {
    .zq_h2_section-title {
        font-size:40px;
    }
}

@media (max-width: 991px) {
    .zq_h2_section-title br {
        display:none;
    }
}

@media (max-width: 575px) {
    .zq_h2_section-title {
        font-size:34px;
    }
}

@media (max-width: 480px) {
    .zq_h2_section-title {
        font-size:28px;
    }
}

.zq_h3_section-subtitle {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    letter-spacing: 2.5px;
    padding-left: 14px;
    transform: translate(0, 10px);
}

.zq_h3_section-subtitle::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--clr-theme-primary);
    border-radius: 50%;
}

.zq_h3_section-title {
    color: var(--clr-body-heading);
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    position: relative;
    width: fit-content;
}

.white-group .zq_h3_section-title {
    color: #575757;
}

.white-group {
    position: relative;
    background: #fff;
}

.zq_h3_section-title::after {
    background-color: var(--clr-theme-primary);
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 3px;
    width: 100px;
    margin-top: 2px;
    transition: all 3 scubic-bezier(0.68,-0.55,0.27,1.55);
    animation: 6s right2left infinite cubic-bezier(0.68,-0.55,0.27,1.55);
}

@keyframes right2left {
    0%,100% {
        right: 0;
    }

    50% {
        right: calc(100% - 110px);
    }
}

@media (max-width: 1199px) {
    .zq_h3_section-title {
        font-size:38px;
    }
}

@media (max-width: 991px) {
    .zq_h3_section-title {
        font-size:36px;
    }

    .zq_h3_section-title br {
        display: none;
    }
}

@media (max-width: 575px) {
    .zq_h3_section-title {
        font-size:34px;
    }
}

@media (max-width: 480px) {
    .zq_h3_section-title {
        font-size:28px;
    }
}

.zq_h3_section-text {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.zq_inner_section .zq_section-title span {
    color: #8af135;
}

.zq_brand-item {
    border: 1px solid rgba(255,255,255,0.08);
    height: 83px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_brand-item img {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    filter: opacity(0.6);
}

.zq_brand-item:hover {
    border-color: var(--clr-theme-primary);
    background: var(--clr-common-lightBlack);
}

.zq_brand-item:hover img {
    filter: opacity(1);
}

.h3_brand-active {
    overflow: visible;
}

.zq_h3_brand-item {
    border: 1px solid var(--clr-theme-primary);
    height: 83px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 90px;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h3_brand-item img {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    height: 80px;
    padding: .5rem;
}

.zq_h3_brand-item:hover {
    transform: rotate(-20deg) scale(1.1);
}

.zq_h5_brand-item {
    border: 1px solid rgba(255,255,255,0.08);
    height: 83px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h5_brand-item img {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    filter: opacity(0.6);
}

.zq_brand-img-2 {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.zq_h5_brand-item:hover {
    border-color: var(--clr-theme-primary);
    background: var(--clr-theme-primary);
}

.zq_h5_brand-item:hover img {
    filter: opacity(1);
}

.zq_h5_brand-item:hover .zq_brand-img-1 {
    opacity: 0;
    visibility: hidden;
}

.zq_h5_brand-item:hover .zq_brand-img-2 {
    opacity: 1;
    visibility: visible;
}

.zq_inner_brand-wrap {
    background-color: var(--clr-theme-primary);
    max-width: 1650px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
}

.zq_inner_brand-subtitle {
    color: rgb(15,41,35);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 20px;
    display: block;
}

@media (max-width: 575px) {
    .zq_inner_brand-subtitle {
        font-size:16px;
    }
}

.zq_inner_brand-title {
    color: rgb(15,41,35);
    font-family: Outfit;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

@media (max-width: 1199px) {
    .zq_inner_brand-title {
        font-size:38px;
    }
}

@media (max-width: 991px) {
    .zq_inner_brand-title {
        font-size:36px;
    }
}

@media (max-width: 575px) {
    .zq_inner_brand-title {
        font-size:34px;
    }
}

@media (max-width: 480px) {
    .zq_inner_brand-title {
        font-size:28px;
    }
}

.zq_inner_brand-item {
    background: rgba(15,41,35,0.1);
    justify-content: center;
    display: flex;
    align-items: center;
    height: 105px;
    border-radius: 8px;
}

.zq_faq-img img {
    border-radius: 17px;
}

.zq_faq-content .accordion-item {
    overflow: hidden;
    background: transparent;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.zq_faq-content .accordion-button {
    position: relative;
    cursor: pointer;
    box-shadow: none;
    background: transparent;
    border: 1px solid transparent;
    border-bottom: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: var(--clr-body-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    border-radius: 8px 8px 0 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 23px 20px 24px 20px;
}

@media (max-width: 767px) {
    .zq_faq-content .accordion-button {
        font-size:22px;
    }
}

@media (max-width: 575px) {
    .zq_faq-content .accordion-button {
        font-size:20px;
    }
}

.zq_faq-content .accordion-button span {
    color: var(--clr-theme-primary);
}

.zq_faq-content .accordion-button::after {
    display: none;
}

.zq_faq-content .accordion-button::before {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
}

@media (max-width: 575px) {
    .zq_faq-content .accordion-button::before {
        right:20px;
    }
}

.zq_faq-content .accordion-button:not(.collapsed) {
    background-color: var(--clr-common-lightBlack);
    padding-bottom: 17px;
    border: 1px solid var(--clr-theme-primary);
    border-bottom: 0;
}

.zq_faq-content .accordion-button:not(.collapsed)::before {
    color: var(--clr-theme-primary);
    content: "\f106";
}

.zq_faq-content .accordion-body {
    padding: 0 40px 28px 62px;
    background: var(--clr-common-lightBlack);
    border: 1px solid var(--clr-theme-primary);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h2_choose-content .accordion-body {
    max-height: 230px;
    overflow: auto;
}

.zq_faq-content .accordion-body p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

@media (max-width: 1399px) {
    .zq_faq-wrapper.ml-50 {
        margin-left:0;
    }
}

@media (max-width: 1399px) {
    .zq_faq-wrapper.mr-30 {
        margin-right:0;
    }
}

.zq_inner_faq-img img {
    border-radius: 17px;
}

.zq_inner_faq-content .accordion-item {
    overflow: hidden;
    background: transparent;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.zq_inner_faq-content .accordion-button {
    position: relative;
    cursor: pointer;
    box-shadow: none;
    background: #2a4741;
    border: 1px solid #2a4741;
    border-bottom: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: var(--clr-body-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    border-radius: 8px 8px 0 0 !important;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 30px 30px 30px;
}

@media (max-width: 767px) {
    .zq_inner_faq-content .accordion-button {
        font-size:22px;
    }
}

@media (max-width: 575px) {
    .zq_inner_faq-content .accordion-button {
        font-size:20px;
        padding: 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .zq_inner_faq-content .accordion-button {
        font-size:18px;
    }
}

.zq_inner_faq-content .accordion-button span {
    background-color: var(--clr-theme-primary);
    display: flex;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.zq_inner_faq-content .accordion-button span i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-common-black);
    font-size: 14px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    text-align: center;
    width: 100%;
}

.zq_inner_faq-content .accordion-button::after {
    display: none;
}

.zq_inner_faq-content .accordion-button::before {
    display: none;
}

.zq_inner_faq-content .accordion-button:not(.collapsed) {
    padding-bottom: 25px;
    border: 1px solid var(--clr-theme-primary);
    border-bottom: 0;
}

.zq_inner_faq-content .accordion-button:not(.collapsed) span i {
    transform: translateY(-50%) rotate(45deg);
}

.zq_inner_faq-content .accordion-body {
    padding: 0 30px 25px 76px;
    background: var(--clr-common-lightBlack);
    border: 1px solid var(--clr-theme-primary);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

@media (max-width: 575px) {
    .zq_inner_faq-content .accordion-body {
        padding-left:65px;
    }
}

@media (max-width: 480px) {
    .zq_inner_faq-content .accordion-body {
        padding-left:65px;
    }
}

.zq_inner_faq-content .accordion-body p {
    border-top: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    padding-top: 19px;
    margin-bottom: 0;
}

@media (max-width: 1399px) {
    .zq_inner_faq-wrap.ml-50 {
        margin-left:0;
    }
}

.zq_project-wrapper {
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: start;
}

@media (max-width: 767px) {
    .zq_project-wrapper {
        flex-wrap:wrap;
    }
}

.zq_project-img {
    overflow: hidden;
    border-radius: 17px;
    margin-bottom: 20px;
}

.zq_project-img img {
    width: 100%;
}

.zq_project-single {
    padding-top: 40px;
}

.zq_project-single:first-child {
    border-right: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 767px) {
    .zq_project-single:first-child {
        border-right:0;
    }
}

@media (max-width: 767px) {
    .zq_project-single:last-child {
        padding-top:0;
    }
}

@media (max-width: 991px) {
    .zq_project-single.pl-40 {
        padding-left:20px;
    }

    .zq_project-single.pr-40 {
        padding-right: 20px;
    }
}

@media (max-width: 767px) {
    .zq_project-single.pl-40 {
        padding-left:0;
    }

    .zq_project-single.pr-40 {
        padding-right: 0;
    }
}

.zq_project-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 35px;
    margin-bottom: 30px;
}

.zq_project-content-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}

.zq_project-content-title {
    color: var(--clr-body-heading);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .zq_project-content-title {
        font-size:24px;
    }
}

.zq_project-content-title:hover a {
    color: var(--clr-theme-primary);
}

.zq_project-content-btn {
    color: rgba(255,255,255,0.2);
    font-size: 30px;
    font-weight: 700;
}

.zq_project-content p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.zq_project-client {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
}

.zq_project-client-info h3 {
    color: var(--clr-body-heading);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0;
}

.zq_project-client-info p {
    color: var(--clr-body-heading);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
    font-family: "Inter",sans-serif;
}

.zq_project-client-img {
    display: flex;
    align-items: center;
}

.zq_project-client-img img:not(:first-child) {
    margin-left: -20px;
}

.zq_project-item:hover .zq_project-content-btn {
    color: var(--clr-theme-primary);
}

.zq_h2_project-item {
    background-color: #33574f;
    border-radius: 8px;
}

.zq_h2_project-item-content {
    padding: 25px 30px 24px;
}

@media (max-width: 480px) {
    .zq_h2_project-item-content {
        padding:25px 25px 24px;
    }
}

.zq_h2_project-item-content span {
    color: var(--clr-body-heading);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -1px;
    display: block;
    margin-bottom: 15px;
}

.zq_h2_project-item-content h3 {
    color: var(--clr-body-heading);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

@media (max-width: 1399px) {
    .zq_h2_project-item-content h3 {
        font-size:28px;
    }
}

@media (max-width: 991px) {
    .zq_h2_project-item-content h3 {
        font-size:24px;
    }
}

.zq_h2_project-item-content h3:hover a {
    color: var(--clr-theme-primary);
}

.zq_h2_project-item-content p {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.zq_h2_project-item-img {
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.zq_h2_project-item-img img {
    width: 100%;
}

.zq_h2_project-item-img-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60px;
    height: 60px;
    box-shadow: 0 16px 30px 0 rgba(1,6,20,0.1);
    background: var(--clr-theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--clr-common-black);
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
}

.zq_h2_project-item-img-icon:hover {
    color: var(--clr-common-black);
}

.zq_h2_project-item-img::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(180deg,rgba(138,241,53,0),rgba(138,241,53,0.5) 100%);
    opacity: 0.7;
}

.zq_h2_project-img {
    overflow: hidden;
    border-radius: 8px;
}

.zq_h2_project-img img {
    width: 100%;
}

.zq_h2_project-item:hover .zq_h2_project-item-img-icon {
    opacity: 1;
    visibility: visible;
}

.swiper.h3_project-active {
    margin-left: -290px;
    margin-right: -290px;
}

@media (max-width: 767px) {
    .swiper.h3_project-active {
        margin-left:15px;
        margin-right: 15px;
    }
}

.zq_h3_project-item {
    padding: 30px 30px 25px;
    background: #33574f;
    border-radius: 8px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

@media (max-width: 480px) {
    .zq_h3_project-item {
        padding:30px 20px 25px;
    }
}

.zq_h3_project-item-img {
    overflow: hidden;
    margin-bottom: 20px;
}

.zq_h3_project-item-img img {
    width: 100%;
    border-radius: 8px;
}

.zq_h3_project-item-content-icon svg {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: #fff;
    width: 20px;
}

@media (max-width: 480px) {
    .zq_h3_project-item-content-icon svg {
        width:16px;
    }
}

.zq_h3_project-item-content-title {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 16px;
}

.zq_h3_project-item-content-title h3 {
    color: rgb(255,255,255);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .zq_h3_project-item-content-title h3 {
        font-size:24px;
    }
}

.zq_h3_project-item-content span {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -0.6px;
    gap: 15px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

@media (max-width: 480px) {
    .zq_h3_project-item-content span {
        font-size:16px;
    }
}

.zq_h3_project-item-content span del {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: rgba(255,255,255,0.5);
    position: relative;
    z-index: 1;
    padding-left: 13px;
}

.zq_h3_project-item-content span del::before {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    position: absolute;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
}

.zq_h3_project-item:hover {
    background-color: var(--clr-theme-primary);
}

.zq_h3_project-item:hover .zq_h3_project-item-content-icon svg {
    color: var(--clr-common-black);
}

.zq_h3_project-item:hover .zq_h3_project-item-content-title h3 {
    color: var(--clr-common-black);
}

.zq_h3_project-item .zq_h3_project-item-content p {
    font-weight: 500;
    line-height: 1.5;
    max-height: 96px;
    min-height: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.zq_h3_project-item:hover .zq_h3_project-item-content p {
    color: rgba(15,41,35,0.9);
}

.zq_h3_project-item:hover .zq_h3_project-item-content span {
    color: rgba(15,41,35,0.7);
}

.zq_h3_project-item:hover .zq_h3_project-item-content span del {
    color: rgba(15,41,35,0.5);
}

.zq_h3_project-item:hover .zq_h3_project-item-content span del::before {
    background-color: rgba(15,41,35,0.7);
}

.zq_h4_project-item-img {
    margin-bottom: 20px;
}

.zq_h4_project-item-img img {
    width: 100%;
    border-radius: 8px;
}

.zq_h4_project-item-content h3 {
    color: rgb(255,255,255);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.zq_h4_project-item-content span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(255,255,255);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 31px;
}

.zq_h4_project-item-content span del {
    color: rgba(255,255,255,0.5);
    position: relative;
    z-index: 1;
    padding-left: 15px;
}

.zq_h4_project-item-content span del::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 5px;
    height: 5px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
}

.zq_h4_project-item-btn {
    color: var(--clr-common-black);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    display: inline-flex;
    align-items: center;
    height: 55px;
    background: #fff;
    padding: 0 35px;
    border-radius: 50px;
}

.zq_h4_project-item-btn:hover {
    background-color: var(--clr-theme-primary);
    color: var(--clr-common-black);
}

.swiper.h5_project-active {
    margin-right: -451px;
}

@media (max-width: 575px) {
    .swiper.h5_project-active {
        margin-right:0;
    }
}

.zq_h5_project-item {
    padding: 20px 20px 20px;
    background: #33574f;
    border-radius: 8px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h5_project-item-img {
    overflow: hidden;
    margin-bottom: 15px;
}

.zq_h5_project-item-img img {
    width: 100%;
    border-radius: 8px;
}

.zq_h5_project-item-content-icon svg {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: #fff;
    width: 20px;
}

.zq_h5_project-item-content-title {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 6px;
}

.zq_h5_project-item-content-title h3 {
    color: rgb(255,255,255);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 0;
}

.zq_h5_project-item-content span {
    display: flex;
    align-items: center;
    color: rgb(255,255,255);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.6px;
    gap: 15px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h5_project-item-content span del {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: rgba(255,255,255,0.5);
    position: relative;
    z-index: 1;
    padding-left: 13px;
}

.zq_h5_project-item-content span del::before {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    position: absolute;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
}

.zq_h5_project-item:hover {
    background-color: var(--clr-theme-primary);
}

.zq_h5_project-item:hover .zq_h5_project-item-content-icon svg {
    color: var(--clr-common-black);
}

.zq_h5_project-item:hover .zq_h5_project-item-content-title h3 {
    color: var(--clr-common-black);
}

.zq_h5_project-item:hover .zq_h5_project-item-content span {
    color: rgba(15,41,35,0.7);
}

.zq_h5_project-item:hover .zq_h5_project-item-content span del {
    color: rgba(15,41,35,0.5);
}

.zq_h5_project-item:hover .zq_h5_project-item-content span del::before {
    background-color: rgba(15,41,35,0.7);
}

.zq_inner_project-item {
    border-radius: 17px;
    overflow: hidden;
    background-color: #2a4741;
}

.zq_inner_project-img {
    overflow: hidden;
    border-radius: 17px;
}

.zq_inner_project-img img {
    width: 100%;
    -webkit-transition: all 0.5s linear 0s;
    -moz-transition: all 0.5s linear 0s;
    -ms-transition: all 0.5s linear 0s;
    -o-transition: all 0.5s linear 0s;
    transition: all 0.5s linear 0s;
}

.zq_inner_project-img iframe {
    width: 100%;
    height: 411px;
}

.zq_inner_project-content {
    padding: 27px 30px 35px 30px;
}

@media (max-width: 480px) {
    .zq_inner_project-content {
        padding-right:20px;
        padding-left: 20px;
    }
}

.zq_inner_project-content-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 14px;
    max-height: 67px;
    min-height: 67px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.zq_inner_project-content-title {
    color: var(--clr-body-heading);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .zq_inner_project-content-title {
        font-size:28px;
    }
}

@media (max-width: 991px) {
    .zq_inner_project-content-title {
        font-size:32px;
    }
}

@media (max-width: 575px) {
    .zq_inner_project-content-title {
        font-size:26px;
    }
}

@media (max-width: 480px) {
    .zq_inner_project-content-title {
        font-size:20px;
    }
}

.zq_inner_project-content-title:hover a {
    color: var(--clr-theme-primary);
}

.zq_inner_project-content-btn {
    color: rgba(255,255,255,0.2);
    font-size: 30px;
    font-weight: 700;
}

.zq_inner_project-content p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
    max-height: 67px;
    min-height: 67px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.zq_inner_project-item:hover .zq_inner_project-content-btn {
    color: var(--clr-theme-primary);
}

.zq_inner_project-item:hover .zq_inner_project-img img {
    transform: scale(1.1);
}

.zq_inner-pagination ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.zq_inner-pagination ul li a {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(138,241,53,0.5);
    border-radius: 50%;
    color: rgb(255,255,255);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.zq_inner-pagination ul li a:hover {
    background: var(--clr-theme-primary);
    color: var(--clr-common-black);
}

.zq_portfolio_details-info {
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(6,1fr);
}

.tab-links {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 30px;
    border-radius: 18px;
    overflow: hidden;
}

.tab-link {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 30px;
    color: #ccc;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    text-align: center;
    width: 100%;
    background: #fff;
    height: 100px;
}

.tab-link.active i {
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 56px;
}

.tab-link.active span {
    margin-top: 0;
}

.tab-link i {
    margin-right: 10px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 20px;
    opacity: 1;
    transition: all 0.3s ease;
    color: #122d23;
}

.tab-link span {
    display: block;
    transition: all 0.3s ease;
    font-weight: bold;
    color: #252525;
    z-index: 999;
    position: relative;
    opacity: 1;
    margin-top: 30px;
}

button.tab-link:hover i {
    opacity: 0.2;
    top: 50%;
    font-size: 56px;
}

button.tab-link:hover span {
    margin-top: 0;
}

.tab-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 7px;
    bottom: -1px;
    left: 50%;
    background: linear-gradient(45deg,#441474,#102c24);
    transition: all 0.4s ease;
}

.tab-link.active::after {
    width: 100%;
    left: 0;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
    padding: 5px 10px 15px 10px;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199px) {
    .zq_portfolio_details-info {
        grid-template-columns:repeat(4,1fr);
    }
}

@media (max-width: 991px) {
    .zq_portfolio_details-info {
        grid-template-columns:repeat(3,1fr);
    }

    .tab-link span {
        display: none;
    }

    .tab-link i {
        font-size: 24px;
    }

    .tab-link.active i {
        top: 50%;
        font-size: 24px;
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .zq_portfolio_details-info {
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width: 480px) {
    .zq_portfolio_details-info {
        grid-template-columns:repeat(1,1fr);
    }
}

.zq_portfolio_details-info-item {
    border-right: 1px solid rgba(255,255,255,0.16);
    padding: 32px 30px 34px;
}

@media (max-width: 480px) {
    .zq_portfolio_details-info-item {
        border-right:0;
    }
}

.zq_portfolio_details-info-item span {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: block;
    margin-bottom: 10px;
}

.zq_portfolio_details-info-item p {
    color: rgb(255,255,255);
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -1px;
    margin-bottom: 0;
}

.zq_choose-wrapper {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
}

.zq_choose-item {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 30px 30px 45px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_choose-item:hover {
    border-color: var(--clr-theme-primary);
    background: var(--clr-common-lightBlack);
}

.zq_choose-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.zq_choose-item-icon svg {
    color: var(--clr-theme-primary);
    width: 40px;
}

.zq_choose-item-btn {
    font-size: 30px;
    color: rgba(255,255,255,0.4);
}

.zq_choose-item-title {
    color: rgb(255,255,255);
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.zq_choose-item p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.zq_choose-img img {
    width: 100%;
    border-radius: 16px;
}

.zq_choose-item:hover .zq_choose-item-btn {
    color: var(--clr-theme-primary);
}

.zq_h2_choose-wrap {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

@media (max-width: 1399px) {
    .zq_h2_choose-wrap {
        gap:50px;
    }
}

@media (max-width: 1199px) {
    .zq_h2_choose-wrap {
        gap:30px;
    }
}

@media (max-width: 991px) {
    .zq_h2_choose-wrap {
        flex-wrap:wrap;
        gap: 30px;
    }
}

.zq_h2_choose-img {
    width: 100%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    padding-right: 50px;
    padding-bottom: 57px;
}

@media (max-width: 1399px) {
    .zq_h2_choose-img {
        max-width:565px;
    }
}

@media (max-width: 1199px) {
    .zq_h2_choose-img {
        max-width:100%;
        padding-right: 0;
    }
}

@media (max-width: 991px) {
    .zq_h2_choose-img {
        max-width:100%;
    }
}

.zq_h2_choose-img img {
    width: 100%;
    min-height: 300px;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.zq_h2_choose-img-info {
    background-color: var(--clr-theme-primary);
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 30px 30px 30px;
    margin-top: -57px;
    z-index: 9;
    position: relative;
    margin-right: 25px;
    margin-left: 25px;
}

@media (max-width: 1199px) {
    .zq_h2_choose-img-info {
        padding:30px 15px 30px;
        margin-right: 10px;
        margin-left: 10px;
    }
}

@media (max-width: 991px) {
    .zq_h2_choose-img-info {
        padding:30px 30px 30px;
        margin-right: 25px;
        margin-left: 25px;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .zq_h2_choose-img-info {
        padding:30px 20px 30px;
        margin-right: 15px;
        margin-left: 15px;
    }
}

@media (max-width: 575px) {
    .zq_h2_choose-img-info {
        flex-wrap:wrap;
        padding: 30px 30px 30px;
        gap: 10px;
    }
}

.zq_h2_choose-img-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 575px) {
    .zq_h2_choose-img-info-item {
        width:100%;
        flex-shrink: 0;
    }
}

.zq_h2_choose-img-info-item:first-child {
    position: relative;
    z-index: 1;
}

.zq_h2_choose-img-info-item:first-child::before {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 54px;
    width: 2px;
    background-color: var(--clr-common-black);
}

@media (max-width: 1399px) {
    .zq_h2_choose-img-info-item:first-child::before {
        display:none;
    }
}

.zq_h2_choose-img-info-item h2 {
    margin-bottom: 0;
    color: var(--clr-common-black);
    font-size: 26px;
    font-weight: 600;
    line-height: 54px;
}

@media (max-width: 1399px) {
    .zq_h2_choose-img-info-item h2 {
        font-size:22px;
    }

    .zq_h2_choose-img-info {
        padding: 10px;
        margin-top: -40px;
    }
}

@media (max-width: 1199px) {
    .zq_h2_choose-img-info-item h2 {
        font-size:36px;
    }

    .zq_h2_choose-wrap {
        grid-template-columns: repeat(1,1fr);
    }
}

@media (max-width: 991px) {
    .zq_h2_choose-img-info-item h2 {
        font-size:28px;
    }
}

@media (max-width: 767px) {
    .zq_h2_choose-img-info-item h2 {
        font-size:22px;
    }
}

@media (max-width: 575px) {
    .zq_h2_choose-img-info-item h2 {
        font-size:18px;
    }
}

.boldtxt {
    color: var(--clr-theme-primary) !important;
}

.zq_h2_choose-img-info-item span {
    display: block;
    color: var(--clr-common-black);
    font-size: 18px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: -1px;
}

@media (max-width: 1199px) {
    .zq_h2_choose-img-info-item span {
        font-size:16px;
    }
}

@media (max-width: 991px) {
    .zq_h2_choose-img-info-item span {
        font-size:18px;
    }
}

@media (max-width: 767px) {
    .zq_h2_choose-img-info-item span {
        font-size:16px;
    }
}

@media (max-width: 575px) {
    .zq_h2_choose-img-info-item span {
        font-size:18px;
    }
}

.zq_h2_choose-content {
    width: 100%;
}

.zq_h2_choose-content .accordion-item {
    width: 100%;
    overflow: hidden;
    background: transparent;
    border-radius: 8px;
    border: 1px solid rgba(138,241,53,0.1);
}

.zq_h2_choose-content .accordion-button {
    position: relative;
    cursor: pointer;
    box-shadow: none;
    background: transparent;
    border: 1px solid transparent;
    border-bottom: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: var(--clr-body-heading);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
    border-radius: 8px 8px 0 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 23px 40px 24px 20px;
}

@media (max-width: 1199px) {
    .zq_h2_choose-content .accordion-button {
        font-size:22px;
    }
}

@media (max-width: 480px) {
    .zq_h2_choose-content .accordion-button {
        font-size:20px;
    }
}

.zq_h2_choose-content .accordion-button span {
    color: var(--clr-theme-primary);
}

.zq_h2_choose-content .accordion-button::after {
    display: none;
}

.zq_h2_choose-content .accordion-button::before {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
}

@media (max-width: 575px) {
    .zq_h2_choose-content .accordion-button::before {
        right:20px;
    }
}

.zq_h2_choose-content .accordion-button:not(.collapsed) {
    background-color: var(--clr-common-lightBlack);
    padding-bottom: 17px;
    border: 1px solid var(--clr-theme-primary);
    border-bottom: 0;
}

.zq_h2_choose-content .accordion-button:not(.collapsed)::before {
    color: var(--clr-theme-primary);
    content: "\f106";
}

.zq_h2_choose-content .accordion-body {
    padding: 10px 20px;
    background: var(--clr-common-lightBlack);
    border: 1px solid var(--clr-theme-primary);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

@media (max-width: 1199px) {
    .zq_h2_choose-content .accordion-body {
        padding:10px 20px;
    }
}

@media (max-width: 480px) {
    .zq_h2_choose-content .accordion-body {
        padding:10px 20px;
    }
}

.zq_h2_choose-content .accordion-body p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.innerPanel {
    position: relative;
    width: 100%;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

ul.feature-list {
    padding-left: 20px;
    position: relative;
}

ul.feature-list li {
    position: relative;
    width: 100%;
    color: rgba(255,255,255,0.7);
}

ul.feature-list li:before {
    content: url(../webImages/favicon.webp);
    object-fit: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    left: -20px;
    top: 0;
    transform: translateY(10%);
}

.accordion_social {
    display: flex;
    position: relative;
    width: 100%;
    align-items: center;
    justify-content: start;
    gap: 10px;
    flex-wrap: wrap;
}

.accordion_social li {
    width: 40px;
    height: 40px;
    position: relative;
    display: grid;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(162,162,162);
    border-image: initial;
    border-radius: 50%;
    transition: 0.27s;
    place-items: center;
}

.zq_h2_choose-content .accordion-single {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.zq_h2_choose-content .accordion-body::-webkit-scrollbar {
    background-color: transparent;
    width: 7px;
}

.zq_h2_choose-content .accordion-body::-webkit-scrollbar-thumb {
    background: #441474;
}

@media (max-width: 480px) {
    .zq_h2_choose-content .accordion-single {
        flex-wrap:wrap;
    }
}

.zq_h2_choose-content .accordion-single-icon {
    width: 73px;
    height: 73px;
    flex-shrink: 0;
    border: 1px solid rgba(138,241,53,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zq_h2_choose-content .accordion-single-icon svg {
    color: var(--clr-theme-primary);
    width: 40px;
}

.zq_h3_choose-content-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.zq_h3_choose-content-item-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(138,241,53,0.1);
    flex-shrink: 0;
    border-radius: 50%;
}

.zq_h3_choose-content-item-icon svg {
    color: var(--clr-theme-primary);
    width: 30px;
}

.zq_h3_choose-content-item-info h4 {
    color: #575757;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 13px;
}

.zq_h3_choose-content-item-info p {
    color: rgba(0,0,0,0.7);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.zq_h3_choose-content-bottom {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.zq_h3_choose-content-bottom a {
    flex-shrink: 0;
}

.zq_h3_choose-content-admin {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.zq_h3_choose-content-admin img {
    flex-shrink: 0;
}

.zq_h3_choose-content-admin h4 {
    color: #575757;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.7px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.zq_h3_choose-content-admin h4 span {
    display: block;
    color: #333;
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

.zq_h3_choose-img {
    position: relative;
    z-index: 1;
    padding: 40px;
}

.zq_h3_choose-img-inner {
    border-radius: 8px;
    border-radius: 31% 69% 58% 42% / 30% 44% 56% 70%;
    border-width: 10px 10px 0 0;
    border-style: solid;
    border-color: #575757;
    animation: morph 3s reverse infinite;
    overflow: hidden;
}

.canvas.particles-js-canvas-el {
    filter: brightness(100);
}

.themeChange {
    position: fixed;
    right: 0;
    top: 50%;
    transform: rotate(-90deg);
    z-index: 999;
}

.switch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 64px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    transition: 0.4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    border-radius: 20px;
    right: 2px;
    bottom: 2px;
    z-index: 2;
    background-color: var(--clr-theme-primary);
    transition: 0.4s;
}

.sun svg {
    position: absolute;
    top: 6px;
    left: 36px;
    z-index: 1;
    width: 24px;
    height: 24px;
}

.moon svg {
    fill: #73c0fc;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1;
    width: 24px;
    height: 24px;
}

.sun svg {
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.moon svg {
    animation: tilt 5s linear infinite;
}

@keyframes tilt {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.input:checked+.slider {
    background-color: #73c0fc;
}

.input:focus+.slider {
    box-shadow: 0 0 1px #73c0fc;
}

.input:checked+.slider:before {
    transform: translateX(-30px);
}

.zq_h3_choose-img-shape-1 {
    position: absolute;
    left: -15px;
    bottom: 0;
    z-index: 1;
    border-width: 8px 8px 0 0;
    border-style: solid;
    border-color: #575757;
    width: 300px;
    height: 300px;
    object-fit: cover;
    left: 0;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    overflow: hidden;
    animation: morph 3s linear infinite;
}

@keyframes morph {
    0%,100% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    }

    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}

.zq_h3_choose-img-shape-2 {
    position: absolute;
    right: 30px;
    bottom: 70px;
}

@media (max-width: 1199px) {
    .zq_h3_choose-img.ml-45 {
        margin-left:20px;
    }
}

@media (max-width: 991px) {
    .zq_h3_choose-img.ml-45 {
        margin-left:0;
    }
}

@media (max-width: 1199px) {
    .zq_h3_choose_2-img.mr-75 {
        margin-right:30px;
    }
}

@media (max-width: 991px) {
    .zq_h3_choose_2-img.mr-75 {
        margin-right:0;
    }
}

.zq_h3_choose_2-content {
    display: flex;
    align-items: center;
    margin-bottom: 45px;
    gap: 115px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .zq_h3_choose_2-content {
        gap:65px;
    }
}

@media (max-width: 480px) {
    .zq_h3_choose_2-content {
        flex-wrap:wrap;
    }
}

.zq_h3_choose_2-content::before {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    content: "";
    width: 1px;
    height: 86px;
    border-radius: 4px;
    background: linear-gradient(to bottom,rgb(138,241,53),rgb(80,139,31));
}

@media (max-width: 1199px) {
    .zq_h3_choose_2-content::before {
        right:52%;
    }
}

@media (max-width: 480px) {
    .zq_h3_choose_2-content::before {
        width:100%;
        height: 1px;
        right: 0;
        transform: translateY(-50%);
    }
}

.zq_h3_choose_2-content-item h2 {
    color: var(--clr-theme-primary);
    font-size: 44px;
    font-weight: 500;
    line-height: 54px;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.zq_h3_choose_2-content-item p {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.zq_h4_choose-img img {
    width: 100%;
}

.zq_h4_choose-wrap {
    padding-top: 95px;
    padding-bottom: 100px;
}

.zq_h4_choose-content-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 480px) {
    .zq_h4_choose-content-item {
        flex-wrap:wrap;
    }
}

.zq_h4_choose-content-item-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border: 1px solid rgba(138,241,53,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h4_choose-content-item-icon svg {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: var(--clr-theme-primary);
    width: 38px;
}

.zq_h4_choose-content-item-info h4 {
    color: rgb(255,255,255);
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 7px;
}

.zq_h4_choose-content-item-info p {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .zq_h4_choose-content-item-info p br {
        display:none;
    }
}

.zq_h4_choose-right {
    margin-left: auto;
    width: 550px;
    flex-shrink: 0;
    display: flex;
    gap: 30px;
    max-height: 800px;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 1px 0;
}

.zq_h3_hero-i-bg-logo {
    width: 100%;
    max-width: max-content;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 0;
    opacity: 0.3;
}

.floating_img {
    position: absolute;
    right: 0;
    height: 100%;
    opacity: 0.5;
}

.zq_footer-widget {
    position: relative;
    z-index: 1;
}

@media (max-width: 1399px) {
    .zq_h4_choose-right {
        width:540px;
    }
}

@media (max-width: 1199px) {
    .zq_h4_choose-right {
        width:450px;
    }
}

.zq_h4_choose-right::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg,rgb(42,71,65) 0%,rgba(42,71,65,0) 50.75%,rgb(42,71,65) 100%);
    z-index: 9;
}

.zq_h4_choose-right .inner-item {
    position: relative;
    z-index: 1;
}

.h4_choose-active .swiper-wrapper,.h4_choose-active-2 .swiper-wrapper {
    height: 780px;
    transition-timing-function: linear;
}

@media (max-width: 1199px) {
    .h4_choose-active .swiper-wrapper,.h4_choose-active-2 .swiper-wrapper {
        height:645px;
    }
}

.zq_h4_choose-content-item:hover .zq_h4_choose-content-item-icon {
    background-color: #8af135;
    border-color: transparent;
}

.zq_h4_choose-content-item:hover .zq_h4_choose-content-item-icon svg {
    color: #000;
}

.zq_h4_choose_2-content-item {
    background: #184239;
    border-radius: 8px;
    padding: 30px 30px 43px;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    position: relative;
}

.zq_h4_choose_2-content-item:hover {
    border-color: #8af135;
    background-color: #2a4741;
}

.zq_h4_choose_2-content-item h2 {
    color: #8af135;
    font-size: 68px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .zq_h4_choose_2-content-item h2 {
        font-size:58px;
    }
}

.zq_h4_choose_2-content-item p {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}

.zq_price_item {
    background: #33574f;
    padding: 35px 30px 40px;
    border-radius: 8px;
}

@media (max-width: 480px) {
    .zq_price_item {
        padding-left:20px;
        padding-right: 20px;
    }
}

.zq_price-category p {
    color: var(--clr-body-heading);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 11px;
}

.zq_price-amount {
    display: flex;
    align-items: end;
    margin-bottom: 13px;
}

.zq_price-amount h2 {
    color: var(--clr-body-heading);
    font-size: 72px;
    font-weight: 600;
    line-height: 1;
    position: relative;
    padding-left: 15px;
    margin-bottom: 0;
}

.zq_price-amount h2 span {
    color: #bbb;
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    position: absolute;
    left: 0;
    top: 10px;
    line-height: 1;
}

.zq_price-amount span {
    color: #bbb;
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
}

.zq_price-text {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 35px;
}

.zq_price-feature {
    background: #223a35;
    padding: 30px 30px 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.zq_price-feature ul {
    list-style: none;
}

.zq_price-feature ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgb(184,184,184);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 20px;
}

.zq_price-feature ul li:last-child {
    margin-bottom: 0;
}

.zq_price-feature ul li i {
    font-size: 18px;
    color: #fff;
}

.zq_price-btn a {
    border-radius: 32px;
    box-shadow: 0 16px 30px 0 rgba(1,6,20,0.1);
    background: rgb(138,241,53);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    color: #000;
    gap: 5px;
    color: rgb(0,0,0);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-transform: capitalize;
}

.zq_price-btn a:hover {
    background-color: var(--clr-common-white);
    color: #000;
}

.zq_h2_price_item {
    background: #33574f;
    padding: 30px 30px 40px;
    border-radius: 8px;
}

.zq_h2_price-category p {
    color: var(--clr-theme-primary);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .zq_h2_price-category p {
        font-size:28px;
    }
}

.zq_h2_price-amount {
    display: flex;
    justify-content: center;
    align-items: end;
    margin-bottom: 34px;
}

.zq_h2_price-amount h2 {
    color: var(--clr-body-heading);
    font-size: 62px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .zq_h2_price-amount h2 {
        font-size:55px;
    }
}

.zq_h2_price-amount span {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
}

.zq_h2_price-text {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    margin-bottom: 32px;
}

.zq_h2_price-feature {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 65px;
    padding-top: 30px;
}

.zq_h2_price-feature ul {
    list-style: none;
}

.zq_h2_price-feature ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgb(184,184,184);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 20px;
}

.zq_h2_price-feature ul li:last-child {
    margin-bottom: 0;
}

.zq_h2_price-feature ul li i {
    font-size: 18px;
    color: var(--clr-theme-primary);
}

.zq_h2_price-btn {
    display: flex;
    justify-content: center;
}

.zq_h2_price-btn a {
    border-radius: 8px;
    box-shadow: 0 16px 30px 0 rgba(1,6,20,0.1);
    background: rgb(138,241,53);
    max-width: 260px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    color: #000;
    gap: 10px;
    color: rgb(0,0,0);
    font-family: "Inter",sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-transform: capitalize;
}

.zq_h2_price-btn a:hover {
    background-color: var(--clr-common-white);
    color: #000;
}

.zq_h3_price_item {
    background: #33574f;
    padding: 40px 50px 50px;
    border-radius: 8px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

@media (max-width: 1199px) {
    .zq_h3_price_item {
        padding:40px 30px 50px;
    }
}

@media (max-width: 480px) {
    .zq_h3_price_item {
        padding:40px 25px 50px;
    }
}

.zq_h3_price-category p {
    color: var(--clr-theme-primary);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

@media (max-width: 480px) {
    .zq_h3_price-category p {
        font-size:28px;
    }
}

.zq_h3_price-amount {
    display: flex;
    justify-content: center;
    align-items: end;
    margin-bottom: 34px;
}

.zq_h3_price-amount h2 {
    color: var(--clr-body-heading);
    font-size: 62px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

@media (max-width: 480px) {
    .zq_h3_price-amount h2 {
        font-size:50px;
    }
}

.zq_h3_price-amount span {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

@media (max-width: 480px) {
    .zq_h3_price-amount span {
        font-size:16px;
    }
}

.zq_h3_price-text {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    margin-bottom: 32px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

@media (max-width: 480px) {
    .zq_h3_price-text {
        font-size:16px;
    }
}

.zq_h3_price-feature {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 40px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

@media (max-width: 575px) {
    .zq_h3_price-feature {
        flex-wrap:wrap;
    }
}

.zq_h3_price-feature ul {
    list-style: none;
}

.zq_h3_price-feature ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b8b8b8;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 29px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h3_price-feature ul li:last-child {
    margin-bottom: 0;
}

.zq_h3_price-feature ul li i {
    font-size: 12px;
    color: #b3b3b3;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h3_price-btn {
    display: flex;
    justify-content: center;
}

.zq_h3_price-btn a {
    border-radius: 60px;
    box-shadow: 0 16px 30px 0 rgba(1,6,20,0.1);
    background: rgb(138,241,53);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 65px;
    color: #000;
    gap: 10px;
    color: rgb(0,0,0);
    font-family: "Inter",sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-transform: capitalize;
}

@media (max-width: 480px) {
    .zq_h3_price-btn a {
        padding:0 40px;
        width: 100%;
    }
}

.zq_h3_price-btn a:hover {
    background-color: var(--clr-common-white);
    color: #000;
}

.zq_h3_price_item:hover {
    background-color: var(--clr-theme-primary);
}

.zq_h3_price_item:hover .zq_h3_price-category p {
    color: var(--clr-common-black);
}

.zq_h3_price_item:hover .zq_h3_price-amount h2 {
    color: var(--clr-common-black);
}

.zq_h3_price_item:hover .zq_h3_price-amount span {
    color: rgba(15,41,35,0.7);
}

.zq_h3_price_item:hover .zq_h3_price-text {
    color: var(--clr-common-black);
}

.zq_h3_price_item:hover .zq_h3_price-feature {
    border-color: rgba(15,41,35,0.5);
}

.zq_h3_price_item:hover .zq_h3_price-feature ul li {
    color: var(--clr-common-black);
}

.zq_h3_price_item:hover .zq_h3_price-feature ul li i {
    color: var(--clr-common-black);
}

.zq_h3_price_item:hover .zq_h3_price-btn a {
    background-color: #fff;
    color: #000;
}

.zq_h4_price_item {
    background: #33574f;
    padding: 30px 30px 40px;
    border-radius: 8px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h4_price-category p {
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: rgb(138,241,53);
    font-size: 24px;
    font-weight: 600;
}

.zq_h4_price-amount {
    display: flex;
    justify-content: flex-start;
    align-items: end;
    margin-bottom: 34px;
}

.zq_h4_price-amount h2 {
    color: var(--clr-body-heading);
    font-size: 62px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

@media (max-width: 480px) {
    .zq_h4_price-amount h2 {
        font-size:50px;
    }
}

.zq_h4_price-amount span {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h4_price-text {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 32px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h4_price-btn {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #8af135;
    border-radius: 50px;
    color: #8af135;
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.zq_h4_price-feature {
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h4_price-feature ul {
    list-style: none;
}

.zq_h4_price-feature ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #b8b8b8;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 29px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h4_price-feature ul li:last-child {
    margin-bottom: 0;
}

.zq_h4_price-feature ul li i {
    font-size: 12px;
    color: #b3b3b3;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h4_price_item:hover {
    background-color: var(--clr-theme-primary);
}

.zq_h4_price_item:hover .zq_h4_price-category p {
    color: var(--clr-common-black);
}

.zq_h4_price_item:hover .zq_h4_price-amount h2 {
    color: var(--clr-common-black);
}

.zq_h4_price_item:hover .zq_h4_price-amount span {
    color: rgba(15,41,35,0.7);
}

.zq_h4_price_item:hover .zq_h4_price-text {
    color: var(--clr-common-black);
}

.zq_h4_price_item:hover .zq_h4_price-feature {
    border-color: rgba(15,41,35,0.5);
}

.zq_h4_price_item:hover .zq_h4_price-feature ul li {
    color: var(--clr-common-black);
}

.zq_h4_price_item:hover .zq_h4_price-feature ul li i {
    color: var(--clr-common-black);
}

.zq_h4_price_item:hover .zq_h4_price-btn {
    background-color: var(--clr-common-black);
    color: #fff;
    border-color: transparent;
}

.zq_h4_price-tab {
    display: flex;
    justify-content: end;
}

@media (max-width: 991px) {
    .zq_h4_price-tab {
        justify-content:flex-start;
    }
}

.zq_h4_price-tab .nav-tabs {
    border: 1px solid rgba(138,241,53,0.3);
    border-radius: 58px;
    padding: 6px;
}

.zq_h4_price-tab .nav-tabs .nav-link {
    height: 44px;
    border-radius: 45px;
    border: 0;
    padding: 0 22px;
    color: rgb(138,241,53);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.zq_h4_price-tab .nav-tabs .nav-link.active {
    background: #8af135;
    color: rgb(0,0,0);
}

.zq_service-item {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 50px 30px 45px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_service-item:hover {
    border-color: var(--clr-theme-primary);
    background: var(--clr-common-lightBlack);
}

.zq_service-item-icon svg {
    color: var(--clr-theme-primary);
    width: 40px;
}

.zq_service-item-title {
    color: rgb(255,255,255);
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 30px;
}

.zq_service-item-title:hover a {
    color: var(--clr-theme-primary);
}

.zq_service-item p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 38px;
}

.zq_service-item-btn {
    color: var(--clr-body-heading);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 5px;
}

.zq_service-item-btn:hover {
    color: var(--clr-theme-primary);
}

.zq_service-item-icon {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_service-item-icon svg {
    color: var(--clr-theme-primary);
    max-width: 35px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_service-item:hover .zq_service-item-icon {
    background-color: var(--clr-theme-primary);
    border-color: var(--clr-theme-primary);
}

.zq_service-item:hover .zq_service-item-icon svg {
    color: #000;
}

.zq_h2_service-item {
    background: var(--clr-common-lightBlack);
    padding: 20px 25px 22px;
    border-radius: 8px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h2_service-item-icon {
    margin-bottom: 22px;
}

.zq_h2_service-item-icon svg {
    color: var(--clr-theme-primary);
    width: 40px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h2_service-item-content h4 {
    color: var(--clr-body-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.zq_h2_service-item-content p {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}

.zq_h2_service-item:hover {
    background-color: var(--clr-theme-primary);
}

.zq_h2_service-item:hover .zq_h2_service-item-icon svg {
    color: #000;
}

.zq_h2_service-item:hover .zq_h2_service-item-content h4 {
    color: var(--clr-common-black);
}

.zq_h2_service-item:hover .zq_h2_service-item-content p {
    color: var(--clr-common-black);
}

.zq_h3_service-item-main {
    transform: translateY(43px);
    border-radius: 8px;
    overflow: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h3_service-item {
    background: var(--clr-common-lightBlack);
    padding: 45px 30px 42px;
    padding-bottom: 85px;
    border-radius: 8px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    position: relative;
    z-index: 9;
}

.zq_h3_service-item-number {
    position: absolute;
    right: 30px;
    top: 50px;
    box-sizing: border-box;
    border-left: 1px solid rgb(138,241,53);
    border-right: 1px solid rgb(138,241,53);
    border-radius: 50px;
    display: inline-flex;
    height: 26px;
    align-items: center;
    padding: 0 16px;
    color: rgb(138,241,53);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -0.6px;
    background: rgba(138,241,53,0.1);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h3_service-item-icon {
    margin-bottom: 50px;
}

.zq_h3_service-item-icon svg {
    color: var(--clr-theme-primary);
    width: 40px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h3_service-item-icon img {
    width: 65px;
    object-fit: contain;
    transition: all 0.3s linear 0s;
}

.zq_h3_service-item-main:hover .zq_h3_service-item-icon img {
    filter: brightness(100) invert(1);
}

.zq_h3_service-item-content h4 {
    color: var(--clr-body-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 17px;
}

.zq_h3_service-item-content p {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}

.zq_h3_service-item-content-btn {
    margin-top: 15px;
    color: var(--clr-common-black);
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.zq_h3_service-item-content-btn svg {
    color: var(--clr-common-black);
}

.zq_h3_service-item-content-btn:hover {
    color: var(--clr-common-black);
}

.zq_h3_service-item-main:hover {
    transform: translateY(0);
}

.zq_h3_service-item:hover {
    background-color: var(--clr-theme-primary);
}

.zq_h3_service-item:hover .zq_h3_service-item-number {
    color: #000;
    border-color: #000;
    background-color: rgba(0,0,0,0.1);
}

.zq_h3_service-item:hover .zq_h3_service-item-icon svg {
    color: #000;
}

.zq_h3_service-item:hover .zq_h3_service-item-content h4 {
    color: var(--clr-common-black);
}

.zq_h3_service-item:hover .zq_h3_service-item-content p {
    color: var(--clr-common-black);
}

.zq_h3_service-item:hover .zq_h3_service-item-content-btn {
    opacity: 1;
    visibility: visible;
}

.zq_h4_service-wrap {
    position: relative;
    z-index: 1;
    height: 100%;
}

.zq_h4_service-wrap::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    content: "";
    height: 100%;
    width: 12px;
    background-image: linear-gradient(180deg,rgb(15,41,35),rgba(15,41,35,0) 48.5%,rgb(15,41,35) 100%);
}

@media (max-width: 767px) {
    .zq_h4_service-wrap::after {
        display:none;
    }
}

.zq_h4_service-wrap::before {
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 0;
    content: "";
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    border-left: 4px dashed #8af135;
}

@media (max-width: 767px) {
    .zq_h4_service-wrap::before {
        display:none;
    }
}

.zq_h4_service-item {
    display: flex;
    align-items: center;
    gap: 190px;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .zq_h4_service-item {
        gap:120px;
    }
}

@media (max-width: 767px) {
    .zq_h4_service-item {
        flex-wrap:wrap;
        gap: 35px;
    }
}

.zq_h4_service-item::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    content: "";
    width: 75px;
    height: 115px;
    background-color: var(--clr-common-black);
}

@media (max-width: 767px) {
    .zq_h4_service-item::after {
        display:none;
    }
}

.zq_h4_service-item-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 75px;
    height: 75px;
    box-sizing: border-box;
    border: 4px solid rgb(138,241,53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(138,241,53);
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    background-color: var(--clr-common-black);
    z-index: 2;
}

@media (max-width: 991px) {
    .zq_h4_service-item-number {
        width:55px;
        height: 55px;
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .zq_h4_service-item-number {
        display:none;
    }
}

.zq_h4_service-item-img {
    max-width: 562px;
    width: 100%;
}

.zq_h4_service-item-img img {
    width: 100%;
    border-radius: 8px;
}

.zq_h4_service-item-content {
    max-width: 562px;
    width: 100%;
}

.zq_h4_service-item-content h3 {
    color: rgb(255,255,255);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.zq_h4_service-item-content p {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}

@media (max-width: 1399px) {
    .zq_h4_service-item-content p br {
        display:none;
    }
}

.zq_h5_service-item {
    background: var(--clr-common-lightBlack);
    padding: 37px 30px 32px;
    border-radius: 8px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    position: relative;
    z-index: 9;
    border: 1px solid transparent;
}

@media (max-width: 575px) {
    .zq_h5_service-item {
        padding:37px 25px 32px;
    }
}

.zq_h5_service-item-icon {
    margin-bottom: 53px;
}

.zq_h5_service-item-icon svg {
    color: var(--clr-theme-primary);
    width: 40px;
    height: 45px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h5_service-item-content h4 {
    color: var(--clr-body-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 17px;
    height: 58px;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h5_service-item-content h4:hover a {
    color: var(--clr-theme-primary);
}

.zq_h5_service-item-content p {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
    height: 100%;
    max-height: 112px;
    min-height: 112px;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h5_service-item-content-btn {
    margin-top: 30px;
    color: var(--clr-common-white);
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.zq_h5_service-item:hover {
    box-sizing: border-box;
    border-color: #8af135;
    border-radius: 8px;
    box-shadow: 0 0 50px 0 rgba(138,241,53,0.3);
}

.zq_h5_service-item:hover .zq_h5_service-item-content-btn {
    color: var(--clr-theme-primary);
}

.zq_inner_service-item-2,.zq_h5_service-item:hover {
    box-shadow: none;
}

.zq_h5_service_2-item {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 50px 30px 45px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h5_service_2-item:hover {
    border-color: var(--clr-theme-primary);
    background: var(--clr-common-lightBlack);
}

.zq_h5_service_2-item-icon {
    width: 80px;
    height: 80px;
    background-color: #8af135;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h5_service_2-item-icon svg {
    color: rgb(15,41,35);
    max-width: 35px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h5_service_2-item-title {
    color: rgb(255,255,255);
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 30px;
}

.zq_h5_service_2-item-title:hover a {
    color: var(--clr-theme-primary);
}

.zq_h5_service_2-item p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 38px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h5_service_2-item-btn {
    color: var(--clr-body-heading);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 5px;
}

.zq_h5_service_2-item-btn:hover {
    color: var(--clr-theme-primary);
}

.zq_h5_service_2-item:hover {
    background-color: #8af135;
}

.zq_h5_service_2-item:hover .zq_h5_service_2-item-icon {
    background-color: rgb(15,41,35);
    border-color: rgb(15,41,35);
}

.zq_h5_service_2-item:hover .zq_h5_service_2-item-icon svg {
    color: #fff;
}

.zq_h5_service_2-item:hover p {
    color: rgb(15,41,35);
}

.zq_h5_service_2-item:hover .zq_h5_service_2-item-title {
    color: rgb(15,41,35);
}

.zq_h5_service_2-item:hover .zq_h5_service_2-item-btn {
    color: rgb(15,41,35);
}

.zq_inner_service-item {
    background-color: #33574f;
    border-radius: 8px;
    padding: 50px 40px 45px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    text-align: center;
}

@media (max-width: 480px) {
    .zq_inner_service-item {
        padding:50px 30px 45px;
    }
}

.zq_inner_service-item:hover {
    background: var(--clr-common-lightBlack);
}

.zq_inner_service-item-icon {
    width: 80px;
    height: 80px;
    background-color: #8af135;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_inner_service-item-icon svg {
    color: rgb(15,41,35);
    max-width: 35px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_inner_service-item-title {
    color: rgb(255,255,255);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 22px;
}

.zq_inner_service-item p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_inner_service-item-btn {
    color: var(--clr-body-heading);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 5px;
}

.zq_inner_service-item-btn:hover {
    color: var(--clr-theme-primary);
}

.zq_inner_service-btn {
    display: flex;
    justify-content: center;
}

.zq_inner_service-btn a {
    display: flex;
    align-items: center;
    height: 55px;
    border: 1px solid #8af135;
    padding: 0 35px;
    border-radius: 60px;
    color: rgb(255,255,255);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.zq_inner_service-btn a:hover {
    background-color: var(--clr-theme-primary);
    color: var(--clr-common-black);
}

.zq_inner_service-item:hover {
    background-color: #8af135;
}

.zq_inner_service-item:hover .zq_inner_service-item-icon {
    background-color: #000;
}

.zq_inner_service-item:hover .zq_inner_service-item-icon svg {
    color: #fff;
}

.zq_inner_service-item:hover p {
    color: rgba(15,41,35,0.7);
}

.zq_inner_service-item:hover .zq_inner_service-item-title {
    color: rgb(15,41,35);
}

.zq_service_inner_2-item {
    border-radius: 8px;
    background: rgb(42,71,65);
    padding: 40px 30px 33px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_service_inner_2-item-icon {
    height: 36px;
    margin-bottom: 22px;
}

.zq_service_inner_2-item-icon svg {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: rgb(138,241,53);
}

.zq_service_inner_2-item h4 {
    color: rgb(255,255,255);
    font-family: "Outfit",sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin-bottom: 20px;
}

.zq_service_details-img {
    width: 100%;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.zq_service_inner_2-item p {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
    max-height: 80px;
    min-height: 50px;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zq_service_inner_2-item:hover {
    background-color: var(--clr-theme-primary);
}

.zq_service_inner_2-item:hover .zq_service_inner_2-item-icon svg {
    color: rgb(15,41,35);
}

.zq_service_inner_2-item:hover h4 {
    color: rgb(15,41,35);
}

.zq_service_inner_2-item:hover p {
    color: rgba(15,41,35,0.7);
}

.zq_service_details-img img {
    width: 100%;
    border-radius: 16px;
}

.zq_service_details_2-img {
    position: relative;
    z-index: 1;
}

.zq_service_details_2-img img {
    border-radius: 8px;
    width: 100%;
}

.zq_service_details_2-img a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 96px;
    height: 96px;
    background: var(--clr-common-black);
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-theme-primary);
}

.zq_service_details_2-img a::after,.zq_service_details_2-img a::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.4);
    animation-name: popupBtn;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.zq_service_details_2-img a::before {
    animation-delay: 1s;
}

.zq_service_details_2-list ul {
    list-style: none;
}

.zq_service_details_2-list ul li {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.zq_service_details_2-list ul li:last-child {
    margin-bottom: 0;
}

.zq_service_details_2-list ul li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--clr-theme-primary);
    color: var(--clr-common-black);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 3px;
}

.zq_testimonial-area {
    background-color: var(--clr-common-lightBlack);
    position: relative;
    z-index: 1;
}

.zq_testimonial-area::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 620px;
    height: 100%;
    background-color: #33574f;
    z-index: -1;
}

@media (max-width: 991px) {
    .zq_testimonial-area::before {
        width:40%;
    }
}

@media (max-width: 767px) {
    .zq_testimonial-area::before {
        display:none;
    }
}

.zq_testimonial-form {
    background: var(--clr-theme-primary);
    padding: 40px 50px 50px;
    border-radius: 8px;
}

@media (max-width: 1399px) {
    .zq_testimonial-form {
        margin-right:0;
    }
}

@media (max-width: 767px) {
    .zq_testimonial-form {
        padding-left:30px;
        padding-right: 30px;
    }
}

.zq_testimonial-form-title {
    color: rgb(29,29,29);
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .zq_testimonial-form-title {
        font-size:40px;
    }
}

@media (max-width: 480px) {
    .zq_testimonial-form-title {
        font-size:36px;
    }
}

.zq_testimonial-form input,.zq_testimonial-form textarea {
    height: 64px;
    width: 100%;
    background: transparent;
    box-sizing: border-box;
    border: 2px solid rgb(15,41,35);
    border-radius: 8px;
    margin-bottom: 20px;
    color: #000;
    font-family: Inter;
    font-size: 16px;
    line-height: 52px;
    font-weight: 400;
    padding: 0 20px;
}

.zq_testimonial-form input::-webkit-input-placeholder,.zq_testimonial-form textarea::-webkit-input-placeholder {
    color: #4f4f4f;
    font-size: 16px;
}

.zq_testimonial-form input:-moz-placeholder,.zq_testimonial-form textarea:-moz-placeholder {
    color: #4f4f4f;
    font-size: 16px;
}

.zq_testimonial-form input::-moz-placeholder,.zq_testimonial-form textarea::-moz-placeholder {
    color: #4f4f4f;
    font-size: 16px;
}

.zq_testimonial-form input:-ms-input-placeholder,.zq_testimonial-form textarea:-ms-input-placeholder {
    color: #4f4f4f;
    font-size: 16px;
}

.zq_testimonial-form textarea {
    height: 200px;
}

.zq_testimonial-btn {
    border-radius: 60px;
    font-family: Inter;
    background-color: #fff;
    color: var(--clr-common-black);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    height: 64px;
    display: inline-flex;
    gap: 5px;
    align-items: center;
    padding: 0 35px;
    border: none;
}

.zq_testimonial-btn:hover {
    background: var(--clr-common-black);
    color: var(--clr-theme-primary);
}

.zq_testimonial-item {
    position: relative;
    z-index: 1;
}

.zq_testimonial-item-rating {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 37px;
}

.zq_testimonial-item-rating li {
    color: var(--clr-theme-primary);
    font-size: 18px;
}

.zq_testimonial-item p {
    color: rgba(255,255,255,0.7);
    font-size: 28px;
    font-weight: 400;
    line-height: 38px;
    margin-bottom: 30px;
}

.zq_testimonial-admin {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 35px;
    gap: 20px;
}

.zq_testimonial-admin-img {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.zq_testimonial-admin-img-inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.zq_testimonial-admin-img-shape {
    position: absolute;
    left: -3px;
    top: -3px;
}

.zq_testimonial-admin-info h3 {
    color: rgb(255,255,255);
    font-family: Outfit;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.zq_testimonial-admin-info span {
    color: rgb(163,163,163);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.zq_testimonial-quote {
    position: absolute;
    right: 0;
    bottom: 0;
}

.zq_testimonial-quote svg {
    color: rgba(255,255,255,0.1);
    width: 125px;
}

@media (max-width: 1199px) {
    .zq_testimonial-wrap {
        margin-left:0;
    }
}

@media (max-width: 480px) {
    .zq_h2_testimonial-area .pl-30.pr-30 {
        padding-left:15px;
        padding-right: 15px;
    }
}

.zq_h2_testimonial-bg {
    background-color: #184239;
}

.zq_h2_testimonial-item {
    background: #33574f;
    padding: 85px 20px 0;
    border-radius: 8px;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    cursor: pointer;
    text-align: center;
    position: relative;
}

.zq_h2_testimonial-item:hover {
    border-color: var(--clr-theme-primary);
}

.zq_h2_testimonial-item-rating {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 18px;
}

.zq_h2_testimonial-item-rating li {
    color: #ffd600;
}

.zq_h2_testimonial-item p {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 28px;
}

.zq_h2_testimonial-admin {
    text-align: center;
    gap: 12px;
}

.zq_h2_testimonial-admin img {
    height: 160px;
    width: 160px;
    margin: 0 auto;
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid #184239;
    border-radius: 50%;
}

.zq_h2_testimonial-admin-info h5 {
    color: var(--clr-body-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.zq_h2_testimonial-admin-info {
    margin-bottom: 15px;
}

.zq_h2_testimonial-admin-info span {
    color: rgba(255,255,255,0.5);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: block;
    color: var(--clr-theme-primary);
}

.zq_h3_testimonial-item {
    text-align: center;
}

.zq_h3_testimonial-item p {
    color: rgba(255,255,255,0.7);
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
}

@media (max-width: 575px) {
    .zq_h3_testimonial-item p {
        font-size:20px;
    }
}

@media (max-width: 480px) {
    .zq_h3_testimonial-item p {
        font-size:18px;
    }
}

.zq_h3_testimonial-item-admin h4 {
    color: rgb(255,255,255);
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -0.6px;
    margin-bottom: 5px;
}

.zq_h3_testimonial-item-admin span {
    color: rgba(255,255,255,0.5);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: block;
}

.zq_h3_testimonial-img {
    margin-bottom: 30px;
    text-align: center;
}

.h3_testimonial-wrap {
    position: relative;
    z-index: 1;
}

.h3_testimonial-wrap .h3_testimonial-nav {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: 1px solid rgba(138,241,53,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: var(--clr-theme-primary);
    z-index: 99;
}

.h3_testimonial-wrap .h3_testimonial-nav:hover {
    background: var(--clr-theme-primary);
    color: var(--clr-common-black);
}

.h3_testimonial-wrap .h3_testimonial-next {
    left: auto;
    right: 0;
}

.h3_testimonial-active.swiper {
    max-width: 865px;
}

.h3_testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    position: relative;
    z-index: 1;
}

.h3_testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h3_testimonial-img-shape {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}

.h3_testimonial-thumbs {
    width: 330px;
}

@media (max-width: 480px) {
    .h3_testimonial-thumbs {
        max-width:215px;
    }
}

.h3_testimonial-thumbs .swiper-slide-thumb-active .h3_testimonial-img-shape {
    opacity: 1;
    visibility: visible;
}

.zq_h5_testimonial-wrap {
    max-width: 1760px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #184239;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.zq_h5_testimonial-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(../webImages/testimonials-bg.jpg);
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    animation: backgroundMove 200s linear infinite alternate;
    z-index: -1;
}

@keyframes backgroundMove {
    0% {
        background-position: 0 bottom;
    }

    50% {
        background-position: -3000px bottom;
    }

    100% {
        background-position: 0 bottom;
    }
}

.zq_h5_testimonial-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #184239f0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

@media (max-width: 575px) {
    .zq_h5_testimonial-wrap::before {
        display:none;
    }
}

@media (max-width: 575px) {
    .zq_h5_testimonial-wrap::after {
        display:none;
    }
}

.h5_testimonial-active {
    overflow: visible;
    margin-top: 100px;
}

@media (max-width: 575px) {
    .zq_h5_testimonial-wrap .h5_testimonial-active {
        margin-left:15px;
        margin-right: 15px;
    }
}

.zq_inner_testimonial-wrap {
    margin-left: -45px;
    margin-right: -45px;
}

@media (max-width: 767px) {
    .zq_inner_testimonial-wrap {
        margin-left:15px;
        margin-right: 15px;
    }
}

.swiper-wrapper.roll-slider {
    transition-timing-function: linear;
}

.zq_blog-item {
    position: relative;
    z-index: 1;
}

.zq_blog-item::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(0deg,rgb(73,128,28),rgba(15,41,35,0) 100%);
    opacity: 0.8;
}

.zq_blog-item-img {
    border-radius: 8px;
    overflow: hidden;
}

.zq_blog-item-img img {
    width: 100%;
}

.zq_blog-item-content {
    position: absolute;
    left: 40px;
    bottom: 40px;
}

@media (max-width: 480px) {
    .zq_blog-item-content {
        left:20px;
        bottom: 20px;
    }
}

.zq_blog-item-content-title {
    color: rgb(255,255,255);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 23px;
    letter-spacing: -1px;
}

@media (max-width: 480px) {
    .zq_blog-item-content-title {
        font-size:24px;
    }
}

.zq_blog-item-content-title:hover a {
    color: var(--clr-theme-primary);
}

.zq_blog-item-content-admin {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zq_blog-item-content-admin img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.zq_blog-item-content-admin span {
    display: block;
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 38px;
    color: #a6a6a6;
}

.zq_blog-item-content-admin span a {
    color: #fff;
}

.zq_blog-item-content-admin span:hover a {
    color: var(--clr-theme-primary);
}

.zq_blog-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.zq_blog-item-small {
    display: flex;
    align-items: center;
    gap: 20px;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    box-shadow: 0 16px 30px 0 rgba(1,6,20,0.1);
    padding: 10px;
}

@media (max-width: 575px) {
    .zq_blog-item-small {
        flex-wrap:wrap;
    }
}

.zq_blog-item-small-img {
    max-width: 198px;
    width: 100%;
}

@media (max-width: 575px) {
    .zq_blog-item-small-img {
        max-width:100%;
    }
}

.zq_blog-item-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.zq_blog-item-small-content-title {
    color: rgb(255,255,255);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
}

.zq_blog-item-small-content-title:hover a {
    color: var(--clr-theme-primary);
}

.zq_blog-item-small-content-admin {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zq_blog-item-small-content-admin img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.zq_blog-item-small-content-admin span {
    display: block;
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 38px;
    color: rgba(255,255,255,0.7);
}

.zq_blog-item-small-content-admin span a {
    color: rgba(255,255,255,0.4);
}

.zq_blog-item-small-content-admin span:hover a {
    color: var(--clr-theme-primary);
}

.zq_h2_blog-widget-title {
    color: var(--clr-body-heading);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
}

.zq_h2_blog-widget-item {
    display: flex;
    gap: 25px;
    align-items: center;
}

.zq_h2_blog-widget-item-info p {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 16px;
}

.zq_h2_blog-widget-item-info p:hover {
    color: var(--clr-theme-primary);
}

.zq_h2_blog-widget-item-info span {
    color: rgba(255,255,255,0.5);
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: block;
}

.zq_h2_blog-widget-item img {
    width: 115px;
    height: 127px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 10px;
}

.zq_h2_blog-widget ul {
    list-style: none;
}

.zq_h2_blog-widget ul li {
    margin-bottom: 22px;
}

.zq_h2_blog-widget ul li:last-child {
    margin-bottom: 0;
}

.zq_h2_blog-widget ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--clr-body-heading);
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.5px;
}

.zq_h2_blog-widget ul li a i {
    color: var(--clr-theme-primary);
    font-weight: 600;
    font-size: 20px;
}

.zq_h2_blog-item-big {
    position: relative;
    z-index: 1;
}

.zq_h2_blog-item-big-img {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 8px;
    min-height: 300px;
}

.zq_h2_blog-item-big-img::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 8px;
    background: linear-gradient(0deg,rgb(51,87,79),rgba(51,87,79,0) 100%);
    z-index: auto;
}

.zq_h2_blog-item-big-img img {
    height: 100%;
    width: 100%;
}

.zq_h2_blog-item-big-img-tag {
    position: absolute;
    left: 30px;
    top: 35px;
    background-color: var(--clr-theme-primary);
    height: 29px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 48px;
    color: rgb(15,41,35);
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.5px;
}

.zq_h2_blog-item-big-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    z-index: 5;
    padding: 0 30px 25px;
}

@media (max-width: 480px) {
    .zq_h2_blog-item-big-content {
        padding:0 25px 25px;
    }
}

.zq_h2_blog-item-big-content-title {
    color: rgb(255,255,255);
    font-family: Outfit;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .zq_h2_blog-item-big-content-title {
        font-size:25px;
    }
}

@media (max-width: 480px) {
    .zq_h2_blog-item-big-content-title {
        font-size:20px;
    }
}

.zq_h2_blog-item-big-content-title:hover a {
    color: var(--clr-theme-primary);
}

.zq_h2_blog-item-big-admin {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zq_h2_blog-item-big-admin img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
}

.zq_h2_blog-item-big-admin-info h5 {
    color: var(--clr-body-heading);
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 3px;
}

.zq_h2_blog-item-big-admin-info span {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    display: block;
}

.zq_h2_blog-item-img {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: -15px;
}

.zq_h2_blog-item-img img {
    width: 100%;
}

.zq_h2_blog-item-img a {
    position: relative;
    z-index: 1;
    display: block;
}

.zq_h2_blog-item-img a::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
    background: rgba(138,241,53,0.14);
}

.zq_h2_blog-item-content {
    border-radius: 8px;
    background: #184239;
    padding: 30px 30px 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 480px) {
    .zq_h2_blog-item-content {
        padding:30px 25px 30px;
    }
}

.zq_h2_blog-item-content-tag {
    background-color: var(--clr-theme-primary);
    height: 29px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 48px;
    color: rgb(15,41,35);
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.zq_h2_blog-item-content-title {
    color: var(--clr-body-heading);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.zq_h2_blog-item-content-title:hover a {
    color: var(--clr-theme-primary);
}

.zq_h2_blog-item-content-admin {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zq_h2_blog-item-content-admin img {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    flex-shrink: 0;
}

.zq_h2_blog-item-content-admin span {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 5px;
}

.zq_h2_blog-item-content-admin span:hover a {
    color: var(--clr-theme-primary);
}

.zq_h3_blog-item {
    display: flex;
    align-items: center;
    gap: 40px;
    border-top: 1px dashed rgba(255,255,255,0.2);
    margin-top: 30px;
    padding-top: 30px;
}

@media (max-width: 991px) {
    .zq_h3_blog-item {
        gap:25px;
    }
}

@media (max-width: 767px) {
    .zq_h3_blog-item {
        flex-wrap:wrap;
    }
}

.zq_h3_blog-item-img {
    max-width: 379px;
    width: 100%;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .zq_h3_blog-item-img {
        max-width:340px;
    }
}

@media (max-width: 767px) {
    .zq_h3_blog-item-img {
        max-width:100%;
    }
}

.zq_h3_blog-item-img img {
    width: 100%;
    border-radius: 8px;
}

.zq_h3_blog-item-content {
    position: relative;
    z-index: 1;
}

.zq_h3_blog-item-content-tag {
    background-color: var(--clr-theme-primary);
    height: 29px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 48px;
    color: #0f2923;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.zq_h3_blog-item-content-title {
    color: var(--clr-body-heading);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .zq_h3_blog-item-content-title {
        font-size:28px;
    }
}

@media (max-width: 991px) {
    .zq_h3_blog-item-content-title {
        font-size:24px;
    }
}

@media (max-width: 767px) {
    .zq_h3_blog-item-content-title {
        font-size:28px;
    }
}

@media (max-width: 480px) {
    .zq_h3_blog-item-content-title {
        font-size:22px;
    }
}

.zq_h3_blog-item-content-title:hover a {
    color: var(--clr-theme-primary);
}

.zq_h3_blog-item-content-admin {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zq_h3_blog-item-content-admin img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}

.zq_h3_blog-item-content-admin span {
    color: rgba(255,255,255,0.5);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 5px;
}

.zq_h3_blog-item-content-admin span a {
    color: rgba(255,255,255,0.7);
}

.zq_h3_blog-item-content-admin span:hover a {
    color: var(--clr-theme-primary);
}

.zq_h3_blog-item-content-btn {
    position: absolute;
    right: 0;
    top: 0;
}

.zq_h3_blog-item-content-btn a svg {
    color: rgba(255,255,255,0.7);
}

.zq_h3_blog-item-content-btn a svg:hover {
    color: var(--clr-theme-primary);
}

.zq_h4_blog-item-img {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: -15px;
}

.zq_h4_blog-item-img img {
    width: 100%;
}

.zq_h4_blog-item-img a {
    position: relative;
    z-index: 1;
    display: block;
}

.zq_h4_blog-item-img a::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
    background: rgba(138,241,53,0.14);
}

.zq_h4_blog-item-content {
    border-radius: 8px;
    background: #184239;
    padding: 30px 30px 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1199px) {
    .zq_h4_blog-item-content {
        padding:30px 20px 30px;
    }
}

.zq_h4_blog-item-content-tag {
    background-color: transparent;
    height: 29px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 8px;
    color: #8af135;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    border: 1px solid #8af135;
}

.zq_h4_blog-item-content-title {
    color: var(--clr-body-heading);
    margin-bottom: 21px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -1px;
}

@media (max-width: 575px) {
    .zq_h4_blog-item-content-title {
        font-size:22px;
    }
}

.zq_h4_blog-item-content-title:hover a {
    color: var(--clr-theme-primary);
}

.zq_h4_blog-item-content-admin {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zq_h4_blog-item-content-admin img {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    flex-shrink: 0;
}

.zq_h4_blog-item-content-admin span {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 5px;
}

.zq_h4_blog-item-content-admin span:hover a {
    color: var(--clr-theme-primary);
}

.zq_h5_blog-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: var(--clr-common-lightBlack);
    padding: 30px 30px 30px;
    padding-right: 80px;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .zq_h5_blog-item {
        flex-wrap:wrap;
        padding-right: 30px;
    }
}

.zq_h5_blog-item-img {
    flex-shrink: 0;
    max-width: 380px;
    width: 100%;
}

@media (max-width: 991px) {
    .zq_h5_blog-item-img {
        max-width:100%;
    }
}

.zq_h5_blog-item-img img {
    width: 100%;
    border-radius: 8px;
}

.zq_h5_blog-item-content {
    position: relative;
    z-index: 1;
}

.zq_h5_blog-item-content-tag {
    background-color: rgba(138,241,53,0.15);
    height: 25px;
    display: inline-flex;
    padding: 0 14px;
    border-radius: 48px;
    color: #8af135;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h5_blog-item-content-title {
    color: var(--clr-body-heading);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .zq_h5_blog-item-content-title {
        font-size:28px;
    }
}

@media (max-width: 480px) {
    .zq_h5_blog-item-content-title {
        font-size:24px;
    }
}

.zq_h5_blog-item-content-title:hover a {
    color: var(--clr-theme-primary);
}

.zq_h5_blog-item-content-admin {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zq_h5_blog-item-content-admin img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}

.zq_h5_blog-item-content-admin span {
    color: rgba(255,255,255,0.5);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 5px;
}

.zq_h5_blog-item-content-admin span a {
    color: rgba(255,255,255,0.7);
}

.zq_h5_blog-item-content-admin span:hover a {
    color: var(--clr-theme-primary);
}

.zq_h5_blog-item-content-btn {
    position: absolute;
    right: 0;
    top: 0;
}

.zq_h5_blog-item-content-btn a svg {
    color: rgb(255,255,255);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h5_blog-item:hover .zq_h5_blog-item-content-tag {
    background-color: var(--clr-theme-primary);
    color: var(--clr-common-black);
}

.zq_h5_blog-item:hover .zq_h5_blog-item-content-btn a svg {
    color: var(--clr-theme-primary);
}

.zq_inner_blog-item {
    background: #2a4741;
    padding: 20px;
    border-radius: 8px;
}

.zq_inner_blog-img {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 23px;
}

.zq_inner_blog-img img {
    width: 100%;
}

.zq_inner_blog-content-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.zq_inner_blog-content-meta span {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    display: block;
}

.zq_inner_blog-content-meta span:hover a {
    color: var(--clr-theme-primary);
}

.zq_inner_blog-content-title {
    color: rgb(255,255,255);
    font-family: "Outfit",sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -0.6px;
    margin-bottom: 20px;
    max-height: 96px;
    min-height: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

@media (max-width: 480px) {
    .zq_inner_blog-content-title {
        font-size:20px;
    }
}

.zq_inner_blog-content-title:hover a {
    color: var(--clr-theme-primary);
}

.zq_inner_blog-content-btn {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.zq_inner_blog-content-btn:hover {
    color: var(--clr-theme-primary);
}

.zq_blog_list-item {
    overflow: hidden;
    border-radius: 8px;
    background: #2a4741;
}

.zq_blog_list-item-img {
    overflow: hidden;
    border-radius: 8px;
}

.zq_blog_list-item-img img {
    width: 100%;
}

.zq_blog_list-item-content {
    padding: 25px 30px 30px;
}

@media (max-width: 480px) {
    .zq_blog_list-item-content {
        padding:25px 20px 30px;
    }
}

.zq_blog_list-item-content-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 10px;
    margin-bottom: 16px;
}

.zq_blog_list-item-content-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

.zq_blog_list-item-content-meta span i {
    color: var(--clr-theme-primary);
}

.zq_blog_list-item-content-meta span:hover a {
    color: var(--clr-theme-primary);
}

.zq_blog_list-item-content-title {
    color: rgb(255,255,255);
    font-family: Outfit;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

@media (max-width: 575px) {
    .zq_blog_list-item-content-title {
        font-size:26px;
    }
}

@media (max-width: 480px) {
    .zq_blog_list-item-content-title {
        font-size:22px;
    }
}

.zq_blog_list-item-content-title:hover a {
    color: var(--clr-theme-primary);
}

.zq_blog_list-item-content p {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 31px;
}

.zq_blog_list-item-content-btn {
    border-radius: 48px;
    background: rgb(138,241,53);
    display: inline-flex;
    align-items: center;
    height: 56px;
    padding: 0 32px;
    color: rgb(15,41,35);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.zq_blog_list-item-content-btn:hover {
    background-color: #fff;
    color: var(--clr-common-black);
}

.zq_blog_widget-wrap {
    border-radius: 8px;
    background: rgb(42,71,65);
    padding: 30px 30px 40px;
}

@media (max-width: 1399px) {
    .zq_blog_widget-wrap.ml-30 {
        margin-left:0;
    }
}

.zq_blog-widget:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 21px;
    padding-bottom: 30px;
}

.zq_blog-widget-title {
    color: rgb(255,255,255);
    font-family: Outfit;
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -0.6px;
    margin-bottom: 20px;
}

.zq_blog-widget form {
    position: relative;
    z-index: 1;
}

.zq_blog-widget form input {
    width: 100%;
    height: 56px;
    background: transparent;
    border: 2px solid var(--clr-theme-primary);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 0 20px;
    padding-right: 50px;
}

.zq_blog-widget form button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
}

.zq_blog-widget-post {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zq_blog-widget-post-img {
    height: 90px;
    width: 90px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .zq_blog-widget-post-img {
        width:80px;
        height: 80px;
    }
}

.zq_blog-widget-post-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.zq_blog-widget-post-content h4 {
    color: rgb(255,255,255);
    font-family: Outfit;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -0.6px;
    margin-bottom: 1px;
}

@media (max-width: 480px) {
    .zq_blog-widget-post-content h4 {
        font-size:16px;
    }
}

.zq_blog-widget-post-content h4:hover a {
    color: var(--clr-theme-primary);
}

.zq_blog-widget-post-content span {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zq_blog-widget-post-content span i {
    color: var(--clr-theme-primary);
}

.zq_blog-widget-category {
    list-style: none;
}

.zq_blog-widget-category li:not(:last-child) {
    margin-bottom: 10px;
}

.zq_blog-widget-category li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: #33574f;
    border-radius: 8px;
    height: 56px;
    padding: 0 20px;
    color: rgb(255,255,255);
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.zq_blog-widget-category li a:hover {
    background: var(--clr-theme-primary);
    color: rgb(15,41,35);
}

.zq_blog-widget-tag {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.zq_blog-widget-tag a {
    box-sizing: border-box;
    border: 1px solid rgba(138,241,53,0.5);
    border-radius: 50px;
    height: 31px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    text-transform: capitalize;
}

.zq_blog-widget-tag a:hover {
    background: var(--clr-theme-primary);
    color: rgb(15,41,35);
    border-color: transparent;
}

@keyframes popupBtn {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.6);
        opacity: 0.3;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.zq_blog_details-content-img {
    position: relative;
    z-index: 1;
}

.zq_blog_details-content-img img {
    border-radius: 8px;
    width: 100%;
}

.zq_blog_details-content-img a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 96px;
    height: 96px;
    background: var(--clr-common-black);
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-theme-primary);
}

.zq_blog_details-content-img a::after,.zq_blog_details-content-img a::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.4);
    animation-name: popupBtn;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.zq_blog_details-content-img a::before {
    animation-delay: 1s;
}

.zq_blog_details-content-title {
    color: rgb(255,255,255);
    font-family: Outfit;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -1px;
}

@media (max-width: 575px) {
    .zq_blog_details-content-title {
        font-size:28px;
    }
}

@media (max-width: 480px) {
    .zq_blog_details-content-title {
        font-size:24px;
    }
}

.zq_blog_details-content-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    row-gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.zq_blog_details-content-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

.zq_blog_details-content-meta span i {
    color: var(--clr-theme-primary);
}

.zq_blog_details-content-meta span img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
}

.zq_blog_details-content-text {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.zq_blog_details-content blockquote {
    background: #2a4741;
    padding: 36px 26px 30px;
    border-radius: 8px;
    border: 3px solid var(--clr-theme-primary);
    margin: 0;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.zq_blog_details-content blockquote::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -112px;
    width: 230px;
    height: 230px;
    content: "";
    border-radius: 50%;
    filter: blur(400px);
    background: rgb(138,241,53);
}

.zq_blog_details-content blockquote svg {
    color: var(--clr-theme-primary);
    margin-bottom: 20px;
}

.zq_blog_details-content blockquote p {
    color: rgb(255,255,255);
    font-family: Outfit;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

@media (max-width: 575px) {
    .zq_blog_details-content blockquote p {
        font-size:22px;
    }
}

@media (max-width: 480px) {
    .zq_blog_details-content blockquote p {
        font-size:20px;
    }
}

.zq_blog_details-content blockquote span {
    display: flex;
    justify-content: end;
}

.zq_blog_details-content blockquote cite {
    color: rgb(163,163,163);
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-style: normal;
    position: relative;
    z-index: 1;
    display: block;
}

.zq_blog_details-content blockquote cite::before {
    position: absolute;
    left: -38px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    content: "";
}

.zq_blog_details-content-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 30px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

@media (max-width: 575px) {
    .zq_blog_details-content-bottom {
        flex-wrap:wrap;
    }
}

.zq_blog_details-content-list {
    list-style: none;
}

.zq_blog_details-content-list li {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.zq_blog_details-content-list li:last-child {
    margin-bottom: 0;
}

.zq_blog_details-content-list li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--clr-theme-primary);
    color: var(--clr-common-black);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zq_blog_details-content-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zq_blog_details-content-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(138,241,53,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
    color: #fff;
}

.zq_blog_details-content-social a:hover {
    background: var(--clr-theme-primary);
    border-color: var(--clr-theme-primary);
    color: var(--clr-common-black);
}

.zq_blog_details-comment {
    background: #2a4741;
    border-radius: 8px;
    padding: 32px 32px 32px;
    display: flex;
    align-items: start;
    gap: 15px;
}

@media (max-width: 575px) {
    .zq_blog_details-comment {
        flex-wrap:wrap;
    }
}

.zq_blog_details-comment img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    flex-shrink: 0;
}

.zq_blog_details-comment-info h5 {
    color: rgb(255,255,255);
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.6px;
    margin-bottom: 2px;
}

.zq_blog_details-comment-info span {
    color: rgb(163,163,163);
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    display: block;
    margin-bottom: 15px;
}

.zq_blog_details-comment-info p {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 20px;
}

.zq_blog_details-comment-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zq_blog_details-comment-social a {
    width: 36px;
    height: 36px;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
    color: #fff;
}

.zq_blog_details-comment-social a:hover {
    background: var(--clr-theme-primary);
    border-color: var(--clr-theme-primary);
    color: var(--clr-common-black);
}

.zq_blog_details-reply {
    background: #2a4741;
    border-radius: 8px;
    padding: 34px 30px 40px;
}

.zq_blog_details-reply h3 {
    color: rgb(255,255,255);
    font-family: Inter;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
}

.zq_blog_details-reply p {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 25px;
}

.zq_blog_details-reply-item label {
    display: flex;
    align-items: center;
    gap: 1px;
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #a3a3a3;
    margin-bottom: 5px;
}

.zq_blog_details-reply-item label span {
    color: var(--clr-theme-primary);
}

.zq_blog_details-reply-item input,.zq_blog_details-reply-item textarea {
    background: #33574f;
    border: 1px solid transparent;
    border-radius: 8px;
    height: 56px;
    line-height: 56px;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 22px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.zq_blog_details-reply-item input:focus,.zq_blog_details-reply-item textarea:focus {
    border-color: var(--clr-theme-primary);
}

.zq_blog_details-reply-item textarea {
    margin-bottom: 0;
    height: 220px;
}

.zq_blog_details-reply-item button {
    border: none;
    background: var(--clr-theme-primary);
    height: 56px;
    border-radius: 48px;
    padding: 0 32px;
    color: rgb(15,41,35);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 30px;
}

.zq_blog_details-reply-item button:hover {
    background-color: #fff;
    color: var(--clr-common-black);
}

.zq_cta-area {
    position: relative;
    z-index: 1;
    margin-bottom: -110px;
}

.zq_cta-wrapper {
    position: relative;
    z-index: 1;
    background: var(--clr-theme-primary);
    border-radius: 16px;
    padding: 70px 50px 70px;
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .zq_cta-wrapper {
        padding:70px 40px 70px;
    }
}

@media (max-width: 767px) {
    .zq_cta-wrapper {
        padding:45px 25px 45px;
        flex-wrap: wrap;
    }
}

.zq_cta-shape-1 {
    position: absolute;
    left: 47%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: -1;
}

.zq_cta-shape-1 svg {
    color: rgba(15,41,35,0.1);
}

.zq_cta-shape-2 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.zq_cta-shape-2 svg {
    color: rgba(15,41,35,0.1);
}

.zq_cta-title {
    color: rgb(15,41,35);
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .zq_cta-title {
        font-size:40px;
    }
}

@media (max-width: 991px) {
    .zq_cta-title {
        font-size:32px;
    }

    .zq_cta-title br {
        display: none;
    }
}

@media (max-width: 480px) {
    .zq_cta-title {
        font-size:28px;
    }
}

.zq_cta-action {
    max-width: 470px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 1199px) {
    .zq_cta-action {
        max-width:350px;
    }
}

@media (max-width: 991px) {
    .zq_cta-action {
        max-width:260px;
    }
}

.zq_cta-action img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .zq_cta-action img {
        width:70px;
        height: 70px;
    }
}

.zq_cta-action-info span {
    color: rgb(15,41,35);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: block;
    margin-bottom: 10px;
}

.zq_cta-action-info a {
    color: rgb(15,41,35);
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    display: block;
}

@media (max-width: 991px) {
    .zq_cta-action-info a {
        font-size:24px;
    }
}

@media (max-width: 480px) {
    .zq_cta-action-info a {
        font-size:20px;
    }
}

.zq_cta-action-info a:hover {
    color: #fff;
}

.zq_cta_bg::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 135.6px;
    width: 100%;
    background-color: rgb(15,15,15);
}

.zq_theme-btn,.zq_contact-form-btn {
    border-radius: 60px;
    background: transparent;
    font-family: 'Outfit' !important;
    color: #fff;
    border: 2px solid #fff;
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    gap: 5px;
}

.zq_contact-form-btn {
    background: transparent;
    color: var(--clr-common-black);
    border: 2px solid var(--clr-common-black);
}

.zq_theme-btn::before,.zq_theme-btn::after,.zq_contact-form-btn::before,.zq_contact-form-btn::after {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    transform: translate(-50%,-50%);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--clr-theme-primary);
    transition: 1s ease;
}

.zq_contact-form-btn::before,.zq_contact-form-btn::after {
    background-color: var(--clr-common-black);
}

.zq_theme-btn::before,.zq_contact-form-btn::before {
    top: -1em;
    left: -1em;
}

.zq_theme-btn::after,.zq_contact-form-btn::after {
    left: calc(100% + 1em);
    top: calc(100% + 1em);
}

.zq_theme-btn:hover::before,.zq_theme-btn:hover::after,.zq_contact-form-btn:hover::before,.zq_contact-form-btn:hover::after {
    height: 410px;
    width: 410px;
}

.zq_theme-btn:hover {
    color: #fff;
}

.zq_contact-form-btn:hover {
    color: #fff;
}

.zq_theme-btn:active,.zq_contact-form-btn:active {
    filter: brightness(0.8);
}

.zq_theme-btn:hover {
    background-color: transparent;
    color: #fff;
}

.zq_contact-form-btn::hover {
    background-color: transparent;
    color: #fff;
}

.zq_h2_theme-btn {
    border-radius: 8px;
    background: var(--clr-theme-primary);
    color: var(--clr-common-black);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    padding: 0 35px;
}

.zq_h2_theme-btn:hover {
    background-color: #fff;
    color: var(--clr-common-black);
}

.zq_h2_team-item-img {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h2_team-item-img img {
    width: 100%;
}

.zq_h2_team-item-img::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(180deg,rgba(138,241,53,0.1) 6.689%,rgba(138,241,53,0.35) 100%);
    -webkit-transition: all 0.3 linear 0s;
    -moz-transition: all 0.3 linear 0s;
    -ms-transition: all 0.3 linear 0s;
    -o-transition: all 0.3 linear 0s;
    transition: all 0.3 linear 0s;
}

.zq_h2_team-item-content {
    border-radius: 0 0 8px 8px;
    padding: 35px 30px 30px;
    margin-top: -10px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    overflow: hidden;
    position: relative;
    z-index: -1;
}

.zq_h2_team-item-content::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: calc(100% - 2px);
    margin-left: 1px;
    height: calc(100% - 1px);
    background-color: #184239;
    z-index: -2;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    border-radius: 8px;
}

.zq_h2_team-item-content::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(to bottom,rgba(138,241,53,0),rgb(138,241,53));
    border-radius: 8px;
    z-index: -5;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h2_team-item-content h3 {
    color: var(--clr-body-heading);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 6px;
}

@media (max-width: 480px) {
    .zq_h2_team-item-content h3 {
        font-size:28px;
    }
}

.zq_h2_team-item-content span {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: rgba(255,255,255,0.5);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: block;
    margin-bottom: 18px;
}

.zq_h2_team-item-content p {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    color: rgba(255,255,255,0.7);
    font-family: "Inter",sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 28px;
}

.zq_h2_team-item-social {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.zq_h2_team-item-social li a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid var(--clr-theme-primary);
    border-radius: 50%;
    color: var(--clr-theme-primary);
    font-size: 18px;
}

.zq_h2_team-item-social li a:hover {
    background-color: var(--clr-common-black);
    color: #fff !important;
}

.h2_team-active .swiper-slide-prev .zq_h2_team-item-img {
    clip-path: polygon(0 9%,100% 0,100% 100%,0 100%);
}

.h2_team-active .swiper-slide-next .zq_h2_team-item-img {
    clip-path: polygon(0 0,100% 8%,100% 100%,0 100%);
}

.zq_h2_team-item:hover .zq_h2_team-item-img::before {
    opacity: 0;
}

.zq_h2_team-item:hover .zq_h2_team-item-content {
    background-color: var(--clr-theme-primary);
}

.zq_h2_team-item:hover .zq_h2_team-item-content::after {
    opacity: 0;
}

.zq_h2_team-item:hover .zq_h2_team-item-content h3,.zq_h2_team-item:hover .zq_h2_team-item-content span,.zq_h2_team-item:hover .zq_h2_team-item-content p {
    color: var(--clr-common-black);
}

.zq_h2_team-item:hover .zq_h2_team-item-content ul li a {
    border-color: var(--clr-common-black);
    color: var(--clr-common-black);
}

.zq_h3_team-item-img {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.zq_h3_team-item-img::before {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-theme-primary);
    content: "";
    z-index: -1;
    border-radius: 155px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

@media (max-width: 767px) {
    .zq_h3_team-item-img::before {
        border-radius:230px;
    }
}

.zq_h3_team-item-img img {
    width: 100%;
}

.zq_h3_team-item-content {
    text-align: center;
}

.zq_h3_team-item-content h3 {
    color: rgb(255,255,255);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.zq_h3_team-item-content span {
    color: rgba(255,255,255,0.5);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: block;
}

.zq_h3_team-item:hover .zq_h3_team-item-img::before {
    right: -5px;
    bottom: -5px;
    opacity: 1;
    visibility: visible;
}

.zq_h5_team-item-img img {
    width: 100%;
    border-radius: 8px;
}

.zq_h5_team-item-content {
    width: calc(100% - 40px);
    background-color: #184239;
    border-radius: 8px;
    padding: 20px 30px 30px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: -85px;
    position: relative;
    z-index: 9;
}

.zq_h5_team-item-content::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: calc(100% - 2px);
    margin-left: 1px;
    height: calc(100% - 1px);
    background-color: #184239;
    z-index: -2;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    border-radius: 8px;
}

.zq_h5_team-item-content::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(to bottom,rgba(138,241,53,0),rgb(138,241,53));
    border-radius: 8px;
    z-index: -5;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h5_team-item-content h3 {
    color: rgb(255,255,255);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

@media (max-width: 1199px) {
    .zq_h5_team-item-content h3 {
        font-size:28px;
    }
}

@media (max-width: 767px) {
    .zq_h5_team-item-content h3 {
        font-size:22px;
    }
}

.zq_h5_team-item-content span {
    color: rgba(255,255,255,0.5);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: block;
    margin-bottom: 18px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_h5_team-item-content ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.zq_h5_team-item-content ul li a {
    box-sizing: border-box;
    border: 1px solid #8af135;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
    color: #8af135;
    display: block;
    line-height: 32px;
    text-align: center;
}

.zq_h5_team-item:hover .zq_h5_team-item-content {
    background-color: rgb(138,241,53);
}

.zq_h5_team-item:hover .zq_h5_team-item-content::after {
    opacity: 0;
}

.zq_h5_team-item:hover .zq_h5_team-item-content h3 {
    color: rgb(15,41,35);
}

.zq_h5_team-item:hover .zq_h5_team-item-content span {
    color: rgba(42,71,65,0.7);
}

.zq_h5_team-item:hover .zq_h5_team-item-content ul li a {
    border-color: rgb(15,41,35);
    color: rgb(15,41,35);
}

.zq_h5_team-item:hover .zq_h5_team-item-content ul li a:hover {
    background-color: rgb(15,41,35);
    color: #fff;
}

.zq_inner_team-item-img {
    background-color: #2a4741;
    border-radius: 8px;
    margin-bottom: 22px;
}

.zq_inner_team-item-img img {
    width: 100%;
    border-radius: 8px;
    padding: 20px;
}

.zq_inner_team-item-content {
    text-align: center;
}

.zq_inner_team-item-content h3 {
    color: rgb(255,255,255);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

@media (max-width: 1199px) {
    .zq_inner_team-item-content h3 {
        font-size:28px;
    }
}

@media (max-width: 767px) {
    .zq_inner_team-item-content h3 {
        font-size:22px;
    }
}

.zq_inner_team-item-content h3:hover a {
    color: var(--clr-theme-primary);
}

.zq_inner_team-item-content span {
    color: rgba(255,255,255,0.5);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: block;
    margin-bottom: 19px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_inner_team-item-content ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.zq_inner_team-item-content ul li a {
    box-sizing: border-box;
    border: 1px solid #8af135;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
    color: #8af135;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zq_inner_team-item-content ul li a:hover {
    background-color: #8af135;
    color: var(--clr-common-black);
}

.zq_team_details-img img {
    width: 100%;
    border-radius: 8px;
}

@media (max-width: 1399px) {
    .zq_team_details-img {
        margin-right:30px;
    }
}

@media (max-width: 1199px) {
    .zq_team_details-img {
        margin-right:0;
    }
}

.zq_team_details-content-subtitle {
    color: rgb(138,241,53);
    font-family: Inter;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 9px;
}

.zq_team_details-content-title {
    color: rgb(255,255,255);
    font-family: Outfit;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -1px;
    text-align: left;
    margin-bottom: 20px;
}

.zq_team_details-content-text {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    margin-bottom: 32px;
}

.zq_team_details-contact {
    display: grid;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 40px;
}

@media (max-width: 480px) {
    .zq_team_details-contact {
        grid-template-columns:1fr;
    }
}

.zq_team_details-contact-item {
    padding: 0 25px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zq_team_details-contact-item:first-child {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    border-right: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 480px) {
    .zq_team_details-contact-item:first-child {
        border-right:0;
    }
}

.zq_team_details-contact-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.zq_team_details-contact-item:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 480px) {
    .zq_team_details-contact-item:nth-child(3) {
        border-bottom:1px solid rgba(255,255,255,0.15);
        border-right: 0;
    }
}

.zq_team_details-contact-item span {
    display: block;
    color: rgba(255,255,255,0.5);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.zq_team_details-contact-item a,.zq_team_details-contact-item p {
    display: block;
    color: rgb(255,255,255);
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

.grecaptcha-badge {
    display: none !important;
}

.showerror {
    margin-top: 10px;
    background: #ff000036;
    padding: 5px 10px;
}

.showerror p {
    color: red;
    margin: 0;
}

.showsuccess {
    margin-top: 10px;
    background: #00800036;
    padding: 5px 10px;
}

.showsuccess p {
    color: green;
    margin: 0;
}

.zq_contact-form {
    background: #fff;
    padding: 50px 30px 50px;
    border-radius: 8px;
    max-width: 682px;
    width: 100%;
}

.hr-form-inner {
    width: 100%;
    max-width: 100%;
}

.hr-form-inner .intl-tel-input {
    margin-bottom: 20px;
}

.txt_holder {
    width: calc(100% - 250px);
}

@media (max-width: 991px) {
    .zq_contact-form {
        max-width:100%;
    }
}

.zq_contact-form-title {
    color: rgb(29,29,29);
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

.zq_contact-form input,.zq_contact-form textarea {
    height: 64px;
    width: 100%;
    background: transparent;
    box-sizing: border-box;
    border: 2px solid rgb(15,41,35);
    border-radius: 8px;
    margin-bottom: 20px;
    color: #000;
    font-family: Inter;
    font-size: 16px;
    line-height: 52px;
    font-weight: 400;
    padding: 0 20px;
}

.flex-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.flex-checkbox .form-check {
    display: flex;
    align-items: center;
    gap: 5px;
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.file-upload-wrapper h5 {
    color: #fff;
}

.file-upload-wrapper p {
    color: #a1a1a1;
}

.file-upload-box {
    position: relative;
    padding: 2rem;
    text-align: center;
    border: 2px dashed #a1a1a1;
    border-radius: 8px;
    background-color: var(--clr-common-black);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.file-upload-box:hover {
    background-color: #0f2923c4;
    border-color: #a1a1a1;
}

.file-upload-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.upload-content {
    position: relative;
    z-index: 0;
}

.upload-icon {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.file-list {
    margin-top: 1.5rem;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: var(--clr-common-black);
    border: 1px solid var(--clr-theme-primary);
    border-radius: 6px;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.file-item:hover {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.file-icon {
    color: var(--clr-theme-primary);
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.file-name {
    flex-grow: 1;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 1rem;
}

.file-name:hover {
    color: var(--clr-theme-primary);
    text-decoration: none;
}

.remove-file {
    color: #a1a1a1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.remove-file:hover {
    color: #fff;
}

.drag-over {
    background-color: var(--clr-common-black);
    border-color: var(--clr-theme-primary);
}

@keyframes upload-progress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.upload-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: #a1a1a1;
    animation: upload-progress 1s ease-in-out;
}

.zq_contact-form input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--clr-common-black);
    margin: 0;
}

.zq_contact-form input::-webkit-input-placeholder,.zq_contact-form textarea::-webkit-input-placeholder {
    color: #4f4f4f;
    font-size: 16px;
}

.zq_contact-form input:-moz-placeholder,.zq_contact-form textarea:-moz-placeholder {
    color: #4f4f4f;
    font-size: 16px;
}

.zq_contact-form input::-moz-placeholder,.zq_contact-form textarea::-moz-placeholder {
    color: #4f4f4f;
    font-size: 16px;
}

.zq_contact-form input:-ms-input-placeholder,.zq_contact-form textarea:-ms-input-placeholder {
    color: #4f4f4f;
    font-size: 16px;
}

.zq_contact-form textarea {
    height: 200px;
}

.zq_contact-wrap {
    display: flex;
    align-items: center;
    gap: 90px;
}

@media (max-width: 1399px) {
    .zq_contact-wrap {
        gap:70px;
    }
}

@media (max-width: 1199px) {
    .zq_contact-wrap {
        gap:40px;
    }
}

@media (max-width: 991px) {
    .zq_contact-wrap {
        flex-wrap:wrap;
        gap: 40px;
    }
}

.zq_contact-content {
    max-width: 540px;
    width: 100%;
}

@media (max-width: 991px) {
    .zq_contact-content {
        max-width:100%;
    }
}

.zq_contact-call {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 480px) {
    .zq_contact-call {
        gap:20px;
    }
}

.zq_contact-call-icon {
    width: 70px;
    height: 70px;
    background: #2a4741;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8px;
}

.zq_contact-call-icon i {
    font-size: 38px;
    color: var(--clr-theme-primary);
}

.zq_contact-call-info span {
    color: rgba(255,255,255,0.7);
    font-family: Outfit;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: block;
    margin-bottom: 13px;
}

.zq_contact-call-info a {
    color: rgb(255,255,255);
    font-size: 32px;
    font-weight: 600;
    line-height: 24px;
    display: block;
}

@media (max-width: 480px) {
    .zq_contact-call-info a {
        font-size:22px;
    }
}

.zq_contact-call-info a:hover {
    color: var(--clr-theme-primary);
}

.zq_inner_contact-form {
    background: #2a4741;
    padding: 40px 30px 40px;
    border-radius: 8px;
}

.zq_inner_contact-form-title {
    color: rgb(29,29,29);
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

.zq_inner_contact-form input,.zq_inner_contact-form textarea {
    height: 64px;
    width: 100%;
    background: #33574f;
    box-sizing: border-box;
    border: 1px solid #33574f;
    border-radius: 8px;
    margin-bottom: 25px;
    color: #a3a3a3;
    font-family: Inter;
    font-size: 16px;
    line-height: 52px;
    font-weight: 400;
    padding: 0 20px;
}

.zq_inner_contact-form input::-webkit-input-placeholder,.zq_inner_contact-form textarea::-webkit-input-placeholder {
    color: #a3a3a3;
    font-size: 16px;
}

.zq_inner_contact-form input:-moz-placeholder,.zq_inner_contact-form textarea:-moz-placeholder {
    color: #a3a3a3;
    font-size: 16px;
}

.zq_inner_contact-form input::-moz-placeholder,.zq_inner_contact-form textarea::-moz-placeholder {
    color: #a3a3a3;
    font-size: 16px;
}

.zq_inner_contact-form input:-ms-input-placeholder,.zq_inner_contact-form textarea:-ms-input-placeholder {
    color: #a3a3a3;
    font-size: 16px;
}

.zq_inner_contact-form textarea {
    height: 240px;
    margin-bottom: 30px;
}

.zq_inner_contact-form-btn {
    border-radius: 60px;
    background: var(--clr-theme-primary);
    text-transform: capitalize;
    height: 55px;
    display: inline-flex;
    align-items: center;
    padding: 0 35px;
    border: 0;
    color: rgb(15,41,35);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: left;
}

.zq_inner_contact-form-btn:hover {
    background-color: var(--clr-common-white);
    color: var(--clr-common-black);
}

.zq_inner_contact-call {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zq_inner_contact-call-icon {
    width: 50px;
    height: 50px;
    background: var(--clr-theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zq_inner_contact-call-icon svg {
    color: var(--clr-common-black);
}

.zq_inner_contact-call-info span {
    color: rgb(163,163,163);
    font-family: Inter;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.zq_inner_contact-call-info a {
    color: rgb(255,255,255);
    font-family: Outfit;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    display: block;
}

.zq_inner_contact-call-info a:hover {
    color: var(--clr-theme-primary);
}

.zq_inner_contact_top-item {
    background-color: #2a4741;
    border-radius: 8px;
    text-align: center;
    padding: 50px 40px 45px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_inner_contact_top-item-icon {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    width: 70px;
    height: 70px;
    background: rgba(138,241,53,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 22px;
}

.zq_inner_contact_top-item-icon svg {
    color: var(--clr-theme-primary);
    width: 30px;
}

.zq_inner_contact_top-item-info h4 {
    color: rgb(255,255,255);
    font-family: Outfit;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 15px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_inner_contact_top-item-info a,.zq_inner_contact_top-item-info p {
    display: block;
    color: rgba(255,255,255,0.7);
    font-family: Outfit;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.5px;
    margin-bottom: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

@media (max-width: 1199px) {
    .zq_inner_contact_top-item-info a br,.zq_inner_contact_top-item-info p br {
        display:none;
    }
}

.zq_inner_contact_top-item:hover {
    background-color: var(--clr-theme-primary);
}

.zq_inner_contact_top-item:hover .zq_inner_contact_top-item-icon {
    background-color: var(--clr-common-black);
}

.zq_inner_contact_top-item:hover .zq_inner_contact_top-item-info h4 {
    color: var(--clr-common-black);
}

.zq_inner_contact_top-item:hover .zq_inner_contact_top-item-info a,.zq_inner_contact_top-item:hover .zq_inner_contact_top-item-info p {
    color: var(--clr-common-black);
}

.zq_inner_map-wrap {
    position: relative;
    z-index: 1;
}

.zq_inner_map-wrap iframe {
    width: 100%;
    height: 500px;
    border-radius: 8px;
}

.zq_inner_map-item_1 {
    position: absolute;
    left: 170px;
    top: 100px;
    z-index: 1;
}

.zq_inner_map-item_1::before {
    position: absolute;
    left: 50%;
    top: -35px;
    content: "";
    width: 25px;
    height: 25px;
    background: var(--clr-theme-primary);
    border-radius: 50%;
    border: 6px solid var(--clr-common-black);
    transform: translateX(-50%);
    cursor: pointer;
}

.zq_inner_map-item_2 {
    position: absolute;
    left: 50%;
    top: 160px;
    transform: translateX(-50%);
    z-index: 1;
}

.zq_inner_map-item_2::before {
    position: absolute;
    left: 50%;
    top: -35px;
    content: "";
    width: 25px;
    height: 25px;
    background: var(--clr-theme-primary);
    border-radius: 50%;
    border: 6px solid var(--clr-common-black);
    transform: translateX(-50%);
    cursor: pointer;
}

.zq_inner_map-item-content {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: #2a4741;
    width: 320px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.zq_inner_map-item-head {
    display: flex;
    align-items: center;
    background: var(--clr-theme-primary);
    padding: 22px 30px 24px;
    justify-content: space-between;
    gap: 20px;
    border-radius: 8px 8px 0 0;
}

.zq_inner_map-item-head h4 {
    color: rgb(15,41,35);
    font-family: Outfit;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -1px;
    margin-bottom: 0;
}

.zq_inner_map-item-head span {
    color: rgb(15,41,35);
    font-family: Outfit;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -1px;
    display: block;
}

.zq_inner_map-item-info {
    padding: 21px 30px 21px;
}

.zq_inner_map-item-info span {
    color: rgb(255,255,255);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-transform: capitalize;
    display: block;
}

.zq_inner_map-item-info span:not(:last-child) {
    margin-bottom: 14px;
}

.zq_inner_map-item_1:hover .zq_inner_map-item-content,.zq_inner_map-item_2:hover .zq_inner_map-item-content {
    opacity: 1;
    visibility: visible;
}

.nice-select.has-nice-select {
    height: 64px;
    width: 100%;
    background: transparent;
    box-sizing: border-box;
    border: 2px solid rgb(15,41,35);
    border-radius: 8px;
    margin-bottom: 20px;
    color: #4f4f4f;
    font-family: Inter;
    font-size: 16px;
    line-height: 60px;
    font-weight: 400;
    padding: 0 20px;
}

.nice-select.has-nice-select::after {
    border-bottom: 2px solid #4f4f4f;
    border-right: 2px solid #4f4f4f;
    content: "";
    display: block;
    height: 10px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 21px;
    top: 50%;
    transform-origin: 50% 50%;
    transform: rotate(45deg) translateY(-50%);
    transition: all 0.3s ease-in-out;
    width: 9.5px;
}

.nice-select.has-nice-select ul {
    width: 100%;
    border-radius: 8px;
    border: none;
    background-color: #33574f;
    margin-top: 4px;
}

.nice-select.has-nice-select ul li {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    min-height: 50px;
}

.nice-select.has-nice-select ul li.selected {
    font-weight: 400;
}

.nice-select.has-nice-select ul li:hover {
    background-color: var(--clr-common-black);
}

.nice-select.has-nice-select .option.focus,.nice-select.has-nice-select .nice-select .option.selected.focus {
    background-color: var(--clr-common-black);
}

.nice-select.has-nice-select-2 {
    height: 64px;
    width: 100%;
    background: transparent;
    box-sizing: border-box;
    border: 2px solid rgb(15,41,35);
    border-radius: 8px;
    margin-bottom: 25px;
    color: #4f4f4f;
    font-family: Inter;
    font-size: 16px;
    line-height: 60px;
    font-weight: 400;
    padding: 0 20px;
}

.nice-select.has-nice-select-2::after {
    border-bottom: 2px solid #4f4f4f;
    border-right: 2px solid #4f4f4f;
    content: "";
    display: block;
    height: 10px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 21px;
    top: 50%;
    transform-origin: 50% 50%;
    transform: rotate(45deg) translateY(-50%);
    transition: all 0.3s ease-in-out;
    width: 9.5px;
}

.nice-select.has-nice-select-2 ul {
    width: 100%;
    border-radius: 8px;
    border: none;
    background-color: var(--clr-common-black);
    margin-top: 4px;
}

.nice-select.has-nice-select-2 ul li {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    min-height: 50px;
}

.nice-select.has-nice-select-2 ul li.selected {
    font-weight: 400;
}

.nice-select.has-nice-select-2 ul li:hover {
    background-color: #a1a1a1;
    color: var(--clr-common-black);
}

.nice-select.has-nice-select-2 .option.focus,.nice-select.has-nice-select-2 .nice-select .option.selected.focus {
    background-color: #a1a1a1;
    color: var(--clr-common-black);
}

.zq_breadcrumb-area {
    padding-top: 150px;
    position: relative;
    z-index: 1;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 767px) {
    .zq_breadcrumb-area {
        padding-top:97px;
    }
}

.zq_breadcrumb-area::before {
    position: absolute;
    left: -169px;
    top: -109px;
    content: "";
    width: 329px;
    height: 329px;
    border-radius: 50%;
    filter: blur(400px);
    background: rgb(255 255 255 / 50%);
    z-index: -1;
}

.zq_breadcrumb-area::after {
    position: absolute;
    right: -164px;
    top: -112px;
    content: "";
    width: 329px;
    height: 329px;
    border-radius: 50%;
    filter: blur(400px);
    background: rgba(138,241,53,0.5);
    z-index: -1;
}

.zq_breadcrumb-wrap {
    max-width: 1777px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 24px;
    background: linear-gradient(90deg,rgba(138,241,53,0.2),rgba(138,241,53,0.2) 100%);
    padding-top: 130px;
    padding-bottom: 140px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

canvas#canvas_innerpage {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.zq_breadcrumb-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.zq_breadcrumb-content-title {
    color: rgb(255,255,255);
    font-family: Inter;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

@media (max-width: 575px) {
    .zq_breadcrumb-content-title {
        font-size:42px;
    }
}

@media (max-width: 480px) {
    .zq_breadcrumb-content-title {
        font-size:38px;
    }
}

.zq_breadcrumb-content-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.zq_breadcrumb-content-list a {
    color: rgb(255,255,255);
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.5px;
    display: block;
}

.zq_breadcrumb-content-list a:hover {
    color: var(--clr-theme-primary);
}

.zq_breadcrumb-content-list span {
    color: rgb(138,241,53);
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.zq_breadcrumb-content-list span::before {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    content: "\f104";
    font-size: 12px;
    font-weight: 600;
    margin-right: 10px;
}

.zq_video-img {
    position: relative;
    z-index: 1;
}

.zq_video-img img {
    min-height: 370px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zq_video-img::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(138,241,53,0.25);
    z-index: 1;
}

.zq_video-img-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 96px;
    height: 96px;
    background-color: var(--clr-common-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 22px;
    color: var(--clr-theme-primary);
}

.zq_video-img-icon::after,.zq_video-img-icon::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.4);
    animation-name: popupBtn;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.zq_video-img-icon::before {
    animation-delay: 1s;
}

.zq_video-content {
    background: var(--clr-theme-primary);
    border-radius: 8px;
    padding: 40px 50px 3px;
    margin-top: -120px;
    position: relative;
    z-index: 5;
}

@media (max-width: 767px) {
    .zq_video-content {
        margin-top:-80px;
    }
}

@media (max-width: 575px) {
    .zq_video-content {
        padding:40px 30px 3px;
    }
}

.zq_video-item-icon svg {
    width: 40px;
    color: var(--clr-common-black);
}

.zq_video-item-icon {
    margin-bottom: 29px;
}

.zq_video-item-title {
    color: rgb(15,41,35);
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.zq_video-item p {
    color: rgb(15,41,35);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}

.zq_error-content h2 {
    color: rgb(255,255,255);
    font-family: Outfit;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 23px;
}

@media (max-width: 1199px) {
    .zq_error-content h2 {
        font-size:38px;
    }
}

@media (max-width: 991px) {
    .zq_error-content h2 {
        font-size:36px;
    }
}

@media (max-width: 575px) {
    .zq_error-content h2 {
        font-size:34px;
    }
}

@media (max-width: 480px) {
    .zq_error-content h2 {
        font-size:28px;
    }
}

.zq_error-wrap img {
    margin-bottom: 45px;
}

.zq_error-content p {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 33px;
}

@media (max-width: 991px) {
    .zq_error-content p br {
        display:none;
    }
}

@media (max-width: 767px) {
    .zq_error-content p {
        font-size:16px;
    }
}

.zq_error-area {
    position: relative;
    z-index: 1;
}

.zq_error-area::before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    content: "";
    width: 329px;
    height: 329px;
    border-radius: 50%;
    filter: blur(400px);
    background: rgba(138,241,53,0.7);
    z-index: -1;
}

@media (max-width: 1199px) {
    .zq_error-wrap {
        margin-left:15%;
        margin-right: 15%;
    }
}

@media (max-width: 767px) {
    .zq_error-wrap {
        margin-left:10%;
        margin-right: 10%;
    }
}

@media (max-width: 575px) {
    .zq_error-wrap {
        margin-left:5%;
        margin-right: 5%;
    }
}

.zq_skill-content-text {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 27px;
}

.zq_skill-content-progress {
    margin-bottom: 24px;
}

.zq_skill-content-progress .progress-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
}

.zq_skill-content-progress .progress-title p {
    color: rgba(255,255,255,0.7);
    font-family: "Inter",sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.zq_skill-content-progress .progress-title span {
    color: rgba(255,255,255,0.7);
    font-family: "Inter",sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    display: block;
}

.zq_skill-content-progress .progress {
    height: 10px;
    border-radius: 20px;
    background-color: #33574f;
}

.zq_skill-content-progress .progress-bar {
    background-color: var(--clr-theme-primary);
    border-radius: 20px;
}

.w-80 {
    width: 80%;
}

.w-86 {
    width: 86%;
}

.w-92 {
    width: 92%;
}

@media (max-width: 1399px) {
    .zq_inner_about-img.mr-40 {
        margin-right:20px;
    }
}

@media (max-width: 1199px) {
    .zq_inner_about-img.mr-40 {
        margin-right:0;
    }
}

.zq_inner_about-img img {
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 1399px) {
    .zq_inner_about-content.ml-45 {
        margin-left:20px;
    }
}

@media (max-width: 1199px) {
    .zq_inner_about-content.ml-45 {
        margin-left:10px;
    }
}

@media (max-width: 991px) {
    .zq_inner_about-content.ml-45 {
        margin-left:0;
    }
}

@media (max-width: 1399px) {
    .zq_inner_about-content.mr-80 {
        margin-right:40px;
    }
}

@media (max-width: 1199px) {
    .zq_inner_about-content.mr-80 {
        margin-right:0;
    }
}

.cursor-pointer {
    cursor: pointer;
}

ul {
    list-style: none;
}

.zq_mobile_menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #1d1d1d;
    overflow: hidden;
    z-index: 999999;
    transition: all 0.5s cubic-bezier(1,0,0.55,1);
}

nav#mobile-menu {
    width: 100%;
    padding: 5px 15px;
}

.zq_mobile_menu .logo {
    position: relative;
    top: 0;
    left: 0;
}

.h3_brand-active2 .swiper-slide img {
    filter: brightness(0) invert(1);
    max-height: 68px;
}

.mobile-menu-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    margin: 2rem 1rem;
    background: #1d1d1d;
    width: 95%;
}

.zq_mobile_menu .close-menu {
    position: relative;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    z-index: 4;
    font-size: 25px;
}

.zq_mobile_menu .logo,.zq_mobile_menu .close-menu {
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.4s;
}

.zq_mobile_menu .menu-navbar {
    color: #fff;
    height: 100vh;
    overflow: auto;
    padding-bottom: 50px;
}

.zq_mobile_menu .menu-navbar::-webkit-scrollbar {
    width: 5px;
}

.zq_mobile_menu .menu-navbar::-webkit-scrollbar-track {
    background: #111;
}

.zq_mobile_menu .menu-navbar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
}

.zq_mobile_menu .menu-navbar .main-menu {
    position: relative;
    z-index: 2;
}

.zq_mobile_menu .menu-navbar .main-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.zq_mobile_menu .menu-navbar .main-menu>li {
    transition: all 0.5s;
}

.zq_mobile_menu .menu-navbar .main-menu>li:last-of-type .link {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.zq_mobile_menu .menu-navbar .main-menu>li .link {
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    padding: 20px 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    position: relative;
    display: block;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.7s;
    font-family: "Inter",sans-serif;
    letter-spacing: -0.5px;
}

@media (max-width: 1399px) {
    .zq_mobile_menu .menu-navbar .main-menu>li .link {
        font-size:40px;
    }
}

@media (max-width: 991px) {
    .zq_mobile_menu .menu-navbar .main-menu>li .link {
        padding-left:0;
    }
}

@media (max-width: 767px) {
    .zq_mobile_menu .menu-navbar .main-menu>li .link {
        font-size:30px;
    }
}

@media (max-width: 480px) {
    .zq_mobile_menu .menu-navbar .main-menu>li .link {
        font-size:20px;
    }
}

.zq_mobile_menu .menu-navbar .main-menu>li .link i {
    position: absolute;
    width: 100px;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.02);
    cursor: pointer;
}

@media (max-width: 767px) {
    .zq_mobile_menu .menu-navbar .main-menu>li .link i {
        width:90px;
    }
}

@media (max-width: 480px) {
    .zq_mobile_menu .menu-navbar .main-menu>li .link i {
        width:70px;
    }
}

.zq_mobile_menu .menu-navbar .main-menu>li .link i::before,.zq_mobile_menu .menu-navbar .main-menu>li .link i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    content: "+";
    font-family: "Font Awesome 6 Sharp";
    font-size: 25px;
    font-style: normal;
    font-weight: 300;
}

.zq_mobile_menu .menu-navbar .main-menu>li .link i::after {
    content: "\f068";
}

.zq_mobile_menu .menu-navbar .main-menu>li .link.dopen i:before {
    opacity: 0;
}

.zq_mobile_menu .menu-navbar .main-menu>li .link .fill-text {
    position: relative;
    color: rgba(255,255,255,0.4);
    font-family: "Inter",sans-serif;
}

.zq_mobile_menu .menu-navbar .main-menu>li .link .fill-text:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.75s cubic-bezier(0.63,0.03,0.21,1);
}

.zq_mobile_menu .menu-navbar .main-menu>li.hoverd .link .fill-text:after {
    width: 0;
}

.zq_mobile_menu .menu-navbar .main-menu .sub-menu {
    display: none;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.zq_mobile_menu .menu-navbar .main-menu .sub-menu li {
    padding: 0;
    margin: 0;
}

.zq_mobile_menu .menu-navbar .main-menu .sub-menu li:last-child a {
    border-bottom: 0;
}

.zq_mobile_menu .menu-navbar .main-menu .sub-menu li a {
    padding: 20px 20px 20px 40px;
    opacity: 0.6;
    transition: all 0.4s;
    display: block;
    font-size: 29px;
    font-weight: 500;
    padding-left: 50px;
    text-transform: capitalize;
    letter-spacing: normal;
    border-color: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.009);
}

@media (max-width: 991px) {
    .zq_mobile_menu .menu-navbar .main-menu .sub-menu li a {
        padding-left:40px;
    }
}

@media (max-width: 767px) {
    .zq_mobile_menu .menu-navbar .main-menu .sub-menu li a {
        padding-left:30px;
        font-size: 25px;
    }
}

@media (max-width: 575px) {
    .zq_mobile_menu .menu-navbar .main-menu .sub-menu li a {
        font-size:20px;
        padding-left: 25px;
        padding-top: 18px;
        padding-bottom: 21px;
    }
}

@media (max-width: 480px) {
    .zq_mobile_menu .menu-navbar .main-menu .sub-menu li a {
        font-size:16px;
        padding-left: 20px;
        padding-top: 13px;
        padding-bottom: 13px;
    }
}

.zq_mobile_menu .menu-navbar .main-menu .sub-menu li a:hover {
    opacity: 1;
}

.zq_mobile_menu .menu-text {
    position: relative;
    z-index: 1;
    height: 100%;
}

.zq_mobile_menu .menu-text:after {
    content: "";
    width: 1px;
    height: 0;
    background: rgba(255,255,255,0.05);
    position: absolute;
    right: -30px;
    bottom: -75vh;
    transition: all 1s ease;
}

.zq_mobile_menu .menu-text .text {
    position: absolute;
    right: 25%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0;
    transition: all 0.4s;
}

.zq_mobile_menu .menu-text .text h2 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 10vw;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0.08;
    margin: 0;
    color: #fff;
}

.zq_mobile_menu .cont-info {
    padding-top: 140px;
    padding-left: 15px;
    position: relative;
    z-index: 3;
}

.zq_mobile_menu .cont-info:after {
    content: "";
    width: 300%;
    height: 200vh;
    position: absolute;
    left: -30px;
    top: -75vh;
    background: #1a1a1a;
    z-index: -1;
}

.zq_mobile_menu .cont-info .sub-title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    font-family: "Inter",sans-serif;
    color: var(--clr-theme-primary);
}

.zq_mobile_menu .cont-info .item {
    transform: translateY(50px);
    transition: all 0.4s;
    opacity: 0;
}

.zq_mobile_menu .cont-info .item h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    color: #fff;
}

.zq_mobile_menu .cont-info .item h5:hover a {
    color: var(--clr-theme-primary);
}

.zq_mobile_menu .cont-info .item ul.social {
    list-style: none;
}

.zq_mobile_menu .cont-info .item ul.social li a {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.zq_mobile_menu .cont-info .item ul.social li a:hover {
    color: var(--clr-theme-primary);
}

.zq_mobile_menu.open .logo,.zq_mobile_menu.open .close-menu {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1s;
    max-width: 300px;
}

.zq_mobile_menu.open .menu-navbar .main-menu>li .link {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1s;
}

.zq_mobile_menu.open .cont-info .item {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1.4s;
}

.zq_mobile_menu.open .menu-text .text {
    opacity: 1;
    transition-delay: 1s;
}

.zq_mobile_menu.open .menu-text:after {
    height: 200vh;
    transition-delay: 0.7s;
}

@media screen and (max-width: 991px) {
    .navbar .search-form,.zq_mobile_menu .menu-text,.zq_mobile_menu .cont-info {
        display:none;
    }
}

.text-img {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 320px;
    line-height: 85%;
    font-weight: 600;
    font-family: "Poppins",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    color: #151515;
    letter-spacing: -0.06em;
    padding-right: 10px;
    height: 270px;
}

#particles-js {
    position: absolute;
    min-width: 280px;
    height: 280px;
    top: 0;
    left: 0;
    z-index: 9999;
}

.title-decoration-lines-left {
    position: relative;
    padding-left: 26px;
    color: #575757;
}

.title-decoration-lines-left::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background: #d7d7d7;
}

.title-decoration-lines-left+p {
    padding: 25px 0;
    color: rgba(0,0,0,0.7);
}

.button-secondary.button-pipaluk,.button-secondary.button-pipaluk:focus {
    background: transparent;
}

.button-pipaluk {
    position: relative;
    overflow: visible;
    padding: 19px 35px 17px;
    border: none;
    z-index: 1;
}

.button-secondary,.button-secondary:focus {
    color: #ffffff;
    background-color: #756aee !important;
    border-color: #756aee !important;
}

.button-secondary.button-pipaluk:hover,.button-secondary.button-pipaluk:active {
    color: #151515;
    background: transparent;
}

.border-2-column>div:nth-child(1) .counter-amy {
    padding-top: 0;
}

.counter-amy-number {
    font-size: 97px;
    line-height: 0.8;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: "Poppins",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}

.counter-amy-number .symbol {
    font-size: 70px;
    letter-spacing: 0;
    margin-left: -8px;
    color: #575757;
}

.counter-amy-number>* {
    display: inline-block;
}

span.counter.animated-first {
    font-weight: 600;
    color: #575757;
}

*+.counter-amy-title {
    margin-top: 8px;
}

.counter-amy-title {
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #9b9b9b;
    font-size: 16px;
    line-height: 1.125;
    text-transform: uppercase;
    display: block;
}

.counter-amy {
    text-align: center;
    padding: 30px 10px;
}

.border-2-column>div:nth-child(odd) .counter-amy {
    padding-left: 0;
}

.border-2-column>div:nth-child(1) .counter-amy,.border-2-column>div:nth-child(2) .counter-amy {
    padding-top: 0;
}

.sup-plus {
    font-size: 77px;
    font-weight: 600;
    position: absolute;
    top: 40px;
    color: var(--clr-theme-primary);
}

.reveal {
    overflow: hidden;
    width: 100%;
    margin-left: auto;
    position: relative;
}

.reveal img {
    transform-origin: left;
}

@supports (-webkit-background-clip: text) {
    .text-img {
        -webkit-text-fill-color:transparent;
        background: -webkit-linear-gradient(transparent,transparent);
        background: -o-linear-gradient(transparent,transparent);
        background: linear-gradient(-62deg,#441474,#333333);
        background-clip: text;
        -webkit-background-clip: text;
    }
}

@media (max-width: 1410px) {
    .counter-amy-number {
        font-size:78px;
    }

    .counter-amy-title {
        font-size: 14px;
    }
}

@media (max-width: 1170px) {
}

.testimonial-container {
    width: 70%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 40px;
    position: relative;
}

.testimonial-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.h3_testi_swiper .testimonial-slide {
    width: 100%;
    border-radius: 20px;
    background: #0f2923;
    position: relative;
    min-height: 320px;
}

.testimonial-slide img {
    height: auto;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-size: 1.1em;
    font-style: italic;
    color: var(255,255,255,0.7);
    padding: 15px;
    padding-left: 280px;
}

.testimonial-author {
    background: var(--clr-theme-primary);
    color: white;
    padding: 15px;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    border-radius: 5px;
    padding: 15px;
    padding-left: 280px;
}

.testimonial-author h3 {
    margin: 0;
    font-size: 1.2em;
}

.testimonial-author span {
    font-size: 0.9em;
    opacity: 0.8;
}

.quote-icon {
    font-size: 2em;
}

.h3_testi_swiper .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.h3_testi_swiper .swiper-pagination-bullet-active {
    background: var(--clr-theme-primary);
}

@media (max-width: 991px) {
    .testimonial-slide img {
        position:relative;
        max-height: 200px;
    }

    .testimonial-content p {
        padding-left: 0;
        text-align: center;
    }

    .testimonial-author {
        padding-left: 0;
        justify-content: center;
        text-align: center;
    }

    .quote-icon {
        display: none;
    }

    .h3_testi_swiper .testimonial-slide {
        display: flex;
        flex-direction: column;
        padding-top: 15px;
    }
}

.zq_footer-top {
    background: #252525;
}

.zq_footer-widget-title {
    color: rgb(255,255,255);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.8px;
    margin-bottom: 28px;
}

.zq_footer-widget-text {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 17px;
}

.zq_footer-widget form {
    position: relative;
    z-index: 1;
    margin-top: 35px;
}

.zq_footer-widget form input {
    width: 100%;
    height: 64px;
    background: #434242;
    border: none;
    padding-left: 20px;
    padding-right: 55px;
    border-radius: 32px;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 400;
    line-height: 52px;
    letter-spacing: -0.8px;
    text-align: left;
}

.zq_footer-widget form button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: var(--clr-theme-primary);
    height: 52px;
    width: 52px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.zq_footer-widget-mail {
    display: flex;
    gap: 10px;
}

.contact-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-left: 2px solid var(--clr-theme-primary);
    padding: 0 10px;
}

.contact-card .flag {
    width: 100%;
    height: 100%;
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
}

.contact-card .content-text {
    position: relative;
    z-index: 1;
}

.contact-card .content-text p {
    margin-bottom: 0;
}

.contact-card .content-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
}

.contact-card .content-title h5 {
    margin: 0;
}

.zq_footer-widget-mail i {
    font-size: 24px;
    color: var(--clr-theme-primary);
}

.zq_footer-widget-mail a {
    color: rgb(255,255,255);
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    text-transform: lowercase;
    display: block;
}

.zq_footer-widget-mail a:hover {
    color: var(--clr-theme-primary);
}

.zq_footer-widget ul {
    list-style: none;
}

.zq_footer-widget ul li {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zq_footer-widget ul li:last-child {
    margin-bottom: 0;
}

.zq_footer-widget ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    position: relative;
    z-index: 1;
}

.zq_footer-widget ul li a::after {
    position: absolute;
    left: 0;
    bottom: -2px;
    content: "";
    width: 10%;
    height: 1px;
    background: #441474;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #441474;
    color: #0f2923;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s;
}

.zq_footer-widget ul li a:hover {
    color: #fff;
}

.zq_footer-widget ul li a:hover::after {
    opacity: 1;
    visibility: visible;
    width: calc(100% + 1px);
}

.zq_footer-widget ul li span {
    background: var(--clr-theme-primary);
    height: 22px;
    padding: 0 7px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    color: rgb(15,41,35);
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
}

.zq_footer-widget-post:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 17px;
    padding-bottom: 16px;
}

.zq_footer-widget-post span {
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: block;
    margin-bottom: 6px;
}

.zq_footer-widget-post h5 {
    color: rgb(255,255,255);
    font-family: Outfit;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.zq_footer-widget-post h5:hover a {
    color: var(--clr-theme-primary);
}

.zq_footer-widget-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.zq_footer-widget-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
}

.zq_footer-widget-social a .newicn {
    width: 65%;
    filter: brightness(0) invert(1);
}

.zq_footer-widget-social a:hover {
    background: var(--clr-theme-primary);
    border-color: transparent;
    color: var(--clr-common-black);
}

@media (max-width: 1199px) {
    .zq_footer-widget.mr-85 {
        margin-right:0;
    }

    .zq_footer-widget.ml-45 {
        margin-left: 0;
    }

    .zq_footer-widget.ml-25 {
        margin-left: 15px;
    }

    .zq_footer-widget.ml-15 {
        margin-left: 0;
    }

    .zq_footer-widget.ml-85 {
        margin-left: 0;
    }
}

@media (max-width: 991px) {
    .zq_footer-widget.ml-25 {
        margin-left:0;
    }
}

.zq_footer-bottom {
    background: #252525;
    padding: 30px 0 30px;
}

@media (max-width: 767px) {
    .zq_footer-bottom {
        padding:22px 0;
    }
}

.zq_footer-bottom-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .zq_footer-bottom-wrap {
        justify-content:center;
    }
}

.zq_footer-logo {
    max-width: 148px;
}

.zq_footer-logo img {
    width: 100%;
}

@media (max-width: 767px) {
    .zq_footer-logo {
        display:none;
    }
}

.zq_footer-copyright p {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #b8b8b8;
}

.zq_footer-copyright p a {
    color: #fff;
}

@media (max-width: 480px) {
    .zq_footer-copyright p {
        text-align:center;
    }
}

@media (max-width: 991px) {
    .zq_footer-social {
        display:none;
    }
}

.zq_footer-social ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zq_footer-social ul li a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
}

.zq_footer-social ul li a:hover {
    background: var(--clr-theme-primary);
    border-color: transparent;
    color: var(--clr-common-black);
}

.zq_h4_footer-top-main {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 35px;
    margin-bottom: 55px;
}

.megamenu_parent {
    position: relative;
}

.mega_menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    color: #898989;
    z-index: 9999;
    animation-name: DropDownSlide;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    display: none;
}

.mega_menu.show {
    display: block;
}

.category-name {
    position: relative;
    width: 100%;
}

.category-name:not(:first-child) {
    padding-top: 13px;
}

.category-name h4 {
    font-size: 18px;
    font-weight: bold;
    color: #575757;
    padding-left: 20px;
    margin-bottom: 10px;
    display: block;
}

.zq_h3_header-menu nav ul li .category-name h4 a {
    font-size: 16px;
    font-weight: bold;
    color: #575757;
    height: unset;
    text-transform: none;
    line-height: normal;
    transition: all 0.3s ease-in-out;
}

.zq_h3_header-menu nav ul li .category-name h4:hover a {
    color: var(--clr-theme-primary);
}

.category-name p {
    color: #898989;
    font-size: 14px;
    line-height: 1.5;
    max-height: 40px;
    min-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.megamenu_items {
    margin-left: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d3d3d3;
    border-left: unset;
    padding-left: 0;
    display: block !important;
}

.category-name:last-child .megamenu_items {
    border-bottom: none;
}

.zq_h3_header-menu nav ul li .megamenu_items li {
    position: relative;
    width: 100%;
    border-top: none;
}

.zq_h3_header-menu nav ul li .megamenu_items a {
    color: #898989;
    font-size: 14px;
    line-height: 1.8;
    height: unset;
    font-weight: normal;
    text-transform: none;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.zq_h3_header-menu nav ul li .megamenu_items li a::before {
    content: "\f054";
    font-family: "FontAwesome";
    font-size: 10px;
    line-height: 1.8;
    width: 25px;
    height: 100%;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.zq_h3_header-menu nav ul li .megamenu_items li:hover a,.zq_h3_header-menu nav ul li .megamenu_items li:hover a::before {
    color: var(--clr-theme-primary);
}

@keyframes DropDownSlide {
    100% {
        transform: translateY(0);
    }

    0% {
        transform: translateY(10px);
    }
}

.zq-cities {
    position: relative;
    width: 100%;
    padding: 20px;
}

.cities-list {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    z-index: 9999;
}

.cities-list li {
    position: relative;
    margin-right: 21px;
    width: auto;
}

.zq_footer-widget .cities-list li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    position: relative;
    z-index: 1;
}

.cities-list li::after {
    content: "";
    width: 2px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    right: -11px;
}

.cities-list li:last-child::after {
    content: unset;
}

@media (max-width: 768px) {
    .zq_h3_header-action .zq_theme-btn {
        display:none;
    }
}

@media (max-width: 600px) {
    .zq_h2_choose-content .accordion-single-icon {
        display:none;
    }

    span.banner-social.bhnc-icn {
        right: 4%;
        top: 12%;
        width: 40px;
    }

    span.banner-social.yt-icn {
        right: 4%;
        bottom: 13%;
        top: unset;
        width: 60px;
    }

    span.banner-social.tktk-icn {
        left: 4%;
        bottom: 16%;
        top: unset;
        width: 60px;
    }

    span.banner-social.lnkdn-icn {
        right: 20%;
        top: 18%;
        width: 90px;
    }

    span.banner-social.x-icn {
        left: 26%;
        top: 90%;
        width: 35px;
    }

    span.banner-social.lnkdn-icn {
        right: 27%;
        top: 18%;
    }

    span.banner-social.ins-icn {
        left: 28%;
        top: 12%;
        width: 120px;
        height: 120px;
    }

    span.banner-social.pnt-icn {
        right: 48%;
        bottom: 14%;
        top: unset;
        width: 35px;
    }

    span.banner-social.fb-icn {
        width: 45px;
    }

    span.banner-social.snp-icn,span.banner-social.drbl-icn {
        display: none;
    }
}

@media (max-width: 500px) {
    .our_reviews {
        justify-content:center;
        text-align: center;
        gap: 10px;
    }

    .our_reviews img.img-fluid {
        height: 70px;
    }

    .zq_h3_hero-content h1 {
        font-size: 32px;
    }

    .zq_mobile_menu.open .logo {
        width: 300px;
        max-width: calc(100% - 80px);
    }
}

@media (max-width: 380px) {
}

.radial {
    position: fixed;
    z-index: 20;
    bottom: 50px;
    left: 50px;
}

.triggerButton .triggerIcon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.radial .triggerButton {
    position: absolute;
    z-index: 9;
    left: 50%;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border: none;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    text-decoration: none;
    background: #194339;
    transition: all 0.15s ease-in-out;
    transform: translate(-50%,-50%);
}

.radial .triggerButton .faOpen {
    position: absolute;
    font-size: 14px;
    transform: scale(1);
    transition: 0.25s ease-in-out;
}

.radial .triggerButton .faOpen:nth-child(1) {
    top: 20%;
}

.radial .triggerButton .faOpen:nth-child(2) {
    left: 20%;
    top: 52%;
}

.radial .triggerButton .faOpen:nth-child(3) {
    right: 20%;
    top: 52%;
}

.radial .triggerButton .faClose {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0) translate(-50%,-50%);
    transition: 0.25s ease-in-out;
}

.radial .radialMenu {
    --width: 250px;
    width: var(--width);
    height: var(--width);
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.radial .radialItem {
    list-style: none;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all 0.3s ease;
}

.radialItem .radialIcon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#fa-1 span {
    background: #012169;
}

.radial .radialItem a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    background: #194339;
    border-radius: 50%;
    text-decoration: none;
}

.radial .radialItem a:hover {
    transition-delay: 0s;
    background-color: #194339;
}

.radial.active .radialItem a span {
    opacity: 1;
    visibility: visible;
    right: auto;
    left: calc(100% + 15px);
}

.radial .radialItem span {
    position: absolute;
    top: 50%;
    background-color: #194339;
    right: auto;
    left: 100%;
    transform: translateY(-50%);
    white-space: nowrap;
    border-radius: 5px;
    padding: 8px;
    font-size: 14px;
    transition: 0.25s;
    opacity: 0;
    visibility: hidden;
}

.radial.active .triggerButton .faOpen {
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
}

.radial.active .triggerButton .faClose {
    opacity: 1;
    visibility: visible;
    transform-origin: top left;
    transform: scale(1) translate(-50%,-50%);
}

.radial.active .radialItem {
    --angle: 0deg;
    --point-size: 60px;
    --countItem: 8;
    --radius: calc((var(--width) / 2) - (var(--point-size) / 2));
    --x: calc(var(--radius) * cos(var(--angle)));
    --y: calc(var(--radius) * sin(var(--angle)));
    top: calc(var(--radius) + var(--y) + (var(--point-size) / 2));
    left: calc(var(--radius) + var(--x) + (var(--point-size) / 2));
    width: var(--point-size);
    height: var(--point-size);
}

.radial.active .radialItem a {
    box-shadow: 0 2px 4px rgba(0,0,0,0.15),0 4px 8px rgba(0,0,0,0.2);
}

.radial.active .radialItem:nth-child(1) {
    --angle: 280deg;
}

.radial.active .radialItem:nth-child(2) {
    --angle: 350deg;
}

.innerpage_new h2 {
    margin-top: 1rem;
}

.innerpage_new p {
    color: rgba(255,255,255,0.7);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.77;
}

.innerpage_new p a {
    color: #441474;
}

.innerpage_new p a:hover {
    color: #2a5627;
}

.innerpage_new ul {
    list-style: none;
    padding: 0;
}

.innerpage_new ul li {
    background: #2a5527;
    margin-bottom: 10px;
    padding: 12px 15px;
    border-left: 5px solid #2a5527;
    border-radius: 5px;
    transition: 0.3s;
}

.innerpage_new ul li:hover {
    background: #441474;
    transform: translateX(5px);
}

.innerpage_new .tech-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.innerpage_new .tech-box {
    flex: 1 1 calc(33.3% - 20px);
    background: #1c3926;
    border-left: 5px solid #441474;
    padding: 15px;
    border-radius: 8px;
    transition: 0.3s;
}

.innerpage_new .tech-box:hover {
    background: #1c3926a6;
    transform: translateY(-5px);
}

.innerpage_new .highlight-box {
    background: #1c3926;
    border-left: 5px solid #441474;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.innerpage_new .highlight-box ul li {
    background: transparent;
    border: none;
    padding: 5px 0;
    margin-bottom: 5px;
}

.innerpage_new .cta {
    background: linear-gradient(135deg,#2a5527,#198754);
    color: #fff;
    text-align: center;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.innerpage_new .cta h3 {
    margin: 0;
    font-size: 24px;
}

.innerpage_new .cta p {
    font-size: 16px;
    margin: 10px 0;
}

.innerpage_new .cta a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #fff;
    background: #252327;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.innerpage_new .cta a:hover {
    background: #2523279c;
}

.web-development {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
}

.web-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.web-table th,.web-table td {
    padding: 15px 20px;
    text-align: left;
    vertical-align: top;
}

.web-table thead {
    background-color: #441474;
    color: #fff;
}

.web-table tbody tr:nth-child(odd) {
    background-color: #2a5527;
}

.web-table tbody tr:nth-child(even) {
    background-color: #2a4741;
}

.web-table tbody tr:hover {
    background-color: #441474;
    transition: 0.3s ease;
}

.web-table th {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.web-table td {
    color: #fff;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .innerpage_new .tech-box {
        flex:1 1 100%;
    }
}

.innerpage_new .circle-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.innerpage_new .circle {
    background: #2a5527;
    border-radius: 50px;
    width: 225px;
    height: 225px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    border: 2px solid #441474;
    overflow: hidden;
}

@media (max-width: 600px) {
    .zq_breadcrumb-content-list {
        display:none;
    }
}
