@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&amp;family=Outfit:wght@100..900&amp;display=swap");

:root {
  --clr-common-white: #ffffff;
  --clr-common-black: #0f2923;
  --clr-common-gray: #333333;
  --clr-common-border: #525252;
  --clr-common-lightBlack: #2a4741;
  --clr-body-heading: #000080;
  --clr-body-text: #ffffff;
  --clr-color-skyBlue: #a1eeff;
  --clr-color-lightPink: #ffbd8c;
  --clr-color-lightGreen: #c7ff6b;
  --clr-theme-primary: #000080;
  --clr-bg-gray: #f6f6f6;
  --webex-primary-color2: #6600d3;
  --gradient-color1: linear-gradient(45deg, #cc3769 0%, var(--webex-primary-color2) 100%);
}


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

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Aptos";
  src: url(../fonts/aptos-bold.ttf);
}



@font-face {
  font-family: "Aptos_light";
  src: url(../fonts/aptos.ttf);
}

@-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(0px);
    filter: blur(0px);
  }
}

@keyframes reveal {
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}

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


html {
  font-family: Aptos_light;

}

body {
  font-family: Aptos_light;
  font-weight: 400;
  font-style: normal;
  color: var(--clr-body-text);
  font-size: 16px;
  line-height: 24px;
  /* background: var(--clr-common-black); */

  /* background: linear-gradient(45deg, #6600d3 0%, #ef4a44 100%); */
  overflow-x: hidden;
  position: relative;
}

.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: 0px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: Aptos_light;
}

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: Aptos_light;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}

ul {
  margin: 0;
  padding: 0;
}

hr {
  border-top: 0 none;
  padding: 0;
  opacity: 1;
}

label {
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

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

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);
  background-color: #b3b3ff;
}

.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);
  background-color: #000052;
}

.pt-205 {
  padding-top: 205px;
}

.mb-05 {
  margin-bottom: 5px;
}

.zq_navigation {
  display: flex;
  gap: 15px;
  align-items: center;
}

.zq_navigation div {
  width: 45px;
  height: 45px;
  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); */
  opacity: 0.5;
  background: var(--clr-theme-primary);

}

.zq_navigation div:hover {
  background: var(--clr-theme-primary);
  color: #fff;
  opacity: 1;

}

@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: 50px;
}

.pt-100 {
  padding-top: 50px;
}

.bg-padding {
  padding: 50px 0px;
}

.bg-top {
  padding-top: 50px;
}

.bg-bottom {
  padding-bottom: 50px;
}

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

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

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(0px) 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(0px);
}

.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(../images/bg/waves-shape.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 0px;
  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%;
  }

}

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

.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: 0px;
  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: #000080;
  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: #000080;
  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: #000080;
}

.zq_h2_header-area {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 9;
  background-color: var(--clr-common-lightBlack);
  /* background-color: #6b6bff; */
  background-color: #fff;
  box-shadow: 1px 3px 20px 1px #0000801c;
}

@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: 8px 30px 8px;
  margin-left: -30px;
  margin-right: -30px;
  border-radius: 88px;
  /* background-color: #6b6bff; */
}

@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;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .zq_h2_header-left {
    gap: 50px;
  }
}

.zq_h2_header-logo {
  max-width: 300px;
  flex-shrink: 0;
  background-color: #fff;
  padding: 5px;
  border-radius: 10px;
}

@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: #000080;
  display: block;
  font-size: 16px;s
  font-weight: 600;
  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: #000080;
}

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

@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: #000080;
  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: 9;
}

.zq_h3_header-logo {
  max-width: 150px;
  flex-shrink: 0;
}

@media (max-width: 1199px) {
  .zq_h3_header-logo {
    max-width: 140px;
  }
}

.zq_h3_header-menu {
  display: flex;
  justify-content: center;
}

@media (max-width: 1199px) {
  .zq_h3_header-menu {
    justify-content: flex-start;
  }
}

@media (max-width: 991px) {
  .zq_h3_header-menu {
    display: none;
  }
}

.zq_h3_header-menu nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

@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: 400;
  line-height: 26px;
  height: 44px;
  line-height: 44px;
}

.zq_h3_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_h3_header-menu nav ul li.submenu li {
  display: block;
  margin-right: 0;
  position: relative;
  z-index: 99;
}

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

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

.zq_h3_header-action-search {
  color: #000080;
}

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

@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: #000080;
  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_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: #000080;
}

.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: #000080;
  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: #000080;
  color: var(--clr-common-black);
}

.zq_h5_header_icon {
  color: #000080;
  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: #000080;
}

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

@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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
}

.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: #000080;
  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;
  padding-top: 262px;
  padding-bottom: 230px;
}

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

.zq_h3_hero-content h1 {
  color: var(--clr-body-heading);
  font-size: 100px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -3px;
  text-transform: capitalize;
  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: #000080;
  font-family: Inter;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 60px;
}

@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: 30px;
  /* padding-bottom: 95px;s */
  /* background-color: rgb(15, 41, 35); */
  /* background: linear-gradient(45deg, #6600d3 0%, #ef4a44 100%); */
}

/* .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;
  right: 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;
  box-shadow: 0 5px 15px rgb(0 0 128 / 26%);
}

.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: 10px;
  margin-bottom: 10px;
  color: #000080;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: -0.5px; */
}

.zq_h4_hero-form form textarea {
  padding-bottom: 50px;
}

.zq_h4_hero-form form button {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  padding: 10px 50px;
  border-radius: 8px;
  border: none;
  background-color: var(--clr-theme-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
}

@media (max-width: 1399px) {}

@media (max-width: 991px) {
  .zq_h4_hero-content {
    margin-left: 0;
  }
}

.zq_h4_hero-content a {
  padding: 15px 50px;
  background-color: #000080;
  border-radius: 4px;
  margin-left: 50px;
}

.zq_h4_hero-content-title {
  color: #000080;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 1399px) {
  .zq_h4_hero-content-title {
    font-size: 50px;
    text-align: center;
    line-height: 1.3;
  }
}

@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: 48px;
  }
}

/* .zq_h4_hero-content-title span {
  display: block;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px#000080;
} */
.zq_h4_hero-content p {
  color: #000;
  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;
  }
}

.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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
  display: block;
  letter-spacing: 2.5px;
  /* color: #6b6bff; */
  /* font-size: 18px; */
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.zq_section-title {
  color: #000080;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -1.1px;
}

@media (max-width: 1199px) {
  .zq_section-title {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .zq_section-title br {
    display: none;
  }
}

@media (max-width: 575px) {
  .zq_section-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .zq_section-title {
    font-size: 28px;
  }
}

.zq_section-text {
  color: #000080;
  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: var(--clr-theme-primary);
  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;
}

.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: 32px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
}

@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: #000080;
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.zq_inner_section.zq_section-title span {
  color: #000080;
}

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

}

.zq_brand-item:hover {
  /* border-color: var(--clr-theme-primary);
  background: var(--clr-common-lightBlack); */
}

.zq_brand-item:hover img {
  filter: opacity(1);
}

.zq_h3_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: 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;
  filter: opacity(0.6);
}

.zq_h3_brand-item:hover {
  border-color: var(--clr-theme-primary);
  background: var(--clr-common-lightBlack);
}

.zq_h3_brand-item:hover img {
  filter: opacity(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: #000080;
  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_faq-content.accordion-body p {
  color: #000080;
  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: 20px;
  font-weight: 600;
  line-height: 1.25;
  border-radius: 8px 8px 0 0 !important;
  display: flex;
  align-items: center;
  gap: 12px;
}

@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: #eee;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  padding-top: 19px;
  margin-bottom: 0;
}

@media (max-width: 1399px) {
  .zq_inner_faq-wrap.ml-50 {
    margin-left: 0;
  }
}

input:-internal-autofill-selected {
  appearance: menulist-button;
  background-image: none !important;
  background-color: transparent !important;
  color: fieldtext !important;
}

.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: #000080;
  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: #000080;
  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: 0px 16px 30px 0px 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: #000080;
  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: #000080;
  font-family: Outfit;
  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: #000080;
  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: #fff;
  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: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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #fff;
  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-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;
}

.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: #000080;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

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

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

@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: #000080;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  display: block;
  margin-bottom: 10px;
}

.zq_portfolio_details-info-item p {
  color: #000080;
  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: #000080;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.zq_choose-item p {
  color: #000080;
  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: flex;
  align-items: center;
  gap: 100px;
}

@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 {
  max-width: 665px;
  width: 100%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 1399px) {
  .zq_h2_choose-img {
    max-width: 565px;
  }
}

@media (max-width: 1199px) {
  .zq_h2_choose-img {
    max-width: 450px;
  }
}

@media (max-width: 991px) {
  .zq_h2_choose-img {
    max-width: 100%;
  }
}

.zq_h2_choose-img img {
  width: 100%;
  min-height: 300px;
  height: 100%;
}

.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;
  right: 30px;
  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: 44px;
  font-weight: 600;
  line-height: 54px;
}

@media (max-width: 1399px) {
  .zq_h2_choose-img-info-item h2 {
    font-size: 40px;
  }
}

@media (max-width: 1199px) {
  .zq_h2_choose-img-info-item h2 {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .zq_h2_choose-img-info-item h2 {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .zq_h2_choose-img-info-item h2 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .zq_h2_choose-img-info-item h2 {
    font-size: 40px;
  }
}

.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: 24px;
  font-weight: 600;
  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: #000080;
  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: 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;
}

@media (max-width: 1199px) {
  .zq_h2_choose-content.accordion-body {
    padding: 0 40px 28px 59px;
  }
}

@media (max-width: 480px) {
  .zq_h2_choose-content.accordion-body {
    padding: 0 40px 28px 56px;
  }
}

.zq_h2_choose-content.accordion-body p {
  color: #000080;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

.zq_h2_choose-content.accordion-single {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

@media (max-width: 480px) {
  .zq_h2_choose-content.accordion-single {
    flex-wrap: wrap;
  }
}

.zq_h2_choose-content.accordion-single-icon {
  width: 80px;
  height: 80px;
  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: rgb(255 255 255);
  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: #000080;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 13px;
}

.zq_h3_choose-content-item-info p {
  color: #000000;
  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: #000080;
  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: #000080;
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.zq_h3_choose-img {
  position: relative;
  z-index: 1;
}

.zq_h3_choose-img-inner {
  border-radius: 8px;
  padding-bottom: 15px;
}

.zq_h3_choose-img-shape-1 {
  position: absolute;
  left: -15px;
  bottom: 0;
  z-index: -1;
}

.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: #000080;
  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: #000080;
  width: 38px;
}

.zq_h4_choose-content-item-info h4 {
  color: #000080;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 7px;
}

.zq_h4_choose-content-item-info p {
  color: #000080;
  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;
}

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

.zq_h4_choose-right.inner-item:first-child::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 130px;
  content: "";
  background-color: #2a4741;
  z-index: 9;
}

.zq_h4_choose-right.inner-item:last-child::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 130px;
  content: "";
  background-color: #2a4741;
  z-index: 9;
}

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

.zq_h4_choose_2-content-item:hover {
  border-color: #000080;
  background-color: #2a4741;
}

.zq_h4_choose_2-content-item h2 {
  color: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
}

.zq_price-btn a {
  border-radius: 32px;
  box-shadow: 0px 16px 30px 0px 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: 20px;
  border-radius: 8px;
}

.zq_h2_price-category p {
  color: var(--clr-theme-primary);
  font-size: 26px;
  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: 10px;
}

.zq_h2_price-amount img {
  height: 38px;
  filter: invert(1);
}

.zq_h2_price-amount h2 {
  color: var(--clr-body-heading);
  font-size: 45px;
  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: #000080;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
}

.zq_h2_price-text {
  color: #000080;
  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: #eee;
  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: 0px 16px 30px 0px rgba(1, 6, 20, 0.1);
  background: rgb(138, 241, 53);
  max-width: 260px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  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: #000080;
  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: #000080;
  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: 0px 16px 30px 0px 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: #000080;
  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: #000080;
  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: #000080;
  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#000080;
  border-radius: 50px;
  color: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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-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: #000080;
  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: 5px;
  background-image: linear-gradient(180deg, rgb(107 107 255), rgba(15, 41, 35, 0) 48.5%, rgb(107 107 255) 100%);
  border-radius: 340px;
}

@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#000080;
}

@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: 45px;
  height: 45px;
  box-sizing: border-box;
  border: 4px solid rgb(107 107 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255 255 255);
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  background-color: #000000;
  z-index: 2;
  box-shadow: 1px 1px 20px 20px #2f2fb81f;
  /* text-shadow: 1px 0px #6b6bff; */
}

@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: #000080;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.zq_h4_service-item-content p {
  color: #000000;
  font-family: Inter;
  font-size: 16px;
  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;
}

.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: #000080;
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
}

.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: #000080;
  border-radius: 8px;
  box-shadow: 0px 0px 50px 0px 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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
}

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

.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: #000080;
  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: #000080;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 22px;
}

.zq_inner_service-item p {
  color: #000080;
  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#000080;
  padding: 0 35px;
  border-radius: 60px;
  color: #000080;
  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: #000080;
}

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

.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: #000080;
  font-family: Outfit;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin-bottom: 20px;
}

.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: #000080;
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
}

.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: #000080;
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

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

.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: #000080;
  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: #000080;
  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: #000080;
  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: 35px 30px 35px;
  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;
}

.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: #fff;
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 28px;
}

.zq_h2_testimonial-admin {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zq_h2_testimonial-admin img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
}

.zq_h2_testimonial-admin-info h5 {
  color: var(--clr-body-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;

  margin-bottom: 5px;
}

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

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

.zq_h3_testimonial-item p {
  color: #000080;
  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: #000080;
  font-family: Outfit;
  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;
}

.zq_h5_testimonial-wrap::before {
  position: absolute;
  left: 0;
  content: "";
  background: linear-gradient(90deg, rgb(24, 66, 57), rgba(24, 66, 57, 0) 100%);
  height: 450px;
  width: 285px;
  z-index: 9;
  bottom: 30px;
}

@media (max-width: 575px) {
  .zq_h5_testimonial-wrap::before {
    display: none;
  }
}

.zq_h5_testimonial-wrap::after {
  position: absolute;
  right: 0;
  content: "";
  background: linear-gradient(90deg, rgb(24, 66, 57), rgba(24, 66, 57, 0) 100%);
  height: 450px;
  width: 285px;
  z-index: 9;
  bottom: 30px;
  transform: rotate(180deg);
}

@media (max-width: 575px) {
  .zq_h5_testimonial-wrap::after {
    display: none;
  }
}

@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: #000080;
  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: #000080;
}

.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: 0px 16px 30px 0px 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: #000080;
  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: #000080;
}

.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: #000080;
  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: #000080;
  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: #000080;
  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 0px 0px;
  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: #000080;
  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: #000080;
}

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

.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 0px 0px;
  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: #000080;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  border: 1px solid#000080;
}

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

.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: #000080;
  -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: #000080;
  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: #000080;
  font-family: Outfit;
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.6px;
  margin-bottom: 20px;
}

@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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
}

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

.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: #000080;
  font-family: Inter;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
}

.zq_blog_details-reply p {
  color: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
}

.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 {
  border-radius: 60px;
  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_theme-btn:hover {
  background-color: #000080;
  color: var(--clr-common-black);
}

.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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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#000080;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  color: #000080;
  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: #000080;
}

.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: #000080;
  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#000080;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  color: #000080;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zq_inner_team-item-content ul li a:hover {
  background-color: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}

.zq_contact-form {
  background: var(--clr-theme-primary);
  padding: 50px 30px 50px;
  border-radius: 8px;
  max-width: 682px;
  width: 100%;
}

@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 {
  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;
  font-weight: 400;
  padding: 7px 20px;
}

.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-form-btn {
  border-radius: 8px;
  background: rgb(0, 0, 0);
  color: #000080;
  font-family: Outfit;
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  text-transform: capitalize;
  height: 56px;
  display: inline-flex;
  align-items: center;
  padding: 0 60px;
  border: 0;
}

.zq_contact-form-btn:hover {
  background-color: var(--clr-common-white);
  color: var(--clr-common-black);
}

.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 svg {
  width: 48px;
  color: #fff;
}

.zq_contact-call-info span {
  color: #000080;
  font-family: Outfit;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: block;
  margin-bottom: 13px;
}

.zq_contact-call-info a {
  color: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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;
}

.bg-gray {
  background-color: var(--clr-common-lightBlack);
}

.nice-select.has-nice-select {
  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;
  font-weight: 400;
  padding: 0px 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: #000080;
  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: #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: 60px;
  font-weight: 400;
  padding: 0 20px;
}

.nice-select.has-nice-select-2::after {
  border-bottom: 2px solid#a3a3a3;
  border-right: 2px solid#a3a3a3;
  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-theme-primary);
  margin-top: 4px;
}

.nice-select.has-nice-select-2 ul li {
  color: var(--clr-common-black);
  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: var(--clr-common-black);
  color: #000080;
}

.nice-select.has-nice-select-2.option.focus,
.nice-select.has-nice-select-2.nice-select.option.selected.focus {
  background-color: var(--clr-common-black);
  color: #000080;
}

.zq_breadcrumb-area {
  padding-top: 115px;
  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: rgba(138, 241, 53, 0.5);
  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;
}

.zq_breadcrumb-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.zq_breadcrumb-content-title {
  color: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: #000080;
  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: 9999;
  transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
}

.zq_mobile_menu.logo {
  position: absolute;
  top: 40px;
  left: 40px;
}

@media (max-width: 767px) {
  .zq_mobile_menu.logo {
    left: 25px;
  }
}

@media (max-width: 480px) {
  .zq_mobile_menu.logo {
    left: 15px;
  }
}

.zq_mobile_menu.close-menu {
  position: absolute;
  top: 30px;
  right: 40px;
  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;
}

@media (max-width: 767px) {
  .zq_mobile_menu.close-menu {
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .zq_mobile_menu.close-menu {
    right: 15px;
    font-size: 18px;
  }
}

.zq_mobile_menu.logo,
.zq_mobile_menu.close-menu {
  transform: translateY(-100px);
  opacity: 0;
  transition: all 0.4s;
}

.zq_mobile_menu.menu-navbar {
  color: #000080;
  height: 100vh;
  padding-top: 140px;
  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: #000080;
  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: #000080;
}

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

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

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

  .zq_mobile_menu.menu-navbar {
    height: calc(100vh-40px);
  }
}

.zq_footer-top {
  background: var(--clr-common-lightBlack);
  padding-bottom: 52px;
}

.zq_footer-widget-title {
  color: #000080;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 28px;
}

.zq_footer-widget-text {
  color: #000080;
  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: #33574f;
  border: none;
  padding-left: 20px;
  padding-right: 55px;
  border-radius: 32px;
  color: #000080;
  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: var(--clr-common-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.zq_footer-widget-mail {
  display: flex;
  align-items: center;
  gap: 10px;
}

.zq_footer-widget-mail i {
  font-size: 24px;
  color: var(--clr-theme-primary);
}

.zq_footer-widget-mail a {
  color: #000080;
  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: #000080;
  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: #1d1d1d;
  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_footer-widget ul li a:hover {
  color: #000080;
}

.zq_footer-widget ul li a:hover::after {
  opacity: 1;
  visibility: visible;
  width: calc(100%+10px);
}

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

.zq_footer-widget-social 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: #000080;
}

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

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

@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: #000080;
}

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

@media (max-width: 767px) {
  html {
    overflow-x: hidden;
  }

  .zq_footer-bottom-wrap {
    justify-content: center;
  }

  .zq_h4_hero-shape-1 {
    position: absolute;
    right: 115px;
    top: 790px;
  }

  .zq_h4_hero-content-admin {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    flex-shrink: 0;
  }

  .zq_h4_hero-content a {
    padding: 15px 47px;
    background-color: #000080;
    border-radius: 4px;
    margin-left: 0px;
    border-radius: 35px;
  }

  .zq_h4_hero-form {
    margin-top: 50px;
    display: none;
  }

  .zq_h4_hero-area {
    padding-bottom: 0px;
  }
}

.pack_cards li {
  list-style-type: none;
  list-style-type: none;
  padding: 8px 0px;
  font-size: 16px;
}

.pack_cards {
  padding: 20px 10px;
  background-color: #000080;
  color: #000;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(54px);
  background: rgb(107 107 255 / 38%);

  color: #000080;

}

.pack_cards h3 {
  font-size: 20px;
  color: #000080;
}

.pack_cards i {
  padding-right: 10px;
  background-color: #000080;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  margin-right: 10px;
  text-align: center;
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;


}



.right_side_pak_cards .pack_cards {
  height: 95%;
}

.package_section h2 {
  font-size: 32px;
  text-align: center;
  padding: 20px 0px;
  color: #6b6bff;
  /* text-shadow: 1px 0px 0px #6b6bff; */
}

.right_side_pak_cards .col-md-4 {
  padding: 0px 5px;
}

.left_side_pak_cards .pack_cards {
  height: 85%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(54px);
  background: rgb(255 255 255 / 38%);
  padding: 30px 40px 50px;
  color: #000080;
}


.zq_h2_testimonial-bg {
  background-color: #6B6BFF;
  background-color: #b3b3ff;
}

.zq_common_width-2_inner {
  border-radius: 8px;
  background-color: #dedefe;
}


.zq_project-single:first-child {
  border-right: 1px solid rgb(0 0 128 / 39%);
}


.zq_project-item {
  border-bottom: 1px solid rgb(0 0 128 / 39%);
  padding-bottom: 35px;
  margin-bottom: 30px;
}

.zq_h2_testimonial-item {
  background: #6b6bff;

}







/* .zq_h4_hero-form {
  margin-left: 37px;
  margin-right: -5px;
  position: fixed;
  top: 15%;
  width: 25%;
  right: 0%;
  height: 360px;
} */



section#aboutUs {
  background-color: #f075280d;
}


/* .zq_h4_hero-area {

  background: linear-gradient(45deg, #ffffff 0%, #dedefe 100%);
} */

.faq .zq_section-title {
  color: #ffffff;

}

.faq .zq_section-subtitle {
  color: #ffffff;

}


.left_side_pak_cards .pack_cards {
  height: 85%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(54px);
  background: rgb(107 107 255);
  /* padding: 30px 40px 50px; */
  color: #ffffff;
}




#contactUs {
  background: linear-gradient(45deg, #6b6bff 0%, #dedefe 100%);
  background-image: url(https://img.freepik.com/premium-photo/woman-wearing-headset-with_280538-8031.jpg?w=1380);
  background-position: center;
  box-shadow: rgb(107 107 255 / 80%) 0 0 0 1000px inset;

}

button.btn.btn-primary {
  position: fixed;
  /* left: 160%; */
  top: 50%;
  z-index: 999;
  transform: rotate(90deg);
  font-size: 27px;
  padding: 0px 10px;
  background-color: #000080;
  right: -70px !important;
}

.zq_inner_faq-content i {
  padding-right: 10px;
}

.funfact-section-style1 {
  background-size: cover;
  background-position: center bottom;
  padding: 50px 0px;
  background-color: #edf2fa;
}

.funfact-item {
  text-align: center;
  margin-bottom: 30px;
}

.funfact-icon {
  margin-bottom: 20px;
}

.funfact-icon span {
  font-size: 50px;
  color: #ff5722;
  /* Change color as needed */
}

.count-box {
  font-size: 48px;
  font-weight: bold;
  color: #6b6bff;
}

.funfact-item .title {
  font-size: 18px;
  color: #000080;
  margin-top: 10px;
}



.hero {
  text-align: center;
  margin-bottom: 40px;
  padding: 50px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 20px;
  /* box-shadow: 0 10px 30px rgba(0,0,128,0.2); */
  border: 1px solid rgba(107, 107, 255, 0.1);
}

.hero h1 {
  background: linear-gradient(135deg, #000080 0%, #6b6bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  font-size: 2.8em;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.original-price {
  text-decoration: none;
  color: #000;
  font-size: 24px;
  position: relative;
  display: inline-block;
  font-weight: 600;
}

.original-price::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  right: -5px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff3b3b 20%, #ff3b3b 80%, transparent);
  transform-origin: center;
  /*animation: strikeThrough 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;*/
}

@keyframes strikeThrough {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }

  15% {
    transform: scaleX(0);
    opacity: 1;
  }

  35% {
    transform: scaleX(1);
    opacity: 1;
  }

  65% {
    transform: scaleX(1);
    opacity: 1;
  }

  85% {
    transform: scaleX(0);
    opacity: 1;
  }

  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}

.price-tag {
  font-size: 48px;
  color: #e74c3c;
  margin: 20px 0;
  font-weight: bold;
  font-size: 43px;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  letter-spacing: -1px;
  background: linear-gradient(135deg, rgb(107, 107, 255) 0%, rgb(0, 0, 128) 100%) text;
  margin: 0px 0px;
  padding: 20px 0px;
}

.price-flash {
  animation: flashPrice 2s ease-out;
  display: inline-block;
}

@keyframes flashPrice {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  20% {
    opacity: 0;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }

  70% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  padding: 30px;
  border-radius: 20px;
  /* box-shadow: 0 5px 15px rgba(0,0,128,0.1); */
  border: 1px solid rgba(107, 107, 255, 0.1);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 128, 0.15);
}

.service-card h3 {
  color: #000080;
  margin-bottom: 20px;
  border-bottom: 2px solid #6b6bff;
  padding-bottom: 15px;
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.service-card ul {
  list-style-type: none;
}

.service-card li {
  margin: 15px 0;
  padding-left: 28px;
  position: relative;
  font-weight: 400;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
}

.service-card li:before {
  content: "✓";
  color: #6b6bff;
  position: absolute;
  left: 0;
  font-weight: 600;
  font-size: 1.1em;
}

.service-card ul .sub-list {
  margin-left: 10px;
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 0.95em;
  color: #4a5568;
  border-left: 2px solid rgba(107, 107, 255, 0.2);
  padding-left: 15px;
}

.service-card ul .sub-list li {
  margin: 8px 0;
  padding-left: 22px;
  font-weight: 300;
}

.service-card ul .sub-list li:before {
  content: "•";
  color: #6b6bff;
  font-size: 1.2em;
  left: 0;
}

.cta-button {
  display: inline-block;
  padding: 14px 25px;
  background: linear-gradient(135deg, #6b6bff 0%, #000080 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 35px !important;
  font-size: 18px;
  font-weight: 700;
  margin-top: 35px;
  transition: all 0.4s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 128, 0.2);
  letter-spacing: 0.5px;
  font-family: 'Aptos_light';
  background: linear-gradient(45deg, #cc3769 0%, var(--webex-primary-color2) 100%);

}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 128, 0.3);
  background: linear-gradient(135deg, #000080 0%, #6b6bff 100%);
  background: linear-gradient(45deg, #cc3769 0%, var(--webex-primary-color2) 100%);

}

/* Price highlight effect */
.price-highlight {
  display: inline-block;
  position: relative;
  font-weight: 500;
  color: #000080;
}

@media (max-width: 768px) {
  .hero {
    padding: 30px;
    margin: 20px 0px;
  }

  .hero h1 {
    font-size: 2em;
  }

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

  .original-price {
    font-size: 25px;
    font-weight: bold;
  }

  .services {
    gap: 20px;
  }

  .service-card {
    padding: 20px;
  }
}

.funfact-item img {
  width: 65px;
}

.funfact-item {
  text-align: center;
  margin-bottom: 30px;
  border-left: 2px solid rgba(107, 107, 255, 0.2);
}


section.cpright {
  background-color: #6b6bff;
}

.cpright p {
  margin-bottom: 0px;
  text-align: center;
  padding: 5px 0px;
  color: #fff;
}



.modal-dialog {
  max-width: 500px;
}

.modal-content {
  background: #ffffff;
  border: none;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

/* Animated Background */
.animated-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(107, 107, 255, 0.1) 0%, rgba(0, 0, 128, 0.1) 100%);
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: -100px;
  right: -100px;
  animation: float 8s infinite;
}

.circle-2 {
  width: 150px;
  height: 150px;
  bottom: -75px;
  left: -75px;
  animation: float 12s infinite;
}

.circle-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: -50px;
  animation: float 10s infinite;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(20px, 20px) rotate(180deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* Modal Header */
.modal-header {
  border-bottom: 1px solid rgba(0, 0, 128, 0.1);
  padding: 20px 30px;
  position: relative;
  z-index: 1;
}

.modal-title {
  color: #000080;
  font-size: 24px;
  font-weight: 600;
}

/* Form Styles */
.modal-body {
  padding: 30px;
  position: relative;
  z-index: 1;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b6bff;
  font-size: 16px;
}

.form-group textarea+i {
  top: 25px;
  transform: none;
}

.form-control {
  padding: 12px 15px 12px 45px;
  border: 2px solid rgba(107, 107, 255, 0.2);
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #6b6bff;
  box-shadow: none;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #6b6bff 0%, #000080 100%);
  color: white;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(107, 107, 255, 0.3);
}

.submit-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 576px) {
  .modal-dialog {
    margin: 1rem;
  }

  .modal-content {
    border-radius: 15px;
  }

  .modal-header {
    padding: 15px 20px;
  }

  .modal-body {
    padding: 20px;
  }

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

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



.modal-dialog {
  max-width: 40%;
}


.enquiry-btn {
  position: fixed;
  top: 50%;
  right: -70px;
  transform: rotate(90deg);
  z-index: 999;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #6b6bff 0%, #000080 100%);
  border: none;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(107, 107, 255, 0.3);
  animation: pulseGlow 2s infinite, wiggle 3s infinite;
  border-radius: 100px;
}

.enquiry-btn:hover {
  right: -65px;
  padding-bottom: 18px;
  background: linear-gradient(135deg, #000080 0%, #6b6bff 100%);
  box-shadow: 0 0 30px rgba(107, 107, 255, 0.5);
}

.enquiry-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shine 3s infinite;
}

/* Pulse Glow Animation */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 15px rgba(107, 107, 255, 0.3);
  }

  50% {
    box-shadow: 0 0 25px rgba(107, 107, 255, 0.5);
  }

  100% {
    box-shadow: 0 0 15px rgba(107, 107, 255, 0.3);
  }
}

/* Shine Effect Animation */
@keyframes shine {
  0% {
    transform: translateX(-100%);
  }

  20% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Subtle Wiggle Animation */
@keyframes wiggle {
  0%, 7% {
    transform: rotate(90deg);
  }

  15% {
    transform: rotate(92deg);
  }

  20% {
    transform: rotate(88deg);
  }

  25% {
    transform: rotate(90deg);
  }

  100% {
    transform: rotate(90deg);
  }
}

/* Optional: Add icon and animation */
.enquiry-btn i {
  margin-left: 8px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-5px);
  }

  60% {
    transform: translateY(-3px);
  }
}

.mt_-100 {
  margin-top: -100px;
}

@media (max-width: 600px) {
  .modal-dialog {
    max-width: 80%;
    margin: auto;
  }


  .mt_-100 {
    margin-top: 0px !important;
  }

  .zq_h4_hero-area {

    padding-top: 30px;


  }



  .zq_h4_hero-content-title {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0.8px;
    margin-bottom: 30px;
  }

  .price-tag {
    font-size: 36px;
    line-height: 1;
  }

  .talk-to-us {
    padding: 0px 0;
  }


  .zq_h2_header-area {
    top: 0px;
    position: relative;
  }

  .content {
    padding-top: 0px !important;
  }

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


  .zq_h4_service-item-content h3 {
    color: #000080;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 10px;
  }

  .zq_h4_service-item-content {
    /* max-width: 562px; */
    width: 100%;
    padding: 20px;
  }

  .zq_h4_service-item {
    flex-wrap: wrap;
    gap: 3px;
    box-shadow: 0 10px 30px rgba(0, 0, 128, 0.2);
    padding: 8px;
    background-color: #fff;
    border-radius: 10px;
  }

  .call-button, .chat-button {

    padding: 10px 26px;

  }

  .pb-70 {
    padding-bottom: 0px;
  }

  .funfact-icon {
    margin-bottom: 5px;
  }

  .count-box {

    margin-bottom: 0px;
  }

  .bdr_sms_none {
    border: none;
  }

  .call-button, .chat-button {

    padding: 10px 26px !important;

  }

  .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #6b6bff 0%, #000080 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 35px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 4px;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 128, 0.2);
    letter-spacing: 0.5px;
    font-family: 'Aptos_light';
    background: linear-gradient(45deg, #cc3769 0%, var(--webex-primary-color2) 100%);
  }

  .zq_h2_header-left {
    display: flex;
    align-items: center;
    /* gap: 100px; */
    justify-content: center;
    text-align: center;
    width: 100%;
  }


  .transform h5 {
    font-size: 24px;
    text-align: center !important;
  }

  .zq_h2_header-logo {
    max-width: 250px;
  }

  .zq_h2_header-logo {

    flex-shrink: 0;
    background-color: #fff;
    padding: 8px;
    border-radius: 6px;
  }

  .zq_h2_header-wrap {
    /* background-color: #2a4741; */
    padding: 5px 30px 5px;
    margin-left: -30px;
    margin-right: -30px;
    border-radius: 88px;
    /* background-color: #6b6bff; */
    box-shadow: 1px 3px 0px 0px #000080;
  }

  .hero h1 {
    /* font-size: 23px; */
    font-size: 30px;
  }

  .price-tag {
    font-size: 32px;
    line-height: 1.3;
  }
}


input:-webkit-autofill {
  background-color: transparent !important;
  box-shadow: 0 0 0px 1000px transparent inset !important;
  color: #000 !important;
  /* Adjust text color if needed */
}

input:-webkit-autofill:focus {
  background-color: transparent !important;
  box-shadow: 0 0 0px 1000px transparent inset !important;
}


.planning li:before {
  content: "•";
  color: #6b6bff;
  font-size: 1.2em;
  left: -15px;
  position: relative;
}

.planning li {
  color: #000;
  display: flex;
}


section#price {
  box-shadow: -2px -10px 20px 20px #00000012;
}


.text-gradient-color {
  /* font-size: 72px; */
  /* background: -webkit-linear-gradient(#eee, #333); */
  background: linear-gradient(45deg, #cc3769 0%, var(--webex-primary-color2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.price-tag span {
  font-size: 25px !important;
}

.transform h5 {
  font-size: 24px;
  text-align: left;
}


.transform p {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 30px;
  text-align: justify;
  word-spacing: -4px;
}


section#price {
  /* box-shadow: -2px -10px 20px 20px #00000012; */
  /* text-align: center; */
  /* margin-bottom: 40px; */
  /* padding: 50px; */
  /* background: linear-gradient(135deg, #444444 0%, #f8f9ff 100%); */
  /* border-radius: 20px; */
  /* box-shadow: 0 10px 30px rgba(0,0,128,0.2); */
  /* border: 1px solid rgba(107,107,255,0.1); */
  padding: 20px;
  background-color: #ba2d7b14;
}
@media (max-width: 767px) {
 
  section#price {
      padding:2px;
  }
}


.website_package {

  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 128, 0.2);
  border: 1px solid rgba(107, 107, 255, 0.1);
  padding: 20px 20px !important;
}



.b_shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 128, 0.2) !important;
}


.celebrate {
  background: aliceblue;
  width: 312px;
  text-align: center;
  padding: 10px 10px;
  border-radius: 25px;
  font-weight: 600 !important;
  /* display: inline-flex; */
  text-align: center !important;
}

.acc .zq_section-title {
  color: #000080;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: normal !important;
}


.zq_h4_hero-content a {
  padding: 15px 50px;
  background-color: #000080;
  border-radius: 4px;
  /* margin-left: 50px; */
}


.transform p {

  word-spacing: -1px;
}


#feedback .swiper-slide {

  height: auto !important;

}

.zq_h2_testimonial-item {
  background: #6b6bff;
  height: 100%;
}