/*===========================
01. COMMON CSS
02. Mixins Css
03. Header CSS

/*===========================
  01.COMMON CSS
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

:root {
  --font-montserrat: 'Montserrat', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  --white-color: #fff;
  --white-color-opc: 255, 255, 255;
  --black-color: #000000;
  --black-color-opc: 0, 0, 0;
  --title-color: #000000;
  --title-color-opc: 0, 0, 0;
  --title-color2: #15283A;
  --title-color2-opc: 21, 40, 58;
  --text-color: #00000099;
  --text-color2: #FFFFFFB2;
  --paragraph-color: #3F444B;
  --paragraph-color-opc: 63, 68, 75;
  --dark-text-color: #FFFFFF99;
  --primary-color1: #00bf63;
  --primary-color1-opc: 1, 14, 208;
  --primary-color2: #00bf63;
  --primary-color2-opc: 1, 14, 208;
  --primary-color3: #5841D8;
  --primary-color3-opc: 88, 65, 216;
  --primary-color4: #9CD338;
  --primary-color4-opc: 156, 211, 56;
  --primary-color5: #FE5B2C;
  --primary-color5-opc: 254, 91, 44;
  --borders-color: #0000001A;
  --borders-color2: #FFFFFF33;
}

/*================================================
02. Mixins Css
=================================================*/
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-montserrat);
  color: var(--title-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
body.bg-color {
  background-color: #0C0D12;
}
body.startup-company-body #ball {
  border-color: var(--primary-color3);
  background-color: var(--primary-color3);
}
body.startup-company-body {
  /* Ball view
  ============= */
}
body.startup-company-body #ball.ball-view {
  background-color: rgba(var(--primary-color3-opc), 0.5);
}
body.startup-company-body #ball .ball-drag::before,
body.startup-company-body #ball .ball-drag::after {
  color: var(--primary-color3);
}
body.startup-company-body #ball.magnetic-active {
  background-color: rgba(var(--primary-color1-opc), 0.5);
}
body.startup-company-body {
  /* Ball close
  ============== */
}
body.startup-company-body #ball .ball-close {
  color: var(--primary-color3);
}
body.startup-company-body #scroll-percentage {
  --progress-fill: #5841D8;
}
body.ai-startup-body #ball {
  border-color: var(--primary-color4);
  background-color: var(--primary-color4);
}
body.ai-startup-body {
  /* Ball view
  ============= */
}
body.ai-startup-body #ball.ball-view {
  background-color: rgba(var(--primary-color4-opc), 0.5);
}
body.ai-startup-body #ball .ball-drag::before,
body.ai-startup-body #ball .ball-drag::after {
  color: var(--primary-color4);
}
body.ai-startup-body #ball.magnetic-active {
  background-color: rgba(var(--primary-color4-opc), 0.5);
}
body.ai-startup-body {
  /* Ball close
  ============== */
}
body.ai-startup-body #ball .ball-close {
  color: var(--primary-color4);
}
body.ai-startup-body #scroll-percentage {
  --progress-fill: #9CD338;
}
body.it-consult-body #ball {
  border-color: var(--primary-color5);
  background-color: var(--primary-color5);
}
body.it-consult-body {
  /* Ball view
  ============= */
}
body.it-consult-body #ball.ball-view {
  background-color: rgba(var(--primary-color5-opc), 0.5);
}
body.it-consult-body #ball .ball-drag::before,
body.it-consult-body #ball .ball-drag::after {
  color: var(--primary-color5);
}
body.it-consult-body #ball.magnetic-active {
  background-color: rgba(var(--primary-color5-opc), 0.5);
}
body.it-consult-body {
  /* Ball close
  ============== */
}
body.it-consult-body #ball .ball-close {
  color: var(--primary-color5);
}
body.it-consult-body #scroll-percentage {
  --progress-fill: #FE5B2C;
}
body.inner-industries-page {
  background-color: #EEF2FF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-montserrat);
  font-weight: 600;
  line-height: 1.4;
  color: var(--title-color);
}

input {
  border: none;
  outline: none;
}

button {
  outline: none;
  border: none;
}

i.bx {
  vertical-align: middle;
}

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

a {
  text-decoration: none;
}

p {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.pb-130 {
  padding-bottom: 130px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pb-130 {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .pb-130 {
    padding-bottom: 90px;
  }
}

.pt-130 {
  padding-top: 130px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pt-130 {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .pt-130 {
    padding-top: 90px;
  }
}

.pt-120 {
  padding-top: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pt-120 {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .pt-120 {
    padding-top: 90px;
  }
}
@media (max-width: 767px) {
  .pt-120 {
    padding-top: 70px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pb-120 {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .pb-120 {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .pb-120 {
    padding-bottom: 70px;
  }
}

.pt-100 {
  padding-top: 100px;
}
@media (max-width: 991px) {
  .pt-100 {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .pt-100 {
    padding-top: 70px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .pb-100 {
    padding-bottom: 70px;
  }
}

.pt-90 {
  padding-top: 90px;
}
@media (max-width: 991px) {
  .pt-90 {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .pt-90 {
    padding-top: 70px;
  }
}

.pb-90 {
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .pb-90 {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .pb-90 {
    padding-bottom: 70px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pb-80 {
    padding-bottom: 60px;
  }
}

.pb-65 {
  padding-bottom: 65px;
}

.mt-120 {
  margin-top: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mt-120 {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .mt-120 {
    margin-top: 90px;
  }
}

.mb-110 {
  margin-bottom: 110px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mb-110 {
    margin-bottom: 90px;
  }
}
@media (max-width: 991px) {
  .mb-110 {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .mb-110 {
    margin-bottom: 60px;
  }
}

.mb-120 {
  margin-bottom: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mb-120 {
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .mb-120 {
    margin-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .mb-120 {
    margin-bottom: 70px;
  }
}

.mb-130 {
  margin-bottom: 130px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mb-130 {
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .mb-130 {
    margin-bottom: 90px;
  }
}

.mb-150 {
  margin-bottom: 150px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mb-150 {
    margin-bottom: 120px;
  }
}
@media (max-width: 991px) {
  .mb-150 {
    margin-bottom: 110px;
  }
}
@media (max-width: 767px) {
  .mb-150 {
    margin-bottom: 100px;
  }
}
@media (max-width: 576px) {
  .mb-150 {
    margin-bottom: 80px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .mb-100 {
    margin-bottom: 70px;
  }
}

.mt-100 {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .mt-100 {
    margin-top: 80px;
  }
}

.mb-90 {
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .mb-90 {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .mb-90 {
    margin-bottom: 50px;
  }
}

.mb-80 {
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .mb-80 {
    margin-bottom: 70px;
  }
}
@media (max-width: 991px) {
  .mb-80 {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .mb-80 {
    margin-bottom: 50px;
  }
}

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

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

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

.pt-50 {
  padding-top: 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pt-50 {
    padding-top: 40px;
  }
}
@media (max-width: 991px) {
  .pt-50 {
    padding-top: 30px;
  }
}

.pt-60 {
  padding-top: 60px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pt-60 {
    padding-top: 40px;
  }
}
@media (max-width: 991px) {
  .pt-60 {
    padding-top: 30px;
  }
}

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

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

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

.pb-60 {
  padding-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}
@media (max-width: 1199px) {
  .mb-65 {
    margin-bottom: 55px;
  }
}
@media (max-width: 767px) {
  .mb-65 {
    margin-bottom: 45px;
  }
}

.mb-60 {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .mb-60 {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .mb-60 {
    margin-bottom: 40px;
  }
}

.mb-70 {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .mb-70 {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .mb-70 {
    margin-bottom: 40px;
  }
}

.mb-45 {
  margin-bottom: 45px;
}
@media (max-width: 576px) {
  .mb-45 {
    margin-bottom: 35px;
  }
}

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

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

.mt-15 {
  margin-top: 15px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-35 {
  margin-top: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .mb-40 {
    margin-bottom: 30px;
  }
}

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

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

.mt-50 {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .mt-50 {
    margin-top: 40px;
  }
}

.mt-30 {
  margin-top: 30px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-50 {
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .mb-50 {
    margin-bottom: 40px;
  }
}

.mt-60 {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .mt-60 {
    margin-top: 40px;
  }
}

.mt-65 {
  margin-top: 65px;
}
@media (max-width: 1199px) {
  .mt-65 {
    margin-top: 55px;
  }
}
@media (max-width: 767px) {
  .mt-65 {
    margin-top: 45px;
  }
}

.mt-70 {
  margin-top: 70px;
}
@media (max-width: 991px) {
  .mt-70 {
    margin-top: 40px;
  }
}

#magic-cursor {
  position: absolute;
  display: none;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
}

body.tt-magic-cursor #magic-cursor {
  display: block;
}

#ball {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  pointer-events: none;
  border-style: solid;
  border-radius: 50%;
  border-color: var(--primary-color1);
  background-color: var(--primary-color1);
  /* Note: border width handled through JS */
}

/* Ball view
============= */
#ball.ball-view {
  background-image: linear-gradient(112.83deg, rgba(255, 255, 255, 0.47) 0%, rgba(255, 255, 255, 0) 110.84%);
  background-color: rgba(var(--primary-color1-opc), 0.5);
  backdrop-filter: blur(3px);
  font-size: 15px;
  font-weight: 600;
  color: var(--white-color);
  font-family: var(--font-poppins);
  line-height: 1.4;
  text-align: center;
}

#ball .ball-view-inner {
  padding: 0 5px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}

#ball .ball-view-inner i {
  font-size: 24px;
}

/* Ball drag
============= */
#ball .ball-drag {
  position: absolute;
  display: block;
  width: 100%;
  padding: 0 5px;
  font-size: 15px;
  font-weight: 600;
  color: var(--title-color);
  line-height: 1.2;
  text-align: center;
  transition: all 0.3s;
}

#ball .ball-drag::before,
#ball .ball-drag::after {
  position: absolute;
  top: 50%;
  margin-top: -5px;
  font-size: 16px;
  color: var(--primary-color1);
  height: 10px;
  line-height: 10px;
  /* Font Awesome */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

#ball .ball-drag::before {
  content: "\f060";
  /* Font Awesome */
  left: 0;
  transform: translate3d(-30px, 0, 0);
  transition: all 0.25s;
}

#ball .ball-drag::after {
  content: "\f061";
  /* Font Awesome */
  right: 0;
  transform: translate3d(30px, 0, 0);
  transition: all 0.25s;
}

#ball.magnetic-active {
  background-image: linear-gradient(112.83deg, rgba(255, 255, 255, 0.47) 0%, rgba(255, 255, 255, 0) 110.84%);
  background-color: rgba(var(--primary-color1-opc), 0.5);
  backdrop-filter: blur(1.1px);
  border-color: transparent !important;
}

/* Ball close
============== */
#ball.ball-close-enabled {
  opacity: 1 !important;
}

#ball .ball-close {
  position: absolute;
  padding: 0 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color1);
  line-height: 1;
  text-align: center;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 0.8);
  }
  50% {
    opacity: 1;
  }
}
#scroll-percentage {
  --progress-bg: #2f2f2f;
  --progress-fill: #010ED0;
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000;
  display: grid;
  place-items: center;
  /* default (JS will overwrite inline too) */
  /* smooth show/hide like your active-progress */
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: all 200ms linear;
}
@media (max-width: 576px) {
  #scroll-percentage {
    right: 20px;
    width: 50px;
    height: 50px;
  }
}
#scroll-percentage.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
#scroll-percentage {
  /* inner ring border look */
}
#scroll-percentage #scroll-percentage-value {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: 0.2s;
}
#scroll-percentage .arrow {
  fill: var(--white-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  pointer-events: none;
  /* click div handles */
}
#scroll-percentage {
  /* when 100% -> show arrow, hide percent */
}
#scroll-percentage.is-complete #scroll-percentage-value {
  opacity: 0;
  visibility: hidden;
}
#scroll-percentage.is-complete .arrow {
  opacity: 1;
  visibility: visible;
}

.btn-area {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
}
.btn-area:hover .icon {
  background-color: var(--black-color);
}
.btn-area .icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color1);
  border-radius: 50%;
  transition: all 0.5s;
}
.btn-area .icon svg {
  fill: var(--white-color);
}
.btn-area .btn-content {
  line-height: 1;
}
.btn-area .btn-content span {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 16px;
  color: var(--title-color);
  line-height: 1;
}
.btn-area .btn-content p {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 1;
  margin-top: 6px;
}

.primary-btn1 {
  padding: 20px 38px;
  background-color: var(--primary-color1);
  display: inline-block;
  line-height: 1;
  border-radius: 5px;
}
@media (max-width: 576px) {
  .primary-btn1 {
    padding: 18px 30px;
  }
}
.primary-btn1 span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  line-height: 1;
  text-decoration: none;
  outline: none;
  padding: 0 1.375em 0.0625em 0;
  cursor: pointer;
  background-color: transparent;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: var(--background-size, 100%) 0.0625em;
  transition: background-size 0.2s linear var(--background-delay, 0.15s);
  transform: translateZ(0);
  border: none;
  background-image: linear-gradient(0deg, var(--white-color) 0%, var(--white-color) 100%);
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .primary-btn1 span {
    font-size: 13px;
  }
}
.primary-btn1 span::after {
  content: ">";
  font-family: "bootstrap-icons";
  display: block;
  position: absolute;
  right: 0;
  left: initial;
  top: 0;
  opacity: 1;
  transition: opacity 0.3s 0.15s;
  color: var(--white-color);
}
.primary-btn1 span svg {
  position: absolute;
  display: block;
  line-height: 1.8125em;
  width: 1.375em;
  height: 1.8125em;
  right: 0;
  left: initial;
  top: 50%;
  margin: -0.92em 0 0;
  fill: none;
  stroke: var(--white-color);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1px;
  stroke-dasharray: 7.95 30;
  stroke-dashoffset: var(--stroke-dashoffset, 46);
  transition: stroke-dashoffset var(--stroke-duration, 0.15s) var(--stroke-easing, linear) var(--stroke-delay, 0s);
}
.primary-btn1:hover span {
  --background-size: 0%;
  --stroke-dashoffset: 26;
  --stroke-duration: .3s;
  --stroke-easing: cubic-bezier(0.3, 1.5, 0.5, 1);
  --stroke-delay: .195s;
}
.primary-btn1:hover span::after {
  opacity: 0;
  transition-delay: 0s;
}
.primary-btn1.white-bg {
  background-color: var(--white-color);
}
.primary-btn1.white-bg span {
  background-image: linear-gradient(0deg, var(--title-color) 0%, var(--title-color) 100%);
  color: var(--title-color);
}
.primary-btn1.white-bg span::after {
  color: var(--title-color);
}
.primary-btn1.white-bg span svg {
  fill: none;
  stroke: var(--title-color);
}
.primary-btn1.black-bg {
  background-color: var(--black-color);
}
.primary-btn1.black-bg span {
  background-image: linear-gradient(0deg, var(--white-color) 0%, var(--white-color) 100%);
  color: var(--white-color);
}
.primary-btn1.black-bg span::after {
  color: var(--white-color);
}
.primary-btn1.black-bg span svg {
  fill: none;
  stroke: var(--white-color);
}
.primary-btn1.it-consult-bg {
  background-color: var(--title-color2);
}
.primary-btn1.it-consult-bg span {
  background-image: linear-gradient(0deg, var(--white-color) 0%, var(--white-color) 100%);
  color: var(--white-color);
}
.primary-btn1.it-consult-bg span::after {
  color: var(--white-color);
}
.primary-btn1.it-consult-bg span svg {
  fill: none;
  stroke: var(--white-color);
}
.primary-btn1.transparent {
  background-color: transparent;
  border: unset;
  padding: unset;
}
.primary-btn1.transparent span {
  background-image: linear-gradient(0deg, var(--primary-color1) 0%, var(--primary-color1) 100%);
  color: var(--primary-color1);
}
.primary-btn1.transparent span::after {
  color: var(--primary-color1);
}
.primary-btn1.transparent span svg {
  fill: none;
  stroke: var(--primary-color1);
}
.primary-btn1.border-radius {
  border-radius: 100px;
}
.primary-btn1.ai-primary-color {
  background-color: var(--primary-color4);
  color: var(--title-color);
}
.primary-btn1.ai-primary-color > span {
  background-image: linear-gradient(0deg, var(--title-color) 0%, var(--title-color) 100%);
  color: var(--title-color);
}
.primary-btn1.ai-primary-color > span::after {
  color: var(--title-color);
}
.primary-btn1.ai-primary-color > span svg {
  stroke: var(--title-color);
}
.primary-btn1.ai-primary-color.transparent {
  background-color: transparent;
  border: unset;
  padding: unset;
}
.primary-btn1.ai-primary-color.transparent span {
  background-image: linear-gradient(0deg, var(--primary-color4) 0%, var(--primary-color4) 100%);
  color: var(--primary-color4);
}
.primary-btn1.ai-primary-color.transparent span::after {
  color: var(--primary-color4);
}
.primary-btn1.ai-primary-color.transparent span svg {
  fill: none;
  stroke: var(--primary-color4);
}
.primary-btn1.it-consult {
  background-color: #FE5B2C;
}

.primary-btn2 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  background-color: var(--primary-color1);
  padding: 16px 18px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  transition: all 0.6s;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  gap: 8px;
}
.primary-btn2 svg {
  fill: var(--title-color);
  transition: all 0.6s;
}
.primary-btn2 span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 36px;
  background-color: var(--black-color);
  transition: all 0.6s;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.primary-btn2:hover {
  color: var(--white-color);
}
.primary-btn2:hover svg {
  fill: var(--white-color);
}
.primary-btn2:hover span {
  width: 225%;
  height: 1000.5px;
}
.primary-btn2.white-bg {
  background-color: var(--white-color);
  color: var(--title-color);
}
.primary-btn2.white-bg svg {
  fill: var(--title-color);
}
.primary-btn2.white-bg span {
  background-color: var(--primary-color1);
}
.primary-btn2.black-bg {
  background-color: var(--black-color);
  color: var(--white-color);
}
.primary-btn2.black-bg svg {
  fill: var(--white-color);
}
.primary-btn2.black-bg span {
  background-color: var(--primary-color1);
}
.primary-btn2.black-bg:hover {
  color: var(--white-color);
}
.primary-btn2.transparent {
  background-color: transparent;
  border: 1px solid var(--white-color);
  color: var(--white-color);
}
.primary-btn2.transparent span {
  background-color: var(--white-color);
}
.primary-btn2.transparent:hover {
  color: var(--black-color);
}
.primary-btn2.transparent:hover svg {
  fill: var(--black-color);
}
.primary-btn2.two {
  border-radius: 100px;
}
.primary-btn2.it-consult {
  background-color: var(--primary-color5);
}

.primary-btn3 {
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: 0.45s;
  position: relative;
}
.primary-btn3 .content {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  background-color: var(--primary-color3);
  border-radius: 100px;
  padding: 18px 40px;
  position: relative;
  z-index: 1;
  display: inline-block;
  transform-style: preserve-3d;
  transition: 0.45s;
}
@media (max-width: 767px) {
  .primary-btn3 .content {
    font-size: 15px;
    padding: 15px 40px;
  }
}
.primary-btn3 .icon {
  min-width: 52px;
  max-width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--primary-color3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.45s;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media (max-width: 767px) {
  .primary-btn3 .icon {
    min-width: 45px;
    max-width: 45px;
    height: 45px;
  }
  .primary-btn3 .icon svg {
    width: 18px;
  }
}
.primary-btn3 .icon svg {
  fill: var(--white-color);
}
.primary-btn3 .icon.two {
  transform-style: preserve-3d;
  opacity: 1;
  position: relative;
  left: unset;
  top: unset;
  transform: unset;
}
.primary-btn3:hover .content {
  transform: translate3d(50px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
.primary-btn3:hover .icon {
  display: flex;
  opacity: 1;
}
.primary-btn3:hover .icon.two {
  opacity: 0;
}
.primary-btn3.black-bg .content {
  background-color: var(--black-color);
  color: var(--white-color);
}
.primary-btn3.black-bg .icon {
  background-color: var(--black-color);
}
.primary-btn3.black-bg .icon svg {
  stroke: var(--dark-white-color);
}
.primary-btn3.transparent .content {
  background-color: transparent;
  border: 1px solid var(--title-color);
  color: var(--title-color);
}
.primary-btn3.transparent .icon {
  background-color: transparent;
  border: 1px solid var(--title-color);
}
.primary-btn3.transparent .icon svg {
  stroke: var(--title-color);
}

.details-button {
  position: relative;
  display: inline-block;
  vertical-align: top;
  line-height: 1.4;
  font-weight: 500;
  text-decoration: none;
  outline: none;
  padding: 0 1.375em 0.0625em 0;
  cursor: pointer;
  background-color: transparent;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: var(--background-size, 100%) 0.0625em;
  transition: background-size 0.2s linear var(--background-delay, 0.15s);
  transform: translateZ(0);
  border: none;
  background-image: linear-gradient(0deg, #15283A 0%, #15283A 100%);
  color: var(--title-color2);
  font-family: var(--font-montserrat);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
}
.details-button::after {
  content: "\f123";
  font-family: "bootstrap-icons";
  display: block;
  position: absolute;
  right: 0;
  left: initial;
  top: 0;
  opacity: 1;
  transition: opacity 0.3s 0.15s;
  color: var(--title-color2);
}
.details-button svg {
  position: absolute;
  display: block;
  line-height: 1.8125em;
  width: 1.375em;
  height: 1.8125em;
  right: 0;
  left: initial;
  top: 50%;
  margin: -0.92em 0 0;
  fill: none;
  stroke: var(--title-color2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1px;
  stroke-dasharray: 7.95 30;
  stroke-dashoffset: var(--stroke-dashoffset, 46);
  transition: stroke-dashoffset var(--stroke-duration, 0.15s) var(--stroke-easing, linear) var(--stroke-delay, 0s);
}
.details-button:hover {
  --background-size: 0%;
  --stroke-dashoffset: 26;
  --stroke-duration: .3s;
  --stroke-easing: cubic-bezier(0.3, 1.5, 0.5, 1);
  --stroke-delay: .195s;
}
.details-button:hover::after {
  opacity: 0;
  transition-delay: 0s;
}

.section-title > span {
  color: var(--white-color);
  font-family: var(--font-poppins);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  padding: 9px 14px;
  background-color: var(--primary-color1);
  border-radius: 3px;
  display: inline-flex;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.section-title > span.black {
  background-color: var(--title-color);
}
.section-title > span.white {
  background-color: var(--white-color);
  color: var(--primary-color1);
}
.section-title h2 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 49px;
  font-weight: 600;
  line-height: 65px;
  margin-bottom: 0;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .section-title h2 {
    font-size: 45px;
    line-height: 60px;
  }
}
@media (max-width: 1399px) {
  .section-title h2 {
    font-size: 42px;
    line-height: 58px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-title h2 {
    font-size: 40px;
    line-height: 55px;
  }
}
@media (max-width: 991px) {
  .section-title h2 {
    font-size: 37px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 33px;
    line-height: 45px;
  }
}
@media (max-width: 576px) {
  .section-title h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
.section-title p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  padding-top: 15px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section-title p {
    font-size: 15px;
  }
}
.section-title.white h2 {
  color: var(--white-color);
}
.section-title.white p {
  color: var(--dark-text-color);
}
.section-title.two h2 {
  font-size: 60px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .section-title.two h2 {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 1399px) {
  .section-title.two h2 {
    font-size: 46px;
    line-height: 58px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-title.two h2 {
    font-size: 43px;
    line-height: 55px;
  }
}
@media (max-width: 991px) {
  .section-title.two h2 {
    font-size: 39px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .section-title.two h2 {
    font-size: 34px;
    line-height: 45px;
  }
}
@media (max-width: 576px) {
  .section-title.two h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
.section-title.two h2 span {
  background: linear-gradient(270deg, #E24C4A 0%, #386BB7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title.three h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 35px;
  text-transform: none;
}
@media (max-width: 1199px) {
  .section-title.three h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .section-title.three h2 {
    font-size: 33px;
  }
}
@media (max-width: 767px) {
  .section-title.three h2 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .section-title.three h2 {
    font-size: 28px;
  }
}
.section-title.four h2 {
  font-size: 60px;
  line-height: 70px;
  text-transform: unset;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .section-title.four h2 {
    font-size: 50px;
    line-height: 63px;
  }
}
@media (max-width: 1399px) {
  .section-title.four h2 {
    font-size: 46px;
    line-height: 58px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-title.four h2 {
    font-size: 43px;
    line-height: 55px;
  }
}
@media (max-width: 991px) {
  .section-title.four h2 {
    font-size: 39px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .section-title.four h2 {
    font-size: 34px;
    line-height: 45px;
  }
}
@media (max-width: 576px) {
  .section-title.four h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
.section-title.four h2 span {
  background: linear-gradient(270deg, #E24C4A 0%, #386BB7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title.five > span {
  color: var(--title-color2);
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  background-color: unset;
  padding: unset;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.section-title.five > span svg {
  fill: #FE5B2C;
}
.section-title.five h2 {
  color: var(--title-color2);
}
.section-title.five.white span {
  color: var(--white-color);
}
.section-title.five.white h2 {
  color: var(--white-color);
}
.section-title.five.white p {
  color: var(--dark-text-color);
}

.slider-btn-grp {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 991px) {
  .slider-btn-grp {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .slider-btn-grp {
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .slider-btn-grp {
    gap: 30px;
  }
}
.slider-btn-grp .slider-btn {
  min-width: 45px;
  max-width: 45px;
  height: 45px;
  background-color: transparent;
  border: 1px solid var(--borders-color2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.slider-btn-grp .slider-btn svg {
  fill: rgba(var(--white-color-opc), 0.3);
  transition: 0.5s;
}
@media (max-width: 767px) {
  .slider-btn-grp .slider-btn {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
  }
}
@media (max-width: 576px) {
  .slider-btn-grp .slider-btn {
    display: none;
  }
}
.slider-btn-grp .slider-btn:hover {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}
.slider-btn-grp .slider-btn:hover svg {
  fill: var(--white-color);
}
.slider-btn-grp .slider-btn.swiper-button-disabled {
  opacity: 0.5;
}
.slider-btn-grp.white .slider-btn {
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.slider-btn-grp.white .slider-btn i {
  color: rgba(255, 255, 255, 0.4);
}
.slider-btn-grp.white .slider-btn:hover {
  border-color: var(--white-color);
  background-color: var(--white-color);
}
.slider-btn-grp.white .slider-btn:hover i {
  color: var(--title-color);
}
.slider-btn-grp.two .slider-btn {
  background-color: var(--white-color);
  border-color: var(--borders-color);
}
.slider-btn-grp.two .slider-btn svg {
  stroke: none;
  fill: var(--title-color);
}
.slider-btn-grp.two .slider-btn:hover {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}
.slider-btn-grp.two .slider-btn:hover svg {
  fill: var(--white-color);
}
.slider-btn-grp.three .slider-btn {
  background-color: var(--white-color);
  border-color: var(--borders-color);
}
.slider-btn-grp.three .slider-btn svg {
  stroke: none;
  fill: var(--title-color);
}
.slider-btn-grp.three .slider-btn:hover {
  background-color: var(--primary-color3);
  border-color: var(--primary-color3);
}
.slider-btn-grp.three .slider-btn:hover svg {
  fill: var(--title-color2);
}

.paginations {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: unset;
  z-index: 9;
  gap: 8px;
}
@media (max-width: 576px) {
  .paginations {
    justify-content: center;
  }
}
.paginations .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  background: rgba(153, 153, 153, 0.5019607843);
  opacity: 1;
  position: relative;
  border-radius: 50%;
}
.paginations .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 50px;
  background-color: var(--primary-color1);
}

.form-inner {
  line-height: 1;
}
.form-inner label {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 15px;
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
@media (max-width: 576px) {
  .form-inner label {
    font-size: 14px;
  }
}
.form-inner label span {
  font-size: 14px;
  font-weight: 500;
}
.form-inner input {
  width: 100%;
  background: var(--white-color);
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #EEEEEE;
  transition: all 0.3s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .form-inner input {
    padding: 10px 15px;
    font-size: 15px;
    height: 45px;
  }
}
@media (max-width: 991px) {
  .form-inner input {
    height: 50px;
  }
}
@media (max-width: 576px) {
  .form-inner input {
    font-size: 15px;
    border-radius: 5px;
    height: 40px;
  }
}
.form-inner input::-moz-placeholder {
  color: var(--text-color);
  font-weight: 400;
  font-size: 15px;
}
.form-inner input::placeholder {
  color: var(--text-color);
  font-weight: 400;
  font-size: 15px;
}
.form-inner input:focus {
  border-color: var(--primary-color1);
  background-color: var(--white-color);
}
.form-inner textarea {
  width: 100%;
  background: var(--white-color);
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  border: 1px solid #EEEEEE;
  padding: 20px 25px;
  min-height: 118px;
  resize: none;
}
@media (max-width: 576px) {
  .form-inner textarea {
    padding: 20px 15px;
  }
}
.form-inner textarea::-moz-placeholder {
  color: var(--text-color);
  font-weight: 400;
  font-size: 15px;
}
.form-inner textarea::placeholder {
  color: var(--text-color);
  font-weight: 400;
  font-size: 15px;
}
.form-inner textarea:focus {
  outline: unset;
  border-color: var(--primary-color2);
  background-color: var(--white-color);
}

.form-inner2 .form-check {
  min-height: unset;
  margin-bottom: 0;
}
.form-inner2 .form-check .form-check-input {
  cursor: pointer;
  height: 16px;
  width: 16px;
  margin-top: 8px;
  background-color: transparent;
  border: 1px solid rgba(var(--black-color-opc), 0.2);
  border-radius: unset;
}
.form-inner2 .form-check .form-check-input:focus {
  box-shadow: none;
}
.form-inner2 .form-check .form-check-input:checked {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}
.form-inner2 .form-check .form-check-label {
  cursor: pointer;
  color: #5E5E5E;
  font-family: var(--font-poppins);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}
.form-inner2.two .form-check-input:checked {
  background-color: var(--primary-color2);
  border-color: var(--primary-color2);
}

.container-fluid.one {
  max-width: 1620px;
}

/*=====================================
  03. Header CSS
========================================*/
@keyframes fade-down {
  0% {
    opacity: 0;
    transform: scaleY(0);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
  }
}
@keyframes fade-down2 {
  0% {
    opacity: 0;
    transform: scaleY(0) translateX(-50%);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scaleY(1) translateX(-50%);
    visibility: visible;
  }
}
.topbar-area {
  background-color: var(--white-color);
  position: relative;
  z-index: 5;
}
.topbar-area .topbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 105px;
  padding: 17px 50px;
  border-bottom: 1px solid var(--borders-color);
  padding: 12px 200px;
}
@media (max-width: 1799px) {
  .topbar-area .topbar-wrap {
    padding: 17px 100px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .topbar-area .topbar-wrap {
    padding: 16px 80px;
  }
}
@media (max-width: 1399px) {
  .topbar-area .topbar-wrap {
    gap: 50px;
    padding: 16px 30px;
  }
}
@media (max-width: 1199px) {
  .topbar-area .topbar-wrap {
    gap: 40px;
  }
}
.topbar-area .topbar-wrap .topbar-contact-area .topbar-contact-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: start;
  gap: 37px;
}
.topbar-area .topbar-wrap .topbar-contact-area .topbar-contact-list .topbar-single-list {
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
}
.topbar-area .topbar-wrap .topbar-contact-area .topbar-contact-list .topbar-single-list::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 14px;
  background-color: #D9D9D9;
  left: -13%;
}
.topbar-area .topbar-wrap .topbar-contact-area .topbar-contact-list .topbar-single-list svg {
  fill: rgba(var(--title-color-opc), 0.7);
}
.topbar-area .topbar-wrap .topbar-contact-area .topbar-contact-list .topbar-single-list a {
  color: rgba(var(--title-color-opc), 0.7);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  transition: all 0.5s;
}
.topbar-area .topbar-wrap .topbar-contact-area .topbar-contact-list .topbar-single-list a:hover {
  color: var(--primary-color2);
}
.topbar-area .topbar-wrap .topbar-contact-area .topbar-contact-list .topbar-single-list:first-child::before {
  content: unset;
}
.topbar-area .topbar-wrap .topbar-right .time {
  display: flex;
  gap: 8px;
  align-items: center;
}
.topbar-area .topbar-wrap .topbar-right .time svg {
  fill: rgba(var(--title-color-opc), 0.7);
}
.topbar-area .topbar-wrap .topbar-right .time span {
  color: rgba(var(--title-color-opc), 0.7);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 14px;
  display: block;
  line-height: 1;
}
.topbar-area.two .topbar-wrap {
  padding: 12px 200px 12px 24%;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .topbar-area.two .topbar-wrap {
    padding: 12px 60px 12px 28%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .topbar-area.two .topbar-wrap {
    padding: 12px 30px 12px 22%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .topbar-area.two .topbar-wrap {
    padding: 12px 20px 12px 17%;
  }
}
.topbar-area.it-consult .topbar-wrap .topbar-contact-area .topbar-contact-list .topbar-single-list a:hover {
  color: var(--primary-color5);
}

header.style-1 {
  background-color: transparent;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.8s ease-out 0s;
}
@media (max-width: 1199px) {
  header.style-1 {
    padding: 18px 0px;
  }
}
header.style-1.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: var(--black-color);
  box-shadow: 5px 3px 40px rgba(63, 59, 59, 0.1);
  z-index: 999;
}
header.style-1 .header-area-wrap {
  position: relative;
}
header.style-1 .header-logo {
  width: 228px;
}
@media (max-width: 1399px) {
  header.style-1 .header-logo {
    width: 200px;
  }
}
header.style-1 .nav-right {
  display: flex;
  align-items: center;
  gap: 45px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-1 .nav-right {
    gap: 35px;
  }
}
@media (max-width: 1199px) {
  header.style-1 .nav-right {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  header.style-1 .nav-right {
    gap: 35px;
  }
}
@media (max-width: 576px) {
  header.style-1 .nav-right {
    gap: 15px;
  }
}
header.style-1 .nav-right .primary-btn1 {
  padding: 17px 28px;
}
@media (max-width: 1199px) {
  header.style-1 .nav-right .primary-btn1 {
    padding: 15px 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-1 .nav-right .primary-btn1 {
    padding: 14px 14px;
  }
}
header.style-1 .nav-right .contact-btn-and-language {
  display: flex;
  align-items: center;
  gap: 20px;
}
header.style-1 .nav-right .contact-btn-and-language .language-area {
  position: relative;
}
header.style-1 .nav-right .contact-btn-and-language .language-area .language-btn {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
}
header.style-1 .nav-right .contact-btn-and-language .language-area .language-btn .language {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: rgba(var(--primary-color1-opc), 0.3);
  border-radius: 18px;
  border: 1px solid rgba(var(--white-color-opc), 0.1);
  padding: 8px 12px;
}
header.style-1 .nav-right .contact-btn-and-language .language-area .language-btn .language svg {
  fill: var(--white-color);
  transition: 0.5s;
}
header.style-1 .nav-right .contact-btn-and-language .language-area .language-btn .language span {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  transition: 0.5s;
}
header.style-1 .nav-right .contact-btn-and-language .language-area .language-btn i {
  font-size: 12px;
  line-height: 1;
  color: var(--white-color);
  background-color: rgba(var(--primary-color1-opc), 0.3);
  border-radius: 18px;
  border: 1px solid rgba(var(--white-color-opc), 0.1);
  padding: 7px 5px;
}
header.style-1 .nav-right .contact-btn-and-language .language-area .language-list {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  top: 35px;
  left: 50%;
  z-index: 9999;
  width: 180px;
  background-color: var(--white-color);
  box-shadow: 0px 30px 80px rgba(8, 0, 42, 0.08);
  border-radius: 10px;
  overflow: hidden;
  display: none;
  transform: scaleY(0) translateX(-50%);
  transform-origin: top;
}
header.style-1 .nav-right .contact-btn-and-language .language-area .language-list.active {
  display: block;
  transform: scaleY(1) translateX(-50%);
  animation: fade-up 0.5s linear;
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(10px) translateX(-50%);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: translateY(0px) translateX(-50%);
    visibility: visible;
  }
}
header.style-1 .nav-right .contact-btn-and-language .language-area .language-list li a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  text-transform: capitalize;
  font-size: 12px;
  padding: 12px 20px;
  line-height: 1;
  width: 100%;
  display: flex;
  align-items: center;
  transition: 0.5s;
  display: flex;
  align-items: center;
  gap: 10px;
}
header.style-1 .nav-right .contact-btn-and-language .language-area .language-list li a:hover {
  color: var(--white-color);
  background-color: var(--primary-color1);
}
header.style-1 .nav-right .mobile-menu-btn {
  display: none;
  visibility: hidden;
}
@media (max-width: 991px) {
  header.style-1 .nav-right .mobile-menu-btn {
    display: flex;
    align-items: center;
    visibility: visible;
    justify-content: center;
    position: relative;
    min-width: 48px;
    max-width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(var(--white-color-opc), 0.15);
  }
  header.style-1 .nav-right .mobile-menu-btn svg {
    fill: var(--white-color);
  }
  header.style-1 .nav-right .mobile-menu-btn:hover svg {
    animation: qode-draw 0.75s cubic-bezier(0.57, 0.39, 0, 0.86) 1 forwards;
  }
}
@media (max-width: 576px) {
  header.style-1 .nav-right .mobile-menu-btn {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
  }
  header.style-1 .nav-right .mobile-menu-btn svg {
    width: 18px;
  }
}
@keyframes qode-draw {
  0%, 100% {
    clip-path: inset(-2px -2px);
  }
  42% {
    clip-path: inset(-2px -2px -2px 100%);
  }
  43% {
    clip-path: inset(-2px 100% -3px -2px);
  }
}
header.style-1 .header-btn {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  color: var(--title-color);
  background-color: var(--white-color);
  border-radius: 5px;
  padding: 16px 37px;
}
header.style-1 .main-menu {
  display: inline-block;
}
header.style-1 .main-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header.style-1 .main-menu > ul > li {
  display: inline-block;
  position: relative;
  padding: 28px 0;
}
@media (max-width: 1399px) {
  header.style-1 .main-menu > ul > li {
    padding: 28px 2px;
  }
}
@media (max-width: 1199px) {
  header.style-1 .main-menu > ul > li {
    padding: 13px 2px;
  }
}
header.style-1 .main-menu > ul > li.position-inherit {
  position: inherit;
}
@media (max-width: 991px) {
  header.style-1 .main-menu > ul > li.position-inherit {
    position: relative;
  }
}
@media (min-width: 992px) {
  header.style-1 .main-menu > ul > li:first-child {
    padding-left: 0;
  }
  header.style-1 .main-menu > ul > li:last-child {
    padding-right: 0;
  }
}
header.style-1 .main-menu > ul > li > a {
  color: var(--white-color);
  display: block;
  letter-spacing: 0.4px;
  padding: 5px 20px;
  line-height: 1;
  position: relative;
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.5s ease-out 0s;
  position: relative;
  border-radius: 100px;
}
@media (max-width: 1399px) {
  header.style-1 .main-menu > ul > li > a {
    font-size: 15px;
    padding: 4px 15px;
  }
}
@media (max-width: 1199px) {
  header.style-1 .main-menu > ul > li > a {
    font-size: 14px;
    padding: 4px 9px;
  }
}
header.style-1 .main-menu > ul > li > a svg {
  fill: var(--white-color);
  margin-top: -3px;
  transition: all 0.5s;
}
header.style-1 .main-menu > ul > li > a i {
  font-size: 11px;
  color: var(--white-color);
  transition: all 0.55s ease-in-out;
}
header.style-1 .main-menu > ul > li .dropdown-icon {
  font-size: 20px;
  text-align: center;
  color: rgba(82, 82, 82, 0.6);
  font-style: normal;
  position: absolute;
  right: -5px;
  top: 35px;
  z-index: 999;
  cursor: pointer;
  display: none;
  transition: all 0.5s ease-out 0s;
  opacity: 0;
}
@media (max-width: 1199px) {
  header.style-1 .main-menu > ul > li .dropdown-icon {
    opacity: 1;
  }
}
header.style-1 .main-menu > ul > li .dropdown-icon.active::before {
  content: "\f2ea";
}
header.style-1 .main-menu > ul > li ul.sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  margin: 0;
  display: none;
  min-width: 250px;
  background: var(--white-color);
  border: 1px solid var(--borders-color);
  border-radius: 10px;
  padding: 15px 0;
  text-align: left;
  transform-origin: top;
}
@media (max-width: 1399px) {
  header.style-1 .main-menu > ul > li ul.sub-menu {
    top: 74px;
  }
}
header.style-1 .main-menu > ul > li ul.sub-menu > li {
  padding: 0;
  display: block;
  position: relative;
}
header.style-1 .main-menu > ul > li ul.sub-menu > li i {
  position: absolute;
  top: 14px;
  right: 20px;
  display: none;
  color: var(--title-color);
  font-size: 14px;
}
header.style-1 .main-menu > ul > li ul.sub-menu > li .dropdown-icon {
  color: var(--title-color);
  opacity: 1;
  top: 16px;
  font-size: 10px;
}
@media (max-width: 1199px) {
  header.style-1 .main-menu > ul > li ul.sub-menu > li .dropdown-icon {
    right: 0;
    top: 11px;
    font-size: 20px;
  }
}
header.style-1 .main-menu > ul > li ul.sub-menu > li > a {
  display: block;
  padding: 12px 20px;
  color: var(--title-color);
  font-weight: 500;
  font-family: var(--font-montserrat);
  font-size: 14px;
  line-height: 1.2;
  transition: all 0.4s ease-out 0s;
  position: relative;
}
@media (max-width: 1399px) {
  header.style-1 .main-menu > ul > li ul.sub-menu > li > a {
    padding: 10px 20px;
    font-size: 13px;
  }
}
@media (max-width: 1199px) {
  header.style-1 .main-menu > ul > li ul.sub-menu > li > a {
    border-color: rgba(233, 228, 228, 0.5);
  }
}
header.style-1 .main-menu > ul > li ul.sub-menu > li > a i {
  display: block;
}
@media (max-width: 991px) {
  header.style-1 .main-menu > ul > li ul.sub-menu > li > a i {
    display: none;
  }
}
header.style-1 .main-menu > ul > li ul.sub-menu > li > a span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s;
}
header.style-1 .main-menu > ul > li ul.sub-menu > li > a span svg {
  fill: #555555;
  transition: all 0.5s;
}
header.style-1 .main-menu > ul > li ul.sub-menu > li > a:hover {
  color: var(--primary-color1);
}
header.style-1 .main-menu > ul > li ul.sub-menu > li > a:hover svg {
  fill: var(--primary-color1);
  transform: rotate(-45deg);
}
header.style-1 .main-menu > ul > li ul.sub-menu > li > a:hover::before {
  transform: scale(1);
}
header.style-1 .main-menu > ul > li ul.sub-menu > li > a.active {
  color: var(--primary-color1);
}
header.style-1 .main-menu > ul > li ul.sub-menu > li > a.active::before {
  transform: scale(1);
}
header.style-1 .main-menu > ul > li ul.sub-menu > li:last-child > a {
  border-bottom: none;
}
header.style-1 .main-menu > ul > li ul.sub-menu > li:last-child > a::before {
  display: none;
}
header.style-1 .main-menu > ul > li ul.sub-menu > li:hover > a {
  color: var(--primary-color1);
}
header.style-1 .main-menu > ul > li ul.sub-menu > li:hover .dropdown-icon {
  color: var(--primary-color1);
}
header.style-1 .main-menu > ul > li ul.sub-menu > li.active > a {
  color: var(--primary-color1);
}
header.style-1 .main-menu > ul > li ul.sub-menu > li.active .dropdown-icon {
  color: var(--primary-color1);
}
header.style-1 .main-menu > ul > li ul.sub-menu > li .sub-menu {
  left: 249px;
  position: absolute;
  max-width: 230px;
  min-width: 230px;
  background: var(--white-color);
  top: 3px;
  padding: 10px 0;
  border-left: unset;
}
header.style-1 .main-menu > ul > li ul.sub-menu > li .sub-menu > li > a {
  padding: 10px 20px;
}
header.style-1 .main-menu > ul > li ul.sub-menu > li .sub-menu > li i {
  display: block;
}
@media (max-width: 991px) {
  header.style-1 .main-menu > ul > li ul.sub-menu > li .sub-menu {
    position: unset;
    max-width: 230px;
    min-width: 215px;
    background: transparent;
    top: 0;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  header.style-1 .main-menu > ul > li ul.sub-menu > li:hover > .sub-menu {
    display: block;
    animation: fade-down 0.45s linear;
  }
}
header.style-1 .main-menu > ul > li ul.sub-menu > li:last-child {
  border-bottom: none;
}
header.style-1 .main-menu > ul > li .mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 75px;
  display: none;
  background: var(--white-color);
  border: 1px solid rgba(var(--borders-color-opc), 0.5);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
  max-width: 1320px;
  width: 100%;
  transform-origin: top;
  z-index: 1;
}
@media (max-width: 1399px) {
  header.style-1 .main-menu > ul > li .mega-menu {
    max-width: 1180px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-1 .main-menu > ul > li .mega-menu {
    max-height: 550px;
    overflow-y: auto;
    margin: 0 10px;
    width: calc(100% - 20px);
    left: 0;
    transform: translateX(0);
    border-radius: 15px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row {
  display: grid;
  justify-content: space-between;
  gap: 110px;
  grid-template-columns: 49% 42.5%;
}
@media (max-width: 1399px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row {
    gap: 70px;
    grid-template-columns: 54% 42.5%;
  }
}
@media (max-width: 1199px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row {
    gap: 30px;
    grid-template-columns: 49% 47%;
  }
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .mega-menu-title {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 23px;
  line-height: 28px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .mega-menu-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap {
  padding: 50px 0 50px 50px;
}
@media (max-width: 1399px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap {
    padding: 50px 0 50px 30px;
  }
}
@media (max-width: 1199px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap {
    padding: 35px 0 35px 20px;
  }
}
@media (max-width: 991px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap {
    padding: 0;
    margin-bottom: 35px;
  }
}
@media (max-width: 991px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .mega-menu-title {
    display: none;
  }
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list {
    margin-bottom: 35px;
  }
}
@media (max-width: 576px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list {
    gap: 15px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a svg {
  fill: var(--text-color);
  min-width: 36px;
  transition: 0.5s;
}
@media (max-width: 576px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a svg {
    min-width: 30px;
    width: 30px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid var(--borders-color);
  transition: 0.5s;
}
@media (max-width: 1399px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    padding: 18px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    padding: 18px 30px 18px 15px;
  }
}
@media (max-width: 767px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    font-size: 15px;
    line-height: 23px;
    padding: 18px 10px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a:hover {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
  color: var(--white-color);
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a:hover svg {
  fill: var(--white-color);
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 10px 10px 30px;
  background-color: #F0F0F0;
  border-radius: 100px;
}
@media (max-width: 576px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area {
    font-size: 15px;
    padding: 10px 10px 10px 20px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area .arrow {
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color1);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area .arrow {
    min-width: 36px;
    max-width: 36px;
    height: 36px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area .arrow svg {
  fill: none;
  stroke: var(--white-color);
  transition: 0.5s;
}
@media (max-width: 576px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area .arrow svg {
    width: 10px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area:hover .arrow svg {
  transform: rotate(45deg);
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
  padding: 50px;
  background-color: #DDE6FF;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 1399px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    padding: 50px 30px;
  }
}
@media (max-width: 1199px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    padding: 35px 20px;
  }
}
@media (max-width: 991px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    border-radius: 10px;
  }
}
@media (max-width: 576px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    padding: 25px 15px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
@media (max-width: 1199px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list {
    gap: 12px;
    row-gap: 14px;
    margin-bottom: 35px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li {
  display: flex;
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  padding: 10px 19px;
  border-radius: 100px;
  background-color: var(--white-color);
  border: 1px solid var(--borders-color);
  transition: 0.5s;
}
@media (max-width: 1199px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li a {
    padding: 10px 15px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li a:hover {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
  color: var(--white-color);
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area {
  padding: 30px 30px 30px 40px;
  border-radius: 15px;
  background-image: url(../img/home1/mega-menu-support-area-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area {
    padding: 30px 20px 30px 20px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area h4,
header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area h5 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 20px;
  max-width: 330px;
  width: 100%;
}
@media (max-width: 576px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area h4,
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area h5 {
    font-size: 20px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area {
    flex-wrap: wrap;
    gap: 12px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area .img-grp {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area .img-grp li img {
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #31D2FF;
  margin-left: -15px;
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area .img-grp li:first-child img {
  margin-left: 0;
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area p {
  color: var(--white-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area p {
    font-size: 15px;
    line-height: 26px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .primary-btn2 {
  padding: 13px 30px;
}
header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .primary-btn2:hover {
  color: var(--white-color);
}
header.style-1 .main-menu > ul > li .mega-menu2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 76px;
  display: none;
  background: #fefffb;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 15px;
  width: 100%;
  transform-origin: top;
  z-index: 1;
  width: 1520px;
  border: 1px solid #CECEEA;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-1 .main-menu > ul > li .mega-menu2 {
    width: 1320px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  header.style-1 .main-menu > ul > li .mega-menu2 {
    width: 1130px;
  }
}
@media (max-width: 1199px) {
  header.style-1 .main-menu > ul > li .mega-menu2 {
    width: 970px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-1 .main-menu > ul > li .mega-menu2 {
    top: 66px;
    border-radius: 15px;
  }
}
@media (max-width: 991px) {
  header.style-1 .main-menu > ul > li .mega-menu2 {
    width: unset;
  }
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row {
  display: grid;
  justify-content: space-between;
  gap: 81px;
  grid-template-columns: 79% 21%;
  padding: 60px 70px 60px 60px;
}
@media (max-width: 1699px) {
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row {
    grid-template-columns: 82% 18%;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row {
    grid-template-columns: 83% 17%;
    padding: 60px 60px 60px 40px;
    gap: 58px;
  }
}
@media (max-width: 1399px) {
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row {
    gap: 55px;
    grid-template-columns: 80% 20%;
    padding: 50px 45px 50px 30px;
  }
}
@media (max-width: 1199px) {
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row {
    gap: 27px;
    grid-template-columns: 78% 22%;
    padding: 40px 25px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .mega-menu-title {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 30px;
  text-decoration: underline;
}
@media (max-width: 991px) {
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .mega-menu-title {
    font-size: 20px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper {
  position: relative;
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  height: 100%;
  width: 1px;
  background-color: #CECEEA;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper::before {
    right: -15px;
  }
}
@media (max-width: 991px) {
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper::before {
    display: none;
  }
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 43px;
  margin-bottom: 45px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap {
    gap: 20px;
  }
}
@media (max-width: 1399px) {
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap {
    gap: 20px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .mega-menu-title {
  font-size: 17px;
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(var(--primary-color1-opc), 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon {
    width: 37px;
    height: 37px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon svg {
  fill: var(--primary-color1);
  transition: all 0.5s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon svg {
    width: 20px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content {
  line-height: 1;
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content a {
  font-family: var(--font-montserrat);
  color: var(--title-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 8px;
  transition: all 0.5s;
  line-height: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content a {
    font-size: 15px;
  }
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content a:hover {
  color: var(--primary-color1);
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 0;
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product:last-child {
  margin-bottom: 0;
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product:hover .product-content a {
  color: var(--primary-color1);
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product:hover .icon {
  border-color: rgba(var(--title-color-opc), 0.4);
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product:hover .icon svg {
  fill: var(--title-color);
  animation: bounceIn 1.2s linear;
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid {
  grid-template-columns: repeat(2, 1fr);
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list .single-product:nth-child(3), header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list .single-product:nth-child(4) {
  margin-bottom: 0;
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap:last-child {
  margin-bottom: 0;
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .integration-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .integration-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 24px;
}
header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .integration-list li:last-child {
  margin-bottom: 0;
}
header.style-1 .main-menu > ul > li.menu-item-has-children {
  transition: all 0.55s ease-in-out;
}
@media (min-width: 992px) {
  header.style-1 .main-menu > ul > li:hover > ul.sub-menu {
    display: block;
    animation: fade-down 0.3s linear;
  }
}
@media (min-width: 992px) {
  header.style-1 .main-menu > ul > li:hover .mega-menu {
    display: block;
    animation: fade-down2 0.3s linear;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-1 .main-menu > ul > li:hover .mega-menu {
    animation: fade-down 0.3s linear;
  }
}
@media (min-width: 992px) {
  header.style-1 .main-menu > ul > li:hover .mega-menu2 {
    display: block;
    animation: fade-down2 0.3s linear;
  }
}
header.style-1 .main-menu > ul > li:hover > a i {
  color: var(--white-color);
}
header.style-1 .main-menu > ul > li:hover .dropdown-icon2 {
  color: var(--white-color);
}
header.style-1 .main-menu > ul > li.active > a {
  color: var(--primary-color1);
}
header.style-1 .main-menu > ul > li.active > a svg {
  fill: var(--primary-color1);
}
header.style-1 .main-menu > ul > li.active > a i {
  color: var(--primary-color1);
}
header.style-1 .main-menu > ul > li.active > i {
  color: var(--primary-color1);
}
header.style-1 .main-menu > ul > li:hover > a {
  color: var(--primary-color1);
}
header.style-1 .main-menu > ul > li:hover > a i {
  color: var(--primary-color1);
}
header.style-1 .main-menu > ul > li:hover > a svg {
  fill: var(--primary-color1);
}
header.style-1 .main-menu > ul > li:hover > i {
  color: var(--primary-color1);
}
header.style-1 .main-menu > ul li.menu-item-has-children > i {
  display: none;
}
header.style-1 .mobile-logo-area .mobile-logo-wrap img {
  width: 200px;
}
header.style-1 .mobile-logo-area .menu-close-btn {
  height: 38px;
  width: 38px;
  border-radius: 10px;
  border: 1px solid var(--borders-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.35s;
}
header.style-1 .mobile-logo-area .menu-close-btn i {
  font-size: 26px;
  line-height: 1;
  color: var(--title-color);
  transition: 0.35s;
}
header.style-1 .mobile-logo-area .menu-close-btn:hover {
  background-color: var(--title-color);
}
header.style-1 .mobile-logo-area .menu-close-btn:hover i {
  color: var(--white-color);
}
@media only screen and (max-width: 991px) {
  header.style-1 .dropdown-icon {
    color: var(--white-color);
  }
  header.style-1 .main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 330px;
    padding: 30px 20px !important;
    z-index: 99999;
    height: 100%;
    overflow: auto;
    background: var(--white-color);
    border-right: 1px solid var(--borders-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.03);
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  header.style-1 .main-menu {
    width: 300px;
  }
}
@media only screen and (max-width: 991px) {
  header.style-1 .main-menu.show-menu {
    transform: translateX(0);
  }
  header.style-1 .main-menu .mobile-menu-logo {
    text-align: left;
    padding-top: 20px;
    display: block;
    padding-bottom: 8px;
  }
  header.style-1 .main-menu .menu-list {
    padding-top: 50px;
    padding-bottom: 30px;
    border: unset;
  }
  header.style-1 .main-menu > ul {
    float: none;
    text-align: left;
    padding: 5px 0px 20px 0;
  }
  header.style-1 .main-menu > ul > li {
    display: block;
    position: relative;
    padding: 0;
  }
  header.style-1 .main-menu > ul > li i {
    display: block;
  }
  header.style-1 .main-menu > ul > li > a {
    padding: 15px 0;
    display: block;
    border: unset;
    background-color: transparent;
    color: var(--title-color);
  }
  header.style-1 .main-menu > ul > li > a i {
    display: none;
  }
  header.style-1 .main-menu > ul > li > a svg {
    fill: var(--title-color);
  }
  header.style-1 .main-menu > ul > li ul.sub-menu {
    position: static;
    min-width: 200px;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    padding: 0;
    padding-left: 10px;
    background-color: unset;
  }
  header.style-1 .main-menu > ul > li ul.sub-menu > li {
    border-bottom: 1px solid #eee;
  }
  header.style-1 .main-menu > ul > li ul.sub-menu > li a {
    color: var(--title-color);
    padding: 12px 0px;
  }
  header.style-1 .main-menu > ul > li ul.sub-menu > li a span svg {
    display: none;
  }
  header.style-1 .main-menu > ul > li ul.sub-menu > li a:hover {
    color: var(--primary-color1);
    margin-left: 10px;
  }
  header.style-1 .main-menu > ul > li ul.sub-menu > li a.active {
    color: var(--primary-color1);
  }
  header.style-1 .main-menu > ul > li ul.sub-menu > li i {
    color: var(--primary-color1);
    right: -13px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 1199px) {
  header.style-1 .main-menu > ul > li ul.sub-menu > li i {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  header.style-1 .main-menu > ul > li ul.sub-menu > li .sub-menu {
    padding-left: 10px;
  }
  header.style-1 .main-menu > ul > li ul.sub-menu > li .sub-menu li > a {
    padding: 12px 0;
  }
  header.style-1 .main-menu > ul > li .mega-menu {
    position: static;
    background: 0 0;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: transparent;
    border-radius: unset;
    box-shadow: unset;
    padding: 0;
  }
  header.style-1 .main-menu > ul > li .mega-menu .container {
    padding: 0;
  }
  header.style-1 .main-menu > ul > li .mega-menu .menu-row {
    display: block;
  }
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list {
    grid-template-columns: repeat(1, 1fr);
  }
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    padding: 13px 15px 13px 15px;
    font-size: 14px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    flex-direction: column;
    align-items: start;
  }
}
@media only screen and (max-width: 991px) and (max-width: 576px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    padding: 13px 10px 13px 9px;
  }
}
@media only screen and (max-width: 991px) {
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area {
    display: none;
  }
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    padding: unset;
    background-color: unset;
    border-radius: unset;
  }
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list {
    flex-direction: column;
    align-items: start;
    row-gap: 20px;
  }
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li a {
    padding: 0;
    border: unset;
  }
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area {
    display: none;
  }
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .menu-single-item {
    padding: 0;
    display: block;
    border-right: unset;
  }
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .menu-single-item::after {
    display: none;
  }
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .menu-single-item .menu-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 12px 0px;
    border-bottom: unset;
  }
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .menu-single-item .menu-title h6 {
    color: var(--text-color);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
  }
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .menu-single-item i {
    display: block;
    top: 10px;
    right: 0;
    color: var(--text-color);
  }
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul {
    display: none;
    padding: 0 10px;
  }
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li {
    margin-bottom: 0;
    line-height: 1;
  }
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li:last-child a {
    border-bottom: unset;
  }
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li a {
    font-size: 13px;
    font-family: var(--font-poppins);
    font-weight: 400;
    text-transform: uppercase;
    padding: 12px 0px;
    display: flex;
    transition: all 0.4s ease-out 0s;
  }
  header.style-1 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li a:hover {
    margin-left: 10px;
  }
  header.style-1 .main-menu > ul > li .mega-menu2 {
    position: static;
    min-width: 200px;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    background-image: unset;
    padding: 10px 0;
    background-color: unset;
    backdrop-filter: unset;
    min-height: unset;
    box-shadow: unset;
  }
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row {
    display: block;
    padding: 0;
  }
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .mega-menu-title {
    margin-bottom: 20px;
    font-size: 18px;
  }
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 25px;
  }
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 20px;
  }
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list .single-product:nth-child(3), header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list .single-product:nth-child(4) {
    margin-bottom: 20px;
  }
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area {
    padding: 0;
  }
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .industry-menu li {
    margin-bottom: 10px;
  }
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .industry-menu li:last-child {
    margin-bottom: 0;
  }
  header.style-1 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .industry-menu li .view-all-btn {
    margin-top: 15px;
  }
  header.style-1 .main-menu > ul > li:hover > a {
    color: var(--primary-color1);
  }
  header.style-1 .main-menu > ul > li:hover i {
    color: var(--primary-color1);
  }
  header.style-1 .main-menu > ul > li.active > a {
    color: var(--primary-color1);
    background-color: unset;
  }
  header.style-1 .main-menu > ul > li .bi {
    top: 13px;
    font-size: 20px;
    color: var(--title-color);
    line-height: 1;
  }
  header.style-1 .main-menu > ul li.menu-item-has-children > i {
    display: block;
  }
  header.style-1 .main-menu .btn-and-contact-area {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  header.style-1 .main-menu .primary-btn1 {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}
header.style-1.it-company-header .main-menu > ul > li > a {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}
header.style-1.it-company-header .main-menu > ul > li ul.sub-menu > li > a {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}
header.style-1.it-company-header .main-menu > .primary-btn2 {
  display: flex;
  width: 100%;
  justify-content: center;
}
header.style-1.it-company-header .nav-right .mobile-menu-btn {
  border: 1px solid rgba(var(--white-color-opc), 0.5);
}
header.style-1.it-company-header .nav-right .primary-btn2 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: underline;
  padding: 17px 32px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-1.it-company-header .nav-right .primary-btn2 {
    padding: 16px 27px;
  }
}
header.style-1.it-company-header .nav-right .primary-btn2:hover {
  color: var(--white-color);
}
header.style-1.ai-startup-header {
  padding: 0 200px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-1.ai-startup-header {
    padding: 0 70px;
  }
}
@media (max-width: 1399px) {
  header.style-1.ai-startup-header {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  header.style-1.ai-startup-header {
    padding: 15px 10px;
  }
}
@media (max-width: 991px) {
  header.style-1.ai-startup-header {
    padding: 15px 2px;
  }
}
header.style-1.ai-startup-header .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a:hover {
  background-color: var(--primary-color4);
  border-color: var(--primary-color4);
}
header.style-1.ai-startup-header .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area .arrow {
  background-color: var(--primary-color4);
}
header.style-1.ai-startup-header .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li a:hover {
  background-color: var(--primary-color4);
  border-color: var(--primary-color4);
}
header.style-1.ai-startup-header .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .primary-btn2 span {
  background-color: var(--primary-color4);
}
header.style-1.ai-startup-header .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon {
  border-color: var(--primary-color4);
}
header.style-1.ai-startup-header .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon svg {
  fill: var(--primary-color4);
}
header.style-1.ai-startup-header .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product:hover .product-content a {
  color: var(--primary-color4);
}
header.style-1.ai-startup-header .main-menu > ul > li > a {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}
header.style-1.ai-startup-header .main-menu > ul > li:hover > a {
  color: var(--primary-color4);
}
header.style-1.ai-startup-header .main-menu > ul > li:hover > a svg {
  fill: var(--primary-color4);
}
header.style-1.ai-startup-header .main-menu > ul > li:hover > a i {
  color: var(--primary-color4);
}
header.style-1.ai-startup-header .main-menu > ul > li:hover i {
  color: var(--primary-color4);
}
header.style-1.ai-startup-header .main-menu > ul > li.active > a {
  color: var(--primary-color4);
}
header.style-1.ai-startup-header .main-menu > ul > li.active > a svg {
  fill: var(--primary-color4);
}
header.style-1.ai-startup-header .main-menu > ul > li.active > a i {
  color: var(--primary-color4);
}
header.style-1.ai-startup-header .main-menu > ul > li.active i {
  color: var(--primary-color4);
}
header.style-1.ai-startup-header .main-menu > ul > li ul.sub-menu > li a span svg {
  fill: var(--primary-color4);
}
header.style-1.ai-startup-header .main-menu > ul > li ul.sub-menu > li:hover > a {
  color: var(--primary-color4);
}
header.style-1.ai-startup-header .main-menu > ul > li ul.sub-menu > li.active > a {
  color: var(--primary-color4);
}
header.style-1.ai-startup-header .nav-right .contact-btn-and-language .language-area .language-btn .language {
  background-color: rgba(var(--primary-color4-opc), 0.3);
  border: 1px solid rgba(var(--white-color-opc), 0.1);
}
header.style-1.ai-startup-header .nav-right .contact-btn-and-language .language-area .language-btn i {
  background-color: rgba(var(--primary-color4-opc), 0.3);
  border: 1px solid rgba(var(--white-color-opc), 0.1);
}
header.style-1.ai-startup-header .nav-right .contact-btn-and-language .language-area .language-list li a:hover {
  background-color: var(--primary-color4);
}

header.style-2 {
  background-color: var(--white-color);
  position: relative;
  width: 100%;
  z-index: 999;
  transition: all 0.8s ease-out 0s;
  padding: 0 10%;
  border-bottom: 1px solid rgba(var(--title-color-opc), 0.05);
}
@media (max-width: 1799px) {
  header.style-2 {
    padding: 0 100px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-2 {
    padding: 0 80px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  header.style-2 {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  header.style-2 {
    padding: 18px 0px;
  }
}
header.style-2.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 5px 3px 40px rgba(63, 59, 59, 0.1);
  transition: all 0.8s ease-out 0s;
  z-index: 999;
}
header.style-2 .header-logo {
  width: 148px;
}
@media (max-width: 1399px) {
  header.style-2 .header-logo {
    width: 105px;
  }
}
header.style-2 .nav-right {
  display: flex;
  align-items: center;
  gap: 45px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-2 .nav-right {
    gap: 35px;
  }
}
@media (max-width: 1199px) {
  header.style-2 .nav-right {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  header.style-2 .nav-right {
    gap: 35px;
  }
}
@media (max-width: 576px) {
  header.style-2 .nav-right {
    gap: 15px;
  }
}
@media (max-width: 1199px) {
  header.style-2 .nav-right .primary-btn1 {
    padding: 17px 18px;
  }
}
header.style-2 .nav-right .contact-btn-and-language {
  display: flex;
  align-items: center;
  gap: 20px;
}
header.style-2 .nav-right .contact-btn-and-language .language-area {
  position: relative;
}
header.style-2 .nav-right .contact-btn-and-language .language-area .language-btn {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
}
header.style-2 .nav-right .contact-btn-and-language .language-area .language-btn .language {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: rgba(var(--primary-color1-opc), 0.3);
  border-radius: 18px;
  border: 1px solid rgba(var(--white-color-opc), 0.1);
  padding: 8px 12px;
}
header.style-2 .nav-right .contact-btn-and-language .language-area .language-btn .language svg {
  fill: var(--title-color);
  transition: 0.5s;
}
header.style-2 .nav-right .contact-btn-and-language .language-area .language-btn .language span {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  transition: 0.5s;
}
header.style-2 .nav-right .contact-btn-and-language .language-area .language-btn i {
  font-size: 12px;
  line-height: 1;
  color: var(--title-color);
  background-color: rgba(var(--primary-color1-opc), 0.3);
  border-radius: 18px;
  border: 1px solid rgba(var(--white-color-opc), 0.1);
  padding: 7px 5px;
}
header.style-2 .nav-right .contact-btn-and-language .language-area .language-list {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  top: 35px;
  left: 50%;
  z-index: 9999;
  width: 180px;
  background-color: var(--white-color);
  box-shadow: 0px 30px 80px rgba(8, 0, 42, 0.08);
  border-radius: 10px;
  overflow: hidden;
  display: none;
  transform: scaleY(0) translateX(-50%);
  transform-origin: top;
}
header.style-2 .nav-right .contact-btn-and-language .language-area .language-list.active {
  display: block;
  transform: scaleY(1) translateX(-50%);
  animation: fade-up 0.5s linear;
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(10px) translateX(-50%);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: translateY(0px) translateX(-50%);
    visibility: visible;
  }
}
header.style-2 .nav-right .contact-btn-and-language .language-area .language-list li a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  text-transform: capitalize;
  font-size: 12px;
  padding: 12px 20px;
  line-height: 1;
  width: 100%;
  display: flex;
  align-items: center;
  transition: 0.5s;
  display: flex;
  align-items: center;
  gap: 10px;
}
header.style-2 .nav-right .contact-btn-and-language .language-area .language-list li a:hover {
  color: var(--white-color);
  background-color: var(--primary-color1);
}
header.style-2 .nav-right .mobile-menu-btn {
  display: none;
  visibility: hidden;
}
@media (max-width: 991px) {
  header.style-2 .nav-right .mobile-menu-btn {
    display: flex;
    align-items: center;
    visibility: visible;
    justify-content: center;
    position: relative;
    min-width: 48px;
    max-width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid var(--borders-color);
  }
  header.style-2 .nav-right .mobile-menu-btn svg {
    fill: var(--title-color);
  }
  header.style-2 .nav-right .mobile-menu-btn:hover svg {
    animation: qode-draw 0.75s cubic-bezier(0.57, 0.39, 0, 0.86) 1 forwards;
  }
}
@media (max-width: 576px) {
  header.style-2 .nav-right .mobile-menu-btn {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
  }
  header.style-2 .nav-right .mobile-menu-btn svg {
    width: 18px;
  }
}
@keyframes qode-draw {
  0%, 100% {
    clip-path: inset(-2px -2px);
  }
  42% {
    clip-path: inset(-2px -2px -2px 100%);
  }
  43% {
    clip-path: inset(-2px 100% -3px -2px);
  }
}
header.style-2 .header-btn {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  color: var(--title-color);
  background-color: var(--white-color);
  border-radius: 5px;
  padding: 16px 37px;
}
header.style-2 .main-menu {
  display: inline-block;
}
header.style-2 .main-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header.style-2 .main-menu > ul > li {
  display: inline-block;
  position: relative;
  padding: 32px 0;
}
@media (max-width: 1399px) {
  header.style-2 .main-menu > ul > li {
    padding: 28px 2px;
  }
}
@media (max-width: 1199px) {
  header.style-2 .main-menu > ul > li {
    padding: 16px 2px;
  }
}
header.style-2 .main-menu > ul > li.position-inherit {
  position: inherit;
}
@media (max-width: 991px) {
  header.style-2 .main-menu > ul > li.position-inherit {
    position: relative;
  }
}
@media (min-width: 992px) {
  header.style-2 .main-menu > ul > li:first-child {
    padding-left: 0;
  }
  header.style-2 .main-menu > ul > li:last-child {
    padding-right: 0;
  }
}
header.style-2 .main-menu > ul > li > a {
  color: var(--title-color);
  display: block;
  letter-spacing: 0.4px;
  padding: 5px 20px;
  line-height: 1;
  position: relative;
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 13px;
  transition: all 0.5s ease-out 0s;
  position: relative;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  header.style-2 .main-menu > ul > li > a {
    padding: 5px 9px;
  }
}
header.style-2 .main-menu > ul > li > a svg {
  fill: var(--title-color);
  margin-top: -3px;
}
header.style-2 .main-menu > ul > li > a i {
  font-size: 11px;
  color: var(--title-color);
  transition: all 0.55s ease-in-out;
}
header.style-2 .main-menu > ul > li .dropdown-icon {
  font-size: 20px;
  text-align: center;
  color: var(--title-color);
  font-style: normal;
  position: absolute;
  right: -5px;
  top: 35px;
  z-index: 999;
  cursor: pointer;
  display: none;
  transition: all 0.5s ease-out 0s;
  opacity: 0;
}
@media (max-width: 1199px) {
  header.style-2 .main-menu > ul > li .dropdown-icon {
    opacity: 1;
  }
}
header.style-2 .main-menu > ul > li .dropdown-icon.active::before {
  content: "\f2ea";
}
header.style-2 .main-menu > ul > li ul.sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  margin: 0;
  display: none;
  min-width: 250px;
  background: var(--white-color);
  border: 1px solid var(--borders-color);
  border-radius: 10px;
  padding: 15px 0;
  text-align: left;
  transform-origin: top;
}
@media (max-width: 1399px) {
  header.style-2 .main-menu > ul > li ul.sub-menu {
    top: 74px;
  }
}
header.style-2 .main-menu > ul > li ul.sub-menu > li {
  padding: 0;
  display: block;
  position: relative;
}
header.style-2 .main-menu > ul > li ul.sub-menu > li i {
  position: absolute;
  top: 14px;
  right: 20px;
  display: none;
  color: var(--title-color);
  font-size: 14px;
}
header.style-2 .main-menu > ul > li ul.sub-menu > li .dropdown-icon {
  color: var(--title-color);
  opacity: 1;
  top: 16px;
  font-size: 10px;
}
@media (max-width: 1199px) {
  header.style-2 .main-menu > ul > li ul.sub-menu > li .dropdown-icon {
    right: 0;
    top: 11px;
    font-size: 20px;
  }
}
header.style-2 .main-menu > ul > li ul.sub-menu > li > a {
  display: block;
  color: var(--title-color);
  font-weight: 500;
  font-family: var(--font-montserrat);
  line-height: 1.2;
  transition: all 0.4s ease-out 0s;
  position: relative;
  font-size: 14px;
  padding: 10px 16px;
}
@media (max-width: 1399px) {
  header.style-2 .main-menu > ul > li ul.sub-menu > li > a {
    padding: 10px 20px;
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  header.style-2 .main-menu > ul > li ul.sub-menu > li > a {
    border-color: rgba(233, 228, 228, 0.5);
  }
}
header.style-2 .main-menu > ul > li ul.sub-menu > li > a i {
  display: block;
}
@media (max-width: 991px) {
  header.style-2 .main-menu > ul > li ul.sub-menu > li > a i {
    display: none;
  }
}
header.style-2 .main-menu > ul > li ul.sub-menu > li > a span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s;
}
header.style-2 .main-menu > ul > li ul.sub-menu > li > a span svg {
  fill: #555555;
  transition: all 0.5s;
}
header.style-2 .main-menu > ul > li ul.sub-menu > li > a:hover {
  color: var(--primary-color2);
  text-decoration: underline;
}
header.style-2 .main-menu > ul > li ul.sub-menu > li > a:hover svg {
  fill: var(--primary-color2);
  transform: rotate(-45deg);
}
header.style-2 .main-menu > ul > li ul.sub-menu > li > a:hover::before {
  transform: scale(1);
}
header.style-2 .main-menu > ul > li ul.sub-menu > li > a.active {
  color: var(--primary-color2);
}
header.style-2 .main-menu > ul > li ul.sub-menu > li > a.active span {
  text-decoration: underline;
}
header.style-2 .main-menu > ul > li ul.sub-menu > li > a.active span svg {
  fill: var(--primary-color2);
}
header.style-2 .main-menu > ul > li ul.sub-menu > li > a.active::before {
  transform: scale(1);
}
header.style-2 .main-menu > ul > li ul.sub-menu > li:last-child > a {
  border-bottom: none;
}
header.style-2 .main-menu > ul > li ul.sub-menu > li:last-child > a::before {
  display: none;
}
header.style-2 .main-menu > ul > li ul.sub-menu > li:hover > a {
  color: var(--primary-color1);
}
header.style-2 .main-menu > ul > li ul.sub-menu > li:hover .dropdown-icon {
  color: var(--primary-color1);
}
header.style-2 .main-menu > ul > li ul.sub-menu > li.active > a {
  color: var(--primary-color1);
  text-decoration: underline;
}
header.style-2 .main-menu > ul > li ul.sub-menu > li.active .dropdown-icon {
  color: var(--primary-color1);
}
header.style-2 .main-menu > ul > li ul.sub-menu > li .sub-menu {
  left: 249px;
  position: absolute;
  max-width: 230px;
  min-width: 230px;
  background: var(--white-color);
  top: 3px;
  padding: 10px 0;
  border-left: unset;
}
header.style-2 .main-menu > ul > li ul.sub-menu > li .sub-menu > li > a {
  padding: 10px 20px;
}
header.style-2 .main-menu > ul > li ul.sub-menu > li .sub-menu > li i {
  display: block;
}
@media (max-width: 991px) {
  header.style-2 .main-menu > ul > li ul.sub-menu > li .sub-menu {
    position: unset;
    max-width: 230px;
    min-width: 215px;
    background: transparent;
    top: 0;
    padding: 0;
  }
}
@media (min-width: 992px) {
  header.style-2 .main-menu > ul > li ul.sub-menu > li:hover > .sub-menu {
    display: block;
    animation: fade-down 0.45s linear;
  }
}
header.style-2 .main-menu > ul > li ul.sub-menu > li:last-child {
  border-bottom: none;
}
header.style-2 .main-menu > ul > li .mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 75px;
  display: none;
  background: var(--white-color);
  border: 1px solid rgba(var(--borders-color-opc), 0.5);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
  max-width: 1320px;
  width: 100%;
  transform-origin: top;
  z-index: 1;
}
@media (max-width: 1399px) {
  header.style-2 .main-menu > ul > li .mega-menu {
    max-width: 1180px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-2 .main-menu > ul > li .mega-menu {
    max-height: 550px;
    overflow-y: auto;
    margin: 0 10px;
    width: calc(100% - 20px);
    left: 0;
    transform: translateX(0);
    border-radius: 15px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row {
  display: grid;
  justify-content: space-between;
  gap: 110px;
  grid-template-columns: 49% 42.5%;
}
@media (max-width: 1399px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row {
    gap: 70px;
    grid-template-columns: 54% 42.5%;
  }
}
@media (max-width: 1199px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row {
    gap: 30px;
    grid-template-columns: 49% 47%;
  }
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .mega-menu-title {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 23px;
  line-height: 28px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .mega-menu-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap {
  padding: 50px 0 50px 50px;
}
@media (max-width: 1399px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap {
    padding: 50px 0 50px 30px;
  }
}
@media (max-width: 1199px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap {
    padding: 35px 0 35px 20px;
  }
}
@media (max-width: 991px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap {
    padding: 0;
    margin-bottom: 35px;
  }
}
@media (max-width: 991px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .mega-menu-title {
    display: none;
  }
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list {
    margin-bottom: 35px;
  }
}
@media (max-width: 576px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list {
    gap: 15px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a svg {
  fill: var(--text-color);
  min-width: 36px;
  transition: 0.5s;
}
@media (max-width: 576px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a svg {
    min-width: 30px;
    width: 30px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid var(--borders-color);
  transition: 0.5s;
}
@media (max-width: 1399px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    padding: 18px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    padding: 18px 30px 18px 15px;
  }
}
@media (max-width: 767px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    font-size: 15px;
    line-height: 23px;
    padding: 18px 10px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a:hover {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
  color: var(--white-color);
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a:hover svg {
  fill: var(--white-color);
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 10px 10px 30px;
  background-color: #F0F0F0;
  border-radius: 100px;
}
@media (max-width: 576px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area {
    font-size: 15px;
    padding: 10px 10px 10px 20px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area .arrow {
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color1);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area .arrow {
    min-width: 36px;
    max-width: 36px;
    height: 36px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area .arrow svg {
  fill: none;
  stroke: var(--white-color);
  transition: 0.5s;
}
@media (max-width: 576px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area .arrow svg {
    width: 10px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area:hover .arrow svg {
  transform: rotate(45deg);
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
  padding: 50px;
  background-color: #DDE6FF;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 1399px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    padding: 50px 30px;
  }
}
@media (max-width: 1199px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    padding: 35px 20px;
  }
}
@media (max-width: 991px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    border-radius: 10px;
  }
}
@media (max-width: 576px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    padding: 25px 15px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
@media (max-width: 1199px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list {
    gap: 12px;
    row-gap: 14px;
    margin-bottom: 35px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li {
  display: flex;
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  padding: 10px 19px;
  border-radius: 100px;
  background-color: var(--white-color);
  border: 1px solid var(--borders-color);
  transition: 0.5s;
}
@media (max-width: 1199px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li a {
    padding: 10px 15px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li a:hover {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
  color: var(--white-color);
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area {
  padding: 30px 30px 30px 40px;
  border-radius: 15px;
  background-image: url(../img/home1/mega-menu-support-area-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area {
    padding: 30px 20px 30px 20px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area h5,
header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area h4 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 20px;
  max-width: 330px;
  width: 100%;
}
@media (max-width: 576px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area h5,
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area h4 {
    font-size: 20px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area {
    flex-wrap: wrap;
    gap: 12px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area .img-grp {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area .img-grp li img {
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #31D2FF;
  margin-left: -15px;
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area .img-grp li:first-child img {
  margin-left: 0;
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area p {
  color: var(--white-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area p {
    font-size: 15px;
    line-height: 26px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .primary-btn2 {
  padding: 13px 30px;
}
header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .primary-btn2:hover {
  color: var(--white-color);
}
header.style-2 .main-menu > ul > li .mega-menu2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 76px;
  display: none;
  background: #fefffb;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 15px;
  width: 100%;
  transform-origin: top;
  z-index: 1;
  width: 1520px;
  border: 1px solid #CECEEA;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-2 .main-menu > ul > li .mega-menu2 {
    width: 1320px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  header.style-2 .main-menu > ul > li .mega-menu2 {
    width: 1130px;
  }
}
@media (max-width: 1199px) {
  header.style-2 .main-menu > ul > li .mega-menu2 {
    width: 970px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-2 .main-menu > ul > li .mega-menu2 {
    top: 66px;
    border-radius: 15px;
  }
}
@media (max-width: 991px) {
  header.style-2 .main-menu > ul > li .mega-menu2 {
    width: unset;
  }
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row {
  display: grid;
  justify-content: space-between;
  gap: 81px;
  grid-template-columns: 79% 21%;
  padding: 60px 70px 60px 60px;
}
@media (max-width: 1699px) {
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row {
    grid-template-columns: 82% 18%;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row {
    grid-template-columns: 83% 17%;
    padding: 60px 60px 60px 40px;
    gap: 58px;
  }
}
@media (max-width: 1399px) {
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row {
    gap: 55px;
    grid-template-columns: 80% 20%;
    padding: 50px 45px 50px 30px;
  }
}
@media (max-width: 1199px) {
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row {
    gap: 27px;
    grid-template-columns: 78% 22%;
    padding: 40px 25px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .mega-menu-title {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 30px;
  text-decoration: underline;
}
@media (max-width: 991px) {
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .mega-menu-title {
    font-size: 20px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper {
  position: relative;
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  height: 100%;
  width: 1px;
  background-color: #CECEEA;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper::before {
    right: -15px;
  }
}
@media (max-width: 991px) {
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper::before {
    display: none;
  }
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 43px;
  margin-bottom: 45px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap {
    gap: 20px;
  }
}
@media (max-width: 1399px) {
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap {
    gap: 20px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .mega-menu-title {
  font-size: 17px;
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(var(--primary-color1-opc), 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon {
    width: 37px;
    height: 37px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon svg {
  fill: var(--primary-color1);
  transition: all 0.5s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon svg {
    width: 20px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content {
  line-height: 1;
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content a {
  font-family: var(--font-montserrat);
  color: var(--title-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 8px;
  transition: all 0.5s;
  line-height: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content a {
    font-size: 15px;
  }
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content a:hover {
  color: var(--primary-color1);
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 0;
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product:last-child {
  margin-bottom: 0;
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product:hover .product-content a {
  color: var(--primary-color1);
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product:hover .icon {
  border-color: rgba(var(--title-color-opc), 0.4);
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product:hover .icon svg {
  fill: var(--title-color);
  animation: bounceIn 1.2s linear;
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid {
  grid-template-columns: repeat(2, 1fr);
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list .single-product:nth-child(3), header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list .single-product:nth-child(4) {
  margin-bottom: 0;
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap:last-child {
  margin-bottom: 0;
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .integration-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .integration-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 24px;
}
header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .integration-list li:last-child {
  margin-bottom: 0;
}
header.style-2 .main-menu > ul > li.menu-item-has-children {
  transition: all 0.55s ease-in-out;
}
@media (min-width: 992px) {
  header.style-2 .main-menu > ul > li:hover > ul.sub-menu {
    display: block;
    animation: fade-down 0.3s linear;
  }
}
@media (min-width: 992px) {
  header.style-2 .main-menu > ul > li:hover .mega-menu {
    display: block;
    animation: fade-down2 0.3s linear;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-2 .main-menu > ul > li:hover .mega-menu {
    animation: fade-down 0.3s linear;
  }
}
@media (min-width: 992px) {
  header.style-2 .main-menu > ul > li:hover .mega-menu2 {
    display: block;
    animation: fade-down2 0.3s linear;
  }
}
header.style-2 .main-menu > ul > li:hover > a i {
  color: var(--white-color);
}
header.style-2 .main-menu > ul > li:hover .dropdown-icon2 {
  color: var(--primary-color1);
}
header.style-2 .main-menu > ul > li.active > a {
  color: var(--primary-color1);
}
header.style-2 .main-menu > ul > li.active > a svg {
  fill: var(--primary-color1);
}
header.style-2 .main-menu > ul > li.active > a i {
  color: var(--primary-color1);
}
header.style-2 .main-menu > ul > li.active > i {
  color: var(--primary-color1);
}
header.style-2 .main-menu > ul > li:hover > a {
  color: var(--primary-color1);
}
header.style-2 .main-menu > ul > li:hover > a svg {
  fill: var(--primary-color1);
}
header.style-2 .main-menu > ul > li:hover > a i {
  color: var(--primary-color1);
}
header.style-2 .main-menu > ul > li:hover > i {
  color: var(--primary-color1);
}
header.style-2 .main-menu > ul li.menu-item-has-children > i {
  display: none;
}
header.style-2 .mobile-logo-area .mobile-logo-wrap img {
  width: 110px;
}
header.style-2 .mobile-logo-area .menu-close-btn {
  height: 38px;
  width: 38px;
  border-radius: 10px;
  border: 1px solid var(--borders-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.35s;
}
header.style-2 .mobile-logo-area .menu-close-btn i {
  font-size: 26px;
  line-height: 1;
  color: var(--title-color);
  transition: 0.35s;
}
header.style-2 .mobile-logo-area .menu-close-btn:hover {
  background-color: var(--title-color);
}
header.style-2 .mobile-logo-area .menu-close-btn:hover i {
  color: var(--white-color);
}
@media only screen and (max-width: 991px) {
  header.style-2 .dropdown-icon {
    color: var(--white-color);
  }
  header.style-2 .main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 330px;
    padding: 30px 20px !important;
    z-index: 99999;
    height: 100%;
    overflow: auto;
    background: var(--white-color);
    border-right: 1px solid var(--borders-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.03);
  }
}
@media only screen and (max-width: 991px) and (max-width: 576px) {
  header.style-2 .main-menu {
    width: 300px;
  }
}
@media only screen and (max-width: 991px) {
  header.style-2 .main-menu.show-menu {
    transform: translateX(0);
  }
  header.style-2 .main-menu .mobile-menu-logo {
    text-align: left;
    padding-top: 20px;
    display: block;
    padding-bottom: 8px;
  }
  header.style-2 .main-menu .menu-list {
    padding-top: 50px;
    padding-bottom: 30px;
    border: unset;
  }
  header.style-2 .main-menu > ul {
    float: none;
    text-align: left;
    padding: 5px 0px 20px 0;
  }
  header.style-2 .main-menu > ul > li {
    display: block;
    position: relative;
    padding: 0;
  }
  header.style-2 .main-menu > ul > li i {
    display: block;
  }
  header.style-2 .main-menu > ul > li > a {
    padding: 15px 0;
    display: block;
    border: unset;
    background-color: transparent;
    color: var(--title-color);
  }
  header.style-2 .main-menu > ul > li > a i {
    display: none;
  }
  header.style-2 .main-menu > ul > li ul.sub-menu {
    position: static;
    min-width: 200px;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    padding: 0;
    padding-left: 10px;
    background-color: unset;
  }
  header.style-2 .main-menu > ul > li ul.sub-menu > li {
    border-bottom: 1px solid #eee;
  }
  header.style-2 .main-menu > ul > li ul.sub-menu > li a {
    color: var(--title-color);
    padding: 12px 0px;
  }
  header.style-2 .main-menu > ul > li ul.sub-menu > li a span svg {
    display: none;
  }
  header.style-2 .main-menu > ul > li ul.sub-menu > li a:hover {
    color: var(--primary-color1);
    margin-left: 10px;
  }
  header.style-2 .main-menu > ul > li ul.sub-menu > li a.active {
    color: var(--primary-color1);
  }
  header.style-2 .main-menu > ul > li ul.sub-menu > li i {
    color: var(--primary-color1);
    right: -13px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 1199px) {
  header.style-2 .main-menu > ul > li ul.sub-menu > li i {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  header.style-2 .main-menu > ul > li ul.sub-menu > li .sub-menu {
    padding-left: 10px;
  }
  header.style-2 .main-menu > ul > li ul.sub-menu > li .sub-menu li > a {
    padding: 12px 0;
  }
  header.style-2 .main-menu > ul > li .mega-menu {
    position: static;
    background: 0 0;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: transparent;
    border-radius: unset;
    box-shadow: unset;
    padding: 0;
  }
  header.style-2 .main-menu > ul > li .mega-menu .container {
    padding: 0;
  }
  header.style-2 .main-menu > ul > li .mega-menu .menu-row {
    display: block;
  }
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list {
    grid-template-columns: repeat(1, 1fr);
  }
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    padding: 13px 15px 13px 15px;
    font-size: 14px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    flex-direction: column;
    align-items: start;
  }
}
@media only screen and (max-width: 991px) and (max-width: 576px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    padding: 13px 10px 13px 9px;
  }
}
@media only screen and (max-width: 991px) {
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area {
    display: none;
  }
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    padding: unset;
    background-color: unset;
    border-radius: unset;
  }
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list {
    flex-direction: column;
    align-items: start;
    row-gap: 20px;
  }
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li a {
    padding: 0;
    border: unset;
  }
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area {
    display: none;
  }
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item {
    padding: 0;
    display: block;
    border-right: unset;
  }
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item::after {
    display: none;
  }
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item .menu-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 12px 0px;
    border-bottom: unset;
  }
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item .menu-title h6 {
    color: var(--text-color);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
  }
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item i {
    display: block;
    top: 10px;
    right: 0;
    color: var(--text-color);
  }
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul {
    display: none;
    padding: 0 10px;
  }
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li {
    margin-bottom: 0;
    line-height: 1;
  }
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li:last-child a {
    border-bottom: unset;
  }
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li a {
    font-size: 13px;
    font-family: var(--font-inter);
    font-weight: 400;
    text-transform: uppercase;
    padding: 12px 0px;
    display: flex;
    transition: all 0.4s ease-out 0s;
  }
  header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li a:hover {
    margin-left: 10px;
  }
  header.style-2 .main-menu > ul > li .mega-menu2 {
    position: static;
    min-width: 200px;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    background-image: unset;
    padding: 10px 0;
    background-color: unset;
    backdrop-filter: unset;
    min-height: unset;
    box-shadow: unset;
  }
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row {
    display: block;
    padding: 0;
  }
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .mega-menu-title {
    margin-bottom: 20px;
    font-size: 18px;
  }
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 25px;
  }
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 20px;
  }
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list .single-product:nth-child(3), header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list .single-product:nth-child(4) {
    margin-bottom: 20px;
  }
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area {
    padding: 0;
  }
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .industry-menu li {
    margin-bottom: 10px;
  }
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .industry-menu li:last-child {
    margin-bottom: 0;
  }
  header.style-2 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .industry-menu li .view-all-btn {
    margin-top: 15px;
  }
  header.style-2 .main-menu > ul > li:hover > a {
    color: var(--primary-color1);
  }
  header.style-2 .main-menu > ul > li:hover i {
    color: var(--primary-color1);
  }
  header.style-2 .main-menu > ul > li.active > a {
    color: var(--primary-color1);
    background-color: unset;
  }
  header.style-2 .main-menu > ul > li .bi {
    top: 13px;
    font-size: 20px;
    color: var(--title-color);
    line-height: 1;
  }
  header.style-2 .main-menu > ul li.menu-item-has-children > i {
    display: block;
  }
  header.style-2 .main-menu .btn-and-contact-area {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  header.style-2 .main-menu .primary-btn1 {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}
header.style-2.it-consult {
  padding: 0 150px;
  position: absolute;
}
@media (max-width: 1799px) {
  header.style-2.it-consult {
    padding: 0 100px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-2.it-consult {
    padding: 0 80px;
  }
}
@media (max-width: 1399px) {
  header.style-2.it-consult {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  header.style-2.it-consult {
    padding: 20px 15px;
  }
}
@media (max-width: 576px) {
  header.style-2.it-consult {
    padding: 20px 10px;
  }
}
header.style-2.it-consult .header-logo {
  width: 148px;
}
@media (max-width: 1399px) {
  header.style-2.it-consult .header-logo {
    width: 115px;
  }
}
header.style-2.it-consult .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a:hover {
  background-color: var(--primary-color5);
  border-color: var(--primary-color5);
}
header.style-2.it-consult .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area .arrow {
  background-color: var(--primary-color5);
}
header.style-2.it-consult .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li a:hover {
  background-color: var(--primary-color5);
  border-color: var(--primary-color5);
}
header.style-2.it-consult .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .primary-btn2 span {
  background-color: var(--primary-color5);
}
header.style-2.it-consult .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon {
  border-color: var(--primary-color5);
}
header.style-2.it-consult .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon svg {
  fill: var(--primary-color5);
}
header.style-2.it-consult .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product:hover .product-content a {
  color: var(--primary-color5);
}
header.style-2.it-consult .main-menu > ul > li:hover > a {
  color: var(--primary-color5);
}
header.style-2.it-consult .main-menu > ul > li:hover > a svg {
  fill: var(--primary-color5);
}
header.style-2.it-consult .main-menu > ul > li:hover > a i {
  color: var(--primary-color5);
}
header.style-2.it-consult .main-menu > ul > li:hover i {
  color: var(--primary-color5);
}
header.style-2.it-consult .main-menu > ul > li.active > a {
  color: var(--primary-color5);
}
header.style-2.it-consult .main-menu > ul > li.active > a svg {
  fill: var(--primary-color5);
}
header.style-2.it-consult .main-menu > ul > li.active > a i {
  color: var(--primary-color5);
}
header.style-2.it-consult .main-menu > ul > li.active i {
  color: var(--primary-color5);
}
header.style-2.it-consult .main-menu > ul > li ul.sub-menu > li a span svg {
  fill: var(--primary-color5);
}
header.style-2.it-consult .main-menu > ul > li ul.sub-menu > li:hover > a {
  color: var(--primary-color5);
}
header.style-2.it-consult .main-menu > ul > li ul.sub-menu > li.active > a {
  color: var(--primary-color5);
}
header.style-2.it-consult .nav-right .contact-btn-and-language .language-area .language-btn .language {
  background-color: rgba(var(--primary-color5-opc), 0.3);
  border: 1px solid rgba(var(--white-color-opc), 0.1);
}
header.style-2.it-consult .nav-right .contact-btn-and-language .language-area .language-btn i {
  background-color: rgba(var(--primary-color5-opc), 0.3);
  border: 1px solid rgba(var(--white-color-opc), 0.1);
}
header.style-2.it-consult .nav-right .contact-btn-and-language .language-area .language-list li a:hover {
  background-color: var(--primary-color5);
}
@media (max-width: 991px) {
  header.style-2.three .main-menu {
    min-height: 100vh;
  }
}

.home2-header-and-topbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: transform 0.5s ease-in;
  transform: translateY(0);
}
.home2-header-and-topbar-area .topbar-area {
  padding: 10px 0;
  transition: transform 0.5s ease-in;
}
.home2-header-and-topbar-area.sticky {
  position: fixed;
  transform: translateY(-63px);
}
@media (max-width: 991px) {
  .home2-header-and-topbar-area.sticky {
    transform: translateY(0);
  }
}

header.style-4 {
  background-color: var(--white-color);
  position: absolute;
  width: 100%;
  z-index: 999;
  transition: all 0.8s ease-out 0s;
  padding: 20px 146px 20px 10%;
}
@media (max-width: 1699px) {
  header.style-4 {
    padding: 20px 70px 20px 2%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  header.style-4 {
    padding: 20px;
  }
}
@media (max-width: 1199px) {
  header.style-4 {
    padding: 18px 0px;
  }
}
header.style-4.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 5px 3px 40px rgba(63, 59, 59, 0.1);
  transition: all 0.8s ease-out 0s;
  z-index: 999;
}
header.style-4 .header-logo {
  width: 148px;
}
@media (max-width: 1399px) {
  header.style-4 .header-logo {
    width: 105px;
  }
}
header.style-4 .contact-area {
  display: flex;
  align-items: center;
  gap: 70px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-4 .contact-area {
    gap: 50px;
  }
}
@media (max-width: 1199px) {
  header.style-4 .contact-area {
    gap: 30px;
  }
}
header.style-4 .contact-area .icon {
  min-width: 36px;
  max-width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--borders-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
header.style-4 .contact-area .icon svg {
  fill: var(--white-color);
}
header.style-4 .contact-area .content span {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 3px;
  display: block;
}
header.style-4 .contact-area .content a {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  transition: 0.5s;
}
@media (max-width: 1399px) {
  header.style-4 .contact-area .content a {
    font-size: 17px;
  }
}
header.style-4 .contact-area .content a:hover {
  color: var(--primary-color1);
}
header.style-4 .nav-right {
  display: flex;
  align-items: center;
  gap: 45px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-4 .nav-right {
    gap: 35px;
  }
}
@media (max-width: 1199px) {
  header.style-4 .nav-right {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  header.style-4 .nav-right {
    gap: 35px;
  }
}
@media (max-width: 576px) {
  header.style-4 .nav-right {
    gap: 15px;
  }
}
header.style-4 .nav-right .contact-btn-and-author {
  display: flex;
  align-items: center;
  gap: 30px;
}
header.style-4 .nav-right .contact-btn-and-author .primary-btn2 {
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  text-decoration: underline;
  color: var(--title-color);
  padding: 16px 24px;
  border: 1px solid var(--title-color);
  border-radius: 10px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  header.style-4 .nav-right .contact-btn-and-author .primary-btn2 {
    padding: 14px 21px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-4 .nav-right .contact-btn-and-author .primary-btn2 {
    padding: 14px 10px;
  }
}
header.style-4 .nav-right .contact-btn-and-author .primary-btn2:hover {
  color: var(--white-color);
}
header.style-4 .nav-right .contact-btn-and-author .user-login {
  line-height: 1;
  transition: 0.5s;
}
header.style-4 .nav-right .contact-btn-and-author .user-login .user-btn {
  background: transparent;
  padding: 8px;
  border: 1px solid rgba(var(--title-color-opc), 0.4);
  border-radius: 10px;
}
header.style-4 .nav-right .contact-btn-and-author .user-login .user-btn svg {
  fill: var(--primary-color1);
}
header.style-4 .nav-right .mobile-menu-btn {
  display: none;
  visibility: hidden;
}
@media (max-width: 991px) {
  header.style-4 .nav-right .mobile-menu-btn {
    display: flex;
    align-items: center;
    visibility: visible;
    justify-content: center;
    position: relative;
    min-width: 48px;
    max-width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid var(--borders-color);
  }
  header.style-4 .nav-right .mobile-menu-btn svg {
    fill: var(--title-color);
  }
  header.style-4 .nav-right .mobile-menu-btn:hover svg {
    animation: qode-draw 0.75s cubic-bezier(0.57, 0.39, 0, 0.86) 1 forwards;
  }
}
@media (max-width: 576px) {
  header.style-4 .nav-right .mobile-menu-btn {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
  }
  header.style-4 .nav-right .mobile-menu-btn svg {
    width: 18px;
  }
}
@keyframes qode-draw {
  0%, 100% {
    clip-path: inset(-2px -2px);
  }
  42% {
    clip-path: inset(-2px -2px -2px 100%);
  }
  43% {
    clip-path: inset(-2px 100% -3px -2px);
  }
}
header.style-4 .header-btn {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  color: var(--title-color);
  background-color: var(--white-color);
  border-radius: 5px;
  padding: 16px 37px;
}
header.style-4 .main-menu {
  display: inline-block;
}
header.style-4 .main-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 10px;
  border: 1px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, rgba(56, 107, 183, 0.2), rgba(226, 76, 74, 0.2)) border-box;
}
header.style-4 .main-menu > ul > li {
  display: inline-block;
  position: relative;
  padding: 8px 0;
}
header.style-4 .main-menu > ul > li.position-inherit {
  position: inherit;
}
@media (max-width: 991px) {
  header.style-4 .main-menu > ul > li.position-inherit {
    position: relative;
  }
}
@media (min-width: 992px) {
  header.style-4 .main-menu > ul > li:first-child {
    padding-left: 0;
  }
  header.style-4 .main-menu > ul > li:last-child {
    padding-right: 0;
  }
}
header.style-4 .main-menu > ul > li > a {
  color: var(--title-color);
  display: block;
  letter-spacing: 0.4px;
  padding: 5px 20px;
  line-height: 1;
  position: relative;
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.5s ease-out 0s;
  position: relative;
}
@media (max-width: 1399px) {
  header.style-4 .main-menu > ul > li > a {
    font-size: 14px;
    padding: 4px 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  header.style-4 .main-menu > ul > li > a {
    padding: 4px 12px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-4 .main-menu > ul > li > a {
    padding: 4px 9px;
  }
}
header.style-4 .main-menu > ul > li > a svg {
  fill: var(--title-color);
  margin-bottom: 3px;
}
header.style-4 .main-menu > ul > li > a i {
  font-size: 11px;
  color: var(--title-color);
  transition: all 0.55s ease-in-out;
}
header.style-4 .main-menu > ul > li .dropdown-icon {
  font-size: 20px;
  text-align: center;
  color: var(--title-color);
  font-style: normal;
  position: absolute;
  right: -5px;
  top: 35px;
  z-index: 999;
  cursor: pointer;
  display: none;
  transition: all 0.5s ease-out 0s;
  opacity: 0;
}
@media (max-width: 991px) {
  header.style-4 .main-menu > ul > li .dropdown-icon {
    opacity: 1;
  }
}
header.style-4 .main-menu > ul > li .dropdown-icon.active::before {
  content: "\f2ea";
}
header.style-4 .main-menu > ul > li ul.sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 40px;
  margin: 0;
  display: none;
  min-width: 250px;
  background: var(--white-color);
  border: 1px solid var(--borders-color);
  border-radius: 10px;
  padding: 15px 0;
  text-align: left;
  transform-origin: top;
}
@media (max-width: 1399px) {
  header.style-4 .main-menu > ul > li ul.sub-menu {
    top: 60px;
  }
}
header.style-4 .main-menu > ul > li ul.sub-menu > li i {
  position: absolute;
  top: 14px;
  right: 20px;
  display: none;
  color: var(--title-color);
  font-size: 14px;
}
header.style-4 .main-menu > ul > li ul.sub-menu > li .dropdown-icon {
  color: var(--title-color);
  opacity: 1;
  top: 16px;
  font-size: 10px;
}
@media (max-width: 1199px) {
  header.style-4 .main-menu > ul > li ul.sub-menu > li .dropdown-icon {
    right: 0;
    top: 11px;
    font-size: 20px;
  }
}
header.style-4 .main-menu > ul > li ul.sub-menu > li {
  padding: 0;
  display: block;
  position: relative;
}
header.style-4 .main-menu > ul > li ul.sub-menu > li > a {
  display: block;
  padding: 12px 20px;
  color: var(--title-color);
  font-weight: 500;
  font-family: var(--font-montserrat);
  font-size: 15px;
  line-height: 1.2;
  transition: all 0.4s ease-out 0s;
  position: relative;
}
@media (max-width: 1399px) {
  header.style-4 .main-menu > ul > li ul.sub-menu > li > a {
    padding: 10px 20px;
    font-size: 13px;
  }
}
@media (max-width: 1199px) {
  header.style-4 .main-menu > ul > li ul.sub-menu > li > a {
    border-color: rgba(233, 228, 228, 0.5);
  }
}
header.style-4 .main-menu > ul > li ul.sub-menu > li > a i {
  display: block;
}
@media (max-width: 1199px) {
  header.style-4 .main-menu > ul > li ul.sub-menu > li > a i {
    display: none;
  }
}
header.style-4 .main-menu > ul > li ul.sub-menu > li > a span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s;
}
header.style-4 .main-menu > ul > li ul.sub-menu > li > a span svg {
  fill: #555555;
  transition: all 0.5s;
}
header.style-4 .main-menu > ul > li ul.sub-menu > li > a:hover {
  color: var(--primary-color2);
  text-decoration: underline;
}
header.style-4 .main-menu > ul > li ul.sub-menu > li > a:hover svg {
  fill: var(--primary-color2);
  transform: rotate(-45deg);
}
header.style-4 .main-menu > ul > li ul.sub-menu > li > a:hover::before {
  transform: scale(1);
}
header.style-4 .main-menu > ul > li ul.sub-menu > li > a.active {
  color: var(--primary-color2);
}
header.style-4 .main-menu > ul > li ul.sub-menu > li > a.active span {
  text-decoration: underline;
}
header.style-4 .main-menu > ul > li ul.sub-menu > li > a.active span svg {
  fill: var(--primary-color2);
}
header.style-4 .main-menu > ul > li ul.sub-menu > li > a.active::before {
  transform: scale(1);
}
header.style-4 .main-menu > ul > li ul.sub-menu > li:last-child > a {
  border-bottom: none;
}
header.style-4 .main-menu > ul > li ul.sub-menu > li:last-child > a::before {
  display: none;
}
header.style-4 .main-menu > ul > li ul.sub-menu > li:hover > a {
  color: var(--primary-color1);
}
header.style-4 .main-menu > ul > li ul.sub-menu > li:hover .dropdown-icon {
  color: var(--primary-color1);
}
header.style-4 .main-menu > ul > li ul.sub-menu > li.active > a {
  color: var(--primary-color1);
  text-decoration: underline;
}
header.style-4 .main-menu > ul > li ul.sub-menu > li.active .dropdown-icon {
  color: var(--primary-color1);
}
header.style-4 .main-menu > ul > li ul.sub-menu > li .sub-menu {
  left: 249px;
  position: absolute;
  max-width: 230px;
  min-width: 230px;
  background: var(--white-color);
  top: 3px;
  padding: 10px 0;
  border-left: unset;
}
header.style-4 .main-menu > ul > li ul.sub-menu > li .sub-menu > li > a {
  padding: 10px 20px;
}
header.style-4 .main-menu > ul > li ul.sub-menu > li .sub-menu > li i {
  display: block;
}
@media (max-width: 1199px) {
  header.style-4 .main-menu > ul > li ul.sub-menu > li .sub-menu {
    position: unset;
    max-width: 230px;
    min-width: 215px;
    background: transparent;
    top: 0;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  header.style-4 .main-menu > ul > li ul.sub-menu > li:hover > .sub-menu {
    display: block;
    animation: fade-down 0.45s linear;
  }
}
header.style-4 .main-menu > ul > li ul.sub-menu > li:last-child {
  border-bottom: none;
}
header.style-4 .main-menu > ul > li .mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 67px;
  display: none;
  background: var(--white-color);
  border: 1px solid rgba(var(--borders-color-opc), 0.5);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
  max-width: 1320px;
  width: 100%;
  transform-origin: top;
  z-index: 8;
}
@media (max-width: 1399px) {
  header.style-4 .main-menu > ul > li .mega-menu {
    max-width: 1180px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-4 .main-menu > ul > li .mega-menu {
    max-height: 550px;
    overflow-y: auto;
    margin: 0 10px;
    width: calc(100% - 20px);
    left: 0;
    transform: translateX(0);
    border-radius: 15px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row {
  display: grid;
  justify-content: space-between;
  gap: 110px;
  grid-template-columns: 49% 42.5%;
}
@media (max-width: 1399px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row {
    gap: 70px;
    grid-template-columns: 54% 42.5%;
  }
}
@media (max-width: 1199px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row {
    gap: 30px;
    grid-template-columns: 49% 47%;
  }
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .mega-menu-title {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 23px;
  line-height: 28px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .mega-menu-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap {
  padding: 50px 0 50px 50px;
}
@media (max-width: 1399px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap {
    padding: 50px 0 50px 30px;
  }
}
@media (max-width: 1199px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap {
    padding: 35px 0 35px 20px;
  }
}
@media (max-width: 991px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap {
    padding: 0;
    margin-bottom: 35px;
  }
}
@media (max-width: 991px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .mega-menu-title {
    display: none;
  }
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list {
    margin-bottom: 35px;
  }
}
@media (max-width: 576px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list {
    gap: 15px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a svg {
  fill: var(--text-color);
  min-width: 36px;
  transition: 0.5s;
}
@media (max-width: 576px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a svg {
    min-width: 30px;
    width: 30px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid var(--borders-color);
  transition: 0.5s;
}
@media (max-width: 1399px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    padding: 18px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    padding: 18px 30px 18px 15px;
  }
}
@media (max-width: 767px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    font-size: 15px;
    line-height: 23px;
    padding: 18px 10px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a:hover {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
  color: var(--white-color);
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a:hover svg {
  fill: var(--white-color);
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 10px 10px 30px;
  background-color: #F0F0F0;
  border-radius: 100px;
}
@media (max-width: 576px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area {
    font-size: 15px;
    padding: 10px 10px 10px 20px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area .arrow {
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color1);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area .arrow {
    min-width: 36px;
    max-width: 36px;
    height: 36px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area .arrow svg {
  fill: none;
  stroke: var(--white-color);
  transition: 0.5s;
}
@media (max-width: 576px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area .arrow svg {
    width: 10px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area:hover .arrow svg {
  transform: rotate(45deg);
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
  padding: 50px;
  background-color: #DDE6FF;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 1399px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    padding: 50px 30px;
  }
}
@media (max-width: 1199px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    padding: 35px 20px;
  }
}
@media (max-width: 991px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    border-radius: 10px;
  }
}
@media (max-width: 576px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    padding: 25px 15px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
@media (max-width: 1199px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list {
    gap: 12px;
    row-gap: 14px;
    margin-bottom: 35px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li {
  display: flex;
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  padding: 10px 19px;
  border-radius: 100px;
  background-color: var(--white-color);
  border: 1px solid var(--borders-color);
  transition: 0.5s;
}
@media (max-width: 1199px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li a {
    padding: 10px 15px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li a:hover {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
  color: var(--white-color);
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area {
  padding: 30px 30px 30px 40px;
  border-radius: 15px;
  background-image: url(../img/home1/mega-menu-support-area-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area {
    padding: 30px 20px 30px 20px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area h5,
header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area h4 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 20px;
  max-width: 330px;
  width: 100%;
}
@media (max-width: 576px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area h5,
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area h4 {
    font-size: 20px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area {
    flex-wrap: wrap;
    gap: 12px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area .img-grp {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area .img-grp li img {
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #31D2FF;
  margin-left: -15px;
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area .img-grp li:first-child img {
  margin-left: 0;
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area p {
  color: var(--white-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area p {
    font-size: 15px;
    line-height: 26px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .primary-btn2 {
  padding: 13px 30px;
}
header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .primary-btn2:hover {
  color: var(--white-color);
}
header.style-4 .main-menu > ul > li .mega-menu2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 67px;
  display: none;
  background: #fefffb;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 15px;
  width: 100%;
  transform-origin: top;
  z-index: 8;
  width: 1520px;
  border: 1px solid #CECEEA;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-4 .main-menu > ul > li .mega-menu2 {
    width: 1320px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  header.style-4 .main-menu > ul > li .mega-menu2 {
    width: 1130px;
  }
}
@media (max-width: 1199px) {
  header.style-4 .main-menu > ul > li .mega-menu2 {
    width: 970px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-4 .main-menu > ul > li .mega-menu2 {
    top: 66px;
    border-radius: 15px;
  }
}
@media (max-width: 991px) {
  header.style-4 .main-menu > ul > li .mega-menu2 {
    width: unset;
  }
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row {
  display: grid;
  justify-content: space-between;
  gap: 81px;
  grid-template-columns: 79% 21%;
  padding: 60px 70px 60px 60px;
}
@media (max-width: 1699px) {
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row {
    grid-template-columns: 82% 18%;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row {
    grid-template-columns: 83% 17%;
    padding: 60px 60px 60px 40px;
    gap: 58px;
  }
}
@media (max-width: 1399px) {
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row {
    gap: 55px;
    grid-template-columns: 80% 20%;
    padding: 50px 45px 50px 30px;
  }
}
@media (max-width: 1199px) {
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row {
    gap: 27px;
    grid-template-columns: 78% 22%;
    padding: 40px 25px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .mega-menu-title {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 30px;
  text-decoration: underline;
}
@media (max-width: 991px) {
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .mega-menu-title {
    font-size: 20px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper {
  position: relative;
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  height: 100%;
  width: 1px;
  background-color: #CECEEA;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper::before {
    right: -15px;
  }
}
@media (max-width: 991px) {
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper::before {
    display: none;
  }
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 43px;
  margin-bottom: 45px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap {
    gap: 20px;
  }
}
@media (max-width: 1399px) {
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap {
    gap: 20px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .mega-menu-title {
  font-size: 17px;
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(var(--primary-color1-opc), 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon {
    width: 37px;
    height: 37px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon svg {
  fill: var(--primary-color1);
  transition: all 0.5s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon svg {
    width: 20px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content {
  line-height: 1;
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content a {
  font-family: var(--font-montserrat);
  color: var(--title-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 8px;
  transition: all 0.5s;
  line-height: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content a {
    font-size: 15px;
  }
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content a:hover {
  color: var(--primary-color1);
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 0;
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product:last-child {
  margin-bottom: 0;
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product:hover .product-content a {
  color: var(--primary-color1);
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product:hover .icon {
  border-color: rgba(var(--title-color-opc), 0.4);
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product:hover .icon svg {
  fill: var(--title-color);
  animation: bounceIn 1.2s linear;
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid {
  grid-template-columns: repeat(2, 1fr);
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list .single-product:nth-child(3), header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list .single-product:nth-child(4) {
  margin-bottom: 0;
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap:last-child {
  margin-bottom: 0;
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .integration-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .integration-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 24px;
}
header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .integration-list li:last-child {
  margin-bottom: 0;
}
header.style-4 .main-menu > ul > li.menu-item-has-children {
  transition: all 0.55s ease-in-out;
}
@media (min-width: 992px) {
  header.style-4 .main-menu > ul > li:hover > ul.sub-menu {
    display: block;
    animation: fade-down 0.3s linear;
  }
}
@media (min-width: 992px) {
  header.style-4 .main-menu > ul > li:hover .mega-menu {
    display: block;
    animation: fade-down2 0.3s linear;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-4 .main-menu > ul > li:hover .mega-menu {
    animation: fade-down 0.3s linear;
  }
}
@media (min-width: 992px) {
  header.style-4 .main-menu > ul > li:hover .mega-menu2 {
    display: block;
    animation: fade-down2 0.3s linear;
  }
}
header.style-4 .main-menu > ul > li:hover > a i {
  color: var(--white-color);
}
header.style-4 .main-menu > ul > li:hover .dropdown-icon2 {
  color: var(--primary-color1);
}
header.style-4 .main-menu > ul > li.active > a {
  color: var(--primary-color1);
}
header.style-4 .main-menu > ul > li.active > a i {
  color: var(--primary-color1);
}
header.style-4 .main-menu > ul > li.active svg {
  fill: var(--primary-color1);
}
header.style-4 .main-menu > ul > li.active > i {
  color: var(--primary-color1);
}
header.style-4 .main-menu > ul > li:hover > a {
  color: var(--primary-color1);
}
header.style-4 .main-menu > ul > li:hover > a i {
  color: var(--primary-color1);
}
header.style-4 .main-menu > ul > li:hover svg {
  fill: var(--primary-color1);
}
header.style-4 .main-menu > ul > li:hover > i {
  color: var(--primary-color1);
}
header.style-4 .main-menu > ul li.menu-item-has-children > i {
  display: none;
}
header.style-4 .mobile-logo-area .mobile-logo-wrap img {
  width: 110px;
}
header.style-4 .mobile-logo-area .menu-close-btn {
  height: 38px;
  width: 38px;
  border-radius: 10px;
  border: 1px solid var(--borders-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.35s;
}
header.style-4 .mobile-logo-area .menu-close-btn i {
  font-size: 26px;
  line-height: 1;
  color: var(--title-color);
  transition: 0.35s;
}
header.style-4 .mobile-logo-area .menu-close-btn:hover {
  background-color: var(--title-color);
}
header.style-4 .mobile-logo-area .menu-close-btn:hover i {
  color: var(--white-color);
}
@media only screen and (max-width: 991px) {
  header.style-4 .dropdown-icon {
    color: var(--white-color);
  }
  header.style-4 .main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 330px;
    padding: 30px 20px !important;
    z-index: 99999;
    height: 100%;
    overflow: auto;
    background: var(--white-color);
    border-right: 1px solid var(--borders-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.03);
  }
}
@media only screen and (max-width: 991px) and (max-width: 576px) {
  header.style-4 .main-menu {
    width: 300px;
  }
}
@media only screen and (max-width: 991px) {
  header.style-4 .main-menu.show-menu {
    transform: translateX(0);
  }
  header.style-4 .main-menu .mobile-menu-logo {
    text-align: left;
    padding-top: 20px;
    display: block;
    padding-bottom: 8px;
  }
  header.style-4 .main-menu .menu-list {
    padding-top: 50px;
    padding-bottom: 30px;
    border: unset;
  }
  header.style-4 .main-menu > ul {
    float: none;
    text-align: left;
    padding: 5px 0px 20px 0;
  }
  header.style-4 .main-menu > ul > li {
    display: block;
    position: relative;
    padding: 0;
  }
  header.style-4 .main-menu > ul > li i {
    display: block;
  }
  header.style-4 .main-menu > ul > li > a {
    padding: 15px 0;
    display: block;
    border: unset;
    background-color: transparent;
    color: var(--title-color);
  }
  header.style-4 .main-menu > ul > li > a i {
    display: none;
  }
  header.style-4 .main-menu > ul > li ul.sub-menu {
    position: static;
    min-width: 200px;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    padding: 0;
    padding-left: 10px;
    background-color: unset;
  }
  header.style-4 .main-menu > ul > li ul.sub-menu > li {
    border-bottom: 1px solid #eee;
  }
  header.style-4 .main-menu > ul > li ul.sub-menu > li a {
    color: var(--title-color);
    padding: 12px 0px;
  }
  header.style-4 .main-menu > ul > li ul.sub-menu > li a span svg {
    display: none;
  }
  header.style-4 .main-menu > ul > li ul.sub-menu > li a:hover {
    color: var(--primary-color1);
    margin-left: 10px;
  }
  header.style-4 .main-menu > ul > li ul.sub-menu > li a.active {
    color: var(--primary-color1);
  }
  header.style-4 .main-menu > ul > li ul.sub-menu > li i {
    color: var(--primary-color1);
    right: -13px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 1199px) {
  header.style-4 .main-menu > ul > li ul.sub-menu > li i {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  header.style-4 .main-menu > ul > li ul.sub-menu > li .sub-menu {
    padding-left: 10px;
  }
  header.style-4 .main-menu > ul > li ul.sub-menu > li .sub-menu li > a {
    padding: 12px 0;
  }
  header.style-4 .main-menu > ul > li .mega-menu {
    position: static;
    background: 0 0;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: transparent;
    border-radius: unset;
    box-shadow: unset;
    padding: 0;
  }
  header.style-4 .main-menu > ul > li .mega-menu .container {
    padding: 0;
  }
  header.style-4 .main-menu > ul > li .mega-menu .menu-row {
    display: block;
  }
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list {
    grid-template-columns: repeat(1, 1fr);
  }
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    padding: 13px 15px 13px 15px;
    font-size: 14px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    flex-direction: column;
    align-items: start;
  }
}
@media only screen and (max-width: 991px) and (max-width: 576px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    padding: 13px 10px 13px 9px;
  }
}
@media only screen and (max-width: 991px) {
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area {
    display: none;
  }
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    padding: unset;
    background-color: unset;
    border-radius: unset;
  }
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list {
    flex-direction: column;
    align-items: start;
    row-gap: 20px;
  }
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li a {
    padding: 0;
    border: unset;
  }
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area {
    display: none;
  }
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .menu-single-item {
    padding: 0;
    display: block;
    border-right: unset;
  }
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .menu-single-item::after {
    display: none;
  }
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .menu-single-item .menu-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 12px 0px;
    border-bottom: unset;
  }
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .menu-single-item .menu-title h6 {
    color: var(--text-color);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
  }
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .menu-single-item i {
    display: block;
    top: 10px;
    right: 0;
    color: var(--text-color);
  }
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul {
    display: none;
    padding: 0 10px;
  }
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li {
    margin-bottom: 0;
    line-height: 1;
  }
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li:last-child a {
    border-bottom: unset;
  }
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li a {
    font-size: 13px;
    font-family: var(--font-inter);
    font-weight: 400;
    text-transform: uppercase;
    padding: 12px 0px;
    display: flex;
    transition: all 0.4s ease-out 0s;
  }
  header.style-4 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li a:hover {
    margin-left: 10px;
  }
  header.style-4 .main-menu > ul > li .mega-menu2 {
    position: static;
    min-width: 200px;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    background-image: unset;
    padding: 10px 0;
    background-color: unset;
    backdrop-filter: unset;
    min-height: unset;
    box-shadow: unset;
  }
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row {
    display: block;
    padding: 0;
  }
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .mega-menu-title {
    margin-bottom: 20px;
    font-size: 18px;
  }
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 25px;
  }
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 20px;
  }
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list .single-product:nth-child(3), header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list .single-product:nth-child(4) {
    margin-bottom: 20px;
  }
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area {
    padding: 0;
  }
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .industry-menu li {
    margin-bottom: 10px;
  }
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .industry-menu li:last-child {
    margin-bottom: 0;
  }
  header.style-4 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .industry-menu li .view-all-btn {
    margin-top: 15px;
  }
  header.style-4 .main-menu > ul > li:hover > a {
    color: var(--primary-color1);
  }
  header.style-4 .main-menu > ul > li:hover i {
    color: var(--primary-color1);
  }
  header.style-4 .main-menu > ul > li.active > a {
    color: var(--primary-color1);
    background-color: unset;
  }
  header.style-4 .main-menu > ul > li .bi {
    top: 13px;
    font-size: 20px;
    color: var(--title-color);
    line-height: 1;
  }
  header.style-4 .main-menu > ul li.menu-item-has-children > i {
    display: block;
  }
  header.style-4 .main-menu .btn-and-contact-area {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  header.style-4 .main-menu .primary-btn1 {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  header.style-4 .primary-btn2 {
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    text-decoration: underline;
    color: var(--title-color);
    padding: 16px 24px;
    border: 1px solid var(--title-color);
    border-radius: 10px;
    width: 100%;
    justify-content: center;
  }
  header.style-4 .primary-btn2:hover {
    color: var(--white-color);
  }
}

.header-and-topbar-area {
  position: relative;
  width: 100%;
  z-index: 999;
}
.header-and-topbar-area header.style-3 {
  background-color: var(--white-color);
  position: relative;
  transition: all 0.8s ease-out 0s;
  padding: 0 10%;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .header-and-topbar-area header.style-3 {
    padding: 0 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-and-topbar-area header.style-3 {
    padding: 0 1%;
  }
}
@media (max-width: 1199px) {
  .header-and-topbar-area header.style-3 {
    padding: 10px 0px;
  }
}
.header-and-topbar-area header.style-3 .main-menu-and-btn-area {
  max-width: 1088px;
  width: 100%;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1699px) {
  .header-and-topbar-area header.style-3 .main-menu-and-btn-area {
    max-width: 930px;
    width: 100%;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .header-and-topbar-area header.style-3 .main-menu-and-btn-area {
    max-width: 900px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-and-topbar-area header.style-3 .main-menu-and-btn-area {
    max-width: 895px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu-and-btn-area {
    max-width: 785px;
  }
}
.header-and-topbar-area header.style-3 .header-logo {
  width: 120px;
}
@media (max-width: 767px) {
  .header-and-topbar-area header.style-3 .header-logo {
    width: 105px;
  }
}
.header-and-topbar-area header.style-3 .nav-right {
  display: flex;
  align-items: center;
  gap: 45px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .header-and-topbar-area header.style-3 .nav-right {
    gap: 35px;
  }
}
@media (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .nav-right {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .header-and-topbar-area header.style-3 .nav-right {
    gap: 35px;
  }
}
@media (max-width: 576px) {
  .header-and-topbar-area header.style-3 .nav-right {
    gap: 15px;
  }
}
@media (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .nav-right .primary-btn1 {
    padding: 17px 26px;
  }
}
.header-and-topbar-area header.style-3 .nav-right .contact-btn-and-language {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .nav-right .contact-btn-and-language {
    gap: 10px;
  }
}
.header-and-topbar-area header.style-3 .nav-right .contact-btn-and-language .language-area {
  position: relative;
}
.header-and-topbar-area header.style-3 .nav-right .contact-btn-and-language .language-area .language-btn {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
}
.header-and-topbar-area header.style-3 .nav-right .contact-btn-and-language .language-area .language-btn .language {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: rgba(var(--primary-color1-opc), 0.2);
  border-radius: 18px;
  border: 1px solid rgba(var(--title-color-opc), 0.1);
  padding: 8px 12px;
}
.header-and-topbar-area header.style-3 .nav-right .contact-btn-and-language .language-area .language-btn .language svg {
  fill: var(--title-color);
  transition: 0.5s;
}
.header-and-topbar-area header.style-3 .nav-right .contact-btn-and-language .language-area .language-btn .language span {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  transition: 0.5s;
}
.header-and-topbar-area header.style-3 .nav-right .contact-btn-and-language .language-area .language-btn i {
  font-size: 12px;
  line-height: 1;
  color: var(--title-color);
  background-color: rgba(var(--primary-color1-opc), 0.2);
  border-radius: 18px;
  border: 1px solid rgba(var(--title-color-opc), 0.1);
  padding: 7px 5px;
}
.header-and-topbar-area header.style-3 .nav-right .contact-btn-and-language .language-area .language-list {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  top: 35px;
  left: 50%;
  z-index: 9999;
  width: 180px;
  background-color: var(--white-color);
  box-shadow: 0px 30px 80px rgba(8, 0, 42, 0.08);
  border-radius: 10px;
  overflow: hidden;
  display: none;
  transform: scaleY(0) translateX(-50%);
  transform-origin: top;
}
.header-and-topbar-area header.style-3 .nav-right .contact-btn-and-language .language-area .language-list.active {
  display: block;
  transform: scaleY(1) translateX(-50%);
  animation: fade-up 0.5s linear;
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(10px) translateX(-50%);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: translateY(0px) translateX(-50%);
    visibility: visible;
  }
}
.header-and-topbar-area header.style-3 .nav-right .contact-btn-and-language .language-area .language-list li a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  text-transform: capitalize;
  font-size: 12px;
  padding: 12px 20px;
  line-height: 1;
  width: 100%;
  display: flex;
  align-items: center;
  transition: 0.5s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-and-topbar-area header.style-3 .nav-right .contact-btn-and-language .language-area .language-list li a:hover {
  color: var(--white-color);
  background-color: var(--primary-color1);
}
.header-and-topbar-area header.style-3 .nav-right .mobile-menu-btn {
  display: none;
  visibility: hidden;
}
@media (max-width: 991px) {
  .header-and-topbar-area header.style-3 .nav-right .mobile-menu-btn {
    display: flex;
    align-items: center;
    visibility: visible;
    justify-content: center;
    position: relative;
    min-width: 48px;
    max-width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid var(--borders-color);
  }
  .header-and-topbar-area header.style-3 .nav-right .mobile-menu-btn svg {
    fill: var(--title-color);
  }
  .header-and-topbar-area header.style-3 .nav-right .mobile-menu-btn:hover svg {
    animation: qode-draw 0.75s cubic-bezier(0.57, 0.39, 0, 0.86) 1 forwards;
  }
}
@media (max-width: 576px) {
  .header-and-topbar-area header.style-3 .nav-right .mobile-menu-btn {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
  }
  .header-and-topbar-area header.style-3 .nav-right .mobile-menu-btn svg {
    width: 18px;
  }
}
@keyframes qode-draw {
  0%, 100% {
    clip-path: inset(-2px -2px);
  }
  42% {
    clip-path: inset(-2px -2px -2px 100%);
  }
  43% {
    clip-path: inset(-2px 100% -3px -2px);
  }
}
.header-and-topbar-area header.style-3 .header-btn {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  color: var(--title-color);
  background-color: var(--white-color);
  border-radius: 5px;
  padding: 16px 37px;
}
.header-and-topbar-area header.style-3 .main-menu {
  display: inline-block;
}
.header-and-topbar-area header.style-3 .main-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li {
  display: inline-block;
  position: relative;
  padding: 32px 0;
}
@media (max-width: 1399px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li {
    padding: 28px 2px;
  }
}
@media (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li {
    padding: 20px 2px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li.position-inherit {
  position: inherit;
}
@media (max-width: 991px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li.position-inherit {
    position: relative;
  }
}
@media (min-width: 992px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li:first-child {
    padding-left: 0;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li:last-child {
    padding-right: 0;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li > a {
  color: var(--title-color);
  display: block;
  letter-spacing: 0.4px;
  padding: 5px 20px;
  line-height: 1;
  position: relative;
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 13px;
  transition: all 0.5s ease-out 0s;
  position: relative;
  text-transform: uppercase;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li > a {
    padding: 5px 15px;
  }
}
@media (max-width: 1399px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li > a {
    padding: 4px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li > a {
    padding: 4px 7px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li > a svg {
  fill: var(--title-color);
  margin-top: -3px;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li > a i {
  font-size: 11px;
  color: var(--title-color);
  transition: all 0.55s ease-in-out;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .dropdown-icon {
  font-size: 20px;
  text-align: center;
  color: var(--title-color);
  font-style: normal;
  position: absolute;
  right: -5px;
  top: 35px;
  z-index: 999;
  cursor: pointer;
  display: none;
  transition: all 0.5s ease-out 0s;
  opacity: 0;
}
@media (max-width: 991px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .dropdown-icon {
    opacity: 1;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .dropdown-icon.active::before {
  content: "\f2ea";
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  margin: 0;
  display: none;
  min-width: 250px;
  background: var(--white-color);
  border: 1px solid var(--borders-color);
  border-radius: 10px;
  padding: 15px 0;
  text-align: left;
  transform-origin: top;
}
@media (max-width: 1399px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu {
    top: 74px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li i {
  position: absolute;
  top: 14px;
  right: 20px;
  display: none;
  color: var(--title-color);
  font-size: 14px;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li .dropdown-icon {
  color: var(--title-color);
  opacity: 1;
  top: 16px;
  font-size: 10px;
}
@media (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li .dropdown-icon {
    right: 0;
    top: 11px;
    font-size: 20px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li {
  padding: 0;
  display: block;
  position: relative;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li > a {
  display: block;
  padding: 12px 20px;
  color: var(--title-color);
  font-weight: 500;
  font-family: var(--font-montserrat);
  font-size: 13px;
  line-height: 1.2;
  transition: all 0.4s ease-out 0s;
  position: relative;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li > a {
    padding: 10px 20px;
    font-size: 13px;
  }
}
@media (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li > a {
    border-color: rgba(233, 228, 228, 0.5);
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li > a i {
  display: block;
}
@media (max-width: 991px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li > a i {
    display: none;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li > a span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li > a span svg {
  fill: #555555;
  transition: all 0.5s;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li > a:hover {
  color: var(--primary-color2);
  text-decoration: underline;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li > a:hover svg {
  fill: var(--primary-color2);
  transform: rotate(-45deg);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li > a:hover::before {
  transform: scale(1);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li > a.active {
  color: var(--primary-color2);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li > a.active span {
  text-decoration: underline;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li > a.active span svg {
  fill: var(--primary-color2);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li > a.active::before {
  transform: scale(1);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li:last-child > a {
  border-bottom: none;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li:last-child > a::before {
  display: none;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li:hover > a {
  color: var(--primary-color1);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li:hover .dropdown-icon {
  color: var(--primary-color1);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li.active > a {
  color: var(--primary-color1);
  text-decoration: underline;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li.active .dropdown-icon {
  color: var(--primary-color1);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li .sub-menu {
  left: 249px;
  position: absolute;
  max-width: 230px;
  min-width: 230px;
  background: var(--white-color);
  top: 3px;
  padding: 10px 0;
  border-left: unset;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li .sub-menu > li > a {
  padding: 10px 20px;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li .sub-menu > li i {
  display: block;
}
@media (max-width: 991px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li .sub-menu {
    position: unset;
    max-width: 230px;
    min-width: 215px;
    background: transparent;
    top: 0;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li:hover > .sub-menu {
    display: block;
    animation: fade-down 0.45s linear;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li:last-child {
  border-bottom: none;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 75px;
  display: none;
  background: var(--white-color);
  border: 1px solid rgba(var(--borders-color-opc), 0.5);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
  max-width: 1320px;
  width: 100%;
  transform-origin: top;
  z-index: 8;
}
@media (max-width: 1399px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu {
    max-width: 1180px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu {
    max-height: 550px;
    overflow-y: auto;
    margin: 0 10px;
    width: calc(100% - 20px);
    left: 0;
    transform: translateX(0);
    border-radius: 15px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row {
  display: grid;
  justify-content: space-between;
  gap: 110px;
  grid-template-columns: 49% 42.5%;
}
@media (max-width: 1399px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row {
    gap: 70px;
    grid-template-columns: 54% 42.5%;
  }
}
@media (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row {
    gap: 30px;
    grid-template-columns: 49% 47%;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .mega-menu-title {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 23px;
  line-height: 28px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .mega-menu-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap {
  padding: 50px 0 50px 50px;
}
@media (max-width: 1399px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap {
    padding: 50px 0 50px 30px;
  }
}
@media (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap {
    padding: 35px 0 35px 20px;
  }
}
@media (max-width: 991px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap {
    padding: 0;
    margin-bottom: 35px;
  }
}
@media (max-width: 991px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .mega-menu-title {
    display: none;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list {
    margin-bottom: 35px;
  }
}
@media (max-width: 576px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list {
    gap: 15px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a svg {
  fill: var(--text-color);
  min-width: 36px;
  transition: 0.5s;
}
@media (max-width: 576px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a svg {
    min-width: 30px;
    width: 30px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid var(--borders-color);
  transition: 0.5s;
}
@media (max-width: 1399px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    padding: 18px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    padding: 18px 30px 18px 15px;
  }
}
@media (max-width: 767px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    font-size: 15px;
    line-height: 23px;
    padding: 18px 10px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a:hover {
  background-color: var(--primary-color3);
  border-color: var(--primary-color3);
  color: var(--white-color);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a:hover svg {
  fill: var(--white-color);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 10px 10px 30px;
  background-color: #F0F0F0;
  border-radius: 100px;
}
@media (max-width: 576px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area {
    font-size: 15px;
    padding: 10px 10px 10px 20px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area .arrow {
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color3);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area .arrow {
    min-width: 36px;
    max-width: 36px;
    height: 36px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area .arrow svg {
  fill: none;
  stroke: var(--white-color);
  transition: 0.5s;
}
@media (max-width: 576px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area .arrow svg {
    width: 10px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area:hover .arrow svg {
  transform: rotate(45deg);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
  padding: 50px;
  background-color: #DDE6FF;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 1399px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    padding: 50px 30px;
  }
}
@media (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    padding: 35px 20px;
  }
}
@media (max-width: 991px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    border-radius: 10px;
  }
}
@media (max-width: 576px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    padding: 25px 15px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
@media (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list {
    gap: 12px;
    row-gap: 14px;
    margin-bottom: 35px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li {
  display: flex;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  padding: 10px 19px;
  border-radius: 100px;
  background-color: var(--white-color);
  border: 1px solid var(--borders-color);
  transition: 0.5s;
}
@media (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li a {
    padding: 10px 15px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li a:hover {
  background-color: var(--primary-color3);
  border-color: var(--primary-color3);
  color: var(--white-color);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area {
  padding: 30px 30px 30px 40px;
  border-radius: 15px;
  background-image: url(../img/home1/mega-menu-support-area-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area {
    padding: 30px 20px 30px 20px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area h5,
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area h4 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 20px;
  max-width: 330px;
  width: 100%;
}
@media (max-width: 576px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area h5,
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area h4 {
    font-size: 20px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area .img-grp {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area .img-grp li img {
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #31D2FF;
  margin-left: -15px;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area .img-grp li:first-child img {
  margin-left: 0;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area p {
  color: var(--white-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .support-team-area p {
    font-size: 15px;
    line-height: 26px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .primary-btn2 {
  padding: 13px 30px;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .primary-btn2 span {
  background-color: var(--primary-color3);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area .primary-btn2:hover {
  color: var(--white-color);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 76px;
  display: none;
  background: #fefffb;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 15px;
  width: 100%;
  transform-origin: top;
  z-index: 8;
  width: 1520px;
  border: 1px solid #CECEEA;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 {
    width: 1320px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 {
    width: 1130px;
  }
}
@media (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 {
    width: 970px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 {
    top: 66px;
    border-radius: 15px;
  }
}
@media (max-width: 991px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 {
    width: unset;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row {
  display: grid;
  justify-content: space-between;
  gap: 81px;
  grid-template-columns: 79% 21%;
  padding: 60px 70px 60px 60px;
}
@media (max-width: 1699px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row {
    grid-template-columns: 82% 18%;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row {
    grid-template-columns: 83% 17%;
    padding: 60px 60px 60px 40px;
    gap: 58px;
  }
}
@media (max-width: 1399px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row {
    gap: 55px;
    grid-template-columns: 80% 20%;
    padding: 50px 45px 50px 30px;
  }
}
@media (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row {
    gap: 27px;
    grid-template-columns: 78% 22%;
    padding: 40px 25px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .mega-menu-title {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 30px;
  text-decoration: underline;
}
@media (max-width: 991px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .mega-menu-title {
    font-size: 20px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper {
  position: relative;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  height: 100%;
  width: 1px;
  background-color: #CECEEA;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper::before {
    right: -15px;
  }
}
@media (max-width: 991px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper::before {
    display: none;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 43px;
  margin-bottom: 45px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap {
    gap: 20px;
  }
}
@media (max-width: 1399px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap {
    gap: 20px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .mega-menu-title {
  font-size: 17px;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(var(--primary-color1-opc), 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon {
    width: 37px;
    height: 37px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon svg {
  fill: var(--primary-color3);
  transition: all 0.5s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .icon svg {
    width: 20px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content {
  line-height: 1;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content a {
  font-family: var(--font-montserrat);
  color: var(--title-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 8px;
  transition: all 0.5s;
  line-height: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content a {
    font-size: 15px;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content a:hover {
  color: var(--primary-color3);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product .product-content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 0;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product:last-child {
  margin-bottom: 0;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product:hover .product-content a {
  color: var(--primary-color3);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product:hover .icon {
  border-color: rgba(var(--title-color-opc), 0.4);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap .single-menu .product-list .single-product:hover .icon svg {
  fill: var(--title-color);
  animation: bounceIn 1.2s linear;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid {
  grid-template-columns: repeat(2, 1fr);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list .single-product:nth-child(3), .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list .single-product:nth-child(4) {
  margin-bottom: 0;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap:last-child {
  margin-bottom: 0;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .integration-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .integration-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 24px;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .integration-list li:last-child {
  margin-bottom: 0;
}
.header-and-topbar-area header.style-3 .main-menu > ul > li.menu-item-has-children {
  transition: all 0.55s ease-in-out;
}
@media (min-width: 992px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li:hover > ul.sub-menu {
    display: block;
    animation: fade-down 0.3s linear;
  }
}
@media (min-width: 992px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li:hover .mega-menu {
    display: block;
    animation: fade-down2 0.3s linear;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li:hover .mega-menu {
    animation: fade-down 0.3s linear;
  }
}
@media (min-width: 992px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li:hover .mega-menu2 {
    display: block;
    animation: fade-down2 0.3s linear;
  }
}
.header-and-topbar-area header.style-3 .main-menu > ul > li:hover > a i {
  color: var(--white-color);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li:hover .dropdown-icon2 {
  color: var(--primary-color1);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li.active > a {
  color: var(--primary-color1);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li.active > a svg {
  fill: var(--primary-color3);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li.active > a i {
  color: var(--primary-color1);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li.active > i {
  color: var(--primary-color1);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li:hover > a {
  color: var(--primary-color1);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li:hover > a i {
  color: var(--primary-color1);
}
.header-and-topbar-area header.style-3 .main-menu > ul > li:hover > i {
  color: var(--primary-color1);
}
.header-and-topbar-area header.style-3 .main-menu > ul li.menu-item-has-children > i {
  display: none;
}
.header-and-topbar-area header.style-3 .mobile-logo-area .mobile-logo-wrap img {
  width: 110px;
}
.header-and-topbar-area header.style-3 .mobile-logo-area .menu-close-btn {
  height: 38px;
  width: 38px;
  border-radius: 10px;
  border: 1px solid var(--borders-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.35s;
}
.header-and-topbar-area header.style-3 .mobile-logo-area .menu-close-btn i {
  font-size: 26px;
  line-height: 1;
  color: var(--title-color);
  transition: 0.35s;
}
.header-and-topbar-area header.style-3 .mobile-logo-area .menu-close-btn:hover {
  background-color: var(--title-color);
}
.header-and-topbar-area header.style-3 .mobile-logo-area .menu-close-btn:hover i {
  color: var(--white-color);
}
@media only screen and (max-width: 991px) {
  .header-and-topbar-area header.style-3 .dropdown-icon {
    color: var(--white-color);
  }
  .header-and-topbar-area header.style-3 .main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 330px;
    padding: 30px 20px !important;
    z-index: 99999;
    height: 100%;
    overflow: auto;
    background: var(--white-color);
    border-right: 1px solid var(--borders-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.03);
  }
}
@media only screen and (max-width: 991px) and (max-width: 576px) {
  .header-and-topbar-area header.style-3 .main-menu {
    width: 300px;
  }
}
@media only screen and (max-width: 991px) {
  .header-and-topbar-area header.style-3 .main-menu.show-menu {
    transform: translateX(0);
  }
  .header-and-topbar-area header.style-3 .main-menu .mobile-menu-logo {
    text-align: left;
    padding-top: 20px;
    display: block;
    padding-bottom: 8px;
  }
  .header-and-topbar-area header.style-3 .main-menu .menu-list {
    padding-top: 50px;
    padding-bottom: 30px;
    border: unset;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul {
    float: none;
    text-align: left;
    padding: 5px 0px 20px 0;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li {
    display: block;
    position: relative;
    padding: 0;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li i {
    display: block;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li > a {
    padding: 15px 0;
    display: block;
    border: unset;
    background-color: transparent;
    color: var(--title-color);
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li > a i {
    display: none;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu {
    position: static;
    min-width: 200px;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    padding: 0;
    padding-left: 10px;
    background-color: unset;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li {
    border-bottom: 1px solid #eee;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li a {
    color: var(--title-color);
    padding: 12px 0px;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li a span svg {
    display: none;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li a:hover {
    color: var(--primary-color1);
    margin-left: 10px;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li a.active {
    color: var(--primary-color1);
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li i {
    color: var(--primary-color1);
    right: -13px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 1199px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li i {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li .sub-menu {
    padding-left: 10px;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li ul.sub-menu > li .sub-menu li > a {
    padding: 12px 0;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu {
    position: static;
    background: 0 0;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: transparent;
    border-radius: unset;
    box-shadow: unset;
    padding: 0;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .container {
    padding: 0;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row {
    display: block;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    padding: 13px 15px 13px 15px;
    font-size: 14px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    flex-direction: column;
    align-items: start;
  }
}
@media only screen and (max-width: 991px) and (max-width: 576px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .service-list .single-service a {
    padding: 13px 10px 13px 9px;
  }
}
@media only screen and (max-width: 991px) {
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .service-wrap .maintenance-service-area {
    display: none;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap {
    padding: unset;
    background-color: unset;
    border-radius: unset;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list {
    flex-direction: column;
    align-items: start;
    row-gap: 20px;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .industry-list li a {
    padding: 0;
    border: unset;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .industry-wrap .support-area {
    display: none;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .menu-single-item {
    padding: 0;
    display: block;
    border-right: unset;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .menu-single-item::after {
    display: none;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .menu-single-item .menu-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 12px 0px;
    border-bottom: unset;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .menu-single-item .menu-title h6 {
    color: var(--text-color);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .menu-single-item i {
    display: block;
    top: 10px;
    right: 0;
    color: var(--text-color);
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul {
    display: none;
    padding: 0 10px;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li {
    margin-bottom: 0;
    line-height: 1;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li:last-child a {
    border-bottom: unset;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li a {
    font-size: 13px;
    font-family: var(--font-inter);
    font-weight: 400;
    text-transform: uppercase;
    padding: 12px 0px;
    display: flex;
    transition: all 0.4s ease-out 0s;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li a:hover {
    margin-left: 10px;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 {
    position: static;
    min-width: 200px;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    background-image: unset;
    padding: 10px 0;
    background-color: unset;
    backdrop-filter: unset;
    min-height: unset;
    box-shadow: unset;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row {
    display: block;
    padding: 0;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .mega-menu-title {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 25px;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 20px;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list .single-product:nth-child(3), .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .product-wrapper .product-wrap.two-grid .single-menu .product-list .single-product:nth-child(4) {
    margin-bottom: 20px;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area {
    padding: 0;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .industry-menu li {
    margin-bottom: 10px;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .industry-menu li:last-child {
    margin-bottom: 0;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .mega-menu2 .menu-row .industry-wrap .indutry-menu-area .industry-menu li .view-all-btn {
    margin-top: 15px;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li:hover > a {
    color: var(--primary-color1);
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li:hover i {
    color: var(--primary-color1);
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li.active > a {
    color: var(--primary-color1);
    background-color: unset;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul > li .bi {
    top: 13px;
    font-size: 20px;
    color: var(--title-color);
    line-height: 1;
  }
  .header-and-topbar-area header.style-3 .main-menu > ul li.menu-item-has-children > i {
    display: block;
  }
  .header-and-topbar-area header.style-3 .main-menu .btn-and-contact-area {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .header-and-topbar-area header.style-3 .main-menu .primary-btn1 {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .header-and-topbar-area header.style-3 .contact-area .icon {
    border-color: var(--black-color);
  }
  .header-and-topbar-area header.style-3 .contact-area .icon svg {
    fill: var(--black-color);
  }
  .header-and-topbar-area header.style-3 .contact-area .content span {
    color: var(--black-color);
  }
  .header-and-topbar-area header.style-3 .contact-area .content a {
    color: var(--black-color);
  }
  .header-and-topbar-area header.style-3 .contact-area .content a:hover {
    color: var(--primary-color1);
  }
}
.header-and-topbar-area .header3-logo-area {
  background-color: var(--primary-color3);
  position: relative;
  z-index: 6;
  display: inline-flex;
  justify-content: center;
  padding: 38px 211px 38px 40px;
  clip-path: polygon(0 0, 66% 0, 100% 100%, 0% 100%);
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-and-topbar-area .header3-logo-area {
    padding: 36px 115px 38px 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-and-topbar-area .header3-logo-area {
    padding: 44px 70px 43px 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-and-topbar-area .header3-logo-area img {
    width: 150px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-and-topbar-area .header3-logo-area img {
    width: 120px;
  }
}

.contact-area-section {
  padding: 10px 20px;
  border: 1px solid var(--border-color3);
  border-radius: 24px;
  display: inline-flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .contact-area-section {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}
.contact-area-section span {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 16px;
  color: var(--title-color);
  text-align: center;
}
.contact-area-section a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-color2);
  transition: all 0.5s;
}
.contact-area-section a svg {
  stroke: var(--primary-color2);
  fill: none;
  transition: all 0.5s;
}
.contact-area-section a:hover {
  color: var(--title-color);
}
.contact-area-section a:hover svg {
  stroke: var(--title-color);
  transform: rotate(45deg);
}

/*=====================================
  04. Home1 Banner Section CSS
========================================*/
@keyframes textRotation {
  to {
    transform: rotate(360deg);
  }
}
.home1-banner-section {
  overflow: hidden;
  position: relative;
  background-image: url(../img/home1/home1-banner-img.png), linear-gradient(180deg, rgb(4, 5, 14) 0%, rgb(4, 5, 14) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 180px 0 172px 0;
}
@media (max-width: 991px) {
  .home1-banner-section {
    padding: 155px 0 110px 0;
  }
}
@media (max-width: 767px) {
  .home1-banner-section {
    padding: 160px 0 70px 0;
  }
}
.home1-banner-section .banner-content h1 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 62px;
  line-height: 70px;
  margin-bottom: 30px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home1-banner-section .banner-content h1 {
    font-size: 60px;
    line-height: 80px;
  }
}
@media (max-width: 1399px) {
  .home1-banner-section .banner-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 75px;
  }
}
@media (max-width: 1199px) {
  .home1-banner-section .banner-content h1 {
    font-size: 45px;
    line-height: 66px;
  }
}
@media (max-width: 991px) {
  .home1-banner-section .banner-content h1 {
    font-size: 43px;
    line-height: 60px;
  }
}
@media (max-width: 576px) {
  .home1-banner-section .banner-content h1 {
    font-size: 35px;
    line-height: 48px;
    margin-bottom: 15px;
  }
}
.home1-banner-section .banner-content p {
  color: var(--text-color2);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .home1-banner-section .banner-content p {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .home1-banner-section .banner-content p {
    font-size: 15px;
    line-height: 29px;
    margin-bottom: 30px;
  }
}
.home1-banner-section .banner-content .btn-grp {
  display: flex;
  gap: 50px;
}
@media (max-width: 767px) {
  .home1-banner-section .banner-content .btn-grp {
    gap: 25px;
  }
}
@media (max-width: 576px) {
  .home1-banner-section .banner-content .btn-grp {
    flex-wrap: wrap;
  }
}
.home1-banner-section .banner-content .btn-grp .primary-btn1.two {
  background-color: #DADCFF;
  padding: 20px 27px;
}
@media (max-width: 576px) {
  .home1-banner-section .banner-content .btn-grp .primary-btn1.two {
    padding: 18px 21px;
  }
}
.home1-banner-section .banner-content .btn-grp .primary-btn1.two span {
  color: var(--primary-color1);
  background-image: linear-gradient(0deg, var(--primary-color1) 0%, var(--primary-color1) 100%);
}
.home1-banner-section .banner-content .btn-grp .primary-btn1.two span svg {
  fill: none;
  stroke: var(--primary-color1);
}
.home1-banner-section .banner-content .btn-grp .primary-btn1.two span::after {
  color: var(--primary-color1);
}
.home1-banner-section .banner-right {
  position: relative;
}
.home1-banner-section .banner-right .banner-img {
  -webkit-mask-image: url(../img/home1/banner-mask-img.png);
          mask-image: url(../img/home1/banner-mask-img.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (max-width: 991px) {
  .home1-banner-section .banner-right .banner-img {
    display: none;
  }
}
.home1-banner-section .banner-right .circular-text2 {
  position: absolute;
  left: 39%;
  bottom: -53px;
  z-index: 9;
  min-width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border: 1px solid rgba(var(--title-color-opc), 0.2);
}
@media (max-width: 1399px) {
  .home1-banner-section .banner-right .circular-text2 {
    left: 37%;
    bottom: -68px;
  }
}
@media (max-width: 991px) {
  .home1-banner-section .banner-right .circular-text2 {
    bottom: unset;
    position: relative;
    left: 0;
  }
}
.home1-banner-section .banner-right .circular-text2 .center-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--title-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.home1-banner-section .banner-right .circular-text2 .center-icon svg {
  fill: var(--white-color);
  margin-left: 5px;
}
.home1-banner-section .banner-right .circular-text2 .text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: textRotation 8s linear infinite;
}
.home1-banner-section .banner-right .circular-text2 .text span {
  position: absolute;
  left: 50%;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 13px;
  font-weight: 600;
  transform-origin: 0 60px;
}

/*=====================================
  05. Home1 Feature Section CSS
========================================*/
.home1-countdown-section .single-feature-wrap {
  display: flex;
  gap: 30px;
  align-items: start;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home1-countdown-section .single-feature-wrap {
    gap: 15px;
  }
}
.home1-countdown-section .single-feature-wrap svg {
  fill: #FFA616;
}
@media (max-width: 767px) {
  .home1-countdown-section .single-feature-wrap svg {
    width: 35px;
  }
}
.home1-countdown-section .single-feature-wrap .single-feature-wrap-content {
  position: relative;
}
.home1-countdown-section .single-feature-wrap .single-feature-wrap-content h2 {
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 27px;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 1399px) {
  .home1-countdown-section .single-feature-wrap .single-feature-wrap-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home1-countdown-section .single-feature-wrap .single-feature-wrap-content h2 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .home1-countdown-section .single-feature-wrap .single-feature-wrap-content h2 {
    font-size: 20px;
  }
}
.home1-countdown-section .single-feature-wrap .single-feature-wrap-content h2 strong {
  font-size: 40px;
  font-weight: 800;
}
@media (max-width: 1399px) {
  .home1-countdown-section .single-feature-wrap .single-feature-wrap-content h2 strong {
    font-size: 35px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home1-countdown-section .single-feature-wrap .single-feature-wrap-content h2 strong {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .home1-countdown-section .single-feature-wrap .single-feature-wrap-content h2 strong {
    font-size: 28px;
  }
}
.home1-countdown-section .single-feature-wrap .single-feature-wrap-content span {
  color: var(--text-color);
  margin-bottom: 0;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.3;
  display: block;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home1-countdown-section .single-feature-wrap .single-feature-wrap-content span {
    font-size: 14px;
  }
}
.home1-countdown-section .single-feature-wrap .single-feature-wrap-content:before {
  content: "";
  position: absolute;
  width: 161px;
  height: 1px;
  background-color: rgba(255, 166, 22, 0.2);
  left: 0;
  bottom: -26px;
}
@media (max-width: 991px) {
  .home1-countdown-section .single-feature-wrap .single-feature-wrap-content:before {
    display: none;
  }
}
.home1-countdown-section .single-feature-wrap.two svg {
  fill: #16CDFF;
}
.home1-countdown-section .single-feature-wrap.two .single-feature-wrap-content:before {
  background-color: rgba(22, 205, 255, 0.2);
}
.home1-countdown-section .single-feature-wrap.three svg {
  fill: #B516FF;
}
.home1-countdown-section .single-feature-wrap.three .single-feature-wrap-content:before {
  background-color: rgba(181, 22, 255, 0.2);
}

.rating-area {
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
}
.rating-area .review span {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.rating-area .review svg {
  fill: var(--title-color);
}
.rating-area .rating .star {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
  margin-bottom: 2px;
}
.rating-area .rating .star li i {
  color: #E62415;
  font-size: 12px;
}
.rating-area .rating span {
  color: #566064;
  font-family: var(--font-poppins);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}
.rating-area:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 51px;
  background-color: rgba(48, 103, 255, 0.2);
  right: 0;
  top: 0;
}
@media (max-width: 1399px) {
  .rating-area:before {
    right: -15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .rating-area:before {
    right: 30px;
  }
}
@media (max-width: 991px) {
  .rating-area:before {
    display: none;
  }
}
.rating-area.two::before {
  content: unset;
}

/*=====================================
  06. process Section CSS
========================================*/
.home1-feature-section .feature-wrapper {
  background-color: var(--black-color);
  padding: 90px 82px 85px 82px;
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .home1-feature-section .feature-wrapper {
    padding: 80px 50px 75px 50px;
  }
}
@media (max-width: 1199px) {
  .home1-feature-section .feature-wrapper {
    padding: 75px 25px 70px 25px;
  }
}
@media (max-width: 767px) {
  .home1-feature-section .feature-wrapper {
    padding: 70px 20px;
  }
}
.home1-feature-section .feature-wrapper .section-title {
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .home1-feature-section .feature-wrapper .section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .home1-feature-section .feature-wrapper .section-title {
    margin-bottom: 40px;
  }
}
.home1-feature-section .feature-wrapper .feature-card-wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 35px;
  border-top: 1px solid rgba(var(--white-color-opc), 0.1);
}
@media (max-width: 991px) {
  .home1-feature-section .feature-wrapper .feature-card-wrap {
    flex-wrap: wrap;
    row-gap: 40px;
    padding-top: 25px;
  }
}
.home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card {
  max-width: 313px;
  width: 100%;
  position: relative;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card {
    max-width: 273px;
  }
}
@media (max-width: 767px) {
  .home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card {
    max-width: unset;
  }
}
.home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card img {
  margin-bottom: 35px;
}
@media (max-width: 1399px) {
  .home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card img {
    margin-bottom: 25px;
    width: 60px;
  }
}
@media (max-width: 1199px) {
  .home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card img {
    width: 50px;
  }
}
@media (max-width: 767px) {
  .home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card img {
    width: 40px;
  }
}
.home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card .single-feature-content h3 {
  color: var(--white-color);
  margin-bottom: 15px;
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 27px;
  line-height: 35px;
}
@media (max-width: 1399px) {
  .home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card .single-feature-content h3 {
    font-size: 25px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card .single-feature-content h3 {
    font-size: 23px;
  }
}
@media (max-width: 576px) {
  .home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card .single-feature-content h3 {
    font-size: 21px;
  }
}
.home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card .single-feature-content p {
  color: var(--dark-text-color);
  margin-bottom: 0;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card .single-feature-content p {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card .single-feature-content p {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card .single-feature-content p {
    font-size: 14px;
  }
}
.home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 10%;
  right: -50px;
  top: -36px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card::before {
    right: -17px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card::before {
    right: -12px;
  }
}
@media (max-width: 991px) {
  .home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card::before {
    display: none;
  }
}
.home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card:last-child::before {
  content: unset;
}
.home1-feature-section .feature-wrapper .feature-card-wrap .single-feature-card:hover img {
  animation: bounceIn 1.2s linear;
}
.home1-feature-section.two .feature-wrapper {
  border-radius: unset;
}
.home1-feature-section.two .feature-wrapper .section-title-and-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .home1-feature-section.two .feature-wrapper .section-title-and-btn {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.home1-feature-section.two .feature-wrapper .section-title-and-btn .section-title {
  margin-bottom: unset;
}
.home1-feature-section.two .feature-wrapper .section-title-and-btn .section-title h2 {
  line-height: 50px;
  max-width: 490px;
  width: 100%;
}
@media (max-width: 767px) {
  .home1-feature-section.two .feature-wrapper .section-title-and-btn .section-title h2 {
    max-width: unset;
    line-height: 42px;
  }
}
@media (max-width: 576px) {
  .home1-feature-section.two .feature-wrapper .section-title-and-btn .section-title h2 {
    font-size: 25px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .home1-feature-section.two .feature-wrapper .section-title-and-btn .primary-btn1 {
    padding: 16px 23px;
  }
}
@media (max-width: 1399px) {
  .home1-feature-section.two .feature-wrapper .feature-card-wrap .single-feature-card img {
    width: 70px;
  }
}
@media (max-width: 1199px) {
  .home1-feature-section.two .feature-wrapper .feature-card-wrap .single-feature-card img {
    width: 60px;
  }
}
@media (max-width: 767px) {
  .home1-feature-section.two .feature-wrapper .feature-card-wrap .single-feature-card img {
    width: 55px;
  }
}
@media (max-width: 1199px) {
  .home1-feature-section.two .feature-wrapper .feature-card-wrap .single-feature-card .single-feature-content h3 {
    font-size: 23px;
  }
}

/*=====================================
  07. Home1 About Section CSS
========================================*/
.home1-about-section .section-title {
  margin-bottom: 50px;
}
.home1-about-section .section-title h2 {
  line-height: 65px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home1-about-section .section-title h2 {
    line-height: 60px;
  }
}
@media (max-width: 1399px) {
  .home1-about-section .section-title h2 {
    line-height: 58px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home1-about-section .section-title h2 {
    font-size: 32px;
    line-height: 48px;
  }
}
@media (max-width: 991px) {
  .home1-about-section .section-title h2 {
    font-size: 34px;
    line-height: 48px;
  }
}
@media (max-width: 576px) {
  .home1-about-section .section-title h2 {
    font-size: 25px;
    line-height: 37px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home1-about-section .section-title p {
    font-size: 15px;
  }
}
.home1-about-section .about-list-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}
.home1-about-section .about-list-wrap::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: linear-gradient(90deg, #010ED0 0%, rgba(1, 14, 208, 0) 100%);
  opacity: 10%;
  top: 50%;
  left: 0;
}
@media (max-width: 576px) {
  .home1-about-section .about-list-wrap::before {
    display: none;
  }
}
.home1-about-section .about-list-wrap .single-about-list {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .home1-about-section .about-list-wrap .single-about-list {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .home1-about-section .about-list-wrap .single-about-list {
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .home1-about-section .about-list-wrap .single-about-list {
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
}
.home1-about-section .about-list-wrap .single-about-list .icon {
  min-width: 82px;
  max-width: 82px;
  height: 82px;
  background-color: rgba(1, 14, 208, 0.1019607843);
  border: 1px solid rgba(1, 14, 208, 0.3019607843);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199px) {
  .home1-about-section .about-list-wrap .single-about-list .icon {
    min-width: 70px;
    max-width: 70px;
    height: 70px;
  }
}
@media (max-width: 767px) {
  .home1-about-section .about-list-wrap .single-about-list .icon {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
  }
}
.home1-about-section .about-list-wrap .single-about-list .icon svg {
  fill: var(--primary-color1);
}
@media (max-width: 1199px) {
  .home1-about-section .about-list-wrap .single-about-list .icon svg {
    width: 35px;
  }
}
@media (max-width: 767px) {
  .home1-about-section .about-list-wrap .single-about-list .icon svg {
    width: 30px;
  }
}
.home1-about-section .about-list-wrap .single-about-list .about-content h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .home1-about-section .about-list-wrap .single-about-list .about-content h3 {
    font-size: 24px;
    margin-bottom: 5px;
  }
}
@media (max-width: 1199px) {
  .home1-about-section .about-list-wrap .single-about-list .about-content h3 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .home1-about-section .about-list-wrap .single-about-list .about-content h3 {
    font-size: 20px;
  }
}
.home1-about-section .about-list-wrap .single-about-list .about-content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home1-about-section .about-list-wrap .single-about-list .about-content p {
    font-size: 15px;
  }
}
@media (max-width: 1199px) {
  .home1-about-section .about-list-wrap .single-about-list .about-content p {
    font-size: 15px;
    line-height: 27px;
  }
}
.home1-about-section .about-list-wrap .single-about-list:last-child {
  margin-bottom: 0;
}
.home1-about-section .about-img-wrap {
  position: relative;
  max-width: 625px;
  width: 100%;
}
.home1-about-section .about-img-wrap .about-img2 {
  position: absolute;
  top: 0;
  left: 0;
  border: 15px solid var(--white-color);
  outline: none;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home1-about-section .about-img-wrap .about-img2 {
    border: 10px solid var(--white-color);
  }
}
.home1-about-section .about-img-wrap img {
  border-radius: 15px;
}

/*=====================================
  08. Home1 Industries Section CSS
========================================*/
.home1-industries-section {
  position: relative;
}
.home1-industries-section .industries-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .home1-industries-section .industries-list {
    gap: 15px;
    row-gap: 25px;
  }
}
@media (max-width: 576px) {
  .home1-industries-section .industries-list {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 576px) {
  .home1-industries-section .industries-list .single-industries {
    width: 100%;
  }
}
.home1-industries-section .industries-list .single-industries img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.6s;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .home1-industries-section .industries-list .single-industries img {
    width: 40px;
    height: 40px;
  }
}
.home1-industries-section .industries-list .single-industries a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  gap: 15px;
  align-items: center;
  background-color: #F4FFFF;
  border: 1px solid rgba(var(--primary-color1-opc), 0.3);
  border-radius: 50px;
  padding: 4px 17px 4px 4px;
  transition: all 0.6s;
  display: inline-flex;
}
@media (max-width: 1399px) {
  .home1-industries-section .industries-list .single-industries a {
    font-size: 16px;
    gap: 10px;
    padding: 4px 14px 4px 4px;
  }
}
@media (max-width: 991px) {
  .home1-industries-section .industries-list .single-industries a {
    font-size: 14px;
    gap: 7px;
    padding: 4px 12px 4px 4px;
  }
}
@media (max-width: 576px) {
  .home1-industries-section .industries-list .single-industries a {
    width: 100%;
  }
}
.home1-industries-section .industries-list .single-industries:hover img {
  scale: 1.9;
}
@media (max-width: 576px) {
  .home1-industries-section .industries-list .single-industries:hover img {
    scale: 1.4;
  }
}
.home1-industries-section .industries-list .single-industries:hover a {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
  color: var(--white-color);
}
.home1-industries-section .vector-img1 {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1699px) {
  .home1-industries-section .vector-img1 {
    width: 230px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home1-industries-section .vector-img1 {
    width: 200px;
  }
}
@media (max-width: 1399px) {
  .home1-industries-section .vector-img1 {
    width: 130px;
  }
}
@media (max-width: 991px) {
  .home1-industries-section .vector-img1 {
    display: none;
  }
}
.home1-industries-section .vector-img2 {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1699px) {
  .home1-industries-section .vector-img2 {
    width: 230px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home1-industries-section .vector-img2 {
    width: 200px;
  }
}
@media (max-width: 1399px) {
  .home1-industries-section .vector-img2 {
    width: 140px;
  }
}
@media (max-width: 991px) {
  .home1-industries-section .vector-img2 {
    display: none;
  }
}

/*=====================================
  09. Tools and technologies Section CSS
========================================*/
.tools-and-technologies-section {
  padding: 100px 0;
  background-image: url(../img/home1/tools-and-tecnology-bg-img.png), linear-gradient(180deg, rgb(23, 23, 23) 0%, rgb(23, 23, 23) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .tools-and-technologies-section {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .tools-and-technologies-section {
    padding: 70px 0;
  }
}
.tools-and-technologies-section .tools-technologies-card {
  background: linear-gradient(180deg, rgba(32, 32, 32, 0.95) 0%, rgba(21, 21, 21, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  border-radius: 18px;
  padding: 38px 32px 34px;
  min-height: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.tools-and-technologies-section .tools-technologies-card-slider .swiper-wrapper {
  counter-reset: capability-card;
}
.tools-and-technologies-section .tools-technologies-card::before {
  content: counter(capability-card, decimal-leading-zero);
  counter-increment: capability-card;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(49, 210, 255, 0.2), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(49, 210, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #c7f5ff;
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
}
.tools-and-technologies-section .tools-technologies-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(49, 210, 255, 0.28), rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.tools-and-technologies-section .tools-technologies-card:hover {
  transform: translateY(-10px);
  border-color: rgba(49, 210, 255, 0.2);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}
.tools-and-technologies-section .tools-technologies-card:hover::after {
  opacity: 1;
}
@media (max-width: 1399px) {
  .tools-and-technologies-section .tools-technologies-card {
    min-height: 300px;
    padding: 34px 28px 30px;
  }
}
@media (max-width: 576px) {
  .tools-and-technologies-section .tools-technologies-card {
    min-height: auto;
    padding: 28px 20px;
  }
}
.tools-and-technologies-section .tools-technologies-card h3 {
  color: var(--white-color);
  margin-bottom: 16px;
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 1399px) {
  .tools-and-technologies-section .tools-technologies-card h3 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .tools-and-technologies-section .tools-technologies-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .tools-and-technologies-section .tools-technologies-card h3 {
    font-size: 20px;
  }
}
.tools-and-technologies-section .tools-technologies-card p {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.85;
  max-width: 300px;
}
@media (max-width: 1399px) {
  .tools-and-technologies-section .tools-technologies-card p {
    font-size: 15px;
    line-height: 1.8;
  }
}
@media (max-width: 576px) {
  .tools-and-technologies-section .tools-technologies-card p {
    font-size: 14px;
  }
}
@media (max-width: 1399px) {
  .tools-and-technologies-section .tools-technologies-card img {
    width: 140px;
  }
}
@media (max-width: 991px) {
  .tools-and-technologies-section .tools-technologies-card img {
    width: 110px;
  }
}
@media (max-width: 576px) {
  .tools-and-technologies-section .tools-technologies-card img {
    width: 100px;
  }
}
.tools-and-technologies-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, rgba(49, 210, 255, 0), rgba(49, 210, 255, 0.25), rgba(49, 210, 255, 0));
  bottom: 276px;
}
.tools-and-technologies-section .swiper-slide {
  height: auto;
}
.tools-and-technologies-section .section-title.white span {
  color: #7bddf7;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tools-and-technologies-section .section-title.white h2 {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.tools-and-technologies-section .slider-btn-grp .slider-btn {
  position: absolute;
  top: 58%;
  left: 128px;
  z-index: 3;
  background-color: rgba(28, 28, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}
@media (max-width: 1699px) {
  .tools-and-technologies-section .slider-btn-grp .slider-btn {
    left: 50px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .tools-and-technologies-section .slider-btn-grp .slider-btn {
    left: 0;
  }
}
@media (max-width: 1399px) {
  .tools-and-technologies-section .slider-btn-grp .slider-btn {
    left: 10px;
  }
}
.tools-and-technologies-section .slider-btn-grp .slider-btn.tools-slider-next {
  left: unset;
  right: 128px;
}
@media (max-width: 1699px) {
  .tools-and-technologies-section .slider-btn-grp .slider-btn.tools-slider-next {
    right: 50px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .tools-and-technologies-section .slider-btn-grp .slider-btn.tools-slider-next {
    right: 0;
  }
}
@media (max-width: 1399px) {
  .tools-and-technologies-section .slider-btn-grp .slider-btn.tools-slider-next {
    right: 10px;
  }
}
.tools-and-technologies-section .slider-btn-grp .slider-btn:hover {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}

/*=====================================
  09. Home1 Solution Section CSS
========================================*/
.case-study-card {
  background-color: rgba(197, 251, 225, 0.2);
  padding: 25px 35px 35px;
  border: 1px solid rgba(var(--black-color-opc), 0.1);
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .case-study-card {
    padding: 25px 29px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .case-study-card {
    padding: 25px 15px 20px;
  }
}
@media (max-width: 991px) {
  .case-study-card {
    padding: 30px 20px 30px;
  }
}
@media (max-width: 576px) {
  .case-study-card {
    padding: 25px 15px 30px;
  }
}
.case-study-card .tag {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .case-study-card .tag {
    margin-bottom: 35px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .case-study-card .tag {
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .case-study-card .tag {
    margin-bottom: 30px;
  }
}
.case-study-card .tag svg {
  fill: none;
}
.case-study-card .tag svg circle {
  fill: var(--primary-color1);
}
.case-study-card .tag svg circle:last-child {
  fill: var(--white-color);
}
.case-study-card .tag span {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
}
.case-study-card .case-study-content {
  margin-bottom: 30px;
}
.case-study-card .case-study-content h2 {
  margin-bottom: 15px;
  line-height: 1;
}
.case-study-card .case-study-content h2 a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 25px;
  line-height: 37px;
  text-transform: capitalize;
  background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
  background-repeat: no-repeat;
  background-size: 0px 1.5px;
  background-position: right 95%;
  transition: background-size 0.75s;
}
@media (max-width: 1399px) {
  .case-study-card .case-study-content h2 a {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .case-study-card .case-study-content h2 a {
    font-size: 19px;
    line-height: 1.2;
  }
}
@media (max-width: 991px) {
  .case-study-card .case-study-content h2 a {
    font-size: 20px;
  }
}
.case-study-card .case-study-content h2 a:hover {
  background-size: 100% 1.5px;
  background-position: 0 95%;
}
.case-study-card .case-study-content p {
  color: var(--text-color);
  margin-bottom: 0;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .case-study-card .case-study-content p {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .case-study-card .case-study-content p {
    font-size: 15px;
  }
}
.case-study-card .case-study-img {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  margin-bottom: 40px;
}
.case-study-card .case-study-img img {
  border-radius: 10px;
}
.case-study-card .case-study-img canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.case-study-card .learn-more-btn {
  position: relative;
}
.case-study-card .learn-more-btn a {
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: 120px;
  justify-content: space-between;
  transition: max-width 0.6s ease;
}
.case-study-card .learn-more-btn a span {
  color: var(--primary-color1);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  display: block;
  transition: all 0.5s;
  padding-bottom: 2px;
  background: linear-gradient(to bottom, var(--primary-color1) 0%, var(--primary-color1) 98%);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0% 90%;
  transition: background-size 0.75s;
}
.case-study-card .learn-more-btn a .icon {
  min-width: 29px;
  max-width: 29px;
  height: 29px;
  background-color: var(--primary-color1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}
.case-study-card .learn-more-btn a .icon svg {
  fill: var(--white-color);
  transition: transform 0.5s ease;
}
.case-study-card .learn-more-btn a:hover span {
  background-size: 0px 1px;
  background-position: 0 90%;
}
.case-study-card .learn-more-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 233px;
  height: 6px;
  background-color: rgba(var(--primary-color1-opc), 0.1);
  border-radius: 20px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .case-study-card .learn-more-btn::before {
    width: 190px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .case-study-card .learn-more-btn::before {
    width: 160px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .case-study-card .learn-more-btn::before {
    width: 170px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .case-study-card .learn-more-btn::before {
    width: 340px;
  }
}
@media (max-width: 576px) {
  .case-study-card .learn-more-btn::before {
    display: none;
  }
}
.case-study-card .learn-more-btn:hover a {
  max-width: 100%;
}
.case-study-card .learn-more-btn:hover a svg {
  transform: rotate(-45deg);
}
.case-study-card.two {
  background-color: rgba(253, 237, 221, 0.2);
}
.case-study-card.three {
  background-color: rgba(240, 253, 205, 0.2);
}
.case-study-card.software-company-color {
  background-color: rgba(1, 14, 208, 0.031372549);
  padding: 0;
}
.case-study-card.software-company-color .case-study-img {
  margin-bottom: 0;
  margin: 5px;
  margin-bottom: 0;
}
.case-study-card.software-company-color .case-study-content-wrapper {
  padding: 30px;
}
@media (max-width: 1399px) {
  .case-study-card.software-company-color .case-study-content-wrapper {
    padding: 22px;
  }
}
@media (max-width: 1199px) {
  .case-study-card.software-company-color .case-study-content-wrapper {
    padding: 25px 18px;
  }
}
.case-study-card.software-company-color .case-study-content-wrapper .tag {
  margin-bottom: 20px;
}
.case-study-card.software-company-color .case-study-content-wrapper .tag span {
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color2);
}
.case-study-card.software-company-color .case-study-content-wrapper .case-study-content {
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .case-study-card.software-company-color .case-study-content-wrapper .case-study-content {
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .case-study-card.software-company-color .case-study-content-wrapper .case-study-content {
    margin-bottom: 20px;
  }
}
.case-study-card.software-company-color .case-study-content-wrapper .case-study-content h2 a {
  font-size: 27px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .case-study-card.software-company-color .case-study-content-wrapper .case-study-content h2 a {
    font-size: 24px;
  }
}
@media (max-width: 1399px) {
  .case-study-card.software-company-color .case-study-content-wrapper .case-study-content h2 a {
    font-size: 23px;
  }
}
@media (max-width: 1199px) {
  .case-study-card.software-company-color .case-study-content-wrapper .case-study-content h2 a {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .case-study-card.software-company-color .case-study-content-wrapper .case-study-content p {
    font-size: 15px;
  }
}

/*=====================================
  10. Home1 Testimonial Section CSS
========================================*/
.home1-testimonial-section {
  padding: 100px 0;
  background-image: url(../img/home1/home1-testimonial-bg.png), linear-gradient(180deg, rgb(239, 246, 255) 0%, rgb(239, 246, 255) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 1199px) {
  .home1-testimonial-section {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .home1-testimonial-section {
    padding: 70px 0;
  }
}
.home1-testimonial-section .section-title-and-navigation {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 70px;
}
.home1-testimonial-section .section-title-and-navigation .slider-btn-grp .slider-btn {
  border: 1px solid rgba(var(--black-color-opc), 0.3);
}
.home1-testimonial-section .section-title-and-navigation .slider-btn-grp .slider-btn svg {
  fill: rgba(var(--black-color-opc), 0.3);
}
.home1-testimonial-section .section-title-and-navigation .slider-btn-grp .slider-btn:hover svg {
  fill: var(--white-color);
}
.home1-testimonial-section .testimonial-wrapper {
  margin-left: 16%;
  margin-bottom: 70px;
}
@media (max-width: 1899px) {
  .home1-testimonial-section .testimonial-wrapper {
    margin-left: 8%;
  }
}
@media (max-width: 1699px) {
  .home1-testimonial-section .testimonial-wrapper {
    margin-left: 40px;
  }
}
@media (max-width: 1199px) {
  .home1-testimonial-section .testimonial-wrapper {
    margin-left: 0;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .home1-testimonial-section .testimonial-wrapper {
    margin-bottom: 35px;
  }
}
.home1-testimonial-section .testimonial-wrapper .testimonial-card {
  padding: 30px 35px;
  background-image: url(../img/home1/testimonial-card-bg.png), linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  text-align: center;
  min-width: 816px;
  position: relative;
}
@media (max-width: 1199px) {
  .home1-testimonial-section .testimonial-wrapper .testimonial-card {
    min-width: unset;
  }
}
@media (max-width: 576px) {
  .home1-testimonial-section .testimonial-wrapper .testimonial-card {
    padding: 30px 15px;
    border-radius: 5px;
  }
}
.home1-testimonial-section .testimonial-wrapper .testimonial-card img {
  border-radius: 50%;
  margin-bottom: 30px;
}
.home1-testimonial-section .testimonial-wrapper .testimonial-card .testimonial-content {
  margin-bottom: 35px;
}
@media (max-width: 576px) {
  .home1-testimonial-section .testimonial-wrapper .testimonial-card .testimonial-content {
    margin-bottom: 25px;
  }
}
.home1-testimonial-section .testimonial-wrapper .testimonial-card .testimonial-content span {
  color: var(--primary-color1);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  display: block;
  text-transform: uppercase;
  margin-bottom: 27px;
}
@media (max-width: 1199px) {
  .home1-testimonial-section .testimonial-wrapper .testimonial-card .testimonial-content span {
    margin-bottom: 18px;
  }
}
.home1-testimonial-section .testimonial-wrapper .testimonial-card .testimonial-content p {
  color: rgba(var(--title-color-opc), 0.7);
  margin-bottom: 0;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 40px;
  text-transform: capitalize;
}
@media (max-width: 1199px) {
  .home1-testimonial-section .testimonial-wrapper .testimonial-card .testimonial-content p {
    line-height: 35px;
  }
}
@media (max-width: 576px) {
  .home1-testimonial-section .testimonial-wrapper .testimonial-card .testimonial-content p {
    font-size: 15px;
    line-height: 30px;
  }
}
.home1-testimonial-section .testimonial-wrapper .testimonial-card .author-and-review {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(var(--black-color-opc), 0.1);
}
.home1-testimonial-section .testimonial-wrapper .testimonial-card .author-and-review .author h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 21px;
  line-height: 1;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .home1-testimonial-section .testimonial-wrapper .testimonial-card .author-and-review .author h3 {
    font-size: 17px;
    margin-bottom: 7px;
  }
}
.home1-testimonial-section .testimonial-wrapper .testimonial-card .author-and-review .author span {
  color: var(--title-color);
  display: flex;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
}
@media (max-width: 576px) {
  .home1-testimonial-section .testimonial-wrapper .testimonial-card .author-and-review .author span {
    font-size: 14px;
  }
}

/*=====================================
  11. Home1 Partner Section CSS
========================================*/
.partner-section {
  background-color: #222222;
  padding: 33px 147px;
}
@media (max-width: 1399px) {
  .partner-section {
    padding: 33px 70px;
  }
}
@media (max-width: 991px) {
  .partner-section {
    padding: 33px 50px;
  }
}
@media (max-width: 767px) {
  .partner-section {
    padding: 30px 35px;
  }
}
@media (max-width: 576px) {
  .partner-section {
    padding: 30px 0;
  }
}
.partner-section .partner-wrap .marquee {
  display: flex;
  gap: 150px;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 1199px) {
  .partner-section .partner-wrap .marquee {
    gap: 100px;
  }
}
@media (max-width: 767px) {
  .partner-section .partner-wrap .marquee {
    gap: 80px;
  }
}
@media (max-width: 576px) {
  .partner-section .partner-wrap .marquee {
    gap: 60px;
  }
}
.partner-section .partner-wrap .marquee .marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 150px;
  min-width: 100%;
  animation: scroll-x-reverse 30s linear infinite;
}
@media (max-width: 1199px) {
  .partner-section .partner-wrap .marquee .marquee__group {
    gap: 100px;
  }
}
@media (max-width: 767px) {
  .partner-section .partner-wrap .marquee .marquee__group {
    gap: 80px;
  }
}
@media (max-width: 576px) {
  .partner-section .partner-wrap .marquee .marquee__group {
    gap: 60px;
  }
}
.partner-section .partner-wrap .marquee .marquee__group a img {
  transition: all 0.4s;
  opacity: 60%;
}
@media (max-width: 991px) {
  .partner-section .partner-wrap .marquee .marquee__group a img {
    width: 85px;
  }
}
@media (max-width: 576px) {
  .partner-section .partner-wrap .marquee .marquee__group a img {
    width: 75px;
  }
}
.partner-section .partner-wrap .marquee .marquee__group a:hover img {
  opacity: 100%;
}
@keyframes scroll-x-reverse {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/*=====================================
  12. Home1 Blog Section CSS
========================================*/
@media (max-width: 1399px) {
  .home1-blog-section.two .blog-card .blog-card-content h3 a {
    font-size: 21px;
  }
}
@media (max-width: 1199px) {
  .home1-blog-section.two .blog-card .blog-card-content h3 a {
    font-size: 19px;
  }
}

.blog-card {
  position: relative;
  max-width: 409px;
  width: 100%;
}
@media (max-width: 991px) {
  .blog-card {
    max-width: unset;
  }
}
.blog-card::before {
  content: "";
  width: 1px;
  height: 89px;
  background-color: rgba(var(--black-color-opc), 0.2);
  position: absolute;
  left: 0;
  bottom: 0;
}
.blog-card .blog-img {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.blog-card .blog-img img {
  border-radius: 10px;
}
.blog-card .blog-img canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.blog-card .blog-card-content {
  padding: 30px 30px 0 21px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card .blog-card-content {
    padding: 30px 30px 0 15px;
  }
}
@media (max-width: 991px) {
  .blog-card .blog-card-content {
    padding: 30px 0px 0 15px;
  }
}
.blog-card .blog-card-content .blog-date {
  padding: 9px 22px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white-color);
  border-radius: 0 0 10px 10px;
}
.blog-card .blog-card-content .blog-date span {
  color: var(--primary-color1);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  display: block;
  padding-bottom: 3px;
  background: linear-gradient(to bottom, var(--primary-color1) 0%, var(--primary-color1) 98%);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0% 90%;
  transition: background-size 0.75s;
}
@media (max-width: 1199px) {
  .blog-card .blog-card-content .blog-date span {
    font-size: 13px;
  }
}
@media (max-width: 1199px) {
  .blog-card .blog-card-content .blog-date {
    padding: 9px 15px;
  }
}
.blog-card .blog-card-content .blog-date:hover span {
  background-size: 0px 1px;
  background-position: 0 90%;
}
.blog-card .blog-card-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}
@media (max-width: 1199px) {
  .blog-card .blog-card-content ul {
    margin-bottom: 10px;
  }
}
.blog-card .blog-card-content ul li .tag {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(var(--title-color-opc), 0.6);
  border-radius: 50px;
  border: 1px solid rgba(var(--title-color-opc), 0.1);
  padding: 6px 17px;
  display: inline-block;
  transition: all 0.5s;
}
.blog-card .blog-card-content ul li .tag:hover {
  color: var(--primary-color1);
}
.blog-card .blog-card-content ul li .tag2 {
  color: var(--primary-color1);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  padding-bottom: 2px;
  background: linear-gradient(to bottom, var(--primary-color1) 0%, var(--primary-color1) 98%);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0% 90%;
  transition: background-size 0.75s;
}
.blog-card .blog-card-content ul li .tag2:hover {
  background-size: 0px 1px;
  background-position: 0 90%;
}
.blog-card .blog-card-content h2,
.blog-card .blog-card-content h3,
.blog-card .blog-card-content h4 {
  margin-bottom: 0;
  line-height: 35px;
}
@media (max-width: 1399px) {
  .blog-card .blog-card-content h2,
  .blog-card .blog-card-content h3,
  .blog-card .blog-card-content h4 {
    line-height: 28px;
  }
}
.blog-card .blog-card-content h2 a,
.blog-card .blog-card-content h3 a,
.blog-card .blog-card-content h4 a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 25px;
  line-height: 35px;
  text-transform: capitalize;
  background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
  background-repeat: no-repeat;
  background-size: 0px 1.5px;
  background-position: right 95%;
  transition: background-size 0.75s;
}
@media (max-width: 1399px) {
  .blog-card .blog-card-content h2 a,
  .blog-card .blog-card-content h3 a,
  .blog-card .blog-card-content h4 a {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card .blog-card-content h2 a,
  .blog-card .blog-card-content h3 a,
  .blog-card .blog-card-content h4 a {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .blog-card .blog-card-content h2 a,
  .blog-card .blog-card-content h3 a,
  .blog-card .blog-card-content h4 a {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .blog-card .blog-card-content h2 a,
  .blog-card .blog-card-content h3 a,
  .blog-card .blog-card-content h4 a {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .blog-card .blog-card-content h2 a,
  .blog-card .blog-card-content h3 a,
  .blog-card .blog-card-content h4 a {
    font-size: 19px;
    line-height: 26px;
  }
}
.blog-card .blog-card-content h2 a:hover,
.blog-card .blog-card-content h3 a:hover,
.blog-card .blog-card-content h4 a:hover {
  background-size: 100% 1.5px;
  background-position: 0 95%;
}
.blog-card.two {
  max-width: unset;
}
@media (max-width: 1199px) {
  .blog-card.two .blog-card-content h3,
  .blog-card.two .blog-card-content h2 {
    line-height: 38px;
  }
}
@media (max-width: 767px) {
  .blog-card.two .blog-card-content h3,
  .blog-card.two .blog-card-content h2 {
    line-height: 33px;
  }
}
@media (max-width: 576px) {
  .blog-card.two .blog-card-content h3,
  .blog-card.two .blog-card-content h2 {
    line-height: 28px;
  }
}
.blog-card.two .blog-card-content h3 a,
.blog-card.two .blog-card-content h2 a {
  font-size: 32px;
  line-height: 43px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .blog-card.two .blog-card-content h3 a,
  .blog-card.two .blog-card-content h2 a {
    font-size: 28px;
  }
}
@media (max-width: 1399px) {
  .blog-card.two .blog-card-content h3 a,
  .blog-card.two .blog-card-content h2 a {
    font-size: 26px;
  }
}
@media (max-width: 1199px) {
  .blog-card.two .blog-card-content h3 a,
  .blog-card.two .blog-card-content h2 a {
    font-size: 24px;
    line-height: 38px;
  }
}
@media (max-width: 767px) {
  .blog-card.two .blog-card-content h3 a,
  .blog-card.two .blog-card-content h2 a {
    font-size: 20px;
    line-height: 33px;
  }
}
@media (max-width: 576px) {
  .blog-card.two .blog-card-content h3 a,
  .blog-card.two .blog-card-content h2 a {
    font-size: 18px;
    line-height: 28px;
  }
}
.blog-card.two .blog-card-content .blog-date {
  left: 125px;
  transform: unset;
}

.pagination-area-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  flex-wrap: wrap;
  border: 1px solid rgba(var(--title-color-opc), 0.3);
  padding: 6px 20px;
  border-radius: 40px;
}
@media (max-width: 576px) {
  .pagination-area-wrap {
    border-radius: 20px;
    gap: 15px;
  }
}
.pagination-area-wrap .paginations {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 576px) {
  .pagination-area-wrap .paginations {
    gap: 20px;
  }
}
.pagination-area-wrap .paginations .page-item a {
  color: rgba(var(--title-color-opc), 0.5);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(var(--title-color-opc), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
@media (max-width: 576px) {
  .pagination-area-wrap .paginations .page-item a {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}
.pagination-area-wrap .paginations .page-item a:hover {
  background-color: var(--primary-color1);
  color: var(--white-color);
}
.pagination-area-wrap .paginations .page-item.active a {
  background-color: var(--primary-color1);
  color: var(--white-color);
}
.pagination-area-wrap .paginations-button a svg {
  fill: rgba(var(--title-color-opc), 0.3);
  transition: 0.5s;
}
.pagination-area-wrap .paginations-button a:hover svg {
  fill: var(--title-color);
}

/*=====================================
  13. Home1 Contact Section CSS
========================================*/
.home1-contact-section {
  background-color: var(--black-color);
  padding-top: 65px;
}
.home1-contact-section .section-title {
  max-width: 546px;
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .home1-contact-section .section-title {
    margin-bottom: 50px;
  }
}
.home1-contact-section .section-title p {
  color: rgba(var(--white-color-opc), 0.6);
}
.home1-contact-section .contact-area {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .home1-contact-section .contact-area {
    margin-bottom: 70px;
  }
}
@media (max-width: 576px) {
  .home1-contact-section .contact-area {
    margin-bottom: 50px;
  }
}
.home1-contact-section .contact-area .single-contact {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-bottom: 55px;
  position: relative;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home1-contact-section .contact-area .single-contact {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .home1-contact-section .contact-area .single-contact {
    margin-bottom: 45px;
  }
}
@media (max-width: 576px) {
  .home1-contact-section .contact-area .single-contact {
    margin-bottom: 35px;
  }
}
.home1-contact-section .contact-area .single-contact::before {
  content: "";
  position: absolute;
  background-color: rgba(var(--white-color-opc), 0.15);
  left: 37px;
  width: 1px;
  height: 35px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home1-contact-section .contact-area .single-contact::before {
    left: 34px;
  }
}
.home1-contact-section .contact-area .single-contact svg {
  fill: var(--white-color);
}
.home1-contact-section .contact-area .single-contact .contact-content span {
  color: #CACACA;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
@media (max-width: 576px) {
  .home1-contact-section .contact-area .single-contact .contact-content span {
    margin-bottom: 8px;
  }
}
.home1-contact-section .contact-area .single-contact .contact-content a {
  color: var(--white-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  display: block;
  transition: all 0.5s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home1-contact-section .contact-area .single-contact .contact-content a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .home1-contact-section .contact-area .single-contact .contact-content a {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .home1-contact-section .contact-area .single-contact .contact-content a {
    font-size: 16px;
  }
}
.home1-contact-section .contact-area .single-contact .contact-content a:hover {
  color: var(--primary-color1);
}
.home1-contact-section .contact-area .single-contact:last-child {
  margin-bottom: 0;
}
.home1-contact-section .social-list-wrapper h3 {
  margin-bottom: 30px;
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  text-decoration: underline;
}
.home1-contact-section .social-list-wrapper .social-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 32px;
}
.home1-contact-section .social-list-wrapper .social-list .single-social {
  text-align: center;
}
.home1-contact-section .social-list-wrapper .social-list .single-social i {
  color: var(--white-color);
  transition: all 0.5s;
  font-size: 17px;
}
.home1-contact-section .social-list-wrapper .social-list .single-social a {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  display: block;
  transition: all 0.5s;
}
.home1-contact-section .social-list-wrapper .social-list .single-social:hover i {
  color: var(--primary-color1);
}
.home1-contact-section .social-list-wrapper .social-list .single-social:hover a {
  color: var(--primary-color1);
}
.home1-contact-section .contact-form-wrap {
  padding: 45px 45px 50px 45px;
  background-color: #EBF5FF;
  border-radius: 20px 20px 0 0;
  margin-bottom: -1px;
}
@media (max-width: 1399px) {
  .home1-contact-section .contact-form-wrap {
    padding: 45px 35px 50px 35px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home1-contact-section .contact-form-wrap {
    padding: 45px 25px 45px 25px;
  }
}
@media (max-width: 991px) {
  .home1-contact-section .contact-form-wrap {
    border-radius: 15px 15px 0 0;
  }
}
@media (max-width: 767px) {
  .home1-contact-section .contact-form-wrap {
    border-radius: 15px 15px 0 0;
  }
}
@media (max-width: 576px) {
  .home1-contact-section .contact-form-wrap {
    padding: 40px 20px 40px 20px;
    border-radius: 10px 10px 0 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home1-contact-section .contact-form-wrap .form-inner label {
    font-size: 14px;
  }
}
.home1-contact-section .contact-form-wrap h4 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 25px;
  line-height: 1;
  padding-bottom: 15px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(var(--title-color-opc), 0.3);
}
@media (max-width: 576px) {
  .home1-contact-section .contact-form-wrap h4 {
    font-size: 22px;
  }
}
.home1-contact-section.two {
  background-image: url(../img/home2/contact-section-bg.png), linear-gradient(180deg, #EDEEFF 0%, #EDEEFF 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 0;
}
.home1-contact-section.two .section-title {
  max-width: unset;
}
.home1-contact-section.two .section-title p {
  color: var(--text-color);
}
.home1-contact-section.two .contact-area {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .home1-contact-section.two .contact-area {
    justify-content: unset;
    gap: 50px;
  }
}
@media (max-width: 576px) {
  .home1-contact-section.two .contact-area {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.home1-contact-section.two .contact-area .single-contact {
  margin-bottom: 0;
}
.home1-contact-section.two .contact-area .single-contact::before {
  background-color: rgba(var(--title-color-opc), 0.3);
}
.home1-contact-section.two .contact-area .single-contact svg {
  fill: var(--title-color);
}
.home1-contact-section.two .contact-area .single-contact .contact-content span {
  color: rgba(var(--title-color-opc), 0.5);
}
.home1-contact-section.two .contact-area .single-contact .contact-content a {
  font-family: var(--font-montserrat);
  color: var(--title-color);
  transition: all 0.5s;
}
.home1-contact-section.two .contact-area .single-contact .contact-content a:hover {
  color: var(--primary-color1);
}
.home1-contact-section.two .social-list-wrapper h3 {
  color: var(--title-color);
}
.home1-contact-section.two .social-list-wrapper .social-list {
  justify-content: space-between;
  border: 1px solid rgba(var(--title-color-opc), 0.1);
  border-radius: 10px;
  padding: 16px 37px;
}
@media (max-width: 576px) {
  .home1-contact-section.two .social-list-wrapper .social-list {
    padding: 10px 10px;
  }
}
.home1-contact-section.two .social-list-wrapper .social-list .single-social {
  position: relative;
}
.home1-contact-section.two .social-list-wrapper .social-list .single-social::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 37px;
  background-color: rgba(var(--title-color-opc), 0.1);
  left: -50%;
  top: 0;
}
@media (max-width: 576px) {
  .home1-contact-section.two .social-list-wrapper .social-list .single-social::before {
    display: none;
  }
}
.home1-contact-section.two .social-list-wrapper .social-list .single-social i {
  color: var(--title-color);
  font-size: 18px;
  transition: all 0.5s;
}
.home1-contact-section.two .social-list-wrapper .social-list .single-social a {
  color: var(--title-color);
}
.home1-contact-section.two .social-list-wrapper .social-list .single-social:hover i {
  color: var(--primary-color2);
}
.home1-contact-section.two .social-list-wrapper .social-list .single-social:hover a {
  color: var(--primary-color2);
}
.home1-contact-section.two .social-list-wrapper .social-list .single-social:first-child::before {
  content: unset;
}
.home1-contact-section.two .contact-form-wrap {
  background-color: var(--white-color);
  max-width: 678px;
  width: 100%;
}
.home1-contact-section.two .contact-form-wrap .form-inner input {
  background-color: #EBF5FF;
  border: 1px solid #EEEEEE;
}
.home1-contact-section.two .contact-form-wrap .form-inner input:focus {
  border-color: var(--primary-color1);
  background-color: #EBF5FF;
}

/*=====================================
  14. Home1 Journey Section CSS
========================================*/
.home1-journey-section span {
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 28px;
  line-height: 35px;
  text-align: center;
  text-transform: capitalize;
  color: rgba(var(--title-color-opc), 0.7);
}
@media (max-width: 1199px) {
  .home1-journey-section span {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .home1-journey-section span {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .home1-journey-section span {
    font-size: 21px;
  }
}
@media (max-width: 576px) {
  .home1-journey-section span {
    font-size: 19px;
  }
}
.home1-journey-section .journer-wrapper {
  border: 1px solid rgba(var(--title-color-opc), 0.2);
  border-radius: 30px;
}
@media (max-width: 991px) {
  .home1-journey-section .journer-wrapper {
    border: unset;
    border-radius: unset;
  }
}
.home1-journey-section .journer-wrapper .row .col .journey-card {
  text-align: center;
  padding: 25px 20px 35px;
  border: 1px solid rgba(var(--title-color-opc), 0.2);
  border-left: unset;
  border-top: unset;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home1-journey-section .journer-wrapper .row .col .journey-card {
    padding: 23px 12px 35px;
  }
}
@media (max-width: 991px) {
  .home1-journey-section .journer-wrapper .row .col .journey-card {
    border: 1px solid rgba(var(--title-color-opc), 0.2);
    border-radius: 10px;
  }
}
@media (max-width: 991px) {
  .home1-journey-section .journer-wrapper .row .col .journey-card {
    padding: 20px 20px 25px;
  }
}
.home1-journey-section .journer-wrapper .row .col .journey-card img {
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .home1-journey-section .journer-wrapper .row .col .journey-card img {
    width: 70px;
  }
}
@media (max-width: 991px) {
  .home1-journey-section .journer-wrapper .row .col .journey-card img {
    width: 60px;
  }
}
@media (max-width: 576px) {
  .home1-journey-section .journer-wrapper .row .col .journey-card img {
    width: 54px;
  }
}
.home1-journey-section .journer-wrapper .row .col .journey-card h2 {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 15px;
  line-height: 35px;
  text-transform: capitalize;
  margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home1-journey-section .journer-wrapper .row .col .journey-card h2 {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .home1-journey-section .journer-wrapper .row .col .journey-card h2 {
    line-height: 26px;
  }
}
@media (max-width: 991px) {
  .home1-journey-section .journer-wrapper .row .col .journey-card h2 {
    font-size: 14px;
    line-height: 26px;
  }
}
@media (min-width: 992px) {
  .home1-journey-section .journer-wrapper .row .col:nth-child(6) .journey-card, .home1-journey-section .journer-wrapper .row .col:nth-child(12) .journey-card {
    border-right: unset;
  }
  .home1-journey-section .journer-wrapper .row .col:nth-child(7) .journey-card, .home1-journey-section .journer-wrapper .row .col:nth-child(8) .journey-card, .home1-journey-section .journer-wrapper .row .col:nth-child(9) .journey-card, .home1-journey-section .journer-wrapper .row .col:nth-child(10) .journey-card, .home1-journey-section .journer-wrapper .row .col:nth-child(11) .journey-card, .home1-journey-section .journer-wrapper .row .col:nth-child(12) .journey-card {
    border-bottom: unset;
  }
}

/*=====================================
  16. Home1 Service Section CSS
========================================*/
.home1-service-section {
  padding: 120px 0;
  background-color: #EDEEFF;
}
@media (max-width: 1399px) {
  .home1-service-section {
    padding: 100px 0;
  }
}
@media (max-width: 1199px) {
  .home1-service-section {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .home1-service-section {
    padding: 70px 0;
  }
}
.home1-service-section .section-title-and-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 576px) {
  .home1-service-section .section-title-and-btn {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.home1-service-section .section-title-and-btn .primary-btn1 {
  padding: 20px 30px;
}
@media (max-width: 991px) {
  .home1-service-section .section-title-and-btn .primary-btn1 {
    padding: 18px 22px;
  }
}
.home1-service-section .service-wrapper {
  padding: 0 147px;
}
@media (max-width: 1899px) {
  .home1-service-section .service-wrapper {
    padding: 0 50px;
  }
}
@media (max-width: 1699px) {
  .home1-service-section .service-wrapper {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .home1-service-section .service-wrapper {
    padding: 0 10px;
  }
}
@media (max-width: 991px) {
  .home1-service-section .service-wrapper {
    padding: 0;
  }
}
.home1-service-section .service-wrapper .home1-service-slider {
  border-top: 1px solid rgba(var(--black-color-opc), 0.1);
}
.home1-service-section .service-wrapper .home1-service-slider .swiper-wrapper .swiper-slide:nth-child(1) {
  border-left: 1px solid rgba(var(--black-color-opc), 0.1);
}
.home1-service-section .service-wrapper .home1-service-slider .service-card {
  padding: 45px 35px;
  border-right: 1px solid rgba(var(--black-color-opc), 0.1);
  padding-bottom: 0;
}
@media (max-width: 1399px) {
  .home1-service-section .service-wrapper .home1-service-slider .service-card {
    padding: 45px 30px 0 30px;
  }
}
@media (max-width: 1199px) {
  .home1-service-section .service-wrapper .home1-service-slider .service-card {
    padding: 40px 25px 0 25px;
  }
}
.home1-service-section .service-wrapper .home1-service-slider .service-card .service-content {
  margin-bottom: 15px;
}
.home1-service-section .service-wrapper .home1-service-slider .service-card .service-content span {
  color: var(--primary-color1);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .home1-service-section .service-wrapper .home1-service-slider .service-card .service-content span {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .home1-service-section .service-wrapper .home1-service-slider .service-card .service-content span {
    font-size: 16px;
  }
}
.home1-service-section .service-wrapper .home1-service-slider .service-card .service-content h3 {
  margin-bottom: 0;
  line-height: 30px;
}
.home1-service-section .service-wrapper .home1-service-slider .service-card .service-content h3 a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
  background-repeat: no-repeat;
  background-size: 0px 1.5px;
  background-position: right 95%;
  transition: background-size 0.75s;
}
@media (max-width: 1399px) {
  .home1-service-section .service-wrapper .home1-service-slider .service-card .service-content h3 a {
    font-size: 24px;
  }
}
@media (max-width: 1199px) {
  .home1-service-section .service-wrapper .home1-service-slider .service-card .service-content h3 a {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .home1-service-section .service-wrapper .home1-service-slider .service-card .service-content h3 a {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .home1-service-section .service-wrapper .home1-service-slider .service-card .service-content h3 a {
    font-size: 19px;
  }
}
.home1-service-section .service-wrapper .home1-service-slider .service-card .service-content h3 a:hover {
  background-size: 100% 1.5px;
  background-position: 0 95%;
}
.home1-service-section .service-wrapper .home1-service-slider .service-card > svg {
  fill: rgba(var(--title-color-opc), 0.6);
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  .home1-service-section .service-wrapper .home1-service-slider .service-card > svg {
    width: 50px;
  }
}
@media (max-width: 991px) {
  .home1-service-section .service-wrapper .home1-service-slider .service-card > svg {
    width: 45px;
  }
}
.home1-service-section .service-wrapper .home1-service-slider .service-card .service-img {
  display: block;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.home1-service-section .service-wrapper .home1-service-slider .service-card .service-img canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home1-service-section .service-wrapper .home1-service-slider .service-card > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 12px;
  line-height: 32px;
  text-decoration: underline;
  color: var(--title-color);
}
.home1-service-section .service-wrapper .home1-service-slider .service-card > a svg {
  fill: var(--title-color);
}

/*=====================================
  17. Home1 Footer Section CSS
========================================*/
.footer-section {
  background-color: #EBF5FF;
  padding-top: 120px;
  position: relative;
}
.footer-section .newsletter-wrapper {
  background-image: url(../img/home1/footer-newslater-bg-img.png), linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  margin-bottom: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-section .newsletter-wrapper {
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .footer-section .newsletter-wrapper {
    margin-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .footer-section .newsletter-wrapper {
    margin-bottom: 70px;
    border-radius: 15px;
  }
}
@media (max-width: 576px) {
  .footer-section .newsletter-wrapper {
    border-radius: 10px;
  }
}
.footer-section .newsletter-wrapper .news-letter-content {
  padding: 70px 0 56px 50px;
  max-width: 620px;
  width: 100%;
}
@media (max-width: 1199px) {
  .footer-section .newsletter-wrapper .news-letter-content {
    padding: 60px 0 60px 29px;
  }
}
@media (max-width: 767px) {
  .footer-section .newsletter-wrapper .news-letter-content {
    padding: 45px 15px;
  }
}
@media (max-width: 576px) {
  .footer-section .newsletter-wrapper .news-letter-content {
    padding: 35px 10px;
  }
}
.footer-section .newsletter-wrapper .news-letter-content h2 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 45px;
  line-height: 57px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .footer-section .newsletter-wrapper .news-letter-content h2 {
    font-size: 38px;
    line-height: 51px;
  }
}
@media (max-width: 767px) {
  .footer-section .newsletter-wrapper .news-letter-content h2 {
    font-size: 29px;
    line-height: 42px;
  }
}
@media (max-width: 576px) {
  .footer-section .newsletter-wrapper .news-letter-content h2 {
    font-size: 22px;
    line-height: 33px;
  }
}
.footer-section .newsletter-wrapper .news-letter-content .form-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px 4px 24px;
  border: 1px solid var(--white-color);
  border-radius: 5px;
  border-radius: 5px;
  min-width: 510px;
  max-width: 510px;
  height: 60px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .footer-section .newsletter-wrapper .news-letter-content .form-inner {
    min-width: 460px;
    max-width: 460px;
  }
}
@media (max-width: 1399px) {
  .footer-section .newsletter-wrapper .news-letter-content .form-inner {
    min-width: 410px;
    max-width: 410px;
  }
}
@media (max-width: 991px) {
  .footer-section .newsletter-wrapper .news-letter-content .form-inner {
    height: 50px;
  }
}
@media (max-width: 576px) {
  .footer-section .newsletter-wrapper .news-letter-content .form-inner {
    min-width: unset;
    width: 100%;
  }
}
.footer-section .newsletter-wrapper .news-letter-content .form-inner input {
  background: transparent;
  height: unset;
  border: unset;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-color);
}
.footer-section .newsletter-wrapper .news-letter-content .form-inner input::-moz-placeholder {
  color: rgba(var(--white-color-opc), 0.4);
}
.footer-section .newsletter-wrapper .news-letter-content .form-inner input::placeholder {
  color: rgba(var(--white-color-opc), 0.4);
}
.footer-section .newsletter-wrapper .news-letter-content .form-inner button {
  min-width: 36px;
  max-width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.footer-section .newsletter-wrapper .news-letter-content .form-inner button svg {
  fill: var(--white-color);
  transition: 0.5s;
}
.footer-section .newsletter-wrapper .news-letter-content .form-inner button:hover {
  background-color: var(--white-color);
}
.footer-section .newsletter-wrapper .news-letter-content .form-inner button:hover svg {
  fill: var(--black-color);
}
.footer-section .footer-menu {
  margin-bottom: 110px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-section .footer-menu {
    margin-bottom: 90px;
  }
}
@media (max-width: 991px) {
  .footer-section .footer-menu {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .footer-section .footer-menu {
    margin-bottom: 70px;
  }
}
.footer-section .footer-menu .footer-widget .widget-title {
  margin-bottom: 25px;
}
.footer-section .footer-menu .footer-widget .widget-title h2,
.footer-section .footer-menu .footer-widget .widget-title h3,
.footer-section .footer-menu .footer-widget .widget-title h4,
.footer-section .footer-menu .footer-widget .widget-title h5 {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 10px;
}
.footer-section .footer-menu .footer-widget .widget-title h2::after,
.footer-section .footer-menu .footer-widget .widget-title h3::after,
.footer-section .footer-menu .footer-widget .widget-title h4::after,
.footer-section .footer-menu .footer-widget .widget-title h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 85px;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90.01deg, #010ED0 0.01%, rgba(1, 14, 208, 0) 102.8%);
}
@media (max-width: 1199px) {
  .footer-section .footer-menu .footer-widget .widget-title h2,
  .footer-section .footer-menu .footer-widget .widget-title h3,
  .footer-section .footer-menu .footer-widget .widget-title h4,
  .footer-section .footer-menu .footer-widget .widget-title h5 {
    font-size: 23px;
  }
}
.footer-section .footer-menu .footer-widget .widget-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-section .footer-menu .footer-widget .widget-list li {
  margin-bottom: 22px;
  line-height: 1;
  transition: 0.5s;
  position: relative;
}
@media (max-width: 991px) {
  .footer-section .footer-menu .footer-widget .widget-list li {
    margin-bottom: 17px;
  }
}
.footer-section .footer-menu .footer-widget .widget-list li:last-child {
  margin-bottom: 0;
}
.footer-section .footer-menu .footer-widget .widget-list li a {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.5s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-section .footer-menu .footer-widget .widget-list li a {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .footer-section .footer-menu .footer-widget .widget-list li a {
    font-size: 15px;
  }
}
.footer-section .footer-menu .footer-widget .widget-list li a svg {
  fill: var(--primary-color1);
  opacity: 0;
  transition: 0.5s;
}
.footer-section .footer-menu .footer-widget .widget-list li a:hover {
  color: var(--primary-color1);
}
.footer-section .footer-menu .footer-widget .widget-list li a:hover svg {
  opacity: 1;
}
.footer-section .contact-area-and-logo {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 35px;
}
@media (max-width: 767px) {
  .footer-section .contact-area-and-logo {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.footer-section .contact-area-and-logo li .single-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-section .contact-area-and-logo li .single-contact {
    gap: 8px;
  }
}
.footer-section .contact-area-and-logo li .single-contact .icon svg {
  fill: none;
  stroke: var(--primary-color1);
}
@media (max-width: 576px) {
  .footer-section .contact-area-and-logo li .single-contact .icon svg {
    width: 27px;
  }
}
.footer-section .contact-area-and-logo li .single-contact .content {
  position: relative;
  line-height: 1;
  text-align: start;
}
.footer-section .contact-area-and-logo li .single-contact .content span {
  color: var(--primary-color1);
  font-family: var(--font-poppins);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
  display: inline-block;
}
.footer-section .contact-area-and-logo li .single-contact .content h2,
.footer-section .contact-area-and-logo li .single-contact .content h3,
.footer-section .contact-area-and-logo li .single-contact .content h4 {
  margin-bottom: 0;
  line-height: 1;
}
.footer-section .contact-area-and-logo li .single-contact .content h2 a,
.footer-section .contact-area-and-logo li .single-contact .content h3 a,
.footer-section .contact-area-and-logo li .single-contact .content h4 a {
  color: rgba(var(--title-color-opc), 0.7);
  font-family: var(--font-poppins);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  transition: 0.5s;
}
@media (max-width: 1199px) {
  .footer-section .contact-area-and-logo li .single-contact .content h2 a,
  .footer-section .contact-area-and-logo li .single-contact .content h3 a,
  .footer-section .contact-area-and-logo li .single-contact .content h4 a {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .footer-section .contact-area-and-logo li .single-contact .content h2 a,
  .footer-section .contact-area-and-logo li .single-contact .content h3 a,
  .footer-section .contact-area-and-logo li .single-contact .content h4 a {
    font-size: 15px;
  }
}
.footer-section .contact-area-and-logo li .single-contact .content h2 a:hover,
.footer-section .contact-area-and-logo li .single-contact .content h3 a:hover,
.footer-section .contact-area-and-logo li .single-contact .content h4 a:hover {
  color: var(--primary-color1);
}
@media (max-width: 991px) {
  .footer-section .contact-area-and-logo li img {
    width: 120px;
  }
}
@media (max-width: 576px) {
  .footer-section .contact-area-and-logo li img {
    width: 105px;
  }
}
.footer-section .footer-bottom-wrap {
  padding: 30px 0;
  border-top: 1px solid rgba(var(--title-color-opc), 0.1);
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-section .footer-bottom-wrap {
    padding: 20px 0;
  }
}
.footer-section .footer-bottom-wrap .footer-bottom {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-section .footer-bottom-wrap .footer-bottom {
    align-items: center;
  }
}
@media (max-width: 991px) {
  .footer-section .footer-bottom-wrap .footer-bottom {
    flex-wrap: wrap;
    gap: 11px;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .footer-section .footer-bottom-wrap .footer-bottom {
    gap: 10px;
    row-gap: 15px;
  }
}
.footer-section .footer-bottom-wrap .footer-bottom .copyright-area p {
  color: #3F444B;
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
.footer-section .footer-bottom-wrap .footer-bottom .copyright-area p a {
  color: var(--title-color);
  font-weight: 700;
  line-height: 1;
  transition: all 0.5s;
}
.footer-section .footer-bottom-wrap .footer-bottom .copyright-area p a:hover {
  color: var(--primary-color1);
}
.footer-section .footer-bottom-wrap .footer-bottom ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 45px;
}
@media (max-width: 991px) {
  .footer-section .footer-bottom-wrap .footer-bottom ul {
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .footer-section .footer-bottom-wrap .footer-bottom ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer-section .footer-bottom-wrap .footer-bottom ul li {
  line-height: 1;
}
.footer-section .footer-bottom-wrap .footer-bottom ul li a {
  color: #3F444B;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  display: block;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .footer-section .footer-bottom-wrap .footer-bottom ul li a {
    font-size: 14px;
  }
}
.footer-section .footer-bottom-wrap .footer-bottom ul li a:hover {
  color: var(--primary-color1);
}
.footer-section .footer-vector {
  position: absolute;
  right: 0;
  bottom: 0;
}
.footer-section.style-2 {
  background-image: url(../img/home2/footer-bg-img.png), linear-gradient(180deg, rgb(5, 20, 35) 0%, rgb(5, 20, 35) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 60px;
}
.footer-section.style-2 .footer-menu .text-and-rating-area {
  max-width: 361px;
  width: 100%;
}
@media (max-width: 1199px) {
  .footer-section.style-2 .footer-menu .text-and-rating-area {
    max-width: unset;
  }
}
.footer-section.style-2 .footer-menu .text-and-rating-area .content p {
  color: rgba(var(--white-color-opc), 0.6);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .footer-section.style-2 .footer-menu .text-and-rating-area .content p {
    font-size: 15px;
  }
}
.footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-top: 35px;
}
@media (max-width: 1399px) {
  .footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap {
    gap: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap {
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap {
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 30px;
  }
}
@media (max-width: 576px) {
  .footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap > li .single-rating {
  display: flex;
  gap: 8px;
}
.footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap > li .single-rating .review {
  line-height: 1;
}
.footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap > li .single-rating .review span {
  color: rgba(var(--white-color-opc), 0.6);
  font-family: var(--font-poppins);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  white-space: nowrap;
}
@media (max-width: 1699px) {
  .footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap > li .single-rating .review span {
    font-size: 13px;
  }
}
.footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap > li .single-rating .review img {
  width: 64px;
}
.footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap > li .single-rating .rating {
  line-height: 1;
  margin-top: -1px;
}
.footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap > li .single-rating .rating .star {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 9px;
  line-height: 1;
}
.footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap > li .single-rating .rating .star li i {
  color: #e62415;
  font-size: 12px;
}
.footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap > li .single-rating .rating span {
  color: rgba(var(--white-color-opc), 0.6);
  font-family: var(--font-poppins);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 1699px) {
  .footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap > li .single-rating .rating span {
    font-size: 13px;
  }
}
.footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap > li .single-rating.google .rating .star li i {
  color: #ffc107;
}
.footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap > li {
  position: relative;
}
.footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap > li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  width: 1px;
  height: 35px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap > li::before {
    left: -15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap > li::before {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap > li::before {
    left: -16px;
  }
}
@media (max-width: 767px) {
  .footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap > li::before {
    display: none;
  }
}
.footer-section.style-2 .footer-menu .text-and-rating-area .rating-area-wrap > li:first-child::before {
  display: none;
}
.footer-section.style-2 .footer-menu .text-and-rating-area .social-area {
  padding-top: 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-section.style-2 .footer-menu .text-and-rating-area .social-area {
    padding-top: 40px;
  }
}
@media (max-width: 991px) {
  .footer-section.style-2 .footer-menu .text-and-rating-area .social-area {
    padding-top: 30px;
  }
}
.footer-section.style-2 .footer-menu .text-and-rating-area .social-area h4 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  padding-bottom: 1px;
  border-bottom: 1px solid var(--white-color);
  display: inline-block;
  margin-bottom: 15px;
}
.footer-section.style-2 .footer-menu .text-and-rating-area .social-area .social-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 767px) {
  .footer-section.style-2 .footer-menu .text-and-rating-area .social-area .social-list {
    justify-content: start;
  }
}
.footer-section.style-2 .footer-menu .text-and-rating-area .social-area .social-list li {
  display: block;
  text-align: center;
}
.footer-section.style-2 .footer-menu .text-and-rating-area .social-area .social-list li a i {
  color: rgba(255, 255, 255, 0.5019607843);
  font-size: 18px;
  transition: 0.5s;
}
.footer-section.style-2 .footer-menu .text-and-rating-area .social-area .social-list li:hover a i {
  color: var(--white-color);
}
.footer-section.style-2 .footer-menu .footer-widget .widget-title h5 {
  color: var(--white-color);
}
.footer-section.style-2 .footer-menu .footer-widget .widget-title h5::after {
  background: linear-gradient(90.01deg, #F47418 0.01%, rgba(244, 116, 24, 0) 102.8%);
}
.footer-section.style-2 .footer-menu .footer-widget .menu-container .widget-list li a {
  color: rgba(var(--white-color-opc), 0.6);
}
.footer-section.style-2 .footer-menu .footer-widget .menu-container .widget-list li a svg {
  fill: var(--white-color);
}
.footer-section.style-2 .footer-menu .footer-widget .menu-container .widget-list li a:hover {
  color: var(--white-color);
}
.footer-section.style-2 .contact-area-and-logo-wrapper {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(var(--white-color-opc), 0.1);
  margin-bottom: 110px;
}
@media (max-width: 1399px) {
  .footer-section.style-2 .contact-area-and-logo-wrapper {
    margin-bottom: 100px;
  }
}
@media (max-width: 1199px) {
  .footer-section.style-2 .contact-area-and-logo-wrapper {
    margin-bottom: 90px;
  }
}
@media (max-width: 991px) {
  .footer-section.style-2 .contact-area-and-logo-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .footer-section.style-2 .contact-area-and-logo-wrapper {
    flex-wrap: wrap;
    gap: 25px;
  }
}
@media (max-width: 576px) {
  .footer-section.style-2 .contact-area-and-logo-wrapper {
    margin-bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .footer-section.style-2 .contact-area-and-logo-wrapper a {
    width: 120px;
  }
}
@media (max-width: 767px) {
  .footer-section.style-2 .contact-area-and-logo-wrapper a {
    width: 100px;
  }
}
.footer-section.style-2 .contact-area-and-logo-wrapper .contact-area-and-logo {
  display: flex;
  gap: 110px;
  padding-bottom: 0;
}
@media (max-width: 1399px) {
  .footer-section.style-2 .contact-area-and-logo-wrapper .contact-area-and-logo {
    gap: 90px;
  }
}
@media (max-width: 991px) {
  .footer-section.style-2 .contact-area-and-logo-wrapper .contact-area-and-logo {
    gap: 40px;
  }
}
.footer-section.style-2 .contact-area-and-logo-wrapper .contact-area-and-logo li .single-contact svg {
  stroke: var(--white-color);
}
.footer-section.style-2 .contact-area-and-logo-wrapper .contact-area-and-logo li .single-contact .content span {
  color: var(--white-color);
}
.footer-section.style-2 .contact-area-and-logo-wrapper .contact-area-and-logo li .single-contact .content a {
  font-family: var(--font-montserrat);
  color: rgba(var(--white-color-opc), 0.4);
  transition: all 0.5s;
}
.footer-section.style-2 .contact-area-and-logo-wrapper .contact-area-and-logo li .single-contact .content a:hover {
  color: var(--white-color);
}
.footer-section.style-2 .footer-bottom-wrap {
  border-top: 1px solid rgba(var(--white-color-opc), 0.1);
}
.footer-section.style-2 .footer-bottom-wrap .footer-bottom .copyright-area p {
  color: rgba(var(--white-color-opc), 0.6);
}
.footer-section.style-2 .footer-bottom-wrap .footer-bottom .copyright-area p a {
  color: var(--white-color);
  transition: all 0.5s;
}
.footer-section.style-2 .footer-bottom-wrap .footer-bottom .copyright-area p a:hover {
  color: var(--primary-color1);
}
.footer-section.style-2 .footer-bottom-wrap .footer-bottom ul li a {
  font-family: var(--font-montserrat);
  color: var(--white-color);
  transition: all 0.5s;
}
.footer-section.style-2 .footer-bottom-wrap .footer-bottom ul li a:hover {
  color: var(--primary-color1);
}
.footer-section.style-3 {
  background-image: url(../img/home3/footer-bg-img.png), linear-gradient(180deg, rgb(235, 245, 255) 0%, rgb(235, 245, 255) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 110px;
}
@media (max-width: 1199px) {
  .footer-section.style-3 {
    padding-top: 90px;
  }
}
@media (max-width: 767px) {
  .footer-section.style-3 {
    padding-top: 70px;
  }
}
.footer-section.style-3 .footer-menu .logo-and-social-wrap {
  max-width: 361px;
  width: 100%;
}
@media (max-width: 1199px) {
  .footer-section.style-3 .footer-menu .logo-and-social-wrap {
    max-width: unset;
  }
}
.footer-section.style-3 .footer-menu .logo-and-social-wrap .footer-logo {
  display: block;
  margin-bottom: 20px;
}
.footer-section.style-3 .footer-menu .logo-and-social-wrap p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
.footer-section.style-3 .footer-menu .logo-and-social-wrap .social-area {
  padding-top: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-section.style-3 .footer-menu .logo-and-social-wrap .social-area {
    padding-top: 40px;
  }
}
@media (max-width: 991px) {
  .footer-section.style-3 .footer-menu .logo-and-social-wrap .social-area {
    padding-top: 30px;
  }
}
.footer-section.style-3 .footer-menu .logo-and-social-wrap .social-area h2 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  padding-bottom: 1px;
  border-bottom: 1px solid var(--title-color);
  display: inline-block;
  margin-bottom: 15px;
}
.footer-section.style-3 .footer-menu .logo-and-social-wrap .social-area .social-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 767px) {
  .footer-section.style-3 .footer-menu .logo-and-social-wrap .social-area .social-list {
    justify-content: start;
  }
}
.footer-section.style-3 .footer-menu .logo-and-social-wrap .social-area .social-list li {
  display: block;
  text-align: center;
}
.footer-section.style-3 .footer-menu .logo-and-social-wrap .social-area .social-list li a i {
  color: rgba(var(--title-color-opc), 0.5);
  font-size: 18px;
  transition: 0.5s;
}
.footer-section.style-3 .footer-menu .logo-and-social-wrap .social-area .social-list li:hover a i {
  color: var(--primary-color3);
}
.footer-section.style-3 .footer-menu .footer-widget .contact-area {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-section.style-3 .footer-menu .footer-widget .contact-area li {
  margin-bottom: 42px;
}
@media (max-width: 1399px) {
  .footer-section.style-3 .footer-menu .footer-widget .contact-area li {
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .footer-section.style-3 .footer-menu .footer-widget .contact-area li {
    margin-bottom: 20px;
  }
}
.footer-section.style-3 .footer-menu .footer-widget .contact-area li .single-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-section.style-3 .footer-menu .footer-widget .contact-area li .single-contact {
    gap: 8px;
  }
}
.footer-section.style-3 .footer-menu .footer-widget .contact-area li .single-contact .icon svg {
  fill: var(--primary-color3);
}
@media (max-width: 576px) {
  .footer-section.style-3 .footer-menu .footer-widget .contact-area li .single-contact .icon svg {
    width: 27px;
  }
}
.footer-section.style-3 .footer-menu .footer-widget .contact-area li .single-contact .content {
  position: relative;
  line-height: 1;
  text-align: start;
}
.footer-section.style-3 .footer-menu .footer-widget .contact-area li .single-contact .content span {
  color: var(--primary-color3);
  font-family: var(--font-poppins);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
  display: inline-block;
}
.footer-section.style-3 .footer-menu .footer-widget .contact-area li .single-contact .content h4 {
  margin-bottom: 0;
  line-height: 1;
}
.footer-section.style-3 .footer-menu .footer-widget .contact-area li .single-contact .content h4 a {
  color: #3F444B;
  font-family: var(--font-poppins);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  transition: 0.5s;
}
@media (max-width: 1199px) {
  .footer-section.style-3 .footer-menu .footer-widget .contact-area li .single-contact .content h4 a {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .footer-section.style-3 .footer-menu .footer-widget .contact-area li .single-contact .content h4 a {
    font-size: 15px;
  }
}
.footer-section.style-3 .footer-menu .footer-widget .contact-area li .single-contact .content h4 a:hover {
  color: var(--primary-color3);
}
.footer-section.style-3 .footer-menu .footer-widget .contact-area li:last-child {
  margin-bottom: 0;
}
.footer-section.style-3 .footer-bottom-wrap .footer-bottom ul li a {
  font-weight: 600;
}
.footer-section.style-4 {
  background-image: url(../img/home4/home4-footer-bg-img.png), linear-gradient(180deg, rgb(245, 238, 233) 0%, rgb(245, 238, 233) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: unset;
}
.footer-section.style-4 .contact-area-and-logo-wrapper {
  padding: 50px 0;
  border-bottom: 1px solid rgba(var(--title-color-opc), 0.1);
}
.footer-section.style-4 .contact-area-and-logo-wrapper .contact-area-and-logo {
  padding-bottom: unset;
}
.footer-section.style-4 .contact-area-and-logo-wrapper .contact-area-and-logo .single-contact .icon svg {
  fill: var(--primary-color1);
  stroke: unset;
}
.footer-section.style-4 .contact-area-and-logo-wrapper .contact-area-and-logo .single-contact .content h2 {
  color: var(--paragraph-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
}
.footer-section.style-4 .footer-menu {
  padding-top: 100px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-section.style-4 .footer-menu {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .footer-section.style-4 .footer-menu {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .footer-section.style-4 .footer-menu {
    padding-top: 70px;
  }
}
.footer-section.style-4 .footer-menu .logo-and-download-wrap {
  max-width: 361px;
  width: 100%;
}
@media (max-width: 1199px) {
  .footer-section.style-4 .footer-menu .logo-and-download-wrap {
    max-width: unset;
  }
}
.footer-section.style-4 .footer-menu .logo-and-download-wrap .footer-logo {
  display: block;
  margin-bottom: 20px;
}
.footer-section.style-4 .footer-menu .logo-and-download-wrap p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .footer-section.style-4 .footer-menu .logo-and-download-wrap p {
    margin-bottom: 35px;
  }
}
@media (max-width: 576px) {
  .footer-section.style-4 .footer-menu .logo-and-download-wrap p {
    font-size: 15px;
  }
}
.footer-section.style-4 .footer-menu .logo-and-download-wrap .download-grp {
  display: flex;
  gap: 35px;
}
.footer-section.style-4 .footer-menu .footer-widget .widget-title h5::after {
  background: linear-gradient(90.01deg, #F47418 0.01%, rgba(244, 116, 24, 0) 102.8%);
}
.footer-section.style-4 .footer-menu .footer-widget .widget-list li a {
  font-size: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-section.style-4 .footer-bottom-wrap .footer-bottom .copyright-area p {
    font-size: 13px;
  }
}
.footer-section.style-4 .footer-bottom-wrap .footer-bottom .copyright-area p a {
  color: var(--paragraph-color);
  transition: all 0.5s;
}
.footer-section.style-4 .footer-bottom-wrap .footer-bottom .copyright-area p a:hover {
  color: var(--primary-color1);
}
.footer-section.style-4 .footer-bottom-wrap .footer-bottom ul li a {
  font-weight: 600;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-section.style-4 .footer-bottom-wrap .footer-bottom ul li a {
    font-size: 13px;
  }
}
.footer-section.style-5 {
  background: url(../img/home5/home5-footer-bg-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: unset;
  background-position: bottom center;
}
.footer-section.style-5 .contact-area-and-logo-wrapper .contact-area-and-logo {
  align-items: center;
  border-bottom: 1px solid rgba(var(--white-color-opc), 0.1);
}
.footer-section.style-5 .contact-area-and-logo-wrapper .contact-area-and-logo li .logo img {
  max-width: 212px;
  min-width: 212px;
  max-height: 122px;
}
@media (max-width: 1199px) {
  .footer-section.style-5 .contact-area-and-logo-wrapper .contact-area-and-logo li .logo img {
    max-width: 192px;
    min-width: 192px;
    max-height: 102px;
  }
}
.footer-section.style-5 .contact-area-and-logo-wrapper .contact-area-and-logo li .single-contact .icon svg {
  fill: var(--white-color);
  stroke: unset;
}
.footer-section.style-5 .contact-area-and-logo-wrapper .contact-area-and-logo li .single-contact .content span {
  color: var(--white-color);
}
.footer-section.style-5 .contact-area-and-logo-wrapper .contact-area-and-logo li .single-contact .content h2 {
  color: rgba(var(--white-color-opc), 0.7);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 18px;
}
.footer-section.style-5 .contact-area-and-logo-wrapper .contact-area-and-logo li .single-contact .content h2 a {
  color: var(--white-color);
}
.footer-section.style-5 .footer-menu {
  padding-top: 88px;
}
@media (max-width: 1199px) {
  .footer-section.style-5 .footer-menu {
    padding-top: 70px;
  }
}
@media (max-width: 767px) {
  .footer-section.style-5 .footer-menu {
    padding-top: 60px;
  }
}
.footer-section.style-5 .footer-menu .footer-widget .widget-title h2 {
  color: var(--white-color);
  font-size: 22px;
  font-weight: 600;
}
.footer-section.style-5 .footer-menu .footer-widget .widget-list li a {
  color: rgba(var(--white-color-opc), 0.7);
  font-size: 16px;
}
.footer-section.style-5 .footer-menu .footer-widget .widget-list li a svg {
  fill: var(--white-color);
}
.footer-section.style-5 .footer-menu .footer-widget .address-list {
  padding: 0;
  margin: 0;
  list-style: none;
  max-width: 316px;
  width: 100%;
}
@media (max-width: 991px) {
  .footer-section.style-5 .footer-menu .footer-widget .address-list {
    max-width: unset;
    display: flex;
  }
}
@media (max-width: 767px) {
  .footer-section.style-5 .footer-menu .footer-widget .address-list {
    flex-wrap: wrap;
  }
}
.footer-section.style-5 .footer-menu .footer-widget .address-list li {
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .footer-section.style-5 .footer-menu .footer-widget .address-list li {
    margin-bottom: 30px;
  }
}
.footer-section.style-5 .footer-menu .footer-widget .address-list li span {
  display: block;
  color: #3067FF;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  text-decoration: underline;
  margin-bottom: 15px;
}
.footer-section.style-5 .footer-menu .footer-widget .address-list li a {
  color: rgba(var(--white-color-opc), 0.7);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 17px;
  line-height: 28px;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .footer-section.style-5 .footer-menu .footer-widget .address-list li a {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .footer-section.style-5 .footer-menu .footer-widget .address-list li a {
    font-size: 15px;
  }
}
.footer-section.style-5 .footer-menu .footer-widget .address-list li a:hover {
  color: var(--white-color);
}
.footer-section.style-5 .footer-menu .footer-widget .address-list li:last-child {
  margin-bottom: 0;
}
.footer-section.style-5 .footer-bottom-wrap {
  border: unset;
  padding: unset;
}
.footer-section.style-5 .footer-bottom-wrap .footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(var(--white-color-opc), 0.1);
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-section.style-5 .footer-bottom-wrap .footer-bottom {
    padding: 15px 0;
  }
}
.footer-section.style-5 .footer-bottom-wrap .footer-bottom .copyright-area p {
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--white-color-opc), 0.6);
}
.footer-section.style-5 .footer-bottom-wrap .footer-bottom .copyright-area p a {
  color: var(--white-color);
}
.footer-section.style-5 .footer-bottom-wrap .footer-bottom .copyright-area p a:hover {
  color: var(--primary-color1);
}
.footer-section.style-5 .footer-bottom-wrap .footer-bottom ul li a {
  color: var(--white-color);
}
.footer-section.style-5 .footer-bottom-wrap .footer-bottom ul li a:hover {
  color: var(--primary-color1);
}
.footer-section.ai-startup-footer .footer-bottom-wrap .footer-bottom ul li a:hover {
  color: var(--primary-color4);
}
.footer-section.ai-startup-footer .footer-bottom-wrap .footer-bottom .copyright-area p a:hover {
  color: var(--primary-color4);
}

/*=====================================
  18. Home2 Banner Section CSS
========================================*/
.home2-banner-section {
  position: relative;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%), url(../img/home2/home2-banner-bg-img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 337px 0 211px 0;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home2-banner-section {
    padding: 300px 0 200px 0;
  }
}
@media (max-width: 1399px) {
  .home2-banner-section {
    padding: 270px 0 170px 0;
  }
}
@media (max-width: 1199px) {
  .home2-banner-section {
    padding: 250px 0 100px 0;
  }
}
@media (max-width: 991px) {
  .home2-banner-section {
    padding: 180px 0 110px 0;
  }
}
@media (max-width: 767px) {
  .home2-banner-section {
    padding: 160px 0 110px 0;
  }
}
@media (max-width: 576px) {
  .home2-banner-section {
    padding: 140px 0 100px 0;
  }
}
.home2-banner-section .banner-content h1 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 70px;
  line-height: 85px;
  margin-bottom: 30px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home2-banner-section .banner-content h1 {
    font-size: 64px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1399px) {
  .home2-banner-section .banner-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 75px;
  }
}
@media (max-width: 1199px) {
  .home2-banner-section .banner-content h1 {
    font-size: 45px;
    line-height: 66px;
  }
}
@media (max-width: 991px) {
  .home2-banner-section .banner-content h1 {
    font-size: 43px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .home2-banner-section .banner-content h1 {
    font-size: 38px;
    line-height: 55px;
  }
}
@media (max-width: 576px) {
  .home2-banner-section .banner-content h1 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 15px;
  }
}
.home2-banner-section .banner-content p {
  color: var(--text-color2);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 45px;
  max-width: 631px;
  width: 100%;
}
@media (max-width: 991px) {
  .home2-banner-section .banner-content p {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .home2-banner-section .banner-content p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .home2-banner-section .banner-content p {
    font-size: 15px;
    line-height: 29px;
    margin-bottom: 35px;
  }
}
.home2-banner-section .banner-content .btn-grp {
  display: flex;
  gap: 50px;
}
@media (max-width: 767px) {
  .home2-banner-section .banner-content .btn-grp {
    gap: 25px;
  }
}
@media (max-width: 576px) {
  .home2-banner-section .banner-content .btn-grp {
    flex-wrap: wrap;
  }
}
.home2-banner-section .banner-content .btn-grp .primary-btn1.two {
  background-color: #DADCFF;
  padding: 20px 27px;
}
@media (max-width: 576px) {
  .home2-banner-section .banner-content .btn-grp .primary-btn1.two {
    padding: 18px 33px;
  }
}
.home2-banner-section .banner-content .btn-grp .primary-btn1.two span {
  color: var(--primary-color1);
  background-image: linear-gradient(0deg, var(--primary-color1) 0%, var(--primary-color1) 100%);
}
.home2-banner-section .banner-content .btn-grp .primary-btn1.two span svg {
  fill: none;
  stroke: var(--primary-color1);
}
.home2-banner-section .banner-content .btn-grp .primary-btn1.two span::after {
  color: var(--primary-color1);
}

/*=====================================
  19. Home2 Service Section CSS
========================================*/
.home2-service-section .section-title-and-btn {
  max-width: 448px;
  width: 100%;
}
@media (max-width: 991px) {
  .home2-service-section .section-title-and-btn {
    max-width: unset;
  }
}
.home2-service-section .service-section-card {
  padding: 40px 20px;
  border-top: 1px solid rgba(var(--title-color-opc), 0.15);
  position: relative;
  transition: all 0.6s;
}
@media (max-width: 767px) {
  .home2-service-section .service-section-card {
    padding: 35px 0;
  }
}
.home2-service-section .service-section-card .service-section-content {
  display: flex;
  gap: 62px;
}
@media (max-width: 1399px) {
  .home2-service-section .service-section-card .service-section-content {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .home2-service-section .service-section-card .service-section-content {
    flex-wrap: wrap;
  }
}
.home2-service-section .service-section-card .service-section-content span {
  color: var(--primary-color1);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 576px) {
  .home2-service-section .service-section-card .service-section-content span {
    font-size: 16px;
  }
}
.home2-service-section .service-section-card .service-section-content .service-content-and-img {
  display: flex;
  gap: 22px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(var(--title-color-opc), 0.15);
}
@media (max-width: 1399px) {
  .home2-service-section .service-section-card .service-section-content .service-content-and-img {
    gap: 12px;
  }
}
@media (max-width: 1199px) {
  .home2-service-section .service-section-card .service-section-content .service-content-and-img {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .home2-service-section .service-section-card .service-section-content .service-content-and-img {
    flex-wrap: wrap;
  }
}
.home2-service-section .service-section-card .service-section-content .service-content-and-img .service-content > svg {
  fill: rgba(114, 114, 114, 0.7);
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .home2-service-section .service-section-card .service-section-content .service-content-and-img .service-content > svg {
    width: 48px;
  }
}
@media (max-width: 576px) {
  .home2-service-section .service-section-card .service-section-content .service-content-and-img .service-content > svg {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }
}
.home2-service-section .service-section-card .service-section-content .service-content-and-img .service-content h3 {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .home2-service-section .service-section-card .service-section-content .service-content-and-img .service-content h3 {
    margin-bottom: 15px;
  }
}
.home2-service-section .service-section-card .service-section-content .service-content-and-img .service-content h3 a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.3;
  background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
  background-repeat: no-repeat;
  background-size: 0px 1.5px;
  background-position: right 95%;
  transition: background-size 0.75s;
}
@media (max-width: 1399px) {
  .home2-service-section .service-section-card .service-section-content .service-content-and-img .service-content h3 a {
    font-size: 26px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .home2-service-section .service-section-card .service-section-content .service-content-and-img .service-content h3 a {
    font-size: 25px;
  }
}
@media (max-width: 576px) {
  .home2-service-section .service-section-card .service-section-content .service-content-and-img .service-content h3 a {
    font-size: 20px;
  }
}
.home2-service-section .service-section-card .service-section-content .service-content-and-img .service-content h3 a:hover {
  background-size: 100% 1.5px;
  background-position: 0 95%;
}
.home2-service-section .service-section-card .service-section-content .service-content-and-img .service-content .primary-btn1 span {
  font-family: var(--font-poppins);
  font-size: 13px;
  color: rgba(var(--primary-color1-opc), 0.5);
}
.home2-service-section .service-section-card .service-section-content .service-content-and-img .service-content .primary-btn1 span svg {
  fill: none;
  stroke: rgba(var(--primary-color1-opc), 0.5);
}
.home2-service-section .service-section-card .service-section-content .service-content-and-img .service-img-area img {
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  min-height: 197px;
}
.home2-service-section .service-section-card .service-feature-wrapper {
  margin-top: 20px;
  padding-left: 84px;
}
@media (max-width: 767px) {
  .home2-service-section .service-section-card .service-feature-wrapper {
    padding-left: 0;
  }
}
.home2-service-section .service-section-card .service-feature-wrapper .service-wrap .marquee {
  display: flex;
  gap: 20px;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.home2-service-section .service-section-card .service-feature-wrapper .service-wrap .marquee .marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  min-width: 100%;
  animation: scroll-x-reverse 30s linear infinite;
}
.home2-service-section .service-section-card .service-feature-wrapper .service-wrap .marquee .marquee__group span {
  color: rgba(var(--title-color-opc), 0.6);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  border: 1px solid rgba(var(--title-color-opc), 0.6);
  border-radius: 50px;
  padding: 8px 17px;
}
@keyframes scroll-x-reverse {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.home2-service-section .service-section-card:hover {
  background-color: #E3FAF6;
}
.home2-service-section .service-section-card:last-child {
  border-bottom: 1px solid rgba(var(--title-color-opc), 0.15);
}

/*=====================================
  20. Home2 Project Section CSS
========================================*/
.home2-project-section .project-card {
  position: relative;
}
.home2-project-section .project-card img {
  border-radius: 8px;
  min-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 576px) {
  .home2-project-section .project-card img {
    min-height: 350px;
  }
}
.home2-project-section .project-card .project-content-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.8) 91.62%);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 10px 40px 30px 40px;
  z-index: 9;
  border-radius: 8px;
}
@media (max-width: 1399px) {
  .home2-project-section .project-card .project-content-wrap {
    padding: 10px 25px 30px 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home2-project-section .project-card .project-content-wrap {
    padding: 10px 20px 30px 20px;
  }
}
@media (max-width: 991px) {
  .home2-project-section .project-card .project-content-wrap {
    padding: 10px 15px 30px 15px;
  }
}
@media (max-width: 576px) {
  .home2-project-section .project-card .project-content-wrap {
    padding: 10px 15px 20px 15px;
  }
}
.home2-project-section .project-card .project-content-wrap > span {
  color: rgba(var(--white-color-opc), 0.7);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  display: block;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .home2-project-section .project-card .project-content-wrap > span {
    font-size: 13px;
  }
}
.home2-project-section .project-card .project-content-wrap h3,
.home2-project-section .project-card .project-content-wrap h2 {
  margin-bottom: 20px;
  line-height: 1;
}
@media (max-width: 576px) {
  .home2-project-section .project-card .project-content-wrap h3,
  .home2-project-section .project-card .project-content-wrap h2 {
    margin-bottom: 15px;
  }
}
.home2-project-section .project-card .project-content-wrap h3 a,
.home2-project-section .project-card .project-content-wrap h2 a {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 98%);
  background-size: 0px 1px;
  background-repeat: no-repeat;
  background-position: right 90%;
  transition: background-size 0.75s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home2-project-section .project-card .project-content-wrap h3 a,
  .home2-project-section .project-card .project-content-wrap h2 a {
    font-size: 26px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home2-project-section .project-card .project-content-wrap h3 a,
  .home2-project-section .project-card .project-content-wrap h2 a {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .home2-project-section .project-card .project-content-wrap h3 a,
  .home2-project-section .project-card .project-content-wrap h2 a {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .home2-project-section .project-card .project-content-wrap h3 a,
  .home2-project-section .project-card .project-content-wrap h2 a {
    font-size: 19px;
    line-height: 1.3;
  }
}
.home2-project-section .project-card .project-content-wrap h3 a:hover,
.home2-project-section .project-card .project-content-wrap h2 a:hover {
  background-size: 100% 1px;
  background-position: 0% 90%;
}
.home2-project-section .project-card .project-content-wrap .project-content {
  position: relative;
  overflow: hidden;
}
.home2-project-section .project-card .project-content-wrap .project-content .tag-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.home2-project-section .project-card .project-content-wrap .project-content .tag-list li {
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  display: inline-block;
  color: var(--white-color);
  font-family: var(--font-poppins);
  font-size: 12px;
  font-weight: 400;
  padding: 5px 15px;
  line-height: 1;
  transition: 0.5s;
}
@media (max-width: 576px) {
  .home2-project-section .project-card .project-content-wrap .project-content .tag-list li {
    font-size: 10px;
    padding: 5px 12px;
  }
}
.home2-project-section .project-card .project-content-wrap .project-content .primary-btn1 {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.home2-project-section .project-card .project-content-wrap .project-content .primary-btn1 span {
  background-image: linear-gradient(0deg, var(--white-color) 0%, var(--white-color) 100%);
  color: var(--white-color);
}
.home2-project-section .project-card .project-content-wrap .project-content .primary-btn1 span::after {
  color: var(--pwhite--white-color);
}
.home2-project-section .project-card .project-content-wrap .project-content .primary-btn1 span svg {
  fill: none;
  stroke: var(--white-color);
}
.home2-project-section .project-card:hover .project-content .tag-list {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}
.home2-project-section .project-card:hover .project-content .primary-btn1 {
  opacity: 1;
  visibility: visible;
}
.home2-project-section .project-card.two img {
  min-height: 370px;
  max-height: 370px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 576px) {
  .home2-project-section .project-card.two img {
    min-height: 350px;
    max-height: 350px;
  }
}
.home2-project-section.two .section-title span {
  justify-content: start;
}
@media (max-width: 576px) {
  .home2-project-section.two .section-title h2 {
    font-size: 26px;
  }
}
.home2-project-section.two .project-card img {
  min-height: unset;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 1199px) {
  .home2-project-section.two .project-card img {
    min-height: 350px;
    max-height: 350px;
  }
}
.home2-project-section.two .project-card .project-content-wrap {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 26.89%, rgba(0, 0, 0, 0.8) 84.45%);
}
.home2-project-section.two .project-card .project-content-wrap h3 {
  line-height: 1.4;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .home2-project-section.two .project-card .project-content-wrap h3 {
    line-height: 1.3;
  }
}
.home2-project-section.two .project-card .project-content-wrap h3 a {
  line-height: 1.4;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home2-project-section.two .project-card .project-content-wrap h3 a {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .home2-project-section.two .project-card .project-content-wrap h3 a {
    font-size: 27px;
  }
}
@media (max-width: 767px) {
  .home2-project-section.two .project-card .project-content-wrap h3 a {
    font-size: 25px;
    line-height: 1.3;
  }
}
@media (max-width: 576px) {
  .home2-project-section.two .project-card .project-content-wrap h3 a {
    font-size: 22px;
  }
}
.home2-project-section.two .project-card .project-content-wrap .project-content .tag-list li {
  color: var(--primary-color5);
  border-color: var(--primary-color5);
}
@media (max-width: 576px) {
  .home2-project-section.three .project-card .project-content-wrap {
    padding: 20px 10px;
  }
}
@media (max-width: 1199px) {
  .home2-project-section.three .project-card .project-content-wrap h3 {
    margin-bottom: 20px;
  }
}
.home2-project-section.three .project-card .project-content-wrap h3 a {
  line-height: 1.3;
}
@media (max-width: 1199px) {
  .home2-project-section.three .project-card .project-content-wrap h3 a {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .home2-project-section.three .project-card .project-content-wrap h3 a {
    font-size: 25px;
  }
}
@media (max-width: 576px) {
  .home2-project-section.three .project-card .project-content-wrap h3 a {
    font-size: 20px;
  }
}
.home2-project-section.three .project-card .project-content-wrap > span {
  font-size: 13px;
}
@media (max-width: 576px) {
  .home2-project-section.three .project-card .project-content-wrap .project-content .tag-list li {
    padding: 5px 13px;
    font-size: 10px;
  }
}
.home2-project-section.three .project-card img {
  min-height: unset;
}
@media (max-width: 576px) {
  .home2-project-section.four .project-card .project-content-wrap {
    padding: 20px 10px;
  }
}
@media (max-width: 1199px) {
  .home2-project-section.four .project-card .project-content-wrap h2 {
    margin-bottom: 20px;
  }
}
.home2-project-section.four .project-card .project-content-wrap h2 a {
  line-height: 1.4;
  font-size: 28px;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .home2-project-section.four .project-card .project-content-wrap h2 a {
    font-size: 26px;
  }
}
@media (max-width: 1199px) {
  .home2-project-section.four .project-card .project-content-wrap h2 a {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .home2-project-section.four .project-card .project-content-wrap h2 a {
    font-size: 25px;
  }
}
@media (max-width: 576px) {
  .home2-project-section.four .project-card .project-content-wrap h2 a {
    font-size: 20px;
  }
}
.home2-project-section.four .project-card .project-content-wrap > span {
  font-size: 12px;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .home2-project-section.four .project-card .project-content-wrap .project-content .tag-list li {
    padding: 5px 13px;
    font-size: 10px;
  }
}
.home2-project-section.four .project-card img {
  min-height: 585px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1199px) {
  .home2-project-section.four .project-card img {
    min-height: 560px;
  }
}
@media (max-width: 991px) {
  .home2-project-section.four .project-card img {
    min-height: 450px;
    max-height: 450px;
  }
}
.home2-project-section.four .project-card.two img {
  min-height: 366px;
}

/*=====================================
  21. Home2 Case Study Section CSS
========================================*/
.home2-case-study-section .section-title-and-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .home2-case-study-section .section-title-and-btn {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }
}
.home2-case-study-section .section-title-and-btn .section-title {
  max-width: 536px;
  width: 100%;
}
@media (max-width: 767px) {
  .home2-case-study-section .section-title-and-btn .section-title {
    max-width: unset;
    text-align: center;
  }
}
.home2-case-study-section .pagination-area .pagination {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: unset;
  z-index: 9;
  bottom: unset;
  gap: 8px;
}
@media (max-width: 576px) {
  .home2-case-study-section .pagination-area .pagination {
    justify-content: center;
    gap: 6px;
  }
}
.home2-case-study-section .pagination-area .pagination .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid rgba(63, 68, 75, 0.6);
  opacity: 1;
  position: relative;
}
.home2-case-study-section .pagination-area .pagination .swiper-pagination-bullet::after {
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: rgba(var(--primary-color2-opc), 0.4);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home2-case-study-section .pagination-area .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--primary-color2);
  height: 16px;
  width: 16px;
}
.home2-case-study-section .pagination-area .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color2);
}

/*=====================================
  22. Home2 Team Section CSS
========================================*/
.home2-team-section .section-title-and-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home2-team-section .section-title-and-navigation {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.home2-team-section .section-title-and-navigation .slider-btn-grp .slider-btn {
  border: 1px solid rgba(var(--black-color-opc), 0.3);
}
.home2-team-section .section-title-and-navigation .slider-btn-grp .slider-btn svg {
  transition: all 0.5s;
  fill: rgba(var(--title-color-opc), 0.4);
}
.home2-team-section .section-title-and-navigation .slider-btn-grp .slider-btn:hover {
  border: var(--primary-color2);
}
.home2-team-section .section-title-and-navigation .slider-btn-grp .slider-btn:hover svg {
  fill: var(--white-color);
}
.home2-team-section .section-title-and-navigation .section-title {
  max-width: 536px;
  width: 100%;
}
@media (max-width: 767px) {
  .home2-team-section .section-title-and-navigation .section-title {
    max-width: unset;
  }
}
.home2-team-section .team-card .team-card-img {
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}
.home2-team-section .team-card .team-card-img img {
  border-radius: 8px;
  transition: all 0.5s ease-out;
}
.home2-team-section .team-card .team-card-img .team-card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 23.5%, #000000 94.51%);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 0 30px 30px 30px;
  z-index: 1;
  border-radius: 8px;
}
.home2-team-section .team-card .team-card-img .team-card-content h3,
.home2-team-section .team-card .team-card-img .team-card-content h2 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .home2-team-section .team-card .team-card-img .team-card-content h3,
  .home2-team-section .team-card .team-card-img .team-card-content h2 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .home2-team-section .team-card .team-card-img .team-card-content h3,
  .home2-team-section .team-card .team-card-img .team-card-content h2 {
    font-size: 18px;
  }
}
.home2-team-section .team-card .team-card-img .team-card-content span {
  color: rgba(var(--white-color-opc), 0.5);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  display: block;
}
.home2-team-section .team-card .team-card-img .social-list {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--white-color);
  border-radius: 0 0 0 20px;
  line-height: 1;
  padding: 10px 10px 10px 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  margin: 0 auto;
  transition: 0.5s ease-in-out;
}
@media (max-width: 1199px) {
  .home2-team-section .team-card .team-card-img .social-list {
    padding: 7px;
    border-radius: 0 0 0 15px;
  }
}
.home2-team-section .team-card .team-card-img .social-list li {
  position: relative;
}
.home2-team-section .team-card .team-card-img .social-list li span {
  border: 1px solid rgba(var(--primary-color2-opc), 0.5);
  border-radius: 50px;
  color: var(--primary-color2);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: var(--primary-color2);
  display: block;
  padding: 6px 11px;
  position: relative;
}
.home2-team-section .team-card .team-card-img .social-list li span::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 28px;
  background-color: var(--primary-color2);
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .home2-team-section .team-card .team-card-img .social-list li span {
    font-size: 13px;
    padding: 5px 6px;
  }
}
.home2-team-section .team-card .team-card-img .social-list li a {
  min-width: 28px;
  max-width: 28px;
  height: 28px;
  border: 1px solid rgba(var(--primary-color2-opc), 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home2-team-section .team-card .team-card-img .social-list li a svg {
  fill: var(--primary-color2);
}
.home2-team-section .team-card:hover .team-card-img img {
  transform: scale(1.1);
}
.home2-team-section .team-card:hover .team-card-img .social-list {
  opacity: 1;
  transform: scaleY(1);
  z-index: 2;
}
.home2-team-section.two .team-card .team-card-img {
  border-radius: 0;
}
.home2-team-section.two .team-card .team-card-img img {
  border-radius: 0;
}

/*=====================================
  23. Home2 Testimonial Section CSS
========================================*/
.home2-testimonial-section {
  background-image: url(../img/home2/testimonial-bg-img.png), linear-gradient(180deg, rgb(255, 247, 239) 0%, rgb(255, 247, 239) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0 150px 0;
}
@media (max-width: 1399px) {
  .home2-testimonial-section {
    padding: 80px 0 110px 0;
  }
}
@media (max-width: 1199px) {
  .home2-testimonial-section {
    padding: 80px 0 90px 0;
  }
}
@media (max-width: 991px) {
  .home2-testimonial-section {
    padding: 70px 0;
  }
}
.home2-testimonial-section .testimonial-card-area .icon {
  fill: none;
  stroke: rgba(var(--title-color-opc), 0.1);
  margin-bottom: 35px;
}
.home2-testimonial-section .testimonial-card-area .title {
  color: var(--primary-color2);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  display: block;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .home2-testimonial-section .testimonial-card-area .title {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.home2-testimonial-section .testimonial-card-area p {
  color: rgba(var(--title-color-opc), 0.7);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 22px;
  line-height: 45px;
  margin-bottom: 60px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home2-testimonial-section .testimonial-card-area p {
    font-size: 20px;
    line-height: 40px;
  }
}
@media (max-width: 1199px) {
  .home2-testimonial-section .testimonial-card-area p {
    line-height: 38px;
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .home2-testimonial-section .testimonial-card-area p {
    line-height: 34px;
    font-size: 17px;
    margin-bottom: 45px;
  }
}
.home2-testimonial-section .testimonial-card-area h2 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 0;
  position: relative;
}
@media (max-width: 991px) {
  .home2-testimonial-section .testimonial-card-area h2 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .home2-testimonial-section .testimonial-card-area h2 {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .home2-testimonial-section .testimonial-card-area h2 {
    font-size: 15px;
  }
}
.home2-testimonial-section .testimonial-card-area h2::before {
  content: "";
  position: absolute;
  width: 696px;
  height: 1px;
  background-color: rgba(var(--title-color-opc), 0.1);
  top: -30px;
}
@media (max-width: 1199px) {
  .home2-testimonial-section .testimonial-card-area h2::before {
    width: 450px;
  }
}
.home2-testimonial-section .testimonial-card-area h2 span {
  font-size: 18px;
  color: rgba(var(--title-color-opc), 0.5);
}
@media (max-width: 576px) {
  .home2-testimonial-section .testimonial-card-area h2 span {
    font-size: 15px;
  }
}
.home2-testimonial-section .testimonial-card-area .testimonial-img-and-review {
  text-align: center;
}
@media (max-width: 991px) {
  .home2-testimonial-section .testimonial-card-area .testimonial-img-and-review {
    text-align: start;
  }
}
.home2-testimonial-section .testimonial-card-area .testimonial-img-and-review img {
  border-radius: 50%;
  margin-bottom: 30px;
}
.home2-testimonial-section .testimonial-card-area .testimonial-img-and-review .rating-area {
  justify-content: center;
}
@media (max-width: 991px) {
  .home2-testimonial-section .testimonial-card-area .testimonial-img-and-review .rating-area {
    justify-content: start;
  }
}
.home2-testimonial-section .testimonial-card-area .testimonial-img-and-review .rating-area::before {
  display: none;
}
.home2-testimonial-section .home2-testimonial-slider .swiper-slide-active .icon,
.home2-testimonial-section .home2-testimonial-slider .swiper-slide-active .title,
.home2-testimonial-section .home2-testimonial-slider .swiper-slide-active p,
.home2-testimonial-section .home2-testimonial-slider .swiper-slide-active img {
  animation: fadeInDown 1.7s;
}
.home2-testimonial-section .home2-testimonial-slider .swiper-slide-active .rating-area {
  animation: fadeInUp 1.7s;
}
.home2-testimonial-section .pagination-area .pagination {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: unset;
  z-index: 9;
  bottom: unset;
  gap: 8px;
}
@media (max-width: 576px) {
  .home2-testimonial-section .pagination-area .pagination {
    justify-content: center;
    gap: 6px;
  }
}
.home2-testimonial-section .pagination-area .pagination .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid rgba(63, 68, 75, 0.6);
  opacity: 1;
  position: relative;
}
.home2-testimonial-section .pagination-area .pagination .swiper-pagination-bullet::after {
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: rgba(var(--primary-color2-opc), 0.4);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home2-testimonial-section .pagination-area .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--primary-color2);
  height: 16px;
  width: 16px;
}
.home2-testimonial-section .pagination-area .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color2);
}
.home2-testimonial-section .mt-95 {
  margin-top: 95px;
}
@media (max-width: 1199px) {
  .home2-testimonial-section .mt-95 {
    margin-top: 70px;
  }
}
@media (max-width: 991px) {
  .home2-testimonial-section .mt-95 {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .home2-testimonial-section .mt-95 {
    margin-top: 35px;
  }
}

/*=====================================
  24. Home2 Blog Section CSS
========================================*/
@media (max-width: 576px) {
  .home2-blog-section .section-title h2 {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .home2-blog-section .section-title p {
    font-size: 14px;
  }
}

.blog-card-wrapper {
  padding: 50px 0;
  border: 1px solid rgba(var(--title-color-opc), 0.1);
  border-right: unset;
  border-left: unset;
}
@media (max-width: 1199px) {
  .blog-card-wrapper {
    padding: 35px 0;
  }
}
@media (max-width: 576px) {
  .blog-card-wrapper {
    padding: unset;
    border: unset;
    margin-bottom: 40px;
  }
  .blog-card-wrapper:last-child {
    margin-bottom: 0;
  }
}
.blog-card-wrapper .blog-img-area {
  position: relative;
}
.blog-card-wrapper .blog-img-area .blog-img {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.blog-card-wrapper .blog-img-area .blog-img img {
  border-radius: 10px;
}
.blog-card-wrapper .blog-img-area .blog-img canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.blog-card-wrapper .blog-img-area .date {
  background-color: var(--white-color);
  padding: 9px 22px;
  border-radius: 10px 0 10px 0;
  position: absolute;
  left: 0;
  top: 0;
}
.blog-card-wrapper .blog-img-area .date span {
  display: block;
  color: var(--primary-color3);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  padding-bottom: 2px;
  background: linear-gradient(to bottom, var(--primary-color1) 0%, var(--primary-color1) 98%);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0% 90%;
  transition: background-size 0.75s;
}
@media (max-width: 576px) {
  .blog-card-wrapper .blog-img-area .date span {
    font-size: 13px;
  }
}
.blog-card-wrapper .blog-img-area .date:hover span {
  background-size: 0px 1px;
  background-position: 0 90%;
}
.blog-card-wrapper .blog-card-content {
  max-width: 644px;
  width: 100%;
}
@media (max-width: 991px) {
  .blog-card-wrapper .blog-card-content {
    max-width: unset;
    padding-top: 30px;
  }
}
.blog-card-wrapper .blog-card-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}
@media (max-width: 1199px) {
  .blog-card-wrapper .blog-card-content ul {
    margin-bottom: 10px;
  }
}
.blog-card-wrapper .blog-card-content ul li .tag {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(var(--title-color-opc), 0.6);
  border-radius: 50px;
  border: 1px solid rgba(var(--title-color-opc), 0.1);
  padding: 5px 15px;
  display: inline-block;
  transition: all 0.5s;
}
.blog-card-wrapper .blog-card-content ul li .tag:hover {
  color: var(--primary-color1);
}
.blog-card-wrapper .blog-card-content ul li .tag2 {
  color: var(--primary-color3);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  padding-bottom: 2px;
  background: linear-gradient(to bottom, var(--primary-color3) 0%, var(--primary-color3) 98%);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0% 90%;
  transition: background-size 0.75s;
}
.blog-card-wrapper .blog-card-content ul li .tag2:hover {
  background-size: 0px 1px;
  background-position: 0 90%;
}
@media (max-width: 991px) {
  .blog-card-wrapper .blog-card-content ul li .tag2 {
    font-size: 14px;
  }
}
.blog-card-wrapper .blog-card-content h3 {
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  .blog-card-wrapper .blog-card-content h3 {
    margin-bottom: 15px;
    line-height: 26px;
  }
}
.blog-card-wrapper .blog-card-content h3 a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 32px;
  line-height: 42px;
  text-transform: capitalize;
  background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
  background-repeat: no-repeat;
  background-size: 0px 1.5px;
  background-position: right 95%;
  transition: background-size 0.75s;
}
@media (max-width: 1399px) {
  .blog-card-wrapper .blog-card-content h3 a {
    font-size: 24px;
    line-height: 37px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-wrapper .blog-card-content h3 a {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .blog-card-wrapper .blog-card-content h3 a {
    font-size: 22px;
    line-height: 1.2;
  }
}
@media (max-width: 576px) {
  .blog-card-wrapper .blog-card-content h3 a {
    font-size: 16px;
    line-height: 1.1;
  }
}
.blog-card-wrapper .blog-card-content h3 a:hover {
  background-size: 100% 1.5px;
  background-position: 0 95%;
}
.blog-card-wrapper .blog-card-content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 35px;
}
@media (max-width: 1199px) {
  .blog-card-wrapper .blog-card-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .blog-card-wrapper .blog-card-content p {
    font-size: 14px;
  }
}
.blog-card-wrapper:last-child {
  padding-bottom: unset;
  border-bottom: unset;
}

/*=====================================
  25. Home2 Why Choose Us Section CSS
========================================*/
.home2-why-choose-us-section {
  background-image: url(../img/home2/why-choose-us-section.png), linear-gradient(180deg, rgb(242, 238, 255) 0%, rgb(242, 238, 255) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 110px 0;
}
@media (max-width: 1399px) {
  .home2-why-choose-us-section {
    padding: 100px 0;
  }
}
@media (max-width: 1199px) {
  .home2-why-choose-us-section {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .home2-why-choose-us-section {
    padding: 70px 0;
  }
}
@media (max-width: 1199px) {
  .home2-why-choose-us-section .why-choose-content .section-title h2 {
    font-size: 36px;
    line-height: 53px;
  }
}
@media (max-width: 767px) {
  .home2-why-choose-us-section .why-choose-content .section-title h2 {
    font-size: 34px;
    line-height: 47px;
  }
}
@media (max-width: 576px) {
  .home2-why-choose-us-section .why-choose-content .section-title h2 {
    font-size: 25px;
    line-height: 35px;
  }
}
.home2-why-choose-us-section .why-choose-content .why-choose-list {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 50px;
}
.home2-why-choose-us-section .why-choose-content .why-choose-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--title-color);
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .home2-why-choose-us-section .why-choose-content .why-choose-list li {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
.home2-why-choose-us-section .why-choose-content .why-choose-list li svg {
  fill: #D4D7FF;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .home2-why-choose-us-section .why-choose-content .why-choose-list li svg {
    width: 18px;
  }
}
.home2-why-choose-us-section .why-choose-content .why-choose-list li svg path {
  fill: var(--title-color);
}
.home2-why-choose-us-section .why-choose-content .why-choose-list li:last-child {
  margin-bottom: 0;
}
.home2-why-choose-us-section .why-choose-content .primary-btn1 span {
  background-image: linear-gradient(0deg, var(--title-color) 0%, var(--title-color) 100%);
  color: var(--title-color);
}
.home2-why-choose-us-section .why-choose-content .primary-btn1 span::after {
  color: var(--title-color);
}
.home2-why-choose-us-section .why-choose-content .primary-btn1 span svg {
  fill: none;
  stroke: var(--title-color);
}
.home2-why-choose-us-section .service-wrapper-area {
  max-width: 560px;
  width: 100%;
}
@media (max-width: 991px) {
  .home2-why-choose-us-section .service-wrapper-area {
    max-width: unset;
  }
}
.home2-why-choose-us-section .service-wrapper-area .service-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--borders-color);
  border-bottom: unset;
  border-radius: 20px 20px 0 0;
}
@media (max-width: 767px) {
  .home2-why-choose-us-section .service-wrapper-area .service-list {
    border-radius: 15px 15px 0 0;
  }
}
@media (max-width: 576px) {
  .home2-why-choose-us-section .service-wrapper-area .service-list {
    grid-template-columns: repeat(1, 1fr);
    border-radius: unset;
  }
}
.home2-why-choose-us-section .service-wrapper-area .service-list li a {
  color: var(--text-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 26px 0;
  transition: 0.5s;
  border-bottom: 1px solid var(--borders-color);
  display: block;
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home2-why-choose-us-section .service-wrapper-area .service-list li a {
    padding: 22px 0;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .home2-why-choose-us-section .service-wrapper-area .service-list li a {
    font-size: 15px;
    padding: 21px 0;
  }
}
.home2-why-choose-us-section .service-wrapper-area .service-list li a:hover {
  background-color: var(--primary-color2);
  color: var(--white-color);
}
.home2-why-choose-us-section .service-wrapper-area .service-list li.active a {
  border-radius: 20px 0 0 0;
  background-color: var(--primary-color2);
  color: var(--white-color);
}
@media (max-width: 576px) {
  .home2-why-choose-us-section .service-wrapper-area .service-list li.active a {
    border-radius: unset;
  }
}
.home2-why-choose-us-section .service-wrapper-area .service-list li:nth-child(odd) a {
  border-right: 1px solid var(--borders-color);
}
.home2-why-choose-us-section .service-wrapper-area .service-list li:nth-last-child(1) a, .home2-why-choose-us-section .service-wrapper-area .service-list li:nth-last-child(2) a {
  border-bottom: unset;
}
@media (max-width: 576px) {
  .home2-why-choose-us-section .service-wrapper-area .service-list li:nth-last-child(2) a {
    border-bottom: 1px solid var(--borders-color);
  }
}
.home2-why-choose-us-section .service-wrapper-area .service-list li:nth-child(2) a {
  transition: 0.4s ease;
}
.home2-why-choose-us-section .service-wrapper-area .service-list li:nth-child(2) a:hover {
  border-radius: 0 20px 0 0;
}
@media (max-width: 767px) {
  .home2-why-choose-us-section .service-wrapper-area .service-list li:nth-child(2) a:hover {
    border-radius: 0 15px 0 0;
  }
}
@media (max-width: 576px) {
  .home2-why-choose-us-section .service-wrapper-area .service-list li:nth-child(2) a:hover {
    border-radius: unset;
  }
}
.home2-why-choose-us-section .service-card-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}
.home2-why-choose-us-section .service-card-wrap li {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s;
}
@media (max-width: 991px) {
  .home2-why-choose-us-section .service-card-wrap li {
    position: relative;
    display: none;
  }
}
.home2-why-choose-us-section .service-card-wrap li .service-card2 {
  position: relative;
}
.home2-why-choose-us-section .service-card-wrap li .service-card2 img {
  border-radius: 0 0 20px 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .home2-why-choose-us-section .service-card-wrap li .service-card2 img {
    border-radius: 0 0 15px 15px;
  }
}
@media (max-width: 576px) {
  .home2-why-choose-us-section .service-card-wrap li .service-card2 img {
    min-height: 300px;
    border-radius: 10px;
  }
}
.home2-why-choose-us-section .service-card-wrap li.active {
  opacity: 1;
}
@media (max-width: 991px) {
  .home2-why-choose-us-section .service-card-wrap li.active {
    display: block;
  }
}
.home2-why-choose-us-section .service-card-wrap li.show {
  opacity: 1;
  z-index: 9;
}

.single-counter {
  background-color: var(--white-color);
  border-radius: 10px;
  text-align: center;
  padding: 45px 0;
  border-bottom: 7px solid #E1E7F0;
}
.single-counter .number {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  line-height: 1;
  display: flex;
  align-items: baseline;
  margin-bottom: 5px;
  justify-content: center;
}
.single-counter .number h2 {
  font-size: 50px;
  font-family: var(--font-montserrat);
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1;
}
@media (max-width: 1199px) {
  .single-counter .number h2 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .single-counter .number h2 {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .single-counter .number h2 {
    font-size: 35px;
  }
}
.single-counter .number strong {
  font-size: 50px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .single-counter .number strong {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .single-counter .number strong {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .single-counter .number strong {
    font-size: 35px;
  }
}
.single-counter span {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}
.single-counter.two {
  border-bottom: 7px solid #EEE3D4;
}
.single-counter.three {
  border-bottom: 7px solid #D4EBE7;
}
.single-counter.four {
  border-bottom: 7px solid #E0E9D9;
}

/*=====================================
  26. Home2 Step Section CSS
========================================*/
.home2-step-section {
  background-image: url(../img/home2/home2-step-section-bg.png), linear-gradient(180deg, rgb(23, 23, 23) 0%, rgb(23, 23, 23) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 110px;
}
@media (max-width: 1199px) {
  .home2-step-section {
    padding-top: 90px;
  }
}
@media (max-width: 991px) {
  .home2-step-section {
    padding-top: 70px;
  }
}
.home2-step-section .step-card-wrapper {
  padding: 0 229px 0 300px;
}
@media (max-width: 1899px) {
  .home2-step-section .step-card-wrapper {
    padding: 0 150px 0 200px;
  }
}
@media (max-width: 1699px) {
  .home2-step-section .step-card-wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .home2-step-section .step-card-wrapper {
    padding: 0;
  }
}
.home2-step-section .step-card-wrapper .step-img {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}
@media (max-width: 1199px) {
  .home2-step-section .step-card-wrapper .step-img {
    display: none;
  }
}
.home2-step-section .step-card-wrapper .step-img li:nth-child(1) {
  position: absolute;
  left: 0;
}
.home2-step-section .step-card-wrapper .step-img li:nth-child(2) {
  position: absolute;
  left: 130px;
  top: -60px;
}
.home2-step-section .step-card-wrapper .step-img li:nth-child(3) {
  position: absolute;
  right: 100px;
  top: -30px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home2-step-section .step-card-wrapper .step-img li:nth-child(3) {
    right: 25px;
  }
}
.home2-step-section .step-card-wrapper .step-img li:nth-child(4) {
  position: absolute;
  left: 120px;
  top: 60px;
}
.home2-step-section .step-card-wrapper .step-img li:nth-child(5) {
  position: absolute;
  left: 38%;
  top: 158px;
}
.home2-step-section .step-card-wrapper .step-img li:nth-child(6) {
  position: absolute;
  right: 57px;
  top: 92px;
}
.home2-step-section .step-card-wrapper .step-img li:nth-child(7) {
  position: absolute;
  left: 0;
  top: 127px;
}
.home2-step-section .step-card-wrapper .process-card-wrapper {
  position: relative;
}
.home2-step-section .step-card-wrapper .process-card-wrapper .line {
  height: 100%;
  width: 1px;
  background-color: rgba(var(--white-color-opc), 0.1);
  position: absolute;
  top: 10px;
  left: 8px;
}
@media (max-width: 767px) {
  .home2-step-section .step-card-wrapper .process-card-wrapper .line {
    display: none;
  }
}
.home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper {
  overflow-y: scroll;
  max-height: 600px;
  padding-left: 8px;
}
@media (max-width: 576px) {
  .home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper {
    padding-left: 0;
  }
}
.home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper::-webkit-scrollbar {
  width: 0;
}
.home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card {
  padding-left: 110px;
}
@media (max-width: 767px) {
  .home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card {
    padding-left: 0;
  }
}
.home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card .tag {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--white-color);
  border: 1px solid rgba(var(--white-color-opc), 0.2);
  border-radius: 50px;
  padding: 6px 21px;
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
}
.home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card .tag::before {
  content: url(../img/home2/step-before-img1.png);
  position: absolute;
  left: -118px;
}
@media (max-width: 767px) {
  .home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card .tag::before {
    display: none;
  }
}
.home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card .step-img-content {
  display: flex;
  gap: 0;
}
@media (max-width: 576px) {
  .home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card .step-img-content {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card .step-img-content img {
  max-width: 238px;
  max-height: 239px;
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 576px) {
  .home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card .step-img-content img {
    width: 100%;
    max-height: 200px;
    max-width: unset;
  }
}
.home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card .step-img-content .content {
  padding: 8px 16px;
  border: 1px solid rgba(var(--white-color-opc), 0.1);
  border-radius: 0 10px 10px 0;
  border-left: unset;
  background-color: #171717;
}
@media (max-width: 1199px) {
  .home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card .step-img-content .content {
    padding: 12px 20px;
  }
}
@media (max-width: 576px) {
  .home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card .step-img-content .content {
    padding: 15px 10px;
  }
}
.home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card .step-img-content .content h3 {
  margin-bottom: 15px;
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  color: var(--white-color);
}
@media (max-width: 767px) {
  .home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card .step-img-content .content h3 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card .step-img-content .content h3 {
    font-size: 21px;
  }
}
.home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card .step-img-content .content p {
  color: rgba(var(--white-color-opc), 0.6);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card .step-img-content .content p {
    font-size: 14px;
  }
}
.home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card .step-img-content .content span {
  color: rgba(var(--white-color-opc), 0.6);
  display: block;
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card .step-img-content .content span {
    font-size: 14px;
  }
}
.home2-step-section .step-card-wrapper .process-card-wrapper .process-list-wrapper .process-card .step-img-content .content span:last-child {
  margin-bottom: 0;
}

/*=====================================
  26. Home3 Banner Section CSS
========================================*/
.home3-banner-section {
  display: grid;
  grid-template-columns: 64% 36%;
  background-image: url(../img/home3/home3-banner-bg-img.png), linear-gradient(180deg, rgb(238, 239, 252) 0%, rgb(238, 239, 252) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
}
@media (max-width: 1699px) {
  .home3-banner-section {
    grid-template-columns: 60% 40%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home3-banner-section {
    grid-template-columns: 65% 35%;
  }
}
@media (max-width: 1199px) {
  .home3-banner-section {
    display: block;
  }
}
.home3-banner-section .banner-img {
  position: relative;
  height: 100%;
}
.home3-banner-section .banner-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1399px) {
  .home3-banner-section .banner-img img {
    min-height: 580px;
  }
}
.home3-banner-section .banner-img .circle-text-wrapper {
  min-width: 130px;
  height: 130px;
  background-color: #EEEFFC;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -50px;
}
.home3-banner-section .banner-img .circle-text-wrapper .circular-text2 {
  z-index: 9;
  min-width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border: 1px solid rgba(var(--title-color-opc), 0.2);
}
@media (max-width: 1399px) {
  .home3-banner-section .banner-img .circle-text-wrapper .circular-text2 {
    left: 37%;
    bottom: -68px;
  }
}
@media (max-width: 991px) {
  .home3-banner-section .banner-img .circle-text-wrapper .circular-text2 {
    bottom: -110px;
  }
}
@media (max-width: 576px) {
  .home3-banner-section .banner-img .circle-text-wrapper .circular-text2 {
    display: none;
  }
}
.home3-banner-section .banner-img .circle-text-wrapper .circular-text2 .center-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--title-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.home3-banner-section .banner-img .circle-text-wrapper .circular-text2 .center-icon svg {
  fill: var(--white-color);
  margin-left: 5px;
}
.home3-banner-section .banner-img .circle-text-wrapper .circular-text2 .text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: textRotation 8s linear infinite;
}
.home3-banner-section .banner-img .circle-text-wrapper .circular-text2 .text span {
  position: absolute;
  left: 50%;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 13px;
  font-weight: 600;
  transform-origin: 0 60px;
}
@media (max-width: 1199px) {
  .home3-banner-section .banner-img {
    display: none;
  }
}
.home3-banner-section .banner-content-wrapper {
  padding: 25px 20px 25px 217px;
}
@media (max-width: 1699px) {
  .home3-banner-section .banner-content-wrapper {
    padding: 25px 20px 25px 100px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home3-banner-section .banner-content-wrapper {
    padding: 25px 20px 25px 80px;
  }
}
@media (max-width: 1399px) {
  .home3-banner-section .banner-content-wrapper {
    padding: 25px 20px 25px 40px;
  }
}
@media (max-width: 1199px) {
  .home3-banner-section .banner-content-wrapper {
    padding: 100px 40px;
  }
}
@media (max-width: 991px) {
  .home3-banner-section .banner-content-wrapper {
    padding: 110px 20px 110px 20px;
  }
}
@media (max-width: 767px) {
  .home3-banner-section .banner-content-wrapper {
    padding: 90px 20px 90px 15px;
  }
}
@media (max-width: 576px) {
  .home3-banner-section .banner-content-wrapper {
    padding: 70px 15px;
  }
}
.home3-banner-section .banner-content-wrapper .banner-content h1 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 80px;
  line-height: 1.2;
  margin-bottom: 45px;
}
.home3-banner-section .banner-content-wrapper .banner-content h1 span {
  color: #96D865;
  position: relative;
}
@media (max-width: 1699px) {
  .home3-banner-section .banner-content-wrapper .banner-content h1 {
    font-size: 70px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home3-banner-section .banner-content-wrapper .banner-content h1 {
    font-size: 60px;
    margin-bottom: 35px;
  }
}
@media (max-width: 1399px) {
  .home3-banner-section .banner-content-wrapper .banner-content h1 {
    font-size: 53px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .home3-banner-section .banner-content-wrapper .banner-content h1 {
    font-size: 62px;
  }
}
@media (max-width: 991px) {
  .home3-banner-section .banner-content-wrapper .banner-content h1 {
    font-size: 50px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .home3-banner-section .banner-content-wrapper .banner-content h1 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .home3-banner-section .banner-content-wrapper .banner-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.4;
  }
}
.home3-banner-section .banner-content-wrapper .banner-content p {
  color: rgba(var(--title-color-opc), 0.7);
  font-family: var(--font-poppins);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 60px;
  max-width: 631px;
}
@media (max-width: 767px) {
  .home3-banner-section .banner-content-wrapper .banner-content p {
    max-width: unset;
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .home3-banner-section .banner-content-wrapper .banner-content p {
    font-size: 16px;
    margin-bottom: 35px;
  }
}
.home3-banner-section .banner-content-wrapper .banner-content .review-and-people-area {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .home3-banner-section .banner-content-wrapper .banner-content .review-and-people-area {
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .home3-banner-section .banner-content-wrapper .banner-content .review-and-people-area {
    flex-wrap: wrap;
  }
}
.home3-banner-section .banner-content-wrapper .banner-content .review-and-people-area .rating-area::before {
  display: none;
}
.home3-banner-section .banner-content-wrapper .banner-content .review-and-people-area > svg {
  fill: rgba(var(--primary-color2-opc), 0.15);
}
@media (max-width: 767px) {
  .home3-banner-section .banner-content-wrapper .banner-content .review-and-people-area > svg {
    display: none;
  }
}
.home3-banner-section .banner-content-wrapper .banner-content .review-and-people-area .people-area {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .home3-banner-section .banner-content-wrapper .banner-content .review-and-people-area .people-area {
    gap: 10px;
  }
}
.home3-banner-section .banner-content-wrapper .banner-content .review-and-people-area .people-area .img-grp {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.home3-banner-section .banner-content-wrapper .banner-content .review-and-people-area .people-area .img-grp li img {
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #F0F2F4;
  margin-left: -15px;
}
@media (max-width: 576px) {
  .home3-banner-section .banner-content-wrapper .banner-content .review-and-people-area .people-area .img-grp li img {
    min-width: 37px;
    max-width: 37px;
    height: 37px;
  }
}
.home3-banner-section .banner-content-wrapper .banner-content .review-and-people-area .people-area .img-grp li:first-child img {
  margin-left: 0;
}
.home3-banner-section .banner-content-wrapper .banner-content .review-and-people-area .people-area a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  max-width: 145px;
  text-decoration: underline;
}

/*=====================================
  27. Home3 feature Section CSS
========================================*/
.home3-feature-section .arrow-vec-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .home3-feature-section .arrow-vec-wrap {
    margin-top: -6px;
  }
}
@media (max-width: 1199px) {
  .home3-feature-section .arrow-vec-wrap {
    margin-top: -15px;
  }
}
@media (max-width: 991px) {
  .home3-feature-section .arrow-vec-wrap {
    display: none;
    visibility: hidden;
  }
}
.home3-feature-section .arrow-vec-wrap .awrrow-vec {
  stroke-width: 1;
  fill: rgba(var(--title-color-opc), 0.1);
  width: 1070px;
}
@media (max-width: 1399px) {
  .home3-feature-section .arrow-vec-wrap .awrrow-vec {
    width: 1000px;
  }
}
@media (max-width: 1199px) {
  .home3-feature-section .arrow-vec-wrap .awrrow-vec {
    width: 830px;
  }
}
.home3-feature-section .feature-card {
  background-color: #FCFCFC;
  border-radius: 20px;
  border: 1px solid #EEEEEE;
  padding: 30px 25px;
  transition: all 0.5s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home3-feature-section .feature-card {
    padding: 30px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home3-feature-section .feature-card {
    padding: 25px 15px;
    border-radius: 15px;
  }
}
@media (max-width: 767px) {
  .home3-feature-section .feature-card {
    padding: 25px 15px;
    border-radius: 10px;
  }
}
@media (max-width: 576px) {
  .home3-feature-section .feature-card {
    padding: 25px 20px;
  }
}
.home3-feature-section .feature-card > svg {
  fill: var(--text-color);
  margin-bottom: 40px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home3-feature-section .feature-card > svg {
    width: 50px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .home3-feature-section .feature-card > svg {
    margin-bottom: 25px;
    width: 45px;
  }
}
.home3-feature-section .feature-card .feature-content {
  margin-bottom: 30px;
}
.home3-feature-section .feature-card .feature-content h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 20px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home3-feature-section .feature-card .feature-content h3 {
    font-size: 23px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home3-feature-section .feature-card .feature-content h3 {
    font-size: 19px;
  }
}
@media (max-width: 991px) {
  .home3-feature-section .feature-card .feature-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .home3-feature-section .feature-card .feature-content h3 {
    font-size: 21px;
  }
}
.home3-feature-section .feature-card .feature-content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home3-feature-section .feature-card .feature-content p {
    font-size: 14px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home3-feature-section .feature-card .feature-content p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .home3-feature-section .feature-card .feature-content p {
    font-size: 15px;
  }
}
.home3-feature-section .feature-card .learn-more-btn {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  padding: 10px 11px;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  transition: all 0.5s;
  line-height: 1;
}
.home3-feature-section .feature-card .learn-more-btn svg {
  transition: all 0.5s;
  fill: none;
  stroke: var(--title-color);
}
.home3-feature-section .feature-card:hover {
  border-radius: 20px;
  border: 1px solid transparent;
  background-color: #F1F1FF;
  background: linear-gradient(#F1F1FF, #F1F1FF) padding-box, linear-gradient(270deg, rgba(226, 76, 74, 0.1) 0%, rgba(56, 107, 183, 0.1) 100%);
}
.home3-feature-section .feature-card:hover > svg {
  animation: bounceIn 1.2s linear;
}
.home3-feature-section .feature-card:hover .learn-more-btn {
  background-color: var(--white-color);
  border-color: var(--white-color);
  color: var(--primary-color3);
}
.home3-feature-section .feature-card:hover .learn-more-btn svg {
  stroke: var(--primary-color3);
}
.home3-feature-section .contact-btn {
  color: var(--text-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  padding: 15px 28px;
  border-radius: 100px;
  border: 1px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, rgba(1, 14, 208, 0.2), rgba(1, 7, 106, 0.2)) border-box;
}
.home3-feature-section .contact-btn a {
  color: var(--title-color);
  padding-bottom: 2px;
  background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0% 90%;
  transition: background-size 0.75s;
  white-space: nowrap;
}
.home3-feature-section .contact-btn a:hover {
  background-size: 0px 1px;
  background-position: 0 90%;
}
@media (max-width: 576px) {
  .home3-feature-section .contact-btn {
    text-align: center;
  }
}
.home3-feature-section.two .feature-card {
  padding: 30px 25px 40px 25px;
  background: #F2F9FF;
}
@media (max-width: 1399px) {
  .home3-feature-section.two .feature-card {
    padding: 30px 20px 40px 20px;
  }
}
@media (max-width: 767px) {
  .home3-feature-section.two .feature-card {
    padding: 30px 15px 40px 15px;
  }
}
.home3-feature-section.two .feature-card .icon-and-number {
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
}
.home3-feature-section.two .feature-card .icon-and-number > svg {
  fill: rgba(var(--title-color-opc), 0.6);
  transition: all 0.5s ease-out;
}
@media (max-width: 1399px) {
  .home3-feature-section.two .feature-card .icon-and-number > svg {
    width: 50px;
  }
}
@media (max-width: 767px) {
  .home3-feature-section.two .feature-card .icon-and-number > svg {
    width: 45px;
  }
}
.home3-feature-section.two .feature-card .icon-and-number span {
  margin-top: -10px;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  background: linear-gradient(270.06deg, rgba(226, 76, 74, 0.1) 90.38%, rgba(56, 107, 183, 0.1) 99.95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1399px) {
  .home3-feature-section.two .feature-card .icon-and-number span {
    margin-top: -6px;
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .home3-feature-section.two .feature-card .icon-and-number span {
    font-size: 32px;
  }
}
.home3-feature-section.two .feature-card .feature-content {
  margin-bottom: unset;
}
.home3-feature-section.two .feature-card.two {
  background: #FFFBF2;
}
.home3-feature-section.two .feature-card.three {
  background: #F2FFFC;
}
.home3-feature-section.two .feature-card.four {
  background: #F7F2FF;
}
.home3-feature-section.two .feature-card.five {
  background: #FFEBEB;
}
.home3-feature-section.two .feature-card.six {
  background: #E4F4F1;
}
.home3-feature-section.two .feature-card.seven {
  background: #F0EFE9;
}
.home3-feature-section.two .feature-card.eight {
  background: #EFF4F8;
}
.home3-feature-section.two .feature-card:hover {
  transform: translateY(-5px);
}
.home3-feature-section.two .feature-card:hover .icon-and-number > svg {
  animation: bounceIn 1.2s linear;
  fill: var(--primary-color1);
}
.home3-feature-section.two .contact {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
}
@media (max-width: 576px) {
  .home3-feature-section.two .contact {
    text-align: center;
    font-size: 15px;
    line-height: 25px;
  }
}
.home3-feature-section.two .contact a {
  position: relative;
  display: inline-block;
  background: linear-gradient(270deg, #E24C4A 37.9%, #386BB7 54.4%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.home3-feature-section.two .contact a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(270deg, #E24C4A 37.9%, #386BB7 54.4%);
}

/*=====================================
  28. Home3 Process Section CSS
========================================*/
.home3-process-section .process-wrapper {
  background-image: url(../img/home3/home3-process-banner-bg.png), linear-gradient(180deg, rgb(16, 16, 16) 0%, rgb(16, 16, 16) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
  padding: 80px 70px;
}
@media (max-width: 1399px) {
  .home3-process-section .process-wrapper {
    padding: 80px 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home3-process-section .process-wrapper {
    padding: 80px 20px;
  }
}
@media (max-width: 991px) {
  .home3-process-section .process-wrapper {
    padding: 70px 30px;
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .home3-process-section .process-wrapper {
    border-radius: 10px;
  }
}
@media (max-width: 576px) {
  .home3-process-section .process-wrapper {
    padding: 70px 15px;
  }
}
.home3-process-section .process-wrapper .company-logo {
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(88, 65, 216, 0.5019607843) 0%, rgba(88, 65, 216, 0.5019607843) 100%);
  backdrop-filter: blur(24px);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .home3-process-section .process-wrapper .company-logo {
    margin-bottom: 40px;
  }
}
.home3-process-section .process-wrapper .company-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 79px;
  height: 79px;
  background-color: rgba(36, 36, 36, 0.5019607843);
  border: 1px solid rgba(var(--white-color-opc), 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  z-index: -1;
}
.home3-process-section .process-wrapper .company-logo::after {
  content: "";
  position: absolute;
  bottom: -65px;
  width: 1px;
  height: 65px;
  background-color: rgba(var(--white-color-opc), 0.1);
}
@media (max-width: 991px) {
  .home3-process-section .process-wrapper .company-logo::after {
    display: none;
  }
}
.home3-process-section .process-wrapper .line-and-step {
  position: relative;
  margin-top: -10px;
}
.home3-process-section .process-wrapper .line-and-step .line svg {
  fill: rgba(var(--white-color-opc), 0.1);
  margin-left: -18px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home3-process-section .process-wrapper .line-and-step .line svg {
    width: 1060px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home3-process-section .process-wrapper .line-and-step .line svg {
    margin-left: -12px;
    width: 911px;
  }
}
@media (max-width: 991px) {
  .home3-process-section .process-wrapper .line-and-step {
    display: none;
  }
}
.home3-process-section .process-wrapper .process-card-wrapper {
  padding: 0 18px;
  margin-top: -82px;
}
@media (max-width: 991px) {
  .home3-process-section .process-wrapper .process-card-wrapper {
    padding: 0;
    margin: 0;
  }
}
.home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap {
  max-width: 336px;
  width: 100%;
}
@media (max-width: 767px) {
  .home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap {
    max-width: unset;
  }
}
.home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .step-wrap {
  margin-bottom: 35px;
}
.home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .step-wrap .step-no {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #242424;
  border-radius: 10px;
  padding: 10px 22px;
  white-space: nowrap;
  position: relative;
  transition: 0.5s;
}
.home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .step-wrap .step-no::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 34%;
  transform: translateX(-50%) rotate(45deg);
  width: 15px;
  height: 15px;
  background-color: #242424;
  border-radius: 0 0 4px 0;
  border-top: unset;
  border-left: unset;
  transition: 0.5s;
}
.home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .step-wrap .step-no span {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.51px;
  transition: 0.5s;
}
.home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .process-card {
  background-color: #242424;
  padding: 35px;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .process-card {
    padding: 30px 25px;
  }
}
.home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .process-card h3 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .process-card h3 {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .process-card h3 {
    font-size: 18px;
  }
}
.home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .process-card .arrow {
  margin-left: 40px;
  margin-bottom: 30px;
}
.home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .process-card .arrow svg {
  fill: rgba(var(--white-color-opc), 0.1);
}
.home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .process-card .process-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .process-card .process-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(var(--white-color-opc), 0.7);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .process-card .process-list li {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .process-card .process-list li {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .process-card .process-list li {
    font-size: 15px;
  }
}
.home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .process-card .process-list li svg {
  fill: var(--title-color);
}
.home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .process-card .process-list li circle {
  fill: var(--white-color);
}
.home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap .process-card .process-list li:last-child {
  margin-bottom: 0;
}
.home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap:hover .step-wrap .step-no {
  background-color: var(--primary-color1);
}
.home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap:hover .step-wrap .step-no::before {
  background-color: var(--primary-color1);
}
.home3-process-section .process-wrapper .process-card-wrapper .process-card-wrap:hover .step-wrap .step-no span {
  color: var(--white-color);
}

/*=====================================
  29. Home3 Service Section CSS
========================================*/
.home3-service-section .service-card .service-content {
  padding: 30px 25px 25px 25px;
  background-color: #E8F5D3;
  border-radius: 17px 17px 0 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home3-service-section .service-card .service-content {
    padding: 30px 20px 25px 20px;
  }
}
@media (max-width: 767px) {
  .home3-service-section .service-card .service-content {
    padding: 25px 20px;
    border-radius: 10px 10px 0 0;
  }
}
.home3-service-section .service-card .service-content .icon-and-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .home3-service-section .service-card .service-content .icon-and-number {
    margin-bottom: 15px;
  }
}
.home3-service-section .service-card .service-content .icon-and-number .icon {
  min-width: 70px;
  max-width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border-radius: 50%;
}
@media (min-width: 576px) and (max-width: 767px) {
  .home3-service-section .service-card .service-content .icon-and-number .icon {
    min-width: 50px;
    max-width: 50px;
    height: 50px;
  }
}
@media (max-width: 576px) {
  .home3-service-section .service-card .service-content .icon-and-number .icon {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .home3-service-section .service-card .service-content .icon-and-number .icon img {
    width: 30px;
  }
}
@media (max-width: 576px) {
  .home3-service-section .service-card .service-content .icon-and-number .icon img {
    width: 35px;
  }
}
.home3-service-section .service-card .service-content .icon-and-number span {
  font-family: var(--font-montserrat);
  font-size: 25px;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #5841D8;
  line-height: 1;
  opacity: 15%;
}
@media (max-width: 767px) {
  .home3-service-section .service-card .service-content .icon-and-number span {
    font-size: 20px;
  }
}
.home3-service-section .service-card .service-content h3 {
  margin-bottom: 0;
  line-height: 34px;
}
@media (max-width: 1399px) {
  .home3-service-section .service-card .service-content h3 {
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .home3-service-section .service-card .service-content h3 {
    line-height: 25px;
  }
}
.home3-service-section .service-card .service-content h3 a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 25px;
  line-height: 34px;
  background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
  background-repeat: no-repeat;
  background-size: 0px 1.5px;
  background-position: right 95%;
  transition: background-size 0.75s;
}
@media (max-width: 1399px) {
  .home3-service-section .service-card .service-content h3 a {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .home3-service-section .service-card .service-content h3 a {
    font-size: 19px;
    line-height: 25px;
  }
}
.home3-service-section .service-card .service-content h3 a:hover {
  background-size: 100% 1.5px;
  background-position: 0 95%;
}
.home3-service-section .service-card .service-img .service-wrapper-img {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 0 0 17px 17px;
}
@media (max-width: 767px) {
  .home3-service-section .service-card .service-img .service-wrapper-img {
    border-radius: 0 0 10px 10px;
  }
}
.home3-service-section .service-card .service-img .service-wrapper-img img {
  border-radius: 0 0 17px 17px;
}
@media (max-width: 767px) {
  .home3-service-section .service-card .service-img .service-wrapper-img img {
    border-radius: 0 0 10px 10px;
  }
}
.home3-service-section .service-card .service-img .service-wrapper-img canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home3-service-section .service-card:hover .service-content .icon-and-number .icon {
  animation: bounceIn 1.2s linear;
}
.home3-service-section .slider-btn-grp {
  justify-content: space-between;
}
@media (max-width: 576px) {
  .home3-service-section .slider-btn-grp {
    justify-content: center;
  }
}
.home3-service-section .slider-btn-grp .slider-btn {
  border: 1px solid rgba(var(--title-color-opc), 0.3);
}
.home3-service-section .slider-btn-grp .slider-btn svg {
  fill: rgba(var(--title-color-opc), 0.4);
}
.home3-service-section .slider-btn-grp .slider-btn:hover svg {
  fill: var(--white-color);
}
@media (max-width: 767px) {
  .home3-service-section .slider-btn-grp .primary-btn3 .content {
    padding: 15px 29px;
  }
}

/*=====================================
  30. Home3 Protfolio Section CSS
========================================*/
.home3-portfolio-section .section-title-and-text {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home3-portfolio-section .section-title-and-text {
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
  }
}
@media (max-width: 1399px) {
  .home3-portfolio-section .section-title-and-text .section-title h2 {
    line-height: 55px;
  }
}
@media (max-width: 1199px) {
  .home3-portfolio-section .section-title-and-text .section-title h2 {
    font-size: 39px;
    line-height: 52px;
  }
}
@media (max-width: 991px) {
  .home3-portfolio-section .section-title-and-text .section-title h2 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .home3-portfolio-section .section-title-and-text .section-title h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 576px) {
  .home3-portfolio-section .section-title-and-text .section-title h2 {
    font-size: 26px;
  }
}
.home3-portfolio-section .section-title-and-text p {
  color: rgba(var(--title-color-opc), 0.7);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .home3-portfolio-section .section-title-and-text p {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .home3-portfolio-section .section-title-and-text p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .home3-portfolio-section .section-title-and-text p {
    font-size: 15px;
    line-height: 27px;
  }
}
.home3-portfolio-section .section-title-and-text p a {
  color: var(--primary-color3);
  transition: all 0.5s;
}
.home3-portfolio-section .section-title-and-text p a:hover {
  color: var(--title-color);
}

.portfolio-card .portfolio-img-wrap {
  position: relative;
}
.portfolio-card .portfolio-img-wrap .portfolio-img {
  -webkit-mask-image: url(../img/home3/home3-protfolio-card-img-shape.png);
          mask-image: url(../img/home3/home3-protfolio-card-img-shape.png);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: right;
          mask-position: right;
  border-radius: 20px 20px 0 0;
  display: block;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease-out;
}
@media (max-width: 767px) {
  .portfolio-card .portfolio-img-wrap .portfolio-img {
    -webkit-mask-position: top right;
            mask-position: top right;
  }
}
.portfolio-card .portfolio-img-wrap .portfolio-img::after {
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}
.portfolio-card .portfolio-img-wrap .portfolio-img img {
  border-radius: 20px 20px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-out;
}
@media (max-width: 991px) {
  .portfolio-card .portfolio-img-wrap .portfolio-img img {
    max-height: 280px;
    min-height: 280px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .portfolio-card .portfolio-img-wrap .portfolio-img img {
    max-height: 300px;
    min-height: 300px;
  }
}
.portfolio-card .portfolio-img-wrap .details-btn-wrap {
  position: absolute;
  top: 35px;
  left: 35px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 991px) {
  .portfolio-card .portfolio-img-wrap .details-btn-wrap {
    top: 25px;
    left: 25px;
  }
}
@media (max-width: 576px) {
  .portfolio-card .portfolio-img-wrap .details-btn-wrap {
    left: 20px;
  }
}
.portfolio-card .portfolio-img-wrap .details-btn-wrap .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 576px) {
  .portfolio-card .portfolio-img-wrap .details-btn-wrap .icon {
    width: 35px;
    height: 35px;
  }
}
.portfolio-card .portfolio-img-wrap .details-btn-wrap .icon i {
  font-size: 28px;
  color: var(--dark-title-color);
  line-height: 1;
}
@media (max-width: 576px) {
  .portfolio-card .portfolio-img-wrap .details-btn-wrap .icon i {
    font-size: 26px;
  }
}
.portfolio-card .portfolio-img-wrap .details-btn-wrap .details-btn {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background-color: var(--black-color);
  border-radius: 100px;
  white-space: nowrap;
  transition: 0.5s;
  transform-origin: left;
  position: absolute;
  top: 50%;
  left: 50px;
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}
@media (max-width: 576px) {
  .portfolio-card .portfolio-img-wrap .details-btn-wrap .details-btn {
    font-size: 15px;
    padding: 10px 20px;
    left: 45px;
  }
}
.portfolio-card .portfolio-img-wrap .details-btn-wrap .details-btn svg {
  fill: none;
  stroke: var(--white-color);
}
.portfolio-card .portfolio-img-wrap .details-btn-wrap:hover .details-btn {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
  visibility: visible;
}
.portfolio-card .portfolio-content {
  padding: 40px 45px;
  background-color: #FFF6E9;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: unset;
  border-radius: 0 0 20px 20px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .portfolio-card .portfolio-content {
    padding: 30px 35px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .portfolio-card .portfolio-content {
    padding: 35px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .portfolio-card .portfolio-content {
    padding: 35px 9px;
  }
}
@media (max-width: 767px) {
  .portfolio-card .portfolio-content {
    padding: 40px 20px;
    border-radius: 0 0 15px 15px;
  }
}
@media (max-width: 576px) {
  .portfolio-card .portfolio-content {
    padding: 25px 13px;
  }
}
.portfolio-card .portfolio-content span {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .portfolio-card .portfolio-content span {
    font-size: 13px;
  }
}
.portfolio-card .portfolio-content h3 {
  margin-bottom: 25px;
}
.portfolio-card .portfolio-content h3 a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  transition: 0.5s;
}
@media (max-width: 1399px) {
  .portfolio-card .portfolio-content h3 a {
    font-size: 26px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .portfolio-card .portfolio-content h3 a {
    font-size: 23px;
  }
}
@media (max-width: 991px) {
  .portfolio-card .portfolio-content h3 a {
    font-size: 22px;
    line-height: 1.2;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .portfolio-card .portfolio-content h3 a {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .portfolio-card .portfolio-content h3 a {
    font-size: 20px;
    line-height: 1.2;
  }
}
.portfolio-card .portfolio-content h3 a:hover {
  color: var(--primary-color3);
}
.portfolio-card .portfolio-content .portfolio-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 10px;
}
.portfolio-card .portfolio-content .portfolio-list li a {
  display: block;
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  border: 1px solid var(--text-color);
  padding: 5px 14px;
  border-radius: 15px;
  transition: all 0.5s;
}
@media (max-width: 576px) {
  .portfolio-card .portfolio-content .portfolio-list li a {
    font-size: 11px;
  }
}
.portfolio-card .portfolio-content .portfolio-list li a:hover {
  color: var(--primary-color1);
  border-color: var(--primary-color1);
}
.portfolio-card:hover .portfolio-img img {
  transform: scale(1.1);
}
.portfolio-card:hover .portfolio-img::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.portfolio-card:hover .icon {
  opacity: 1;
}
.portfolio-card.two .portfolio-img img {
  max-height: 374px;
  width: 100%;
}
.portfolio-card.two .portfolio-content {
  padding: 34px 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .portfolio-card.two .portfolio-content {
    padding: 30px 9px;
  }
}
@media (max-width: 767px) {
  .portfolio-card.two .portfolio-content {
    padding: 30px 20px;
  }
}
@media (max-width: 576px) {
  .portfolio-card.two .portfolio-content {
    padding: 25px 13px;
  }
}
@media (max-width: 991px) {
  .portfolio-card.two .portfolio-content h3 {
    line-height: 1.2;
  }
}
.portfolio-card.two .portfolio-content h3 a {
  font-size: 28px;
}
@media (max-width: 1399px) {
  .portfolio-card.two .portfolio-content h3 a {
    font-size: 24px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .portfolio-card.two .portfolio-content h3 a {
    font-size: 23px;
  }
}
@media (max-width: 991px) {
  .portfolio-card.two .portfolio-content h3 a {
    line-height: 1.2;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .portfolio-card.two .portfolio-content h3 a {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .portfolio-card.two .portfolio-content h3 a {
    font-size: 20px;
    line-height: 1.2;
  }
}

/*=====================================
  31. Home3 About Section CSS
========================================*/
.home3-about-section {
  background-image: url(../img/home3/home3-about-bg-img.png), linear-gradient(180deg, rgb(255, 242, 229) 0%, rgb(255, 242, 229) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
}
@media (max-width: 1199px) {
  .home3-about-section {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .home3-about-section {
    padding: 70px 0;
  }
}
@media (max-width: 1199px) {
  .home3-about-section .section-title h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .home3-about-section .section-title h2 {
    font-size: 31px;
  }
}
@media (max-width: 576px) {
  .home3-about-section .section-title h2 {
    font-size: 25px;
  }
}
.home3-about-section .video-and-content {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 554px;
  width: 100%;
}
@media (max-width: 1399px) {
  .home3-about-section .video-and-content {
    max-width: 515px;
  }
}
@media (max-width: 1199px) {
  .home3-about-section .video-and-content {
    max-width: 435px;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .home3-about-section .video-and-content {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .home3-about-section .video-and-content {
    flex-wrap: wrap;
  }
}
.home3-about-section .video-and-content .video-area {
  cursor: pointer;
  display: inline-block;
}
.home3-about-section .video-and-content .video-area .icon {
  position: relative;
}
.home3-about-section .video-and-content .video-area .icon .video-circle {
  stroke: var(--primary-color3);
  fill: none;
  transition: 0.5s;
}
@media (max-width: 1199px) {
  .home3-about-section .video-and-content .video-area .icon .video-circle {
    width: 70px;
  }
}
@media (max-width: 576px) {
  .home3-about-section .video-and-content .video-area .icon .video-circle {
    width: 68px;
  }
}
.home3-about-section .video-and-content .video-area .icon .video-circle .top-half {
  stroke-dasharray: 430;
  stroke-dashoffset: 320;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.home3-about-section .video-and-content .video-area .icon .play-icon {
  fill: var(--primary-color3);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: 2px;
}
@media (max-width: 576px) {
  .home3-about-section .video-and-content .video-area .icon .play-icon {
    width: 20px;
  }
}
.home3-about-section .video-and-content .video-area:hover .icon .video-circle .top-half {
  stroke-dashoffset: 0;
}
.home3-about-section .video-and-content .content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 15px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 0;
  padding-left: 15px;
  position: relative;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home3-about-section .video-and-content .content p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .home3-about-section .video-and-content .content p {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .home3-about-section .video-and-content .content p {
    padding-left: 0;
  }
}
.home3-about-section .video-and-content .content p::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2px;
  height: 77px;
  background-color: rgba(var(--black-color-opc), 0.3);
}
@media (max-width: 576px) {
  .home3-about-section .video-and-content .content p::before {
    display: none;
  }
}
.home3-about-section .about-img img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1399px) {
  .home3-about-section .about-img img {
    min-height: 550px;
  }
}
.home3-about-section .about-content {
  max-width: 734px;
  width: 100%;
  margin-left: auto;
}
@media (max-width: 767px) {
  .home3-about-section .about-content {
    max-width: unset;
  }
}
.home3-about-section .about-content h3 {
  color: var(--title-color);
  margin-bottom: 45px;
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 30px;
  line-height: 45px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home3-about-section .about-content h3 {
    font-size: 28px;
    line-height: 43px;
  }
}
@media (max-width: 1399px) {
  .home3-about-section .about-content h3 {
    font-size: 25px;
    line-height: 40px;
    margin-bottom: 35px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home3-about-section .about-content h3 {
    font-size: 22px;
    line-height: 36px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .home3-about-section .about-content h3 {
    font-size: 21px;
    line-height: 39px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .home3-about-section .about-content h3 {
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 25px;
  }
}
.home3-about-section .about-content h3 span {
  color: rgba(var(--title-color-opc), 0.5);
}
.home3-about-section .about-content .primary-btn3 {
  margin-bottom: 100px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home3-about-section .about-content .primary-btn3 {
    margin-bottom: 80px;
  }
}
@media (max-width: 1399px) {
  .home3-about-section .about-content .primary-btn3 {
    margin-bottom: 70px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home3-about-section .about-content .primary-btn3 {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .home3-about-section .about-content .primary-btn3 {
    margin-bottom: 40px;
  }
}
.home3-about-section .about-content .about-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home3-about-section .about-content .about-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.home3-about-section .about-content .about-list li {
  max-width: 312px;
  width: 100%;
}
@media (max-width: 767px) {
  .home3-about-section .about-content .about-list li {
    max-width: unset;
  }
}
.home3-about-section .about-content .about-list li h4 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home3-about-section .about-content .about-list li h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .home3-about-section .about-content .about-list li h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .home3-about-section .about-content .about-list li h4 {
    font-size: 18px;
  }
}
.home3-about-section .about-content .about-list li p {
  color: var(--text-color);
  margin-bottom: 0;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home3-about-section .about-content .about-list li p {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .home3-about-section .about-content .about-list li p {
    font-size: 15px;
  }
}

/*=====================================
  32. Home3 Testimonial Section CSS
========================================*/
.home3-testimonial-section {
  background-image: url(../img/home3/home3-testimonial-bg.png), linear-gradient(180deg, rgb(226, 240, 249) 0%, rgb(226, 240, 249) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 0;
}
@media (max-width: 767px) {
  .home3-testimonial-section {
    padding: 70px 0;
  }
}
.home3-testimonial-section .testimonial-left-content {
  background-color: #FFFAF3;
  padding: 45px 33px 40px 33px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  height: 100%;
}
@media (max-width: 1399px) {
  .home3-testimonial-section .testimonial-left-content {
    padding: 40px 25px 40px 25px;
  }
}
@media (max-width: 576px) {
  .home3-testimonial-section .testimonial-left-content {
    padding: 35px 17px 35px 17px;
  }
}
.home3-testimonial-section .testimonial-left-content h2 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .home3-testimonial-section .testimonial-left-content h2 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .home3-testimonial-section .testimonial-left-content h2 {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .home3-testimonial-section .testimonial-left-content h2 {
    font-size: 27px;
  }
}
@media (max-width: 576px) {
  .home3-testimonial-section .testimonial-left-content h2 {
    font-size: 22px;
    line-height: 1.3;
  }
}
.home3-testimonial-section .testimonial-left-content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 55px;
}
@media (max-width: 1399px) {
  .home3-testimonial-section .testimonial-left-content p {
    margin-bottom: 40px;
  }
}
@media (max-width: 1399px) and (max-width: 576px) {
  .home3-testimonial-section .testimonial-left-content p {
    font-size: 15px;
    line-height: 1.6;
  }
}
.home3-testimonial-section .testimonial-left-content .primary-btn3 {
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .home3-testimonial-section .testimonial-left-content .primary-btn3 {
    margin-bottom: 35px;
  }
}
.home3-testimonial-section .testimonial-left-content .primary-btn3 span {
  background-color: #FF6C10;
}
.home3-testimonial-section .testimonial-left-content .people-area {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .home3-testimonial-section .testimonial-left-content .people-area {
    gap: 10px;
  }
}
.home3-testimonial-section .testimonial-left-content .people-area .img-grp {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.home3-testimonial-section .testimonial-left-content .people-area .img-grp li img {
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #F0F2F4;
  margin-left: -15px;
}
@media (max-width: 576px) {
  .home3-testimonial-section .testimonial-left-content .people-area .img-grp li img {
    min-width: 37px;
    max-width: 37px;
    height: 37px;
  }
}
.home3-testimonial-section .testimonial-left-content .people-area .img-grp li:first-child img {
  margin-left: 0;
}
.home3-testimonial-section .testimonial-left-content .people-area a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  max-width: 145px;
  text-decoration: underline;
}
.home3-testimonial-section .testimonial-left-content .vector {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .home3-testimonial-section .testimonial-left-content .vector {
    width: 240px;
  }
}
.home3-testimonial-section .pagination-area .pagination {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: unset;
  z-index: 9;
  bottom: unset;
  gap: 8px;
}
@media (max-width: 576px) {
  .home3-testimonial-section .pagination-area .pagination {
    justify-content: center;
    gap: 6px;
  }
}
.home3-testimonial-section .pagination-area .pagination .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid rgba(63, 68, 75, 0.6);
  opacity: 1;
  position: relative;
}
.home3-testimonial-section .pagination-area .pagination .swiper-pagination-bullet::after {
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: rgba(var(--primary-color3-opc), 0.4);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home3-testimonial-section .pagination-area .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--primary-color3);
  height: 16px;
  width: 16px;
}
.home3-testimonial-section .pagination-area .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color3);
}
.home3-testimonial-section .home3-testimonial-slider .swiper-slide-active .author {
  animation: fadeInDown 1.7s;
}
.home3-testimonial-section .home3-testimonial-slider .swiper-slide-active span,
.home3-testimonial-section .home3-testimonial-slider .swiper-slide-active > p {
  animation: fadeInUp 1.7s;
}

.testimonial-card {
  background-image: url(../img/home3/home3-testimonial-card-bg-img.png), linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 27px 60px 25px 60px;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .testimonial-card {
    padding: 27px 35px 25px 34px;
  }
}
@media (max-width: 767px) {
  .testimonial-card {
    padding: 25px;
  }
}
@media (max-width: 576px) {
  .testimonial-card {
    padding: 25px 10px;
  }
}
.testimonial-card .author {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .testimonial-card .author {
    margin-bottom: 25px;
  }
}
.testimonial-card .author img {
  border-radius: 50%;
  margin-bottom: 12px;
}
.testimonial-card .author h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 8px;
  transition: all 0.5s;
}
@media (max-width: 1199px) {
  .testimonial-card .author h3 {
    font-size: 19px;
  }
}
@media (max-width: 576px) {
  .testimonial-card .author h3 {
    font-size: 18px;
  }
}
.testimonial-card .author span {
  color: var(--text-color);
  font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  display: block;
  transition: all 0.5s;
}
.testimonial-card .testimonial-card-content {
  text-align: center;
  margin-bottom: 28px;
}
.testimonial-card .testimonial-card-content span {
  color: var(--primary-color3);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  display: block;
  margin-bottom: 17px;
}
@media (max-width: 767px) {
  .testimonial-card .testimonial-card-content span {
    font-size: 17px;
  }
}
.testimonial-card .testimonial-card-content > p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 21px;
  line-height: 45px;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 1399px) {
  .testimonial-card .testimonial-card-content > p {
    font-size: 19px;
    line-height: 39px;
  }
}
@media (max-width: 1199px) {
  .testimonial-card .testimonial-card-content > p {
    font-size: 18px;
    line-height: 36px;
  }
}
@media (max-width: 576px) {
  .testimonial-card .testimonial-card-content > p {
    font-size: 16px;
    line-height: 34px;
  }
}
.testimonial-card .review-and-partner {
  padding-top: 20px;
  border-top: 1px solid rgba(var(--title-color-opc), 0.05);
  display: flex;
  justify-content: space-between;
}
.testimonial-card .review-and-partner .rating-area::before {
  display: none;
}
@media (max-width: 576px) {
  .testimonial-card .review-and-partner img {
    width: 80px;
  }
}
.testimonial-card.two {
  padding: 27px 26px 30px 26px;
  background-image: url(../img/home4/home4-testimonial-card-bg.png), linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
}
@media (max-width: 991px) {
  .testimonial-card.two {
    padding: 27px 17px 30px 17px;
  }
}
.testimonial-card.two img {
  margin-bottom: 20px;
  border-radius: 50%;
  margin-left: auto;
  display: flex;
  margin-right: 27px;
}
@media (max-width: 991px) {
  .testimonial-card.two img {
    margin-bottom: 15px;
  }
}
.testimonial-card.two .thumb-video {
  opacity: 0;
  border-radius: 10px;
  line-height: 0;
  transition: 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.testimonial-card.two .thumb-video video {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
  z-index: 1;
}
.testimonial-card.two .thumb-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38.36%, rgba(0, 0, 0, 0.8) 86.6%);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}
.testimonial-card.two .author {
  text-align: start;
  margin-bottom: 0;
  padding-top: 30px;
  border-top: 1px solid rgba(var(--title-color-opc), 0.05);
  position: relative;
  z-index: 2;
}
.testimonial-card.two .testimonial-card-content {
  text-align: start;
  margin-bottom: 35px;
}
.testimonial-card.two .testimonial-card-content p {
  text-align: start;
  font-size: 19px;
  line-height: 35px;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .testimonial-card.two .testimonial-card-content p {
    font-size: 17px;
    margin-bottom: 17px;
  }
}
.testimonial-card.two .testimonial-card-content span {
  font-weight: 600;
  background: linear-gradient(270deg, #386BB7 0%, #E24C4A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 0;
}
.testimonial-card.two:hover .thumb-video {
  opacity: 1;
  z-index: 2;
}
.testimonial-card.two:hover .author {
  border-color: rgba(var(--white-color-opc), 0.05);
}
.testimonial-card.two:hover .author h3 {
  color: var(--white-color);
}
.testimonial-card.two:hover .author span {
  color: rgba(var(--white-color-opc), 0.7);
}
.testimonial-card.three {
  background: #0F0F0F;
  padding: 30px 31px 40px;
  position: relative;
}
@media (max-width: 1399px) {
  .testimonial-card.three {
    padding: 30px 25px 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-card.three {
    padding: 30px 15px;
  }
}
@media (max-width: 576px) {
  .testimonial-card.three {
    padding: 30px 15px;
  }
}
.testimonial-card.three .author {
  text-align: start;
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(var(--white-color-opc), 0.1);
}
@media (max-width: 576px) {
  .testimonial-card.three .author {
    margin-bottom: 15px;
  }
}
.testimonial-card.three .author h3 {
  color: var(--white-color);
}
@media (max-width: 991px) {
  .testimonial-card.three .author h3 {
    font-size: 17px;
  }
}
.testimonial-card.three .author span {
  font-weight: 500;
  color: rgba(var(--white-color-opc), 0.6);
}
.testimonial-card.three .author img {
  margin-bottom: 0;
}
.testimonial-card.three .testimonial-card-content {
  text-align: start;
  margin-bottom: 0;
}
.testimonial-card.three .testimonial-card-content p {
  color: rgba(var(--white-color-opc), 0.6);
  text-align: start;
  font-size: 18px;
  line-height: 35px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .testimonial-card.three .testimonial-card-content p {
    font-size: 16px;
    line-height: 33px;
  }
}
.testimonial-card.three .testimonial-card-content span {
  color: #2453D4;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.testimonial-card.three .vector {
  position: absolute;
  bottom: 0;
  right: 40px;
}

/*=====================================
  33. Home3 Team Section CSS
========================================*/
.home3-team-section .team-card .team-img-area {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.home3-team-section .team-card .team-img-area img {
  border-radius: 10px;
}
.home3-team-section .team-card .team-img-area canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home3-team-section .team-card .team-img-area .tag {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  display: block;
  background-color: var(--white-color);
  padding: 10px 15px;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 8px;
  z-index: 2;
}
@media (max-width: 767px) {
  .home3-team-section .team-card .team-img-area .tag {
    font-size: 13px;
    padding: 8px 13px;
  }
}
.home3-team-section .team-card .team-img-area .title {
  margin-bottom: 0;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  background-color: var(--white-color);
  padding: 10px 15px;
  position: absolute;
  bottom: 0;
  left: 65px;
  border-radius: 10px 10px 0 0;
  z-index: 2;
}
@media (max-width: 1399px) {
  .home3-team-section .team-card .team-img-area .title {
    font-size: 17px;
    left: 50px;
  }
}
@media (max-width: 767px) {
  .home3-team-section .team-card .team-img-area .title {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .home3-team-section .team-card .team-img-area .title {
    left: 90px;
  }
}
.home3-team-section .slider-btn-grp {
  justify-content: space-between;
}
@media (max-width: 576px) {
  .home3-team-section .slider-btn-grp {
    justify-content: center;
  }
}
.home3-team-section .slider-btn-grp .slider-btn {
  border: 1px solid rgba(var(--title-color-opc), 0.3);
}
.home3-team-section .slider-btn-grp .slider-btn svg {
  fill: rgba(var(--title-color-opc), 0.4);
}
.home3-team-section .slider-btn-grp .slider-btn:hover svg {
  fill: var(--white-color);
}
.home3-team-section .slider-btn-grp .contact-btn {
  color: var(--text-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  padding: 15px 28px;
  border-radius: 100px;
  border: 1px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, rgba(1, 14, 208, 0.2), rgba(1, 7, 106, 0.2)) border-box;
}
.home3-team-section .slider-btn-grp .contact-btn a {
  color: var(--title-color);
  padding-bottom: 2px;
  background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0% 90%;
  transition: background-size 0.75s;
  white-space: nowrap;
}
.home3-team-section .slider-btn-grp .contact-btn a:hover {
  background-size: 0px 1px;
  background-position: 0 90%;
}
@media (max-width: 767px) {
  .home3-team-section .slider-btn-grp .contact-btn {
    text-align: center;
  }
}

/*=====================================
  34. Home3 Team BG CSS
========================================*/
.team-bg-section {
  padding: 90px 0;
  background-image: url(../img/home3/home3-team-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 767px) {
  .team-bg-section {
    padding: 70px 0;
  }
}
.team-bg-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.team-bg-section h2 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 52px;
  line-height: 65px;
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .team-bg-section h2 {
    font-size: 48px;
  }
}
@media (max-width: 1399px) {
  .team-bg-section h2 {
    font-size: 41px;
    line-height: 58px;
  }
}
@media (max-width: 991px) {
  .team-bg-section h2 {
    font-size: 38px;
    line-height: 53px;
  }
}
@media (max-width: 576px) {
  .team-bg-section h2 {
    font-size: 27px;
    line-height: 40px;
  }
}
.team-bg-section h2 span {
  color: #FF6C10;
}

/*=====================================
  35. Home3 Blog Section CSS
========================================*/
.home3-blog-section .blog-card-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--borders-color);
  padding-bottom: 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home3-blog-section .blog-card-wrapper {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .home3-blog-section .blog-card-wrapper {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .home3-blog-section .blog-card-wrapper {
    flex-wrap: wrap;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .home3-blog-section .blog-card-wrapper .blog-card-content ul {
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home3-blog-section .blog-card-wrapper .blog-card-content h3 a {
    font-size: 19px;
  }
}
.home3-blog-section .navigation-and-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home3-blog-section .navigation-and-social .slider-btn-grp {
  gap: 40px;
}
.home3-blog-section .navigation-and-social .slider-btn-grp .slider-btn {
  border-color: rgba(var(--title-color-opc), 0.3);
}
.home3-blog-section .navigation-and-social .slider-btn-grp .slider-btn svg {
  fill: rgba(var(--title-color-opc), 0.4);
}
.home3-blog-section .navigation-and-social .slider-btn-grp .slider-btn:hover {
  border-color: var(--primary-color3);
  background-color: var(--primary-color3);
}
.home3-blog-section .navigation-and-social .slider-btn-grp .slider-btn:hover svg {
  fill: var(--white-color);
}
.home3-blog-section .navigation-and-social .social-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.home3-blog-section .navigation-and-social .social-wrapper span {
  color: var(--title-color);
  display: block;
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
}
.home3-blog-section .navigation-and-social .social-wrapper ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 23px;
}
.home3-blog-section .navigation-and-social .social-wrapper ul li {
  line-height: 1;
}
.home3-blog-section .navigation-and-social .social-wrapper ul li svg {
  fill: rgba(var(--title-color-opc), 0.4);
  transition: all 0.5s;
}
.home3-blog-section .navigation-and-social .social-wrapper ul li svg:hover {
  fill: var(--primary-color3);
}

.blog-sidebar {
  background-color: #F2F9FF;
  padding: 30px 25px;
  border-radius: 10px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .blog-sidebar {
    padding: 30px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-sidebar {
    padding: 30px 15px;
  }
}
@media (max-width: 576px) {
  .blog-sidebar {
    padding: 25px 10px;
  }
}
.blog-sidebar ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.blog-sidebar ul li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(var(--title-color-opc), 0.1);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-sidebar ul li {
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .blog-sidebar ul li {
    flex-wrap: wrap;
    gap: 23px;
  }
}
.blog-sidebar ul li .blog-sidebar-img img {
  border-radius: 5px;
  min-width: 90px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-sidebar ul li .blog-sidebar-img img {
    min-width: 80px;
  }
}
.blog-sidebar ul li .blog-sidebar-content .date {
  display: block;
  color: rgba(var(--title-color-opc), 0.5);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 6px;
  transition: all 0.5s;
}
@media (max-width: 576px) {
  .blog-sidebar ul li .blog-sidebar-content .date {
    margin-bottom: 10px;
  }
}
.blog-sidebar ul li .blog-sidebar-content .date:hover {
  color: var(--primary-color3);
}
.blog-sidebar ul li .blog-sidebar-content h4 {
  margin-bottom: 0;
  line-height: 28px;
}
.blog-sidebar ul li .blog-sidebar-content h4 a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
  background-repeat: no-repeat;
  background-size: 0px 1.5px;
  background-position: right 95%;
  transition: background-size 0.75s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .blog-sidebar ul li .blog-sidebar-content h4 a {
    font-size: 16px;
    line-height: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-sidebar ul li .blog-sidebar-content h4 a {
    font-size: 16px;
    line-height: 25px;
  }
}
.blog-sidebar ul li .blog-sidebar-content h4 a:hover {
  background-size: 100% 1.5px;
  background-position: 0 95%;
}
.blog-sidebar ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: unset;
}
.blog-sidebar.two {
  background-color: #121212;
}
.blog-sidebar.two ul li .blog-sidebar-content .date {
  color: rgba(var(--white-color-opc), 0.6);
  margin-bottom: 8px;
}
.blog-sidebar.two ul li .blog-sidebar-content .date:hover {
  color: var(--primary-color3);
}
.blog-sidebar.two ul li .blog-sidebar-content h4 {
  margin-bottom: 0;
  line-height: 28px;
}
.blog-sidebar.two ul li .blog-sidebar-content h4 a {
  color: var(--white-color);
  background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 98%);
  background-repeat: no-repeat;
  background-size: 0px 1.5px;
  background-position: right 95%;
  transition: background-size 0.75s;
  font-weight: 500;
  line-height: 28px;
  font-size: 17px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-sidebar.two ul li .blog-sidebar-content h4 a {
    line-height: 21px;
    font-size: 15px;
  }
}
.blog-sidebar.two ul li .blog-sidebar-content h4 a:hover {
  background-size: 100% 1.5px;
  background-position: 0 95%;
}

/*=====================================
  36. Home4 Project Management Section CSS
========================================*/
.home4-project-management-system {
  background-image: url(../img/home4/home4-project-management-bg.png), linear-gradient(180deg, rgb(238, 249, 255) 0%, rgb(238, 249, 255) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 0;
}
@media (max-width: 1199px) {
  .home4-project-management-system {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .home4-project-management-system {
    padding: 70px 0;
  }
}
@media (max-width: 576px) {
  .home4-project-management-system .section-title h2 {
    font-size: 26px;
    line-height: 37px;
  }
}
.home4-project-management-system .section-title p {
  max-width: 536px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .home4-project-management-system .section-title p {
    max-width: unset;
  }
}
.home4-project-management-system .project-management-nav .nav-pills {
  justify-content: center;
  gap: 25px;
}
@media (max-width: 1399px) {
  .home4-project-management-system .project-management-nav .nav-pills {
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .home4-project-management-system .project-management-nav .nav-pills {
    gap: 15px;
    row-gap: 20px;
  }
}
@media (max-width: 991px) {
  .home4-project-management-system .project-management-nav .nav-pills {
    gap: 15px;
    row-gap: 20px;
  }
}
@media (max-width: 767px) {
  .home4-project-management-system .project-management-nav .nav-pills {
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .home4-project-management-system .project-management-nav .nav-pills {
    flex-direction: column;
    justify-content: center;
  }
}
.home4-project-management-system .project-management-nav .nav-pills .nav-item {
  transition: all 0.5s;
}
.home4-project-management-system .project-management-nav .nav-pills .nav-item .nav-link {
  color: rgba(var(--title-color-opc), 0.7);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  border-radius: 100px;
  border: 1px solid transparent;
  background: linear-gradient(#EEF9FF, #EEF9FF) padding-box, linear-gradient(90deg, rgba(56, 107, 183, 0.2), rgba(226, 76, 74, 0.2)) border-box;
  padding: 13px 30px;
  transition: all 0.5s;
}
@media (max-width: 1399px) {
  .home4-project-management-system .project-management-nav .nav-pills .nav-item .nav-link {
    font-size: 17px;
  }
}
@media (max-width: 1199px) {
  .home4-project-management-system .project-management-nav .nav-pills .nav-item .nav-link {
    font-size: 15px;
    padding: 12px 20px;
  }
}
@media (max-width: 991px) {
  .home4-project-management-system .project-management-nav .nav-pills .nav-item .nav-link {
    font-size: 16px;
    padding: 12px 25px;
  }
}
@media (max-width: 576px) {
  .home4-project-management-system .project-management-nav .nav-pills .nav-item .nav-link {
    width: 100%;
    font-size: 15px;
  }
}
.home4-project-management-system .project-management-nav .nav-pills .nav-item .nav-link.active {
  background: linear-gradient(270deg, #E24C4A 0%, #386BB7 100%);
  color: var(--white-color);
  border: transparent;
}
.home4-project-management-system .project-management-tab .project-management-tab-card {
  background-color: var(--white-color);
  padding: 70px 104px 0 102px;
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .home4-project-management-system .project-management-tab .project-management-tab-card {
    padding: 70px 60px 0 60px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-project-management-system .project-management-tab .project-management-tab-card {
    padding: 60px 20px 0 20px;
  }
}
@media (max-width: 991px) {
  .home4-project-management-system .project-management-tab .project-management-tab-card {
    padding: 50px 35px 0 35px;
  }
}
@media (max-width: 767px) {
  .home4-project-management-system .project-management-tab .project-management-tab-card {
    padding: 40px 30px 40px 30px;
    border-radius: 15px;
  }
}
@media (max-width: 576px) {
  .home4-project-management-system .project-management-tab .project-management-tab-card {
    padding: 40px 20px;
    border-radius: 15px;
  }
}
.home4-project-management-system .project-management-tab .project-management-tab-card .project-management-tab-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .home4-project-management-system .project-management-tab .project-management-tab-card .project-management-tab-content {
    flex-wrap: wrap;
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .home4-project-management-system .project-management-tab .project-management-tab-card .project-management-tab-content {
    margin-bottom: 0;
  }
}
.home4-project-management-system .project-management-tab .project-management-tab-card .project-management-tab-content .tab-content-top {
  max-width: 512px;
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-project-management-system .project-management-tab .project-management-tab-card .project-management-tab-content .tab-content-top {
    max-width: 420px;
  }
}
@media (max-width: 991px) {
  .home4-project-management-system .project-management-tab .project-management-tab-card .project-management-tab-content .tab-content-top {
    max-width: unset;
  }
}
.home4-project-management-system .project-management-tab .project-management-tab-card .project-management-tab-content .tab-content-top h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 35px;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .home4-project-management-system .project-management-tab .project-management-tab-card .project-management-tab-content .tab-content-top h3 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .home4-project-management-system .project-management-tab .project-management-tab-card .project-management-tab-content .tab-content-top h3 {
    font-size: 28px;
  }
}
.home4-project-management-system .project-management-tab .project-management-tab-card .project-management-tab-content .tab-content-top p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .home4-project-management-system .project-management-tab .project-management-tab-card .project-management-tab-content .tab-content-top p {
    font-size: 14px;
  }
}
.home4-project-management-system .project-management-tab .project-management-tab-card .project-management-tab-content .project-list {
  padding: 0;
  margin: 0;
  list-style: none;
  -moz-columns: 2;
       columns: 2;
}
@media (max-width: 576px) {
  .home4-project-management-system .project-management-tab .project-management-tab-card .project-management-tab-content .project-list {
    -moz-columns: 1;
         columns: 1;
  }
}
.home4-project-management-system .project-management-tab .project-management-tab-card .project-management-tab-content .project-list .single-project {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.3px;
  margin-bottom: 25px;
}
@media (max-width: 1399px) {
  .home4-project-management-system .project-management-tab .project-management-tab-card .project-management-tab-content .project-list .single-project {
    margin-bottom: 18px;
  }
}
.home4-project-management-system .project-management-tab .project-management-tab-card .project-management-tab-content .project-list .single-project:last-child {
  margin-bottom: 0;
}
.home4-project-management-system .project-management-tab .project-management-tab-card .project-management-tab-content .project-list .single-project .icon svg {
  background: linear-gradient(270deg, #E24C4A 0%, #386BB7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (max-width: 767px) {
  .home4-project-management-system .project-management-tab .project-management-tab-card .project-management-tab-img-wrap {
    display: none;
  }
}

/*=====================================
  37. Home4 Project Feature Section CSS
========================================*/
@media (max-width: 576px) {
  .home4-product-feature-section .section-title h2 {
    font-size: 30px;
  }
}
.home4-product-feature-section .section-title p {
  max-width: 536px;
  margin: 0 auto;
  width: 100%;
}
.home4-product-feature-section .product-feature-wrapper {
  background-color: #F8FFFE;
  border: 1px solid rgba(var(--title-color-opc), 0.1);
  border-radius: 20px;
  padding: 45px 25px 45px 70px;
}
@media (max-width: 1399px) {
  .home4-product-feature-section .product-feature-wrapper {
    padding: 40px 20px 40px 30px;
  }
}
@media (max-width: 767px) {
  .home4-product-feature-section .product-feature-wrapper {
    padding: 30px 15px;
    border-radius: 15px;
  }
}
@media (max-width: 576px) {
  .home4-product-feature-section .product-feature-wrapper {
    border-radius: 10px;
    padding: 30px 10px;
  }
}
.home4-product-feature-section .product-feature-wrapper .feature-content-wrap .progressBarContainer div span.progressBar {
  width: 100%;
  height: 1px;
  background-color: rgba(var(--paragraph-color-opc), 0.1);
  display: block;
}
.home4-product-feature-section .product-feature-wrapper .feature-content-wrap .progressBarContainer div span.progressBar .inProgress {
  background-color: var(--primary-color1);
  width: 0%;
  height: 1px;
}
.home4-product-feature-section .product-feature-wrapper .feature-content-wrap .feature-list-wrap {
  max-width: 526px;
  width: 100%;
}
.home4-product-feature-section .product-feature-wrapper .feature-content-wrap .feature-list-wrap .pt-35 {
  padding-top: 35px;
}
@media (max-width: 991px) {
  .home4-product-feature-section .product-feature-wrapper .feature-content-wrap .feature-list-wrap .pt-35 {
    padding-top: 25px;
  }
}
.home4-product-feature-section .product-feature-wrapper .feature-content-wrap .single-feature {
  display: flex;
  gap: 20px;
  padding-bottom: 35px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-product-feature-section .product-feature-wrapper .feature-content-wrap .single-feature {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .home4-product-feature-section .product-feature-wrapper .feature-content-wrap .single-feature {
    padding-bottom: 25px;
  }
}
@media (max-width: 576px) {
  .home4-product-feature-section .product-feature-wrapper .feature-content-wrap .single-feature {
    flex-direction: column;
  }
}
.home4-product-feature-section .product-feature-wrapper .feature-content-wrap .single-feature .icon {
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFF7E4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--title-color-opc), 0.2);
}
.home4-product-feature-section .product-feature-wrapper .feature-content-wrap .single-feature .icon svg {
  fill: var(--text-color);
}
.home4-product-feature-section .product-feature-wrapper .feature-content-wrap .single-feature .content h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-product-feature-section .product-feature-wrapper .feature-content-wrap .single-feature .content h3 {
    margin-bottom: 5px;
  }
}
.home4-product-feature-section .product-feature-wrapper .feature-content-wrap .single-feature .content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-product-feature-section .product-feature-wrapper .feature-content-wrap .single-feature .content p {
    font-size: 14px;
  }
}
.home4-product-feature-section .product-feature-wrapper .feature-content-wrap .single-feature:last-child {
  padding-bottom: unset;
}
.home4-product-feature-section .product-feature-wrapper .feature-content-wrap .single-feature.two .icon {
  background-color: #F0EFE9;
}
.home4-product-feature-section .product-feature-wrapper .feature-content-wrap .single-feature.three .icon {
  background-color: #EFF4F8;
}
.home4-product-feature-section .product-feature-wrapper .feature-content-wrap .single-feature.four .icon {
  background-color: #F7F2FF;
}

/*=====================================
  38. Home4 Counter Section CSS
========================================*/
.home4-counter-section {
  padding: 70px 0;
  background-color: #5956E9;
}
.home4-counter-section .divider {
  position: relative;
}
.home4-counter-section .divider::before {
  content: url(../img/home4/vector/home4-counter-vector.svg);
  position: absolute;
  top: 53%;
  right: -8px;
  transform: translate(50%, -50%);
}
@media (max-width: 1399px) {
  .home4-counter-section .divider::before {
    right: -7px;
  }
}
@media (max-width: 1199px) {
  .home4-counter-section .divider::before {
    display: none;
  }
}
.home4-counter-section .divider:nth-child(1)::before {
  right: 10px;
}
@media (max-width: 1199px) {
  .home4-counter-section .divider:nth-child(1)::before {
    right: 0;
  }
}
.home4-counter-section .divider:nth-child(3)::before {
  right: -20px;
}
@media (max-width: 1199px) {
  .home4-counter-section .divider:nth-child(3)::before {
    right: 0;
  }
}
.home4-counter-section .divider:last-child::before {
  display: none;
}
.home4-counter-section .single-countdown {
  display: flex;
  align-items: center;
  gap: 24px;
}
.home4-counter-section .single-countdown .icon {
  background-color: var(--white-color);
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  transition: 0.35s;
}
.home4-counter-section .single-countdown .icon svg {
  fill: var(--title-color);
}
.home4-counter-section .single-countdown .content .number {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}
@media (max-width: 576px) {
  .home4-counter-section .single-countdown .content .number {
    margin-bottom: 10px;
  }
}
.home4-counter-section .single-countdown .content .number h2 {
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 35px;
  color: var(--white-color);
  line-height: 1;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .home4-counter-section .single-countdown .content .number h2 {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .home4-counter-section .single-countdown .content .number h2 {
    font-size: 30px;
  }
}
.home4-counter-section .single-countdown .content .number span {
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 35px;
  color: var(--white-color);
  line-height: 1;
}
@media (max-width: 767px) {
  .home4-counter-section .single-countdown .content .number span {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .home4-counter-section .single-countdown .content .number span {
    font-size: 30px;
  }
}
.home4-counter-section .single-countdown .content p {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  color: var(--white-color);
  line-height: 1.2;
  letter-spacing: 0.3px;
  margin-bottom: 0;
}
.home4-counter-section .single-countdown:hover .icon svg {
  animation: bounceIn 1s linear;
}

/*=====================================
  39. Home4 Testimonial Section CSS
========================================*/
.home4-testimonial-section {
  background-image: url(../img/home4/home4-testimonial-bg-img.png), linear-gradient(180deg, rgb(244, 244, 239) 0%, rgb(244, 244, 239) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 0;
}
.home4-testimonial-section .section-title p {
  max-width: 536px;
  width: 100%;
}
.home4-testimonial-section .slider-btn-grp .slider-btn {
  background-color: var(--white-color);
  border: 1px solid rgba(var(--title-color-opc), 0.3);
}
.home4-testimonial-section .slider-btn-grp .slider-btn svg {
  fill: rgba(var(--title-color-opc), 0.3);
}
.home4-testimonial-section .slider-btn-grp .slider-btn:hover {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}
.home4-testimonial-section .slider-btn-grp .slider-btn:hover svg {
  fill: var(--white-color);
}

/*=====================================
  40. Home4 FAQ Section CSS
========================================*/
.home4-faq-section .section-title h2 {
  font-size: 55px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home4-faq-section .section-title h2 {
    font-size: 45px;
    line-height: 60px;
  }
}
@media (max-width: 1399px) {
  .home4-faq-section .section-title h2 {
    font-size: 42px;
    line-height: 58px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-faq-section .section-title h2 {
    font-size: 37px;
    line-height: 55px;
  }
}
@media (max-width: 991px) {
  .home4-faq-section .section-title h2 {
    font-size: 37px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .home4-faq-section .section-title h2 {
    font-size: 33px;
    line-height: 45px;
  }
}
@media (max-width: 576px) {
  .home4-faq-section .section-title h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
.home4-faq-section .primary-btn2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 22px 39px;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  text-decoration: underline;
  text-transform: uppercase;
  font-family: var(--font-montserrat);
  border-radius: 6px;
  position: relative;
  background: linear-gradient(270deg, #386BB7 0%, #E24C4A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (max-width: 767px) {
  .home4-faq-section .primary-btn2 {
    padding: 19px 32px;
  }
}
.home4-faq-section .primary-btn2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 6px;
  padding: 2px;
  background: linear-gradient(270deg, #386BB7 0%, #E24C4A 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.home4-faq-section .primary-btn2 svg path {
  fill: url(#svgGradient);
}
.home4-faq-section .primary-btn2 span {
  background-color: var(--primary-color3);
}
.home4-faq-section .primary-btn2:hover {
  color: var(--white-color);
  background: unset;
  -webkit-text-fill-color: unset;
  border-color: var(--primary-color3);
}
.home4-faq-section .primary-btn2:hover svg {
  fill: var(--white-color);
}

.faq-wrap {
  max-width: 729px;
  width: 100%;
  padding: 60px 40px;
  background-color: #F6F9FF;
  border: 1px solid rgba(var(--title-color-opc), 0.05);
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .faq-wrap {
    padding: 45px 25px;
  }
}
@media (max-width: 991px) {
  .faq-wrap {
    max-width: unset;
  }
}
@media (max-width: 767px) {
  .faq-wrap {
    border-radius: 15px;
    padding: 35px 20px;
  }
}
@media (max-width: 576px) {
  .faq-wrap {
    border-radius: 10px;
    padding: 30px 10px;
  }
}
.faq-wrap .accordion .accordion-item {
  border: none;
  background-color: transparent;
}
.faq-wrap .accordion .accordion-item:first-child .accordion-header .accordion-button {
  padding-top: 0;
}
.faq-wrap .accordion .accordion-item .accordion-header .accordion-button {
  border: none;
  border-radius: unset;
  box-shadow: none;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: capitalize;
  padding: 0;
  padding-bottom: 20px;
  padding-top: 35px;
  background-color: transparent;
  border-bottom: 1px solid rgba(var(--black-color-opc), 0.1);
}
@media (max-width: 1199px) {
  .faq-wrap .accordion .accordion-item .accordion-header .accordion-button {
    padding-top: 25px;
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .faq-wrap .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 15px;
  }
}
.faq-wrap .accordion .accordion-item .accordion-header .accordion-button::after {
  width: unset;
  height: unset;
  content: url(../img/home4/icon/faq-accordion-arrow-down.svg);
  font-family: bootstrap-icons;
  background-image: none;
  font-weight: 800;
  font-size: 17px;
}
.faq-wrap .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: unset;
}
.faq-wrap .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: url(../img/home4/icon/faq-accordion-arrow-up.svg);
  transform: unset;
}
@media (max-width: 576px) {
  .faq-wrap .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 15px;
  }
}
.faq-wrap .accordion .accordion-item .accordion-body {
  padding: 20px;
  padding-bottom: 10px;
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
@media (max-width: 576px) {
  .faq-wrap .accordion .accordion-item .accordion-body {
    font-size: 15px;
    padding: 15px;
    padding-bottom: 5px;
  }
}
.faq-wrap.two {
  max-width: unset;
  background-color: unset;
  border: unset;
  padding: unset;
}
.faq-wrap.two .accordion .accordion-item .accordion-header .accordion-button::after {
  content: url(../img/home7/icon/home7-faq-down.svg);
}
.faq-wrap.two .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: url(../img/home7/icon/home7-faq-up.svg);
}
.faq-wrap.three {
  padding: 0;
  background-color: unset;
  border: unset;
  max-width: 560px;
}
@media (max-width: 991px) {
  .faq-wrap.three {
    max-width: unset;
  }
}

/*=====================================
  41. Home4 Newsletter Section CSS
========================================*/
.home4-newsletter-section {
  background-image: url(../img/home4/home4-newsletter-bg.png), linear-gradient(180deg, rgb(20, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 113px 0;
}
@media (max-width: 1199px) {
  .home4-newsletter-section {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .home4-newsletter-section {
    padding: 70px 0;
  }
}
.home4-newsletter-section .news-letter-content {
  max-width: 638px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.home4-newsletter-section .news-letter-content h2 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 50px;
  line-height: 62px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .home4-newsletter-section .news-letter-content h2 {
    font-size: 38px;
    line-height: 51px;
  }
}
@media (max-width: 767px) {
  .home4-newsletter-section .news-letter-content h2 {
    font-size: 29px;
    line-height: 42px;
  }
}
@media (max-width: 576px) {
  .home4-newsletter-section .news-letter-content h2 {
    font-size: 22px;
    line-height: 33px;
  }
}
.home4-newsletter-section .news-letter-content form {
  display: flex;
  justify-content: center;
}
.home4-newsletter-section .news-letter-content form .form-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px 4px 24px;
  border: 1px solid rgba(var(--white-color-opc), 0.3);
  border-radius: 5px;
  border-radius: 5px;
  min-width: 510px;
  max-width: 510px;
  height: 60px;
  background-color: rgba(var(--white-color-opc), 0.1);
  backdrop-filter: blur(4px);
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home4-newsletter-section .news-letter-content form .form-inner {
    min-width: 460px;
    max-width: 460px;
  }
}
@media (max-width: 1399px) {
  .home4-newsletter-section .news-letter-content form .form-inner {
    min-width: 410px;
    max-width: 410px;
  }
}
@media (max-width: 991px) {
  .home4-newsletter-section .news-letter-content form .form-inner {
    height: 50px;
  }
}
@media (max-width: 576px) {
  .home4-newsletter-section .news-letter-content form .form-inner {
    min-width: unset;
    width: 100%;
  }
}
.home4-newsletter-section .news-letter-content form .form-inner input {
  background: transparent;
  height: unset;
  border: unset;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-color);
}
.home4-newsletter-section .news-letter-content form .form-inner input::-moz-placeholder {
  color: rgba(var(--white-color-opc), 0.4);
  font-weight: 400;
}
.home4-newsletter-section .news-letter-content form .form-inner input::placeholder {
  color: rgba(var(--white-color-opc), 0.4);
  font-weight: 400;
}
.home4-newsletter-section .news-letter-content form .form-inner button {
  min-width: 36px;
  max-width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.home4-newsletter-section .news-letter-content form .form-inner button svg {
  fill: var(--white-color);
  transition: 0.5s;
}
.home4-newsletter-section .news-letter-content form .form-inner button:hover {
  background-color: var(--white-color);
}
.home4-newsletter-section .news-letter-content form .form-inner button:hover svg {
  fill: var(--black-color);
}

/*=====================================
  42. Home4 Pricing Section CSS
========================================*/
.home4-pricing-section {
  background-image: url(../img/home4/home4-pricing-plan-section-bg.png), linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 0;
}
@media (max-width: 767px) {
  .home4-pricing-section {
    padding: 70px 0;
  }
}
.home4-pricing-section .section-title-and-toggle-btn {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media (max-width: 991px) {
  .home4-pricing-section .section-title-and-toggle-btn {
    flex-wrap: wrap;
    gap: 24px;
  }
}
.home4-pricing-section .section-title-and-toggle-btn .section-title {
  max-width: 661px;
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-pricing-section .section-title-and-toggle-btn .section-title {
    max-width: 540px;
  }
}
@media (max-width: 991px) {
  .home4-pricing-section .section-title-and-toggle-btn .section-title {
    max-width: unset;
  }
}
.home4-pricing-section .section-title-and-toggle-btn .section-title p {
  max-width: 536px;
  width: 100%;
}
.home4-pricing-section .pricing-card {
  background-image: url(../img/home4/pricing-card-bg-img.png), linear-gradient(180deg, rgb(15, 15, 15) 0%, rgb(15, 15, 15) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 35px;
  border-radius: 20px;
  max-width: 404px;
  width: 100%;
}
@media (max-width: 1399px) {
  .home4-pricing-section .pricing-card {
    padding: 40px 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-pricing-section .pricing-card {
    padding: 35px 15px;
  }
}
@media (max-width: 991px) {
  .home4-pricing-section .pricing-card {
    padding: 35px 20px;
  }
}
@media (max-width: 767px) {
  .home4-pricing-section .pricing-card {
    max-width: unset;
    border-radius: 15px;
  }
}
@media (max-width: 576px) {
  .home4-pricing-section .pricing-card {
    border-radius: 10px;
  }
}
.home4-pricing-section .pricing-card .pricing-content h2 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 25px;
  line-height: 1;
  margin-bottom: 15px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-pricing-section .pricing-card .pricing-content h2 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .home4-pricing-section .pricing-card .pricing-content h2 {
    font-size: 23px;
  }
}
.home4-pricing-section .pricing-card .pricing-content p {
  color: rgba(var(--white-color-opc), 0.6);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .home4-pricing-section .pricing-card .pricing-content p {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .home4-pricing-section .pricing-card .pricing-content p {
    line-height: 28px;
  }
}
.home4-pricing-section .pricing-card .pricing-content h3 {
  color: var(--white-color);
  font-weight: 600;
  font-size: 50px;
  line-height: 1;
  margin-bottom: 45px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-pricing-section .pricing-card .pricing-content h3 {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .home4-pricing-section .pricing-card .pricing-content h3 {
    font-size: 42px;
    margin-bottom: 35px;
  }
}
@media (max-width: 576px) {
  .home4-pricing-section .pricing-card .pricing-content h3 {
    font-size: 40px;
  }
}
.home4-pricing-section .pricing-card .pricing-content h3 span {
  font-size: 17px;
  font-weight: 400;
  background: linear-gradient(269.95deg, #E24C4A 55.11%, #386BB7 75.46%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 1199px) {
  .home4-pricing-section .pricing-card .pricing-content h3 span {
    font-size: 16px;
  }
}
.home4-pricing-section .pricing-card .pricing-content .price {
  display: none;
}
.home4-pricing-section .pricing-card .pricing-content .price.monthly {
  display: block;
}
.home4-pricing-section .pricing-card .primary-btn2 {
  width: 100%;
  justify-content: center;
  margin-bottom: 40px;
  padding: 18px 20px;
  border-radius: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-pricing-section .pricing-card .primary-btn2 {
    margin-bottom: 30px;
    padding: 16px 20px;
  }
}
.home4-pricing-section .pricing-card .pricing-list-wrapper h4 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-pricing-section .pricing-card .pricing-list-wrapper h4 {
    font-size: 15px;
  }
}
.home4-pricing-section .pricing-card .pricing-list-wrapper .pricing-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.home4-pricing-section .pricing-card .pricing-list-wrapper .pricing-list .single-pricing {
  margin-bottom: 25px;
  display: flex;
  gap: 8px;
  color: rgba(var(--white-color-opc), 0.6);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  .home4-pricing-section .pricing-card .pricing-list-wrapper .pricing-list .single-pricing {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.home4-pricing-section .pricing-card .pricing-list-wrapper .pricing-list .single-pricing:last-child {
  margin-bottom: 0;
}
.home4-pricing-section .pricing-card.two {
  background-image: url(../img/home4/pricing-card-bg-img.png), linear-gradient(270deg, rgba(226, 76, 74, 0.4) 0%, rgba(56, 107, 183, 0.4) 100%);
  position: relative;
}
.home4-pricing-section .pricing-card.two .tag {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  background-image: url(../img/home4/popular-tag.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 145px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 41px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-pricing-section .pricing-card.two .tag {
    width: 130px;
    height: 33px;
    right: 30px;
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .home4-pricing-section .pricing-card.two .tag {
    font-size: 17px;
    width: 140px;
    height: 34px;
    right: 35px;
  }
}
.home4-pricing-section .pricing-card.two .pricing-content h2 span {
  -webkit-text-fill-color: unset;
  color: #FE5B2C;
}
.home4-pricing-section .pricing-card.two .primary-btn2 {
  background: linear-gradient(270deg, #E24C4A 0%, #386BB7 100%);
}
.home4-pricing-section .pricing-card.two .primary-btn2 span {
  background-color: var(--title-color);
}
.home4-pricing-section .pricing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home4-pricing-section .pricing-toggle {
    min-width: 350px;
  }
}
@media (max-width: 1199px) {
  .home4-pricing-section .pricing-toggle {
    min-width: 350px;
  }
}
.home4-pricing-section .pricing-toggle .label {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  display: block;
  position: relative;
}
@media (max-width: 576px) {
  .home4-pricing-section .pricing-toggle .label {
    font-size: 15px;
  }
}
.home4-pricing-section .pricing-toggle .label strong {
  color: var(--white-color);
  font-family: var(--font-poppins);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  background-color: #FE5B2C;
  padding: 4px 12px;
  border-radius: 50px;
  position: absolute;
  top: -8px;
  right: -62px;
}
@media (max-width: 576px) {
  .home4-pricing-section .pricing-toggle .label strong {
    top: -18px;
    right: 0px;
  }
}
.home4-pricing-section .switch {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 32px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-pricing-section .switch {
    width: 60px;
    height: 30px;
  }
}
@media (max-width: 576px) {
  .home4-pricing-section .switch {
    width: 59px;
    height: 29px;
  }
}
.home4-pricing-section .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.home4-pricing-section .switch .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #EFEFFF;
  border-radius: 50px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.0509803922);
  transition: 0.4s;
}
.home4-pricing-section .switch .slider::before {
  content: "";
  position: absolute;
  height: 26px;
  width: 32px;
  left: 3px;
  bottom: 3px;
  background: linear-gradient(270deg, #E24C4A, #386BB7);
  border-radius: 50%;
  transition: 0.4s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-pricing-section .switch .slider::before {
    height: 24px;
    width: 30px;
  }
}
@media (max-width: 576px) {
  .home4-pricing-section .switch .slider::before {
    height: 23px;
    width: 28px;
  }
}
.home4-pricing-section .switch input:checked + .slider::before {
  transform: translateX(26px);
}
.home4-pricing-section.two {
  background-image: unset;
  padding: unset;
}
.home4-pricing-section.two .section-title h2 span {
  background: unset;
  -webkit-text-fill-color: unset;
  color: var(--primary-color1);
}
.home4-pricing-section.two .pricing-toggle {
  justify-content: center;
}
.home4-pricing-section.two .pricing-toggle .label {
  color: var(--title-color);
  font-weight: 600;
}
.home4-pricing-section.two .switch .slider {
  border: 1px solid rgba(var(--title-color-opc), 0.1);
}
.home4-pricing-section.two .switch .slider::before {
  background: var(--primary-color1);
}
.home4-pricing-section.two .pricing-card.two {
  background-image: url(../img/home4/pricing-card-bg-img.png), linear-gradient(270deg, rgba(226, 76, 74, 0.3) 0%, rgba(56, 107, 183, 0.3) 100%);
}

/*=====================================
  43. Home4 Banner Section CSS
========================================*/
.home4-banner-section {
  position: relative;
  background-image: url(../img/home4/home4-banner-bg-img.png), linear-gradient(180deg, rgb(238, 239, 252) 0%, rgb(238, 239, 252) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 190px;
}
@media (max-width: 1399px) {
  .home4-banner-section {
    padding-top: 170px;
  }
}
@media (max-width: 1199px) {
  .home4-banner-section {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  .home4-banner-section {
    padding: 150px 0 100px 0;
  }
}
@media (max-width: 576px) {
  .home4-banner-section {
    padding: 135px 0 100px 0;
  }
}
.home4-banner-section .banner-content {
  text-align: center;
}
.home4-banner-section .banner-content h1 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 85px;
  line-height: 95px;
  margin-bottom: 20px;
}
@media (max-width: 1699px) {
  .home4-banner-section .banner-content h1 {
    font-size: 70px;
    line-height: 86px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home4-banner-section .banner-content h1 {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (max-width: 1399px) {
  .home4-banner-section .banner-content h1 {
    font-size: 60px;
    line-height: 72px;
  }
}
@media (max-width: 1199px) {
  .home4-banner-section .banner-content h1 {
    font-size: 54px;
    line-height: 65px;
  }
}
@media (max-width: 991px) {
  .home4-banner-section .banner-content h1 {
    font-size: 48px;
    line-height: 57px;
  }
}
@media (max-width: 767px) {
  .home4-banner-section .banner-content h1 {
    font-size: 40px;
    line-height: 1.3;
  }
}
@media (max-width: 576px) {
  .home4-banner-section .banner-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.4;
  }
}
.home4-banner-section .banner-content p {
  color: rgba(var(--title-color-opc), 0.7);
  font-family: var(--font-poppins);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  max-width: 631px;
  width: 100%;
  margin: 0 auto 40px;
}
@media (max-width: 767px) {
  .home4-banner-section .banner-content p {
    max-width: unset;
    font-size: 17px;
  }
}
@media (max-width: 1199px) {
  .home4-banner-section .banner-content p {
    margin: 0 auto 30px;
  }
}
@media (max-width: 576px) {
  .home4-banner-section .banner-content p {
    font-size: 14px;
    line-height: 30px;
  }
}
.home4-banner-section .banner-content .primary-btn2 {
  padding: 21px 30px;
  text-decoration: underline;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--white-color);
  background: linear-gradient(270deg, #E24C4A 0%, #386BB7 100%);
  align-items: baseline;
  font-size: 15px;
}
@media (max-width: 1199px) {
  .home4-banner-section .banner-content .primary-btn2 {
    padding: 20px 23px;
  }
}
@media (max-width: 576px) {
  .home4-banner-section .banner-content .primary-btn2 {
    padding: 18px 20px;
    font-size: 14px;
  }
}
.home4-banner-section .banner-content .primary-btn2 svg {
  fill: var(--white-color);
}
.home4-banner-section .banner-content span {
  color: #222222;
  font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  display: block;
  line-height: 1;
}
@media (max-width: 767px) {
  .home4-banner-section .banner-img {
    display: none;
  }
}
.home4-banner-section .banner-img img {
  min-height: 645px;
  -o-object-fit: fill;
     object-fit: fill;
}
@media (max-width: 991px) {
  .home4-banner-section .banner-img img {
    min-height: 450px;
  }
}
.home4-banner-section .partner-wrapper {
  position: absolute;
  bottom: 0;
  background: linear-gradient(270deg, rgba(226, 76, 74, 0.15) 0%, rgba(56, 107, 183, 0.15) 100%);
  backdrop-filter: blur(10px);
  padding: 35px 209px 35px 244px;
  display: flex;
  gap: 77px;
}
@media (max-width: 1799px) {
  .home4-banner-section .partner-wrapper {
    padding: 35px 130px 35px 160px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home4-banner-section .partner-wrapper {
    padding: 30px 70px;
    gap: 45px;
  }
}
@media (max-width: 1399px) {
  .home4-banner-section .partner-wrapper {
    padding: 25px 50px;
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-banner-section .partner-wrapper {
    padding: 25px 15px;
  }
}
@media (max-width: 767px) {
  .home4-banner-section .partner-wrapper {
    padding: 25px 35px;
  }
}
@media (max-width: 576px) {
  .home4-banner-section .partner-wrapper {
    padding: 20px 10px;
  }
}
.home4-banner-section .partner-wrapper span {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  display: block;
  position: relative;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home4-banner-section .partner-wrapper span {
    font-size: 16px;
  }
}
@media (max-width: 1399px) {
  .home4-banner-section .partner-wrapper span {
    font-size: 15px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .home4-banner-section .partner-wrapper span {
    display: none;
  }
}
.home4-banner-section .partner-wrapper span::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 35px;
  border-radius: 10px;
  background-color: rgba(var(--primary-color1-opc), 0.1);
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home4-banner-section .partner-wrapper span::before {
    right: -5px;
    display: none;
  }
}
@media (max-width: 1399px) {
  .home4-banner-section .partner-wrapper span::before {
    display: none;
  }
}
.home4-banner-section .partner-wrapper .partner-wrap .marquee {
  display: flex;
  gap: 60px;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 1399px) {
  .home4-banner-section .partner-wrapper .partner-wrap .marquee {
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .home4-banner-section .partner-wrapper .partner-wrap .marquee {
    gap: 30px;
  }
}
.home4-banner-section .partner-wrapper .partner-wrap .marquee .marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 60px;
  min-width: 100%;
  animation: scroll-x-reverse 30s linear infinite;
}
@media (max-width: 1399px) {
  .home4-banner-section .partner-wrapper .partner-wrap .marquee .marquee__group {
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .home4-banner-section .partner-wrapper .partner-wrap .marquee .marquee__group {
    gap: 20px;
  }
}
.home4-banner-section .partner-wrapper .partner-wrap .marquee .marquee__group a img {
  width: 104px;
}
@media (max-width: 1199px) {
  .home4-banner-section .partner-wrapper .partner-wrap .marquee .marquee__group a img {
    width: 80px;
  }
}
@media (max-width: 576px) {
  .home4-banner-section .partner-wrapper .partner-wrap .marquee .marquee__group a img {
    width: 75px;
  }
}

/*=====================================
  45. Home4 Fix Section CSS
========================================*/
.home4-fix-section {
  padding: 120px 0;
  background-color: #F2FAF9;
}
@media (max-width: 1199px) {
  .home4-fix-section {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .home4-fix-section {
    padding: 70px 0;
  }
}
.home4-fix-section .fix-wrapper {
  padding: 0 262px;
  position: relative;
}
@media (max-width: 1899px) {
  .home4-fix-section .fix-wrapper {
    padding: 0 190px;
  }
}
@media (max-width: 1699px) {
  .home4-fix-section .fix-wrapper {
    padding: 0 120px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home4-fix-section .fix-wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 1399px) {
  .home4-fix-section .fix-wrapper {
    padding: 0 30px;
  }
}
.home4-fix-section .fix-wrapper .fix-content-and-video-area {
  max-width: 598px;
  min-width: 598px;
}
@media (max-width: 1399px) {
  .home4-fix-section .fix-wrapper .fix-content-and-video-area {
    max-width: 510px;
    min-width: 510px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-fix-section .fix-wrapper .fix-content-and-video-area {
    max-width: 400px;
    min-width: 400px;
  }
}
@media (max-width: 576px) {
  .home4-fix-section .fix-wrapper .fix-content-and-video-area {
    max-width: 350px;
    min-width: 350px;
  }
}
.home4-fix-section .fix-wrapper .fix-content-and-video-area .fix-content {
  text-align: center;
  max-width: 360px;
  width: 100%;
  margin: 0 auto 40px;
}
@media (max-width: 576px) {
  .home4-fix-section .fix-wrapper .fix-content-and-video-area .fix-content {
    margin: 0 auto 30px;
  }
}
.home4-fix-section .fix-wrapper .fix-content-and-video-area .fix-content h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .home4-fix-section .fix-wrapper .fix-content-and-video-area .fix-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.home4-fix-section .fix-wrapper .fix-content-and-video-area .fix-content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .home4-fix-section .fix-wrapper .fix-content-and-video-area .fix-content p {
    font-size: 14px;
  }
}
.home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area {
  min-height: 400px;
  width: 100%;
  background-color: var(--white-color);
  border-radius: 10px;
  position: relative;
}
@media (max-width: 1399px) {
  .home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area {
    min-height: 338px;
  }
}
@media (max-width: 576px) {
  .home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area {
    min-height: 240px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area {
    min-height: 270px;
  }
}
.home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area .img-and-video-icon {
  border-radius: 9px;
  transform: translate(-50%, -50%);
  top: 50%;
  position: absolute;
  left: 50%;
}
.home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area .img-and-video-icon img {
  max-width: 568px;
  border-radius: 9px;
  position: relative;
  transition: 0.5s ease-in-out;
}
@media (max-width: 1399px) {
  .home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area .img-and-video-icon img {
    max-width: 480px;
  }
}
@media (max-width: 576px) {
  .home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area .img-and-video-icon img {
    max-width: 320px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area .img-and-video-icon img {
    max-width: 370px;
  }
}
.home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area .img-and-video-icon .thumb-video {
  opacity: 0;
  border-radius: 10px;
  line-height: 0;
  transition: 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area .img-and-video-icon .thumb-video video {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
  z-index: 1;
}
.home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area .img-and-video-icon .video-icon {
  min-width: 71px;
  max-width: 71px;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(var(--title-color-opc), 0.2);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
  .home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area .img-and-video-icon .video-icon {
    min-width: 65px;
    max-width: 65px;
    height: 65px;
  }
  .home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area .img-and-video-icon .video-icon svg {
    width: 20px;
  }
}
@media (max-width: 576px) {
  .home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area .img-and-video-icon .video-icon {
    min-width: 50px;
    max-width: 50px;
    height: 50px;
  }
  .home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area .img-and-video-icon .video-icon svg {
    width: 16px;
  }
}
.home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area .img-and-video-icon .video-icon svg {
  fill: var(--white-color);
}
.home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area .img-and-video-icon:hover img {
  opacity: 0;
}
.home4-fix-section .fix-wrapper .fix-content-and-video-area .video-area .img-and-video-icon:hover .thumb-video {
  opacity: 1;
  z-index: 1;
}
.home4-fix-section .fix-wrapper .line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .home4-fix-section .fix-wrapper .line {
    display: none;
  }
}

/*=====================================
  46. Home5 Banner Section CSS
========================================*/
.home5-banner-section {
  padding-top: 100px;
}
@media (max-width: 1199px) {
  .home5-banner-section {
    padding-top: 90px;
  }
}
.home5-banner-section .home5-banner-wrapper {
  position: relative;
  background-image: url(../img/home5/home5-banner-bg-img.png), linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 112px 65px 112px 90px;
}
@media (max-width: 1399px) {
  .home5-banner-section .home5-banner-wrapper {
    padding: 105px 40px 105px 70px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-banner-section .home5-banner-wrapper {
    padding: 105px 40px 105px 40px;
  }
}
@media (max-width: 991px) {
  .home5-banner-section .home5-banner-wrapper {
    padding: 95px 40px;
  }
}
@media (max-width: 767px) {
  .home5-banner-section .home5-banner-wrapper {
    padding: 70px 25px 70px 25px;
  }
}
@media (max-width: 576px) {
  .home5-banner-section .home5-banner-wrapper {
    padding: 70px 15px 70px 15px;
  }
}
.home5-banner-section .home5-banner-wrapper .banner-content {
  max-width: 628px;
}
.home5-banner-section .home5-banner-wrapper .banner-content h1 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 70px;
  line-height: 85px;
  margin-bottom: 30px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home5-banner-section .home5-banner-wrapper .banner-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 1399px) {
  .home5-banner-section .home5-banner-wrapper .banner-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 75px;
  }
}
@media (max-width: 1199px) {
  .home5-banner-section .home5-banner-wrapper .banner-content h1 {
    font-size: 45px;
    line-height: 66px;
  }
}
@media (max-width: 991px) {
  .home5-banner-section .home5-banner-wrapper .banner-content h1 {
    font-size: 43px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .home5-banner-section .home5-banner-wrapper .banner-content h1 {
    font-size: 39px;
    line-height: 55px;
  }
}
@media (max-width: 576px) {
  .home5-banner-section .home5-banner-wrapper .banner-content h1 {
    font-size: 28px;
    line-height: 43px;
  }
}
.home5-banner-section .home5-banner-wrapper .banner-content p {
  color: var(--text-color2);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  .home5-banner-section .home5-banner-wrapper .banner-content p {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .home5-banner-section .home5-banner-wrapper .banner-content p {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .home5-banner-section .home5-banner-wrapper .banner-content p {
    font-size: 16px;
    line-height: 29px;
  }
}
.home5-banner-section .home5-banner-wrapper .banner-content .btn-grp {
  display: flex;
  gap: 50px;
}
@media (max-width: 767px) {
  .home5-banner-section .home5-banner-wrapper .banner-content .btn-grp {
    gap: 25px;
  }
}
@media (max-width: 576px) {
  .home5-banner-section .home5-banner-wrapper .banner-content .btn-grp {
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) and (max-width: 576px) {
  .home5-banner-section .home5-banner-wrapper .banner-content .btn-grp .primary-btn1 {
    padding: 17px 32px;
  }
}
.home5-banner-section .home5-banner-wrapper .banner-content .btn-grp .primary-btn1.two {
  background-color: #DADCFF;
  padding: 20px 27px;
}
@media (max-width: 576px) {
  .home5-banner-section .home5-banner-wrapper .banner-content .btn-grp .primary-btn1.two {
    padding: 17px 35px;
  }
}
.home5-banner-section .home5-banner-wrapper .banner-content .btn-grp .primary-btn1.two span {
  color: var(--primary-color1);
  background-image: linear-gradient(0deg, var(--primary-color1) 0%, var(--primary-color1) 100%);
}
.home5-banner-section .home5-banner-wrapper .banner-content .btn-grp .primary-btn1.two span svg {
  fill: none;
  stroke: var(--primary-color1);
}
.home5-banner-section .home5-banner-wrapper .banner-content .btn-grp .primary-btn1.two span::after {
  color: var(--primary-color1);
}

/*=====================================
  47. Home5 Service Section CSS
========================================*/
.home5-service-section .home5-service-wrapper {
  background-color: var(--black-color);
  padding: 90px 60px;
}
@media (max-width: 1399px) {
  .home5-service-section .home5-service-wrapper {
    padding: 90px 20px;
  }
}
@media (max-width: 767px) {
  .home5-service-section .home5-service-wrapper {
    padding: 70px 15px;
  }
}
.home5-service-section .home5-service-wrapper .service-card {
  background-color: #0E1117;
  border-radius: 10px;
  padding: 28px 23px 30px 23px;
  text-align: center;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home5-service-section .home5-service-wrapper .service-card {
    padding: 28px 20px 30px 20px;
  }
}
.home5-service-section .home5-service-wrapper .service-card h3 {
  margin-bottom: 20px;
}
.home5-service-section .home5-service-wrapper .service-card h3 a {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 27px;
  line-height: 32px;
  background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 98%);
  background-repeat: no-repeat;
  background-size: 0px 1.5px;
  background-position: right 95%;
  transition: background-size 0.75s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home5-service-section .home5-service-wrapper .service-card h3 a {
    font-size: 23px;
  }
}
@media (max-width: 991px) {
  .home5-service-section .home5-service-wrapper .service-card h3 a {
    font-size: 21px;
  }
}
@media (max-width: 576px) {
  .home5-service-section .home5-service-wrapper .service-card h3 a {
    font-size: 19px;
  }
}
.home5-service-section .home5-service-wrapper .service-card h3 a:hover {
  background-size: 100% 1.5px;
  background-position: 0 95%;
}
.home5-service-section .home5-service-wrapper .service-card .icon {
  padding: 15px 0;
  margin-bottom: 27px;
  border: 1px solid rgba(var(--white-color-opc), 0.1);
  border-left: unset;
  border-right: unset;
  transition: 0.5s ease-in-out;
}
@media (max-width: 991px) {
  .home5-service-section .home5-service-wrapper .service-card .icon img {
    width: 50px;
  }
}
.home5-service-section .home5-service-wrapper .service-card p {
  color: rgba(var(--white-color-opc), 0.6);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 20px;
  transition: 0.5s ease-in-out;
}
.home5-service-section .home5-service-wrapper .service-card .primary-btn1.transparent span {
  background-image: linear-gradient(0deg, var(--white-color) 0%, var(--white-color) 100%);
  color: var(--white-color);
}
.home5-service-section .home5-service-wrapper .service-card .primary-btn1.transparent span::after {
  color: var(--white-color);
}
.home5-service-section .home5-service-wrapper .service-card .primary-btn1.transparent span svg {
  fill: none;
  stroke: var(--white-color);
}
.home5-service-section .home5-service-wrapper .service-card .service-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 25px 0;
  border: 1px solid rgba(var(--white-color-opc), 0.1);
  border-left: unset;
  border-right: unset;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  position: absolute;
  bottom: 68px;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home5-service-section .home5-service-wrapper .service-card .service-list {
    left: 12px;
  }
}
@media (max-width: 991px) {
  .home5-service-section .home5-service-wrapper .service-card .service-list {
    justify-content: center;
    left: 0;
  }
}
.home5-service-section .home5-service-wrapper .service-card .service-list li {
  margin-bottom: 17px;
}
.home5-service-section .home5-service-wrapper .service-card .service-list li a {
  color: rgba(var(--white-color-opc), 0.6);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  display: block;
  border: 1px solid rgba(var(--white-color-opc), 0.25);
  border-radius: 50px;
  padding: 7px 16px;
  transition: 0.5s ease-in-out;
}
.home5-service-section .home5-service-wrapper .service-card .service-list li a:hover {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
  color: var(--white-color);
}
.home5-service-section .home5-service-wrapper .service-card .service-list li:nth-child(5) {
  margin-bottom: 0;
}
.home5-service-section .home5-service-wrapper .service-card .service-list li:last-child {
  margin-bottom: 0;
}
.home5-service-section .home5-service-wrapper .service-card:hover {
  background-color: #22263E;
}
.home5-service-section .home5-service-wrapper .service-card:hover .icon,
.home5-service-section .home5-service-wrapper .service-card:hover p {
  opacity: 0;
}
.home5-service-section .home5-service-wrapper .service-card:hover .service-list {
  opacity: 1;
  transform: scaleY(1);
  z-index: 2;
}
.home5-service-section .home5-service-wrapper .slider-btn-grp {
  justify-content: space-between;
}
@media (max-width: 576px) {
  .home5-service-section .home5-service-wrapper .slider-btn-grp {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .home5-service-section .home5-service-wrapper .slider-btn-grp .primary-btn1 {
    padding: 15px 29px;
  }
}

/*=====================================
  48. Home5 Journey Section CSS
========================================*/
.home5-partner-section .partner-wrapper-area {
  background-color: var(--black-color);
  padding: 90px 70px;
}
@media (max-width: 1399px) {
  .home5-partner-section .partner-wrapper-area {
    padding: 90px 20px;
  }
}
@media (max-width: 767px) {
  .home5-partner-section .partner-wrapper-area {
    padding: 70px 15px;
  }
}
.home5-partner-section .partner-wrapper-area span {
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 28px;
  line-height: 35px;
  color: rgba(var(--white-color-opc), 0.7);
}
@media (max-width: 1199px) {
  .home5-partner-section .partner-wrapper-area span {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .home5-partner-section .partner-wrapper-area span {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .home5-partner-section .partner-wrapper-area span {
    font-size: 21px;
  }
}
@media (max-width: 576px) {
  .home5-partner-section .partner-wrapper-area span {
    font-size: 17px;
    text-align: center;
    line-height: 30px;
  }
}
.home5-partner-section .partner-wrapper-area .partner-wrapper .partner-card {
  padding: 40px 66px;
  border: 1px solid rgba(var(--white-color-opc), 0.1);
  border-radius: 30px 30px 0 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 1399px) {
  .home5-partner-section .partner-wrapper-area .partner-wrapper .partner-card {
    padding: 40px 50px;
  }
}
@media (max-width: 1199px) {
  .home5-partner-section .partner-wrapper-area .partner-wrapper .partner-card {
    padding: 40px 20px;
  }
}
@media (max-width: 991px) {
  .home5-partner-section .partner-wrapper-area .partner-wrapper .partner-card {
    border-radius: 15px;
  }
}
@media (max-width: 576px) {
  .home5-partner-section .partner-wrapper-area .partner-wrapper .partner-card {
    padding: 25px 12px;
  }
}
@media (max-width: 1199px) {
  .home5-partner-section .partner-wrapper-area .partner-wrapper .partner-card .icon img {
    width: 90px;
  }
}
@media (max-width: 991px) {
  .home5-partner-section .partner-wrapper-area .partner-wrapper .partner-card .icon img {
    width: 80px;
  }
}
.home5-partner-section .partner-wrapper-area .partner-wrapper .partner-card:hover {
  background-color: rgba(var(--white-color-opc), 0.08);
  backdrop-filter: blur(5px);
}
.home5-partner-section .partner-wrapper-area .partner-wrapper .col:nth-child(n+6) .partner-card {
  border-radius: 0 0 30px 30px;
}
@media (max-width: 991px) {
  .home5-partner-section .partner-wrapper-area .partner-wrapper .col:nth-child(n+6) .partner-card {
    border-radius: 15px;
  }
}

/*=====================================
  49. Home5 Blog Section CSS
========================================*/
.home5-blog-section .blog-wrapper {
  background-color: var(--black-color);
  padding: 90px 40px;
}
@media (max-width: 1399px) {
  .home5-blog-section .blog-wrapper {
    padding: 90px 20px;
  }
}
@media (max-width: 767px) {
  .home5-blog-section .blog-wrapper {
    padding: 70px 15px;
  }
}
.home5-blog-section .blog-wrapper .blog-card {
  max-width: unset;
  position: relative;
}
.home5-blog-section .blog-wrapper .blog-card .blog-img-area .img-area {
  display: block;
  overflow: hidden;
  position: relative;
}
.home5-blog-section .blog-wrapper .blog-card .blog-img-area .img-area img {
  min-height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-out;
}
.home5-blog-section .blog-wrapper .blog-card .blog-img-area .img-area::after {
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}
.home5-blog-section .blog-wrapper .blog-card::before {
  content: unset;
}
.home5-blog-section .blog-wrapper .blog-card .blog-card-content {
  padding: unset;
}
.home5-blog-section .blog-wrapper .blog-card .blog-img-area {
  position: relative;
  margin-bottom: 28px;
}
.home5-blog-section .blog-wrapper .blog-card .blog-img-area img {
  border-radius: 5px 5px 0 0;
}
.home5-blog-section .blog-wrapper .blog-card .blog-img-area .tag {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  display: block;
  padding: 8px 20px;
  border-radius: 100px;
  background-color: rgba(var(--black-color-opc), 0.5);
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 4;
  transition: all 0.5s;
}
.home5-blog-section .blog-wrapper .blog-card .blog-img-area .tag:hover {
  background-color: rgba(var(--white-color-opc), 0.7);
  color: var(--title-color);
}
.home5-blog-section .blog-wrapper .blog-card .blog-card-content .tag-and-date {
  display: flex;
  gap: 26px;
  margin-bottom: 25px;
  position: relative;
}
.home5-blog-section .blog-wrapper .blog-card .blog-card-content .tag-and-date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 33%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #C4C4C4;
}
@media (max-width: 991px) {
  .home5-blog-section .blog-wrapper .blog-card .blog-card-content .tag-and-date::before {
    display: none;
  }
}
.home5-blog-section .blog-wrapper .blog-card .blog-card-content .tag-and-date .tag2 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  display: block;
  transition: 0.5s ease-in-out;
}
@media (max-width: 576px) {
  .home5-blog-section .blog-wrapper .blog-card .blog-card-content .tag-and-date .tag2 {
    font-size: 14px;
  }
}
.home5-blog-section .blog-wrapper .blog-card .blog-card-content .tag-and-date .tag2:hover {
  color: var(--primary-color3);
}
.home5-blog-section .blog-wrapper .blog-card .blog-card-content .tag-and-date .date {
  color: rgba(var(--white-color-opc), 0.4);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  display: block;
  transition: 0.5s ease-in-out;
}
@media (max-width: 576px) {
  .home5-blog-section .blog-wrapper .blog-card .blog-card-content .tag-and-date .date {
    font-size: 14px;
  }
}
.home5-blog-section .blog-wrapper .blog-card .blog-card-content .tag-and-date .date:hover {
  color: var(--primary-color3);
}
.home5-blog-section .blog-wrapper .blog-card .blog-card-content h3 {
  margin-bottom: 0;
  line-height: 30px;
}
.home5-blog-section .blog-wrapper .blog-card .blog-card-content h3 a {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: var(--white-color);
  background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 98%);
  background-repeat: no-repeat;
  background-size: 0px 1.5px;
  background-position: right 95%;
  transition: background-size 0.75s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-blog-section .blog-wrapper .blog-card .blog-card-content h3 a {
    font-size: 19px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .home5-blog-section .blog-wrapper .blog-card .blog-card-content h3 a {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .home5-blog-section .blog-wrapper .blog-card .blog-card-content h3 a {
    font-size: 18px;
    line-height: 26px;
  }
}
.home5-blog-section .blog-wrapper .blog-card .blog-card-content h3 a:hover {
  background-size: 100% 1.5px;
  background-position: 0 95%;
}
.home5-blog-section .blog-wrapper .blog-card:hover .img-area img {
  transform: scale(1.1);
}
.home5-blog-section .blog-wrapper .blog-card:hover .img-area::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

/*=====================================
  50. Home5 Contact Banner Section CSS
========================================*/
.home5-contact-banner-setion .contact-banner-wrapper {
  background-image: url(../img/home5/contact-banner-bg.png), linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 105px 0 75px 0;
}
@media (max-width: 1199px) {
  .home5-contact-banner-setion .contact-banner-wrapper {
    padding: 85px 0 70px 0;
  }
}
@media (max-width: 767px) {
  .home5-contact-banner-setion .contact-banner-wrapper {
    padding: 70px 10px 70px 10px;
  }
}
@media (max-width: 576px) {
  .home5-contact-banner-setion .contact-banner-wrapper {
    padding: 70px 0;
  }
}
.home5-contact-banner-setion .contact-banner-wrapper .contact-content {
  text-align: center;
}
.home5-contact-banner-setion .contact-banner-wrapper .contact-content h2 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .home5-contact-banner-setion .contact-banner-wrapper .contact-content h2 {
    font-size: 45px;
  }
}
@media (max-width: 1199px) {
  .home5-contact-banner-setion .contact-banner-wrapper .contact-content h2 {
    font-size: 40px;
    line-height: 53px;
  }
}
@media (max-width: 991px) {
  .home5-contact-banner-setion .contact-banner-wrapper .contact-content h2 {
    font-size: 37px;
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  .home5-contact-banner-setion .contact-banner-wrapper .contact-content h2 {
    font-size: 32px;
    line-height: 45px;
  }
}
@media (max-width: 576px) {
  .home5-contact-banner-setion .contact-banner-wrapper .contact-content h2 {
    font-size: 26px;
    line-height: 41px;
  }
}
.home5-contact-banner-setion .contact-banner-wrapper .contact-content .btn-grp {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 576px) {
  .home5-contact-banner-setion .contact-banner-wrapper .contact-content .btn-grp {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.home5-contact-banner-setion .contact-banner-wrapper .contact-content .btn-grp .primary-btn2 {
  min-width: 168px;
  padding: 15px 30px;
  display: flex;
  justify-content: center;
}
@media (max-width: 576px) {
  .home5-contact-banner-setion .contact-banner-wrapper .contact-content .btn-grp .primary-btn2 {
    min-width: 200px;
  }
}

/*=====================================
  51. Home5 Contact Section CSS
========================================*/
.home5-contact-section .contact-wrapper {
  background-color: var(--black-color);
  padding: 70px 70px 70px 144px;
}
@media (max-width: 1399px) {
  .home5-contact-section .contact-wrapper {
    padding: 70px 70px 70px 80px;
  }
}
@media (max-width: 1199px) {
  .home5-contact-section .contact-wrapper {
    padding: 70px 40px;
  }
}
@media (max-width: 767px) {
  .home5-contact-section .contact-wrapper {
    padding: 70px 20px;
  }
}
@media (max-width: 576px) {
  .home5-contact-section .contact-wrapper {
    padding: 70px 10px;
  }
}
.home5-contact-section .contact-wrapper .contact-area {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 991px) {
  .home5-contact-section .contact-wrapper .contact-area {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }
}
.home5-contact-section .contact-wrapper .contact-area .single-contact {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-bottom: 140px;
  position: relative;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home5-contact-section .contact-wrapper .contact-area .single-contact {
    margin-bottom: 120px;
  }
}
@media (max-width: 991px) {
  .home5-contact-section .contact-wrapper .contact-area .single-contact {
    margin-bottom: 45px;
  }
}
@media (max-width: 576px) {
  .home5-contact-section .contact-wrapper .contact-area .single-contact {
    margin-bottom: 35px;
  }
}
.home5-contact-section .contact-wrapper .contact-area .single-contact::before {
  content: "";
  position: absolute;
  background-color: rgba(var(--white-color-opc), 0.15);
  left: 37px;
  width: 1px;
  height: 35px;
}
.home5-contact-section .contact-wrapper .contact-area .single-contact::after {
  content: url(../img/home5/vector/home5-contact-section-vecor.svg);
  position: absolute;
  left: 30%;
  top: 80px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home5-contact-section .contact-wrapper .contact-area .single-contact::after {
    top: 70px;
  }
}
@media (max-width: 991px) {
  .home5-contact-section .contact-wrapper .contact-area .single-contact::after {
    display: none;
  }
}
.home5-contact-section .contact-wrapper .contact-area .single-contact svg {
  fill: var(--white-color);
}
.home5-contact-section .contact-wrapper .contact-area .single-contact .contact-content span {
  color: rgba(var(--white-color-opc), 0.4);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
@media (max-width: 576px) {
  .home5-contact-section .contact-wrapper .contact-area .single-contact .contact-content span {
    margin-bottom: 8px;
  }
}
.home5-contact-section .contact-wrapper .contact-area .single-contact .contact-content a {
  color: var(--white-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  display: block;
  transition: all 0.5s;
}
@media (max-width: 1399px) {
  .home5-contact-section .contact-wrapper .contact-area .single-contact .contact-content a {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .home5-contact-section .contact-wrapper .contact-area .single-contact .contact-content a {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .home5-contact-section .contact-wrapper .contact-area .single-contact .contact-content a {
    font-size: 15px;
  }
}
.home5-contact-section .contact-wrapper .contact-area .single-contact .contact-content a:hover {
  color: var(--primary-color1);
}
.home5-contact-section .contact-wrapper .contact-area .single-contact:last-child {
  margin-bottom: 0;
}
.home5-contact-section .contact-wrapper .contact-area .single-contact:last-child::after {
  content: none;
}
.home5-contact-section .contact-wrapper .contact-form-wrap {
  padding: 45px 45px 50px 45px;
  background-color: #0F0F0F;
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .home5-contact-section .contact-wrapper .contact-form-wrap {
    padding: 45px 35px 50px 35px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-contact-section .contact-wrapper .contact-form-wrap {
    padding: 45px 25px 45px 25px;
  }
}
@media (max-width: 767px) {
  .home5-contact-section .contact-wrapper .contact-form-wrap {
    padding: 40px 30px 40px 30px;
    border-radius: 15px;
  }
}
@media (max-width: 576px) {
  .home5-contact-section .contact-wrapper .contact-form-wrap {
    padding: 40px 20px 40px 20px;
    border-radius: 10px;
  }
}
.home5-contact-section .contact-wrapper .contact-form-wrap .form-inner input {
  color: var(--white-color);
  background-color: #0A0A0A;
  border: 1px solid rgba(var(--white-color-opc), 0.1);
}
.home5-contact-section .contact-wrapper .contact-form-wrap .form-inner textarea {
  color: var(--white-color);
  background-color: #0A0A0A;
  border: 1px solid rgba(var(--white-color-opc), 0.1);
}
.home5-contact-section .contact-wrapper .contact-form-wrap .form-inner label {
  color: var(--white-color);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-contact-section .contact-wrapper .contact-form-wrap .form-inner label {
    font-size: 14px;
  }
}
.home5-contact-section .contact-wrapper .contact-form-wrap .form-inner2 .form-check .form-check-input {
  background-color: var(--white-color);
  width: 14px;
  height: 14px;
}
.home5-contact-section .contact-wrapper .contact-form-wrap .form-inner2 .form-check .form-check-input:checked {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}
.home5-contact-section .contact-wrapper .contact-form-wrap h4 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 25px;
  line-height: 1;
  padding-bottom: 15px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(var(--white-color-opc), 0.1);
}
@media (max-width: 576px) {
  .home5-contact-section .contact-wrapper .contact-form-wrap h4 {
    font-size: 22px;
  }
}
.home5-contact-section .contact-wrapper .contact-form-wrap .primary-btn2 {
  padding: 16px 26px;
}
.home5-contact-section .contact-wrapper .contact-form-wrap .primary-btn2 span {
  background-color: var(--white-color);
}
.home5-contact-section .contact-wrapper .contact-form-wrap .primary-btn2:hover {
  color: var(--title-color);
}

/*=====================================
  52. Home5 Testimonial Section CSS
========================================*/
.home5-testimonial-section .testimonial-section-wrapper {
  background-color: var(--black-color);
  padding: 80px 107px;
}
@media (max-width: 1399px) {
  .home5-testimonial-section .testimonial-section-wrapper {
    padding: 80px 30px;
  }
}
@media (max-width: 991px) {
  .home5-testimonial-section .testimonial-section-wrapper {
    padding: 70px 15px;
  }
}
.home5-testimonial-section .pagination-area .pagination {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: unset;
  z-index: 9;
  bottom: unset;
  gap: 8px;
}
@media (max-width: 576px) {
  .home5-testimonial-section .pagination-area .pagination {
    justify-content: center;
    gap: 6px;
  }
}
.home5-testimonial-section .pagination-area .pagination .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid rgba(var(--white-color-opc), 0.4);
  opacity: 1;
  position: relative;
}
.home5-testimonial-section .pagination-area .pagination .swiper-pagination-bullet::after {
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: rgba(var(--white-color-opc), 0.4);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home5-testimonial-section .pagination-area .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--primary-color1);
  height: 16px;
  width: 16px;
}
.home5-testimonial-section .pagination-area .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color1);
}

/*=====================================
53. Founder Text Section CSS
========================================*/
.founder-text-section .founder-text-wrap {
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 750px;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .founder-text-section .founder-text-wrap {
    min-height: 650px;
  }
}
@media (max-width: 1399px) {
  .founder-text-section .founder-text-wrap {
    min-height: 600px;
  }
}
@media (max-width: 1199px) {
  .founder-text-section .founder-text-wrap {
    min-height: 580px;
  }
}
@media (max-width: 991px) {
  .founder-text-section .founder-text-wrap {
    min-height: 550px;
  }
}
@media (max-width: 576px) {
  .founder-text-section .founder-text-wrap {
    min-height: 450px;
  }
}
.founder-text-section .founder-text-wrap .founder-wrapper {
  background-color: rgba(var(--title-color-opc), 0.4);
  backdrop-filter: blur(10px);
  padding: 40px 60px 50px 40px;
  min-width: 372px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .founder-text-section .founder-text-wrap .founder-wrapper {
    padding: 55px 30px 65px 30px;
  }
}
@media (max-width: 1199px) {
  .founder-text-section .founder-text-wrap .founder-wrapper {
    padding: 40px 30px 45px 30px;
  }
}
@media (max-width: 576px) {
  .founder-text-section .founder-text-wrap .founder-wrapper {
    padding: 30px 20px;
    min-width: unset;
  }
}
.founder-text-section .founder-text-wrap .founder-wrapper p {
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 25px;
  line-height: 38px;
  margin-bottom: 60px;
  color: var(--white-color);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .founder-text-section .founder-text-wrap .founder-wrapper p {
    font-size: 22px;
    line-height: 33px;
    margin-bottom: 55px;
  }
}
@media (max-width: 1199px) {
  .founder-text-section .founder-text-wrap .founder-wrapper p {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .founder-text-section .founder-text-wrap .founder-wrapper p {
    margin-bottom: 35px;
  }
}
.founder-text-section .founder-text-wrap .founder-wrapper .primary-btn1.transparent {
  font-weight: 500;
}
.founder-text-section .founder-text-wrap .founder-wrapper .primary-btn1.transparent span {
  background-image: linear-gradient(0deg, var(--white-color) 0%, var(--white-color) 100%);
  color: var(--white-color);
}
.founder-text-section .founder-text-wrap .founder-wrapper .primary-btn1.transparent span::after {
  color: var(--white-color);
}
.founder-text-section .founder-text-wrap .founder-wrapper .primary-btn1.transparent span svg {
  fill: none;
  stroke: var(--white-color);
}

/*=====================================
54. Founder Text Section CSS
========================================*/
.home5-team-section .team-section-wrapper {
  background-color: var(--black-color);
  padding: 80px 70px;
}
@media (max-width: 1399px) {
  .home5-team-section .team-section-wrapper {
    padding: 90px 20px;
  }
}
@media (max-width: 767px) {
  .home5-team-section .team-section-wrapper {
    padding: 70px 15px;
  }
}
.home5-team-section .team-section-wrapper .team-card {
  background-color: #0E1117;
  border-radius: 10px;
  padding: 15px 15px 25px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .home5-team-section .team-section-wrapper .team-card {
    padding: 15px 10px 20px;
  }
}
.home5-team-section .team-section-wrapper .team-card .team-img {
  margin-bottom: 25px;
}
.home5-team-section .team-section-wrapper .team-card .team-img img {
  border-radius: 10px;
}
.home5-team-section .team-section-wrapper .team-card .team-card-content {
  text-align: center;
}
.home5-team-section .team-section-wrapper .team-card .team-card-content span {
  color: rgba(var(--white-color-opc), 0.6);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.home5-team-section .team-section-wrapper .team-card .team-card-content h3 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home5-team-section .team-section-wrapper .team-card .team-card-content h3 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .home5-team-section .team-section-wrapper .team-card .team-card-content h3 {
    font-size: 18px;
  }
}
.home5-team-section .team-section-wrapper .team-card:hover {
  background: #22263E;
}
.home5-team-section .pagination-area .pagination {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: unset;
  z-index: 9;
  bottom: unset;
  gap: 8px;
}
@media (max-width: 576px) {
  .home5-team-section .pagination-area .pagination {
    justify-content: center;
    gap: 6px;
  }
}
.home5-team-section .pagination-area .pagination .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid rgba(var(--white-color-opc), 0.4);
  opacity: 1;
  position: relative;
}
.home5-team-section .pagination-area .pagination .swiper-pagination-bullet::after {
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: rgba(var(--white-color-opc), 0.4);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home5-team-section .pagination-area .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--primary-color1);
  height: 16px;
  width: 16px;
}
.home5-team-section .pagination-area .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color1);
}

/*=====================================
55. Cloude Strategies Section CSS
========================================*/
.home5-clude-strategies-section .home5-clude-strategies-wrapper {
  position: relative;
  background-image: url(../img/home5/cloude\ -strategies-bg-img.png), linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 0;
}
.home5-clude-strategies-section .home5-clude-strategies-wrapper .clude-strategies-img-and-content {
  display: flex;
  justify-content: space-between;
  align-items: end;
  position: relative;
}
@media (max-width: 991px) {
  .home5-clude-strategies-section .home5-clude-strategies-wrapper .clude-strategies-img-and-content {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .home5-clude-strategies-section .home5-clude-strategies-wrapper .clude-strategies-img-and-content {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .home5-clude-strategies-section .home5-clude-strategies-wrapper .clude-strategies-img-and-content {
    padding: 0;
  }
}
.home5-clude-strategies-section .home5-clude-strategies-wrapper .clude-strategies-img-and-content::before {
  content: "";
  width: 2px;
  height: 226px;
  background-color: rgba(var(--white-color-opc), 0.1);
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .home5-clude-strategies-section .home5-clude-strategies-wrapper .clude-strategies-img-and-content::before {
    left: 41%;
  }
}
@media (max-width: 767px) {
  .home5-clude-strategies-section .home5-clude-strategies-wrapper .clude-strategies-img-and-content::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .home5-clude-strategies-section .home5-clude-strategies-wrapper .clude-strategies-img-and-content img {
    width: 170px;
  }
}
@media (max-width: 576px) {
  .home5-clude-strategies-section .home5-clude-strategies-wrapper .clude-strategies-img-and-content img {
    width: 130px;
  }
}
.home5-clude-strategies-section .home5-clude-strategies-wrapper .clude-strategies-img-and-content h2 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 25px;
  line-height: 42px;
  margin-bottom: 0;
  max-width: 412px;
  width: 100%;
}
@media (max-width: 991px) {
  .home5-clude-strategies-section .home5-clude-strategies-wrapper .clude-strategies-img-and-content h2 {
    max-width: 340px;
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .home5-clude-strategies-section .home5-clude-strategies-wrapper .clude-strategies-img-and-content h2 {
    max-width: unset;
    text-align: center;
    font-size: 20px;
    line-height: 39px;
  }
}
@media (max-width: 576px) {
  .home5-clude-strategies-section .home5-clude-strategies-wrapper .clude-strategies-img-and-content h2 {
    font-size: 18px;
  }
}

/*=====================================
56. Home5 Industries Section CSS
========================================*/
.home5-industries-section .industries-wrapper {
  position: relative;
  background-image: url(../img/home5/home5-impact-section.png), linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 70px;
}
@media (max-width: 991px) {
  .home5-industries-section .industries-wrapper {
    padding: 70px 30px;
  }
}
@media (max-width: 767px) {
  .home5-industries-section .industries-wrapper {
    padding: 70px 15px;
  }
}
@media (max-width: 576px) {
  .home5-industries-section .industries-wrapper {
    padding: 70px 0;
  }
}
.home5-industries-section .industries-wrapper .nav-pills {
  display: block;
  position: relative;
}
@media (max-width: 991px) {
  .home5-industries-section .industries-wrapper .nav-pills .slider-btn-grp {
    display: none;
  }
}
.home5-industries-section .industries-wrapper .nav-pills .slider-btn-grp .slider-btn {
  position: absolute;
  max-width: 35px;
  min-width: 35px;
  height: 35px;
  top: 25%;
  left: 0;
  z-index: 99;
}
@media (max-width: 1399px) {
  .home5-industries-section .industries-wrapper .nav-pills .slider-btn-grp .slider-btn {
    left: -50px;
  }
}
.home5-industries-section .industries-wrapper .nav-pills .slider-btn-grp .slider-btn svg {
  fill: rgba(var(--white-color-opc), 0.4);
}
.home5-industries-section .industries-wrapper .nav-pills .slider-btn-grp .slider-btn.slider-next {
  left: unset;
  right: 0;
}
@media (max-width: 1399px) {
  .home5-industries-section .industries-wrapper .nav-pills .slider-btn-grp .slider-btn.slider-next {
    right: -50px;
  }
}
.home5-industries-section .industries-wrapper .nav-pills .slider-btn-grp .slider-btn:hover {
  background-color: var(--primary-color2);
  border-color: var(--primary-color2);
}
.home5-industries-section .industries-wrapper .nav-pills .slider-btn-grp .slider-btn:hover.slider-prev svg {
  transform: rotate(-30deg);
  fill: var(--white-color);
}
.home5-industries-section .industries-wrapper .nav-pills .slider-btn-grp .slider-btn:hover.slider-next svg {
  transform: rotate(30deg);
  fill: var(--white-color);
}
.home5-industries-section .industries-wrapper .nav-pills .industries-tab-slider {
  padding: 10px 20px;
  border-radius: 40px 40px 0 0;
  border: 1px solid #191919;
  background-color: rgba(var(--white-color-opc), 0.04);
  border-bottom: unset;
  max-width: 1066px;
  width: 100%;
}
@media (max-width: 1399px) {
  .home5-industries-section .industries-wrapper .nav-pills .industries-tab-slider {
    padding: 10px;
  }
}
@media (max-width: 991px) {
  .home5-industries-section .industries-wrapper .nav-pills .industries-tab-slider {
    border-radius: 20px 20px 0 0;
  }
}
@media (max-width: 767px) {
  .home5-industries-section .industries-wrapper .nav-pills .industries-tab-slider {
    padding: 10px 0;
  }
}
@media (max-width: 576px) {
  .home5-industries-section .industries-wrapper .nav-pills .industries-tab-slider {
    padding: 10px;
  }
}
.home5-industries-section .industries-wrapper .nav-pills .nav-item .nav-link {
  padding: 16px 9px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: var(--white-color);
}
@media (max-width: 1399px) {
  .home5-industries-section .industries-wrapper .nav-pills .nav-item .nav-link {
    padding: 17px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-industries-section .industries-wrapper .nav-pills .nav-item .nav-link {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .home5-industries-section .industries-wrapper .nav-pills .nav-item .nav-link {
    padding: 15px 10px;
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .home5-industries-section .industries-wrapper .nav-pills .nav-item .nav-link {
    padding: 19px 20px;
  }
}
.home5-industries-section .industries-wrapper .nav-pills .nav-item .nav-link.active {
  background-color: var(--primary-color2);
  border-radius: 5px;
}
.home5-industries-section .industries-wrapper .nav-pills .nav-item .nav-link:hover {
  background-color: var(--primary-color2);
  border-radius: 5px;
}
.home5-industries-section .industries-wrapper .industries-card-tap {
  padding: 44px 31px 45px 60px;
  border: 1px solid #191919;
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .home5-industries-section .industries-wrapper .industries-card-tap {
    padding: 45px 20px 45px 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-industries-section .industries-wrapper .industries-card-tap {
    padding: 40px 15px;
  }
}
@media (max-width: 991px) {
  .home5-industries-section .industries-wrapper .industries-card-tap {
    padding: 45px 20px;
  }
}
@media (max-width: 576px) {
  .home5-industries-section .industries-wrapper .industries-card-tap {
    padding: 40px 15px;
  }
}
.home5-industries-section .industries-wrapper .industries-card-tap .industries-content {
  max-width: 455px;
  width: 100%;
}
@media (max-width: 991px) {
  .home5-industries-section .industries-wrapper .industries-card-tap .industries-content {
    max-width: unset;
  }
}
.home5-industries-section .industries-wrapper .industries-card-tap .industries-content img {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .home5-industries-section .industries-wrapper .industries-card-tap .industries-content img {
    width: 90px;
  }
}
.home5-industries-section .industries-wrapper .industries-card-tap .industries-content h3 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 27px;
  line-height: 1.3;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .home5-industries-section .industries-wrapper .industries-card-tap .industries-content h3 {
    font-size: 25px;
  }
}
@media (max-width: 576px) {
  .home5-industries-section .industries-wrapper .industries-card-tap .industries-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.home5-industries-section .industries-wrapper .industries-card-tap .industries-content p {
  color: rgba(var(--white-color-opc), 0.6);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .home5-industries-section .industries-wrapper .industries-card-tap .industries-content p {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .home5-industries-section .industries-wrapper .industries-card-tap .industries-content p {
    font-size: 14px;
  }
}
.home5-industries-section .industries-wrapper .industries-card-tap .industries-content .why-choose-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.home5-industries-section .industries-wrapper .industries-card-tap .industries-content .why-choose-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(var(--white-color-opc), 0.8);
  margin-bottom: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-industries-section .industries-wrapper .industries-card-tap .industries-content .why-choose-list li {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .home5-industries-section .industries-wrapper .industries-card-tap .industries-content .why-choose-list li {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .home5-industries-section .industries-wrapper .industries-card-tap .industries-content .why-choose-list li {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.home5-industries-section .industries-wrapper .industries-card-tap .industries-content .why-choose-list li svg {
  fill: #D4D7FF;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .home5-industries-section .industries-wrapper .industries-card-tap .industries-content .why-choose-list li svg {
    width: 15px;
  }
}
.home5-industries-section .industries-wrapper .industries-card-tap .industries-content .why-choose-list li svg path {
  fill: var(--title-color);
}
.home5-industries-section .industries-wrapper .industries-card-tap .industries-content .why-choose-list li:last-child {
  margin-bottom: 0;
}
.home5-industries-section .industries-wrapper .industries-card-tap .industries-img-wrapper img {
  border-radius: 10px;
  min-height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
}

/*=====================================
57. Home5 Tect Section CSS
========================================*/
.home5-tech-section .tech-wrapper {
  background-color: var(--black-color);
  padding: 90px 80px;
}
@media (max-width: 1399px) {
  .home5-tech-section .tech-wrapper {
    padding: 80px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-tech-section .tech-wrapper {
    padding: 80px 10px;
  }
}
@media (max-width: 767px) {
  .home5-tech-section .tech-wrapper {
    padding: 70px 15px;
  }
}
@media (max-width: 991px) {
  .home5-tech-section .tech-wrapper .tap-wrapper-area {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .home5-tech-section .tech-wrapper .tap-wrapper-area .nav {
    flex-direction: row !important;
  }
}
@media (max-width: 767px) {
  .home5-tech-section .tech-wrapper .tap-wrapper-area .nav {
    flex-wrap: wrap;
    flex-direction: unset !important;
  }
}
@media (max-width: 576px) {
  .home5-tech-section .tech-wrapper .tap-wrapper-area .nav {
    margin-bottom: 30px;
  }
}
.home5-tech-section .tech-wrapper .tap-wrapper-area .nav .nav-link {
  padding: 44px 20px 39px 20px;
  max-width: 270px;
  min-width: 270px;
  border: 1px solid rgba(var(--white-color-opc), 0.08);
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: rgba(var(--white-color-opc), 0.6);
}
@media (max-width: 1399px) {
  .home5-tech-section .tech-wrapper .tap-wrapper-area .nav .nav-link {
    max-width: 250px;
    min-width: 250px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-tech-section .tech-wrapper .tap-wrapper-area .nav .nav-link {
    max-width: 200px;
    min-width: 200px;
  }
}
@media (max-width: 991px) {
  .home5-tech-section .tech-wrapper .tap-wrapper-area .nav .nav-link {
    max-width: 212px;
    min-width: 212px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-tech-section .tech-wrapper .tap-wrapper-area .nav .nav-link {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .home5-tech-section .tech-wrapper .tap-wrapper-area .nav .nav-link {
    max-width: 200px;
    min-width: 200px;
    padding: 40px 16px 35px 15px;
  }
}
@media (max-width: 576px) {
  .home5-tech-section .tech-wrapper .tap-wrapper-area .nav .nav-link {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
}
.home5-tech-section .tech-wrapper .tap-wrapper-area .nav .nav-link.active {
  background-color: rgba(var(--primary-color1-opc), 0.2);
  border-radius: 5px;
  color: var(--white-color);
}
.home5-tech-section .tech-wrapper .tap-wrapper-area .nav .nav-link:hover {
  background-color: rgba(var(--primary-color1-opc), 0.2);
  border-radius: 5px;
  color: var(--white-color);
}
.home5-tech-section .tech-wrapper .tap-wrapper-area .nav .nav-link:nth-child(2) {
  border-radius: 0;
}
.home5-tech-section .tech-wrapper .tap-wrapper-area .nav .nav-link:nth-child(3) {
  border-radius: 0 0 10px 10px;
}
@media (max-width: 991px) {
  .home5-tech-section .tech-wrapper .tap-wrapper-area .nav .nav-link:nth-child(3) {
    border-radius: unset;
  }
}
.home5-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 991px) {
  .home5-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .home5-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .home5-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home5-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li {
  padding: 38px 52px 38px 46px;
  border: 1px solid rgba(var(--white-color-opc), 0.08);
  text-align: center;
}
@media (max-width: 1399px) {
  .home5-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li {
    padding: 38px 45px 38px 39px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li {
    padding: 38px 40px 38px 30px;
  }
}
@media (max-width: 576px) {
  .home5-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li {
    width: 100%;
    padding: 38px 35px 38px 35px;
  }
}
.home5-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li img {
  margin-bottom: 10px;
}
.home5-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li span {
  color: var(--white-color);
  display: block;
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li span {
    font-size: 14px;
  }
}
.home5-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li:nth-child(5) {
  border-radius: 0 10px 0 0;
}
.home5-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li:nth-child(10) {
  border-radius: 0 0 10px 0;
}

.home5-about-section .about-section-wrapper {
  background-color: var(--black-color);
  padding: 90px 70px 90px 100px;
}
@media (max-width: 1399px) {
  .home5-about-section .about-section-wrapper {
    padding: 80px 25px 80px 35px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-about-section .about-section-wrapper {
    padding: 80px 20px;
  }
}
@media (max-width: 767px) {
  .home5-about-section .about-section-wrapper {
    padding: 70px 10px;
  }
}
.home5-about-section .about-section-wrapper .section-title-and-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .home5-about-section .about-section-wrapper .section-title-and-btn {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.home5-about-section .about-section-wrapper .section-title-and-btn .section-title {
  max-width: 648px;
  width: 100%;
}
@media (max-width: 767px) {
  .home5-about-section .about-section-wrapper .section-title-and-btn .section-title {
    max-width: unset;
  }
}
.home5-about-section .about-section-wrapper .section-title-and-btn .section-title h2 {
  text-transform: unset;
}
.home5-about-section .about-section-wrapper .section-title-and-btn .primary-btn1 {
  padding: 27px 32px;
  border-radius: 50%;
  border: 1px solid rgba(var(--white-color-opc), 0.1);
  background-color: rgba(var(--primary-color1-opc), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(30px);
  transition: 0.8s;
}
@media (max-width: 991px) {
  .home5-about-section .about-section-wrapper .section-title-and-btn .primary-btn1 {
    transform: translateY(0px);
  }
}
.home5-about-section .about-section-wrapper .section-title-and-btn .primary-btn1 .details-button {
  background-image: linear-gradient(0deg, #fff 0%, #fff 100%);
  color: var(--white-color);
}
.home5-about-section .about-section-wrapper .section-title-and-btn .primary-btn1 .details-button::after {
  color: var(--white-color);
}
.home5-about-section .about-section-wrapper .section-title-and-btn .primary-btn1 .details-button svg {
  stroke: var(--white-color);
}
.home5-about-section .about-section-wrapper .section-title-and-btn .primary-btn1:hover {
  box-shadow: inset 0 0 0 10em var(--primary-color1);
}
.home5-about-section .about-section-wrapper .section-title-and-btn .primary-btn1:hover .details-button {
  --background-size: 0%;
  --stroke-dashoffset: 26;
  --stroke-duration: .3s;
  --stroke-easing: cubic-bezier(0.3, 1.5, 0.5, 1);
  --stroke-delay: .195s;
}
.home5-about-section .about-section-wrapper .section-title-and-btn .primary-btn1:hover .details-button::after {
  opacity: 0;
  transition-delay: 0s;
}
.home5-about-section .about-section-wrapper .about-img-wrapper {
  position: relative;
  max-width: 581px;
}
.home5-about-section .about-section-wrapper .about-img-wrapper .about-img-wrap {
  -webkit-mask-image: url(../img/home5/home5-about-mask-img.png);
          mask-image: url(../img/home5/home5-about-mask-img.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (max-width: 576px) {
  .home5-about-section .about-section-wrapper .about-img-wrapper .about-img-wrap {
    -webkit-mask-image: unset;
            mask-image: unset;
  }
}
@media (max-width: 576px) {
  .home5-about-section .about-section-wrapper .about-img-wrapper .about-img-wrap img {
    border-radius: 10px;
  }
}
.home5-about-section .about-section-wrapper .about-img-wrapper .people-area {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .home5-about-section .about-section-wrapper .about-img-wrapper .people-area {
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .home5-about-section .about-section-wrapper .about-img-wrapper .people-area {
    display: none;
  }
}
.home5-about-section .about-section-wrapper .about-img-wrapper .people-area .img-grp {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.home5-about-section .about-section-wrapper .about-img-wrapper .people-area .img-grp li img {
  min-width: 29px;
  max-width: 29px;
  height: 29px;
  border-radius: 50%;
  border: 1px solid var(--white-color);
  margin-left: -10px;
}
.home5-about-section .about-section-wrapper .about-img-wrapper .people-area .img-grp li:first-child img {
  margin-left: 0;
  border: unset;
}
.home5-about-section .about-section-wrapper .about-img-wrapper .people-area a {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  max-width: 108px;
  text-decoration: underline;
  text-transform: uppercase;
}
.home5-about-section .about-section-wrapper .about-content {
  max-width: 471px;
  width: 100%;
}
.home5-about-section .about-section-wrapper .about-content .about-content-list {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 45px;
}
.home5-about-section .about-section-wrapper .about-content .about-content-list .single-content-list {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid;
  border-image-source: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  border-image-slice: 1;
}
@media (max-width: 991px) {
  .home5-about-section .about-section-wrapper .about-content .about-content-list .single-content-list {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
}
.home5-about-section .about-section-wrapper .about-content .about-content-list .single-content-list h3 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .home5-about-section .about-section-wrapper .about-content .about-content-list .single-content-list h3 {
    font-size: 18px;
  }
}
.home5-about-section .about-section-wrapper .about-content .about-content-list .single-content-list p {
  color: rgba(var(--white-color-opc), 0.6);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .home5-about-section .about-section-wrapper .about-content .about-content-list .single-content-list p {
    font-size: 14px;
  }
}
.home5-about-section .about-section-wrapper .about-content .about-content-list .single-content-list:last-child {
  border: unset;
  margin-bottom: 0;
  padding-bottom: 0;
}
.home5-about-section .about-section-wrapper .about-content .countdown-wrapper {
  display: flex;
  justify-content: space-between;
}
.home5-about-section .about-section-wrapper .about-content .countdown-wrapper .single-countdown {
  text-align: center;
}
.home5-about-section .about-section-wrapper .about-content .countdown-wrapper .single-countdown .number {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home5-about-section .about-section-wrapper .about-content .countdown-wrapper .single-countdown .number h4 {
  color: rgba(var(--white-color-opc), 0.3);
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .home5-about-section .about-section-wrapper .about-content .countdown-wrapper .single-countdown .number h4 {
    font-size: 75px;
  }
}
@media (max-width: 767px) {
  .home5-about-section .about-section-wrapper .about-content .countdown-wrapper .single-countdown .number h4 {
    font-size: 70px;
  }
}
@media (max-width: 576px) {
  .home5-about-section .about-section-wrapper .about-content .countdown-wrapper .single-countdown .number h4 {
    font-size: 65px;
  }
}
.home5-about-section .about-section-wrapper .about-content .countdown-wrapper .single-countdown .content {
  background-color: var(--black-color);
  padding-top: 20px;
  margin-top: -15px;
  position: relative;
  z-index: 1;
}
.home5-about-section .about-section-wrapper .about-content .countdown-wrapper .single-countdown .content p {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
}

/*=====================================
57. Home6 Banner Section CSS
========================================*/
.home6-banner-section {
  position: relative;
  height: 897px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home6-banner-section {
    height: 700px;
  }
}
@media (max-width: 1399px) {
  .home6-banner-section {
    height: 670px;
  }
}
@media (max-width: 1199px) {
  .home6-banner-section {
    height: 700px;
  }
}
@media (max-width: 991px) {
  .home6-banner-section {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .home6-banner-section {
    height: 620px;
  }
}
@media (max-width: 576px) {
  .home6-banner-section {
    height: 550px;
  }
}
.home6-banner-section video {
  width: 100%;
  height: 897px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home6-banner-section video {
    height: 700px;
  }
}
@media (max-width: 1399px) {
  .home6-banner-section video {
    height: 670px;
  }
}
@media (max-width: 1199px) {
  .home6-banner-section video {
    height: 700px;
  }
}
@media (max-width: 991px) {
  .home6-banner-section video {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .home6-banner-section video {
    height: 620px;
  }
}
@media (max-width: 576px) {
  .home6-banner-section video {
    height: 550px;
  }
}
.home6-banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.home6-banner-section .banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 100px 120px 90px 100px;
}
@media (max-width: 1699px) {
  .home6-banner-section .banner-content {
    padding: 32% 95px 100px 70px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home6-banner-section .banner-content {
    padding: 100px 40px 90px 30px;
  }
}
@media (max-width: 1399px) {
  .home6-banner-section .banner-content {
    padding: 100px 20px 80px 20px;
  }
}
@media (max-width: 1199px) {
  .home6-banner-section .banner-content {
    padding: 90px 20px 70px 20px;
  }
}
@media (max-width: 991px) {
  .home6-banner-section .banner-content {
    flex-wrap: wrap;
    padding: 28% 20px 88px 20px;
  }
}
@media (max-width: 767px) {
  .home6-banner-section .banner-content {
    padding: 36% 20px 80px 20px;
  }
}
@media (max-width: 576px) {
  .home6-banner-section .banner-content {
    padding: 130px 10px 68px 10px;
  }
}
.home6-banner-section .banner-content h1 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 70px;
  line-height: 90px;
  margin-bottom: 0;
  max-width: 775px;
  width: 100%;
}
@media (max-width: 1699px) {
  .home6-banner-section .banner-content h1 {
    font-size: 62px;
    line-height: 85px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home6-banner-section .banner-content h1 {
    font-size: 58px;
    line-height: 78px;
  }
}
@media (max-width: 1399px) {
  .home6-banner-section .banner-content h1 {
    font-size: 52px;
    line-height: 75px;
    max-width: 640px;
  }
}
@media (max-width: 1199px) {
  .home6-banner-section .banner-content h1 {
    font-size: 45px;
    line-height: 66px;
  }
}
@media (max-width: 991px) {
  .home6-banner-section .banner-content h1 {
    font-size: 43px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .home6-banner-section .banner-content h1 {
    font-size: 38px;
    line-height: 55px;
  }
}
@media (max-width: 576px) {
  .home6-banner-section .banner-content h1 {
    font-size: 29px;
    line-height: 45px;
  }
}
.home6-banner-section .banner-content .banner-right-content {
  max-width: 538px;
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .home6-banner-section .banner-content .banner-right-content {
    max-width: 470px;
  }
}
@media (max-width: 1199px) {
  .home6-banner-section .banner-content .banner-right-content {
    max-width: 380px;
    margin-bottom: 10px;
  }
}
.home6-banner-section .banner-content .banner-right-content p {
  color: rgba(var(--white-color-opc), 0.7);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 35px;
}
@media (max-width: 1199px) {
  .home6-banner-section .banner-content .banner-right-content p {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .home6-banner-section .banner-content .banner-right-content p {
    font-size: 17px;
    line-height: 30px;
  }
}
@media (max-width: 576px) {
  .home6-banner-section .banner-content .banner-right-content p {
    font-size: 16px;
  }
}

/*=====================================
58. Home6 Banner Section CSS
========================================*/
.home6-about-section {
  position: relative;
}
.home6-about-section .section-title {
  max-width: 759px;
  width: 100%;
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .home6-about-section .section-title {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .home6-about-section .section-title {
    max-width: unset;
  }
}
@media (max-width: 576px) {
  .home6-about-section .section-title p {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .home6-about-section .primary-btn1 {
    margin-bottom: 70px;
  }
}
.home6-about-section .circle-stats {
  position: relative;
  width: 564px;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
@media (max-width: 1399px) {
  .home6-about-section .circle-stats {
    width: 480px;
  }
}
@media (max-width: 1199px) {
  .home6-about-section .circle-stats {
    width: 420px;
  }
}
@media (max-width: 767px) {
  .home6-about-section .circle-stats {
    margin: 0 auto;
    width: 380px;
  }
}
.home6-about-section .circle-stats .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.home6-about-section .circle-stats .ring-main {
  border: 3px solid rgba(var(--primary-color4-opc), 0.5);
}
.home6-about-section .circle-stats .ball {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #7ab233;
  offset-path: circle(255px at 282px 282px);
  offset-distance: 66%;
  animation: ballUpDown 7s ease-in-out infinite;
  left: 0;
  top: 0;
}
@media (max-width: 1399px) {
  .home6-about-section .circle-stats .ball {
    width: 45px;
    height: 45px;
    offset-path: circle(216px at 240px 240px);
  }
}
@media (max-width: 1199px) {
  .home6-about-section .circle-stats .ball {
    offset-path: circle(187px at 210px 210px);
  }
}
@media (max-width: 767px) {
  .home6-about-section .circle-stats .ball {
    width: 40px;
    height: 40px;
    offset-path: circle(170px at 190px 190px);
  }
}
@media (max-width: 576px) {
  .home6-about-section .circle-stats .ball {
    display: none;
  }
}
.home6-about-section .circle-stats .circle1-content {
  text-align: center;
}
.home6-about-section .circle-stats .circle1-content h3 {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 106px;
  line-height: 1;
  text-align: center;
  color: var(--title-color);
}
@media (max-width: 1399px) {
  .home6-about-section .circle-stats .circle1-content h3 {
    font-size: 85px;
  }
}
@media (max-width: 1199px) {
  .home6-about-section .circle-stats .circle1-content h3 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .home6-about-section .circle-stats .circle1-content h3 {
    font-size: 60px;
  }
}
.home6-about-section .circle-stats .circle1-content p {
  max-width: 305px;
  width: 100%;
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  margin: 0 auto 0;
}
@media (max-width: 576px) {
  .home6-about-section .circle-stats .circle1-content p {
    font-size: 13px;
    line-height: 24px;
  }
}
.home6-about-section .circle2 {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 2px solid rgba(var(--primary-color4-opc), 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -35px;
}
@media (max-width: 1199px) {
  .home6-about-section .circle2 {
    width: 320px;
    height: 320px;
  }
}
@media (max-width: 767px) {
  .home6-about-section .circle2 {
    display: none;
  }
}
.home6-about-section .circle2 .circle2-content {
  text-align: center;
}
.home6-about-section .circle2 .circle2-content h3 {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  color: var(--title-color);
}
.home6-about-section .circle2 .circle2-content p {
  max-width: 263px;
  width: 100%;
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 13px;
  line-height: 27px;
  margin: 0 auto 0;
}
.home6-about-section .vector {
  position: absolute;
  bottom: -120px;
  left: 40px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home6-about-section .vector {
    width: 280px;
  }
}
@media (max-width: 1399px) {
  .home6-about-section .vector {
    width: 250px;
  }
}
@media (max-width: 1199px) {
  .home6-about-section .vector {
    width: 220px;
    left: -10px;
  }
}
@media (max-width: 991px) {
  .home6-about-section .vector {
    display: none;
  }
}
.home6-about-section .vector2 {
  position: absolute;
  top: -120px;
  right: 0;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home6-about-section .vector2 {
    width: 300px;
  }
}
@media (max-width: 1399px) {
  .home6-about-section .vector2 {
    width: 280px;
  }
}
@media (max-width: 1199px) {
  .home6-about-section .vector2 {
    width: 250px;
  }
}
@media (max-width: 991px) {
  .home6-about-section .vector2 {
    display: none;
  }
}
@keyframes ballUpDown {
  0% {
    offset-distance: 66%;
  }
  50% {
    offset-distance: 16%;
  }
  100% {
    offset-distance: 66%;
  }
}

/*=====================================
59. Home6 Banner Section CSS
========================================*/
.home6-ai-feature-section {
  position: relative;
  background-image: url(../img/home6/home6-ai-feature-bg-img.png), linear-gradient(180deg, rgb(34, 34, 34) 0%, rgb(34, 34, 34) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 110px 0;
}
@media (max-width: 1199px) {
  .home6-ai-feature-section {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .home6-ai-feature-section {
    padding: 70px 0;
  }
}
.home6-ai-feature-section .feature-list-wrapper {
  padding: 0 190px;
}
@media (max-width: 1899px) {
  .home6-ai-feature-section .feature-list-wrapper {
    padding: 0 100px;
  }
}
@media (max-width: 1699px) {
  .home6-ai-feature-section .feature-list-wrapper {
    padding: 0 50px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home6-ai-feature-section .feature-list-wrapper {
    padding: 0 20px;
  }
}
@media (max-width: 1199px) {
  .home6-ai-feature-section .feature-list-wrapper {
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .home6-ai-feature-section .feature-list-wrapper {
    padding: 0 10px;
  }
}
.home6-ai-feature-section .feature-list-wrapper .feature-list-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home6-ai-feature-section .feature-list-wrapper .feature-list-wrap {
    gap: 20px;
  }
}
@media (max-width: 1399px) {
  .home6-ai-feature-section .feature-list-wrapper .feature-list-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .home6-ai-feature-section .feature-list-wrapper .feature-list-wrap {
    gap: 15px;
    row-gap: 25px;
  }
}
@media (max-width: 767px) {
  .home6-ai-feature-section .feature-list-wrapper .feature-list-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.home6-ai-feature-section .feature-list-wrapper .feature-list-wrap .single-feature-list {
  padding: 45px 30px;
  background-color: #181818;
  border-radius: 20px;
  display: flex;
  gap: 20px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home6-ai-feature-section .feature-list-wrapper .feature-list-wrap .single-feature-list {
    padding: 40px 18px;
  }
}
@media (max-width: 1199px) {
  .home6-ai-feature-section .feature-list-wrapper .feature-list-wrap .single-feature-list {
    gap: 15px;
    padding: 40px 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home6-ai-feature-section .feature-list-wrapper .feature-list-wrap .single-feature-list {
    padding: 40px 18px;
  }
}
@media (max-width: 767px) {
  .home6-ai-feature-section .feature-list-wrapper .feature-list-wrap .single-feature-list {
    border-radius: 15px;
  }
}
@media (max-width: 576px) {
  .home6-ai-feature-section .feature-list-wrapper .feature-list-wrap .single-feature-list {
    border-radius: 10px;
    padding: 30px 15px;
  }
}
.home6-ai-feature-section .feature-list-wrapper .feature-list-wrap .single-feature-list svg {
  fill: var(--primary-color4);
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .home6-ai-feature-section .feature-list-wrapper .feature-list-wrap .single-feature-list svg {
    width: 40px;
  }
}
@media (max-width: 576px) {
  .home6-ai-feature-section .feature-list-wrapper .feature-list-wrap .single-feature-list svg {
    width: 35px;
  }
}
.home6-ai-feature-section .feature-list-wrapper .feature-list-wrap .single-feature-list .feature-content {
  max-width: 349px;
  width: 100%;
}
@media (max-width: 767px) {
  .home6-ai-feature-section .feature-list-wrapper .feature-list-wrap .single-feature-list .feature-content {
    max-width: unset;
  }
}
.home6-ai-feature-section .feature-list-wrapper .feature-list-wrap .single-feature-list .feature-content h3 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.3;
  margin-bottom: 10px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home6-ai-feature-section .feature-list-wrapper .feature-list-wrap .single-feature-list .feature-content h3 {
    font-size: 23px;
  }
}
@media (max-width: 1199px) {
  .home6-ai-feature-section .feature-list-wrapper .feature-list-wrap .single-feature-list .feature-content h3 {
    font-size: 23px;
  }
}
@media (max-width: 991px) {
  .home6-ai-feature-section .feature-list-wrapper .feature-list-wrap .single-feature-list .feature-content h3 {
    font-size: 20px;
  }
}
.home6-ai-feature-section .feature-list-wrapper .feature-list-wrap .single-feature-list .feature-content p {
  color: rgba(var(--white-color-opc), 0.7);
  margin-bottom: 0;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}
@media (max-width: 576px) {
  .home6-ai-feature-section .feature-list-wrapper .feature-list-wrap .single-feature-list .feature-content p {
    font-size: 14px;
    line-height: 26px;
  }
}
.home6-ai-feature-section .feature-list-wrapper .feature-list-wrap .single-feature-list:hover svg {
  animation: bounceOut 1.3s linear;
}

/*=====================================
60. Home6 FAQ Section CSS
========================================*/
.home6-faq-section .section-title-and-btn {
  max-width: 476px;
  transform: rotate(0deg);
  transform-origin: left center;
  will-change: transform;
}
.home6-faq-section .faq-wrap {
  max-width: 822px;
  width: 100%;
}

/*=====================================
61. Home6 Banner Area Section CSS
========================================*/
.home6-banner-area {
  position: relative;
  min-height: 860px;
  max-height: 860px;
  overflow: hidden;
  display: flex;
  align-items: end;
}
@media (max-width: 1399px) {
  .home6-banner-area {
    min-height: 760px;
    max-height: 760px;
  }
}
@media (max-width: 1199px) {
  .home6-banner-area {
    min-height: 600px;
    max-height: 600px;
  }
}
@media (max-width: 767px) {
  .home6-banner-area {
    min-height: 550px;
    max-height: 550px;
  }
}
@media (max-width: 576px) {
  .home6-banner-area {
    min-height: 450px;
    max-height: 450px;
  }
}
.home6-banner-area .banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.2);
}
.home6-banner-area .banner-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(var(--title-color-opc), 0.3);
  z-index: 2;
  pointer-events: none;
}
.home6-banner-area .banner-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.home6-banner-area .founder-wrapper {
  background-color: var(--text-color);
  backdrop-filter: blur(10px);
  padding: 65px 40px 65px 50px;
  border-radius: 10px 10px 0 0;
  opacity: 0;
  transform: translateY(28px);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home6-banner-area .founder-wrapper {
    padding: 55px 30px 65px 30px;
  }
}
@media (max-width: 1199px) {
  .home6-banner-area .founder-wrapper {
    padding: 40px 30px 45px 30px;
  }
}
@media (max-width: 991px) {
  .home6-banner-area .founder-wrapper {
    padding: 30px 30px 40px 30px;
  }
}
@media (max-width: 576px) {
  .home6-banner-area .founder-wrapper {
    padding: 35px 15px;
  }
}
.home6-banner-area .founder-wrapper h2 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 42px;
  line-height: 55px;
  margin-bottom: 30px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home6-banner-area .founder-wrapper h2 {
    font-size: 39px;
    line-height: 51px;
  }
}
@media (max-width: 1399px) {
  .home6-banner-area .founder-wrapper h2 {
    font-size: 37px;
    line-height: 50px;
  }
}
@media (max-width: 1199px) {
  .home6-banner-area .founder-wrapper h2 {
    font-size: 35px;
    line-height: 47px;
  }
}
@media (max-width: 991px) {
  .home6-banner-area .founder-wrapper h2 {
    font-size: 30px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .home6-banner-area .founder-wrapper h2 {
    font-size: 30px;
    line-height: 41px;
  }
}
@media (max-width: 576px) {
  .home6-banner-area .founder-wrapper h2 {
    font-size: 26px;
    line-height: 35px;
  }
}
.home6-banner-area .founder-wrapper ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.home6-banner-area .founder-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.home6-banner-area .founder-wrapper ul li svg {
  fill: var(--white-color);
  margin-top: 2px;
}
@media (max-width: 576px) {
  .home6-banner-area .founder-wrapper ul li svg {
    width: 13px;
  }
}
.home6-banner-area .founder-wrapper ul li span {
  display: block;
  color: var(--white-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1199px) {
  .home6-banner-area .founder-wrapper ul li span {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .home6-banner-area .founder-wrapper ul li span {
    font-size: 14px;
  }
}
.home6-banner-area .founder-wrapper ul li:last-child {
  margin-bottom: 0;
}

.slice-wrap {
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.slice-wrap .slice-item {
  height: 100%;
  flex-grow: 1;
  background: var(--white-color);
}

/*=====================================
62. Home6 Blog Section CSS
========================================*/
.home6-blog-section .section-title-and-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home6-blog-section .section-title-and-btn {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.home6-blog-section .section-title-and-btn .section-title h2 {
  max-width: 724px;
}
@media (max-width: 767px) {
  .home6-blog-section .section-title-and-btn .section-title h2 {
    max-width: unset;
  }
}
.home6-blog-section .section-title-and-btn .primary-btn1 svg {
  stroke: var(--title-color);
}
.home6-blog-section .section-title-and-btn .primary-btn1 span {
  color: var(--title-color);
  background-image: linear-gradient(0deg, var(--title-color) 0%, var(--title-color) 100%);
}
.home6-blog-section .section-title-and-btn .primary-btn1 span::after {
  color: var(--title-color);
}
.home6-blog-section .blog-card-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
}
.home6-blog-section .blog-card-wrap .single-blog-list {
  padding: 40px 0;
  border-top: 1px solid rgba(var(--title-color-opc), 0.1);
  border-bottom: 1px solid rgba(var(--title-color-opc), 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 767px) {
  .home6-blog-section .blog-card-wrap .single-blog-list {
    padding: 30px 0;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.home6-blog-section .blog-card-wrap .single-blog-list .blog-card-content {
  max-width: 536px;
  width: 100%;
}
.home6-blog-section .blog-card-wrap .single-blog-list .blog-card-content .tag-and-date {
  display: flex;
  gap: 30px;
  margin-bottom: 15px;
}
.home6-blog-section .blog-card-wrap .single-blog-list .blog-card-content .tag-and-date .tag {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  transition: all 0.5s;
}
@media (max-width: 576px) {
  .home6-blog-section .blog-card-wrap .single-blog-list .blog-card-content .tag-and-date .tag {
    font-size: 14px;
  }
}
.home6-blog-section .blog-card-wrap .single-blog-list .blog-card-content .tag-and-date .tag:hover {
  color: var(--primary-color4);
}
.home6-blog-section .blog-card-wrap .single-blog-list .blog-card-content .tag-and-date .date {
  color: rgba(var(--title-color-opc), 0.4);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  transition: all 0.5s;
}
@media (max-width: 576px) {
  .home6-blog-section .blog-card-wrap .single-blog-list .blog-card-content .tag-and-date .date {
    font-size: 14px;
  }
}
.home6-blog-section .blog-card-wrap .single-blog-list .blog-card-content .tag-and-date .date:hover {
  color: var(--primary-color4);
}
.home6-blog-section .blog-card-wrap .single-blog-list .blog-card-content h3 {
  margin-bottom: 0;
  line-height: 37px;
}
@media (max-width: 1199px) {
  .home6-blog-section .blog-card-wrap .single-blog-list .blog-card-content h3 {
    line-height: 32px;
  }
}
@media (max-width: 576px) {
  .home6-blog-section .blog-card-wrap .single-blog-list .blog-card-content h3 {
    line-height: 28px;
  }
}
.home6-blog-section .blog-card-wrap .single-blog-list .blog-card-content h3 a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 27px;
  line-height: 37px;
  background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
  background-repeat: no-repeat;
  background-size: 0px 1.5px;
  background-position: right 95%;
  transition: background-size 0.75s;
}
@media (max-width: 1199px) {
  .home6-blog-section .blog-card-wrap .single-blog-list .blog-card-content h3 a {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .home6-blog-section .blog-card-wrap .single-blog-list .blog-card-content h3 a {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 576px) {
  .home6-blog-section .blog-card-wrap .single-blog-list .blog-card-content h3 a {
    font-size: 19px;
    line-height: 28px;
  }
}
.home6-blog-section .blog-card-wrap .single-blog-list .blog-card-content h3 a:hover {
  background-size: 100% 1.5px;
  background-position: 0 95%;
}
.home6-blog-section .blog-card-wrap .single-blog-list .blog-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) scale(0.4);
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}
.home6-blog-section .blog-card-wrap .single-blog-list .blog-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(var(--primary-color4-opc), 0.3);
  border-radius: 10px;
  transform: rotate(-5deg);
  z-index: -1;
}
.home6-blog-section .blog-card-wrap .single-blog-list .blog-img img {
  width: 224px;
  height: 259px;
  border-radius: 10px;
  display: block;
  position: relative;
  z-index: 1;
}
.home6-blog-section .blog-card-wrap .single-blog-list .primary-btn2 {
  border: 1px solid rgba(var(--title-color-opc), 0.15);
  border-radius: 5px;
  padding: 17px 36px;
  transition: all 0.5s;
  color: var(--primary-color4);
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.home6-blog-section .blog-card-wrap .single-blog-list .primary-btn2 span {
  background-color: var(--primary-color4);
}
.home6-blog-section .blog-card-wrap .single-blog-list .primary-btn2 svg {
  fill: var(--primary-color4);
}
.home6-blog-section .blog-card-wrap .single-blog-list .primary-btn2:hover {
  color: var(--title-color);
}
.home6-blog-section .blog-card-wrap .single-blog-list .primary-btn2:hover svg {
  fill: var(--title-color);
}
.home6-blog-section .blog-card-wrap .single-blog-list:hover .blog-img {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/*=====================================
63. Home6 Service Section CSS
========================================*/
@keyframes qodef-animate-image-out {
  0% {
    transform: scale(1) translateZ(0);
    clip-path: inset(0 0 0 0);
  }
  100% {
    transform: scale(1);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qodef-animate-image-in {
  0% {
    transform: scale(1.05) translateZ(0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    transform: scale(1);
    clip-path: inset(0 0 0 0);
  }
}
.home6-service-section {
  background-image: url(../img/home6/home6-service-section-bg.png), linear-gradient(180deg, rgb(227, 240, 248) 0%, rgb(227, 240, 248) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0 90px 0;
  position: relative;
}
@media (max-width: 1199px) {
  .home6-service-section {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .home6-service-section {
    padding: 70px 0;
  }
}
.home6-service-section .section-title h2 {
  max-width: 760px;
}
@media (max-width: 767px) {
  .home6-service-section .section-title h2 {
    max-width: unset;
  }
}
@media (max-width: 576px) {
  .home6-service-section .section-title h2 {
    font-size: 30px;
  }
}
.home6-service-section .primary-btn1 {
  border: 1px solid var(--primary-color4);
  border-radius: 5px;
  padding: 19px 37px;
}
.home6-service-section .primary-btn1 svg {
  stroke: var(--primary-color4);
}
.home6-service-section .primary-btn1 span {
  color: var(--primary-color4);
  background-image: linear-gradient(0deg, var(--primary-color4) 0%, var(--primary-color4) 100%);
}
.home6-service-section .primary-btn1 span::after {
  color: var(--primary-color4);
}
.home6-service-section .primary-btn1:hover svg {
  stroke: var(--primary-color4);
}
.home6-service-section .service-wrapper .service-img {
  position: relative;
}
.home6-service-section .service-wrapper .service-img ul {
  padding: 0;
  margin: 0;
  list-style: none;
  min-height: 456px;
  max-width: 580px;
  height: 100%;
  width: 100%;
}
@media (max-width: 1199px) {
  .home6-service-section .service-wrapper .service-img ul {
    min-height: 350px;
  }
}
@media (max-width: 991px) {
  .home6-service-section .service-wrapper .service-img ul {
    min-height: 400px;
  }
}
@media (max-width: 576px) {
  .home6-service-section .service-wrapper .service-img ul {
    height: unset;
  }
}
.home6-service-section .service-wrapper .service-img ul li .single-img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: qodef-animate-image-out 1s 0.1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  z-index: 12;
}
@media (max-width: 576px) {
  .home6-service-section .service-wrapper .service-img ul li .single-img {
    height: unset;
  }
}
.home6-service-section .service-wrapper .service-img ul li .single-img img {
  border-radius: 20px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .home6-service-section .service-wrapper .service-img ul li .single-img img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .home6-service-section .service-wrapper .service-img ul li .single-img img {
    height: unset;
  }
}
.home6-service-section .service-wrapper .service-img ul li .service-content {
  background-color: var(--white-color);
  padding: 25px 25px;
  position: absolute;
  z-index: 16;
  max-width: 432px;
  margin: 0 auto;
  bottom: 0;
  left: 70px;
  border: 7px solid #E3F0F8;
  border-bottom: unset;
  transform: scaleY(0);
  transform-origin: bottom;
  margin: 0 auto;
  transition: 0.5s ease-in-out;
  border-radius: 20px 20px 0 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home6-service-section .service-wrapper .service-img ul li .service-content {
    max-width: 350px;
    left: 45px;
    padding: 25px 10px;
  }
}
@media (max-width: 991px) {
  .home6-service-section .service-wrapper .service-img ul li .service-content {
    left: 150px;
  }
}
.home6-service-section .service-wrapper .service-img ul li .service-content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home6-service-section .service-wrapper .service-img ul li .service-content p {
    font-size: 16px;
    line-height: 27px;
  }
}
.home6-service-section .service-wrapper .service-img ul li.active .single-img {
  animation: qodef-animate-image-in 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  z-index: 15;
}
.home6-service-section .service-wrapper .service-img ul li.active .service-content {
  opacity: 1;
  transform: scaleY(1);
}
.home6-service-section .service-wrapper .service-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 576px) {
  .home6-service-section .service-wrapper .service-list ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.home6-service-section .service-wrapper .service-list ul li {
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .home6-service-section .service-wrapper .service-list ul li {
    margin-bottom: 30px;
  }
}
.home6-service-section .service-wrapper .service-list ul li:last-child {
  margin-bottom: 0;
}
.home6-service-section .service-wrapper .service-list ul li:last-child .service-content p {
  margin-bottom: 0;
}
.home6-service-section .service-wrapper .service-list ul li h3 {
  margin-bottom: 0;
  line-height: 1.2;
  display: flex;
  gap: 10px;
  align-items: center;
}
.home6-service-section .service-wrapper .service-list ul li h3 a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  transition: all 0.5s;
}
@media (max-width: 1399px) {
  .home6-service-section .service-wrapper .service-list ul li h3 a {
    font-size: 19px;
  }
}
@media (max-width: 1199px) {
  .home6-service-section .service-wrapper .service-list ul li h3 a {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home6-service-section .service-wrapper .service-list ul li h3 a {
    font-size: 16px;
  }
}
.home6-service-section .service-wrapper .service-list ul li svg {
  fill: var(--primary-color4);
  transition: 0.5s;
  opacity: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home6-service-section .service-wrapper .service-list ul li svg {
    width: 20px;
  }
}
.home6-service-section .service-wrapper .service-list ul li.active h3 a {
  color: var(--primary-color4);
  text-decoration: underline;
}
.home6-service-section .service-wrapper .service-list ul li.active svg {
  opacity: 1;
}
.home6-service-section .vector {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1699px) {
  .home6-service-section .vector {
    width: 200px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home6-service-section .vector {
    width: 130px;
  }
}
@media (max-width: 1199px) {
  .home6-service-section .vector {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .home6-service-section .vector {
    display: none;
  }
}

/*=====================================
63. Home6 Feature Section CSS
========================================*/
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content {
  background-color: #E2F0F9;
  padding: 100px 0;
  position: relative;
  height: 100%;
}
@media (max-width: 1899px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content {
    padding: 85px 0;
  }
}
@media (max-width: 1699px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content {
    padding: 70px 0;
  }
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-tab {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-tab {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-tab {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-tab {
    margin-bottom: 45px;
  }
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-tab .feature-nav-tabs {
  border-bottom: 1px solid rgba(var(--title-color-opc), 0.1);
  padding-left: 128px;
  padding-right: 170px;
  display: flex;
  gap: 50px;
  justify-content: space-between;
}
@media (max-width: 1699px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-tab .feature-nav-tabs {
    padding-left: 80px;
    padding-right: 120px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-tab .feature-nav-tabs {
    padding-left: 60px;
    padding-right: 60px;
    gap: 24px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-tab .feature-nav-tabs {
    padding-left: 25px;
    padding-right: 25px;
    gap: 5px;
  }
}
@media (max-width: 767px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-tab .feature-nav-tabs {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media (max-width: 576px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-tab .feature-nav-tabs {
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: unset;
    gap: 20px;
  }
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-tab .feature-nav-tabs .single-tab {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 17px;
  font-weight: 600;
  line-height: 2.4;
  letter-spacing: 0.36px;
  border: none;
  background: linear-gradient(to bottom, #9cd338 0%, #9cd338 98%);
  background-size: 0px 3px;
  background-repeat: no-repeat;
  background-position: right 100%;
  transition: background-size 0.75s;
  cursor: pointer;
  text-transform: uppercase;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-tab .feature-nav-tabs .single-tab {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-tab .feature-nav-tabs .single-tab {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-tab .feature-nav-tabs .single-tab {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-tab .feature-nav-tabs .single-tab {
    font-size: 15px;
  }
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-tab .feature-nav-tabs .single-tab.active {
  color: var(--primary-color4);
  background-size: 100% 1px;
  background-position: 0% 100%;
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper {
  padding: 0 120px;
}
@media (max-width: 1899px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper {
    padding: 0 80px;
  }
}
@media (max-width: 1699px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper {
    padding: 0 35px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper {
    padding: 0 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper {
    padding: 0 20px;
  }
}
@media (max-width: 576px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper {
    padding: 0 10px;
  }
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content {
  display: none;
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .icon {
  margin-bottom: 35px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .icon {
    margin-bottom: 25px;
  }
}
@media (max-width: 1199px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .icon {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .icon {
    margin-bottom: 25px;
  }
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .icon svg {
  fill: var(--primary-color4);
}
@media (max-width: 1199px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .icon svg {
    width: 70px;
  }
}
@media (max-width: 767px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .icon svg {
    width: 65px;
  }
}
@media (max-width: 576px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .icon svg {
    width: 60px;
  }
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content h2 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 45px;
  line-height: 58px;
  margin-bottom: 30px;
}
@media (max-width: 1699px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content h2 {
    font-size: 40px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content h2 {
    font-size: 38px;
    line-height: 55px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content h2 {
    font-size: 35px;
    line-height: 51px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content h2 {
    font-size: 30px;
    line-height: 45px;
  }
}
@media (max-width: 991px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content h2 {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content h2 {
    font-size: 34px;
    line-height: 50px;
  }
}
@media (max-width: 576px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content h2 {
    font-size: 21px;
    line-height: 33px;
  }
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content h2 span {
  color: var(--primary-color4);
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 56px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content p {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content p {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content p {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content p {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 25px;
  }
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .single-feature-list {
  margin: 0;
  list-style: none;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .single-feature-list {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .single-feature-list {
    padding-left: 15px;
  }
}
@media (max-width: 576px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .single-feature-list {
    padding: 0;
  }
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .single-feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .single-feature-list li svg {
  fill: #222222;
  flex-shrink: 0;
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .single-feature-list li svg path {
  fill: #E2F0F9;
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .single-feature-list li span {
  display: block;
  color: rgba(var(--title-color-opc), 0.7);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .single-feature-list li span {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .single-feature-list li span {
    font-size: 15px;
  }
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content .single-feature-list li:last-child {
  margin-bottom: 0;
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .feature-content-wrapper .single-feature-content.show {
  display: block;
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .vector {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 1399px) {
  .home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .vector {
    display: none;
  }
}
.home6-feature-section .feature-tab-wrapper .project-management-nav-and-content .vector2 {
  position: absolute;
  bottom: 0;
}
.home6-feature-section .feature-tab-wrapper .feature-img-wrap {
  position: relative;
  height: 100%;
}
.home6-feature-section .feature-tab-wrapper .feature-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(var(--title-color-opc), 0.3);
  z-index: 2;
  pointer-events: none;
}
.home6-feature-section .feature-tab-wrapper .feature-img-wrap > img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (max-width: 991px) {
  .home6-feature-section .feature-tab-wrapper .feature-img-wrap > img {
    height: auto;
  }
}
.home6-feature-section .feature-tab-wrapper .feature-img-wrap .feature-img-area {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.home6-feature-section .feature-tab-wrapper .feature-img-wrap .single-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: transform 0.8s ease, opacity 0.2s ease, visibility 0.2s ease;
  will-change: transform, opacity;
}
.home6-feature-section .feature-tab-wrapper .feature-img-wrap .single-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
@media (max-width: 1699px) {
  .home6-feature-section .feature-tab-wrapper .feature-img-wrap .single-img img {
    width: 760px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.home6-feature-section .feature-tab-wrapper .feature-img-wrap .single-img.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/*=====================================
64. Home6 Feature Section CSS
========================================*/
.home6-partner-section .section-title-and-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home6-partner-section .section-title-and-btn {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.home6-partner-section .section-title-and-btn .section-title {
  margin-bottom: unset;
}
.home6-partner-section .section-title-and-btn .section-title h2 {
  max-width: 648px;
  width: 100%;
}
@media (max-width: 767px) {
  .home6-partner-section .section-title-and-btn .section-title h2 {
    max-width: unset;
  }
}
@media (max-width: 767px) {
  .home6-partner-section .section-title-and-btn .primary-btn1 {
    padding: 16px 23px;
  }
}
.home6-partner-section .single-partner-wrap {
  padding: 0 54px 50px 0;
  position: relative;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home6-partner-section .single-partner-wrap {
    padding: 0 20px 50px 0;
  }
}
@media (max-width: 1199px) {
  .home6-partner-section .single-partner-wrap {
    padding: 20px;
    border: 1px solid rgba(var(--title-color-opc), 0.3);
    border-radius: 5px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .home6-partner-section .single-partner-wrap {
    padding: 15px;
  }
}
.home6-partner-section .single-partner-wrap::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 15px;
  width: 1px;
  height: 299px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 51.5%, rgba(0, 0, 0, 0) 100%);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home6-partner-section .single-partner-wrap::before {
    right: -5px;
  }
}
@media (max-width: 1199px) {
  .home6-partner-section .single-partner-wrap::before {
    display: none;
  }
}
.home6-partner-section .single-partner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 299px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 51.5%, rgba(0, 0, 0, 0) 100%);
  margin-right: -150px;
}
@media (max-width: 1199px) {
  .home6-partner-section .single-partner-wrap::after {
    display: none;
  }
}
.home6-partner-section .single-partner-wrap img {
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  .home6-partner-section .single-partner-wrap img {
    width: 110px;
  }
}
@media (max-width: 991px) {
  .home6-partner-section .single-partner-wrap img {
    width: 100px;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .home6-partner-section .single-partner-wrap img {
    width: 90px;
  }
}
.home6-partner-section .single-partner-wrap p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  margin-bottom: 0;
}
.home6-partner-section .row > *:nth-child(2) .single-partner-wrap,
.home6-partner-section .row > *:nth-child(3) .single-partner-wrap {
  padding: 0 53px 50px 10px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home6-partner-section .row > *:nth-child(2) .single-partner-wrap,
  .home6-partner-section .row > *:nth-child(3) .single-partner-wrap {
    padding: 0 11px 50px 10px;
  }
}
@media (max-width: 1199px) {
  .home6-partner-section .row > *:nth-child(2) .single-partner-wrap,
  .home6-partner-section .row > *:nth-child(3) .single-partner-wrap {
    padding: 20px;
    border: 1px solid rgba(var(--title-color-opc), 0.4);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .home6-partner-section .row > *:nth-child(2) .single-partner-wrap,
  .home6-partner-section .row > *:nth-child(3) .single-partner-wrap {
    padding: 15px;
  }
}
.home6-partner-section .row > *:nth-child(4) .single-partner-wrap {
  padding: 0 0 50px 10px;
}
@media (max-width: 1199px) {
  .home6-partner-section .row > *:nth-child(4) .single-partner-wrap {
    padding: 20px;
    border: 1px solid rgba(var(--title-color-opc), 0.4);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .home6-partner-section .row > *:nth-child(4) .single-partner-wrap {
    padding: 15px;
  }
}
.home6-partner-section .row > *:nth-child(5) .single-partner-wrap {
  padding: 40px 53px 0 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home6-partner-section .row > *:nth-child(5) .single-partner-wrap {
    padding: 40px 20px 0 0;
  }
}
@media (max-width: 1199px) {
  .home6-partner-section .row > *:nth-child(5) .single-partner-wrap {
    padding: 20px;
    border: 1px solid rgba(var(--title-color-opc), 0.4);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .home6-partner-section .row > *:nth-child(5) .single-partner-wrap {
    padding: 15px;
  }
}
.home6-partner-section .row > *:nth-child(6) .single-partner-wrap,
.home6-partner-section .row > *:nth-child(7) .single-partner-wrap {
  padding: 40px 53px 0 10px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home6-partner-section .row > *:nth-child(6) .single-partner-wrap,
  .home6-partner-section .row > *:nth-child(7) .single-partner-wrap {
    padding: 40px 11px 0 10px;
  }
}
@media (max-width: 1199px) {
  .home6-partner-section .row > *:nth-child(6) .single-partner-wrap,
  .home6-partner-section .row > *:nth-child(7) .single-partner-wrap {
    padding: 20px;
    border: 1px solid rgba(var(--title-color-opc), 0.4);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .home6-partner-section .row > *:nth-child(6) .single-partner-wrap,
  .home6-partner-section .row > *:nth-child(7) .single-partner-wrap {
    padding: 15px;
  }
}
.home6-partner-section .row > *:nth-child(8) .single-partner-wrap {
  padding: 40px 0 0 10px;
}
@media (max-width: 1199px) {
  .home6-partner-section .row > *:nth-child(8) .single-partner-wrap {
    padding: 20px;
    border: 1px solid rgba(var(--title-color-opc), 0.4);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .home6-partner-section .row > *:nth-child(8) .single-partner-wrap {
    padding: 15px;
  }
}
.home6-partner-section .row > *:nth-child(4) .single-partner-wrap::before, .home6-partner-section .row > *:nth-child(4) .single-partner-wrap::after,
.home6-partner-section .row > *:nth-child(5) .single-partner-wrap::before,
.home6-partner-section .row > *:nth-child(5) .single-partner-wrap::after,
.home6-partner-section .row > *:nth-child(6) .single-partner-wrap::before,
.home6-partner-section .row > *:nth-child(6) .single-partner-wrap::after,
.home6-partner-section .row > *:nth-child(7) .single-partner-wrap::before,
.home6-partner-section .row > *:nth-child(7) .single-partner-wrap::after,
.home6-partner-section .row > *:nth-child(8) .single-partner-wrap::before,
.home6-partner-section .row > *:nth-child(8) .single-partner-wrap::after {
  display: none !important;
}

/*=====================================
65. Home7 Banner Section CSS
========================================*/
.home7-banner-section {
  padding-top: 170px;
  position: relative;
}
@media (max-width: 1699px) {
  .home7-banner-section {
    padding-top: 155px;
  }
}
@media (max-width: 1199px) {
  .home7-banner-section {
    padding-top: 160px;
  }
}
@media (max-width: 991px) {
  .home7-banner-section {
    padding-top: 120px;
  }
}
.home7-banner-section .banner-content-wrapper {
  background-color: #001E3D;
  border-radius: 20px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .home7-banner-section .banner-content-wrapper {
    border-radius: 15px;
  }
}
@media (max-width: 576px) {
  .home7-banner-section .banner-content-wrapper {
    border-radius: 10px;
  }
}
.home7-banner-section .banner-content-wrapper .banner-content-wrap {
  background-color: #001E3D;
  padding: 28px;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap {
    padding: 28px 10px;
  }
}
@media (max-width: 767px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap {
    padding: 15px;
    border-radius: 15px;
  }
}
.home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content {
  padding: 100px 90px;
}
@media (max-width: 1699px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content {
    padding: 85px 50px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content {
    padding: 60px 35px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content {
    padding: 50px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content {
    padding: 40px 15px;
  }
}
@media (max-width: 991px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content {
    padding: 35px 30px;
  }
}
@media (max-width: 767px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content {
    padding: 50px 20px;
    border-radius: 15px;
  }
}
@media (max-width: 576px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content {
    padding: 40px 10px;
    border-radius: 10px;
  }
}
.home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content h1 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 63px;
  line-height: 83px;
  margin-bottom: 30px;
}
@media (max-width: 1699px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content h1 {
    font-size: 60px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content h1 {
    font-size: 53px;
    line-height: 73px;
  }
}
@media (max-width: 1399px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content h1 {
    font-size: 45px;
    line-height: 65px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content h1 {
    font-size: 36px;
    line-height: 52px;
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content h1 {
    font-size: 42px;
    line-height: 63px;
  }
}
@media (max-width: 767px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content h1 {
    font-size: 38px;
    line-height: 56px;
  }
}
@media (max-width: 576px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content h1 {
    font-size: 32px;
    line-height: 48px;
  }
}
.home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content p {
  color: rgba(var(--white-color-opc), 0.7);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 19px;
  line-height: 30px;
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content p {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content p {
    font-size: 18px;
    margin-bottom: 37px;
  }
}
@media (max-width: 576px) {
  .home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content p {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
.home7-banner-section .banner-content-wrapper .banner-content-wrap .banner-content .primary-btn1 {
  display: flex;
  justify-content: center;
}
.home7-banner-section .banner-content-wrapper .vector {
  position: absolute;
  bottom: 0;
  right: 40px;
}
@media (max-width: 767px) {
  .home7-banner-section .banner-content-wrapper .vector {
    display: none;
  }
}
.home7-banner-section .banner-img {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .home7-banner-section .banner-img {
    display: none;
  }
}
.home7-banner-section .banner-img img {
  border-radius: 20px;
}
.home7-banner-section .banner-counter-wrapper {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 30px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home7-banner-section .banner-counter-wrapper {
    gap: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-banner-section .banner-counter-wrapper {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .home7-banner-section .banner-counter-wrapper {
    gap: 18px;
  }
}
@media (max-width: 576px) {
  .home7-banner-section .banner-counter-wrapper {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.home7-banner-section .banner-counter-wrapper .single-counter-wrap-area {
  background-color: #E8F3FF;
  max-width: 384px;
  width: 100%;
  border-radius: 20px;
  padding: 54px 45px 54px 45px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home7-banner-section .banner-counter-wrapper .single-counter-wrap-area {
    padding: 30px 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home7-banner-section .banner-counter-wrapper .single-counter-wrap-area {
    padding: 40px 20px 40px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-banner-section .banner-counter-wrapper .single-counter-wrap-area {
    padding: 30px 15px;
  }
}
@media (max-width: 991px) {
  .home7-banner-section .banner-counter-wrapper .single-counter-wrap-area {
    padding: 45px 35px 45px 35px;
  }
}
@media (max-width: 767px) {
  .home7-banner-section .banner-counter-wrapper .single-counter-wrap-area {
    border-radius: 15px;
    max-width: unset;
  }
}
@media (max-width: 576px) {
  .home7-banner-section .banner-counter-wrapper .single-counter-wrap-area {
    border-radius: 10px;
    padding: 45px 25px 45px 25px;
  }
}
.home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .number {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  line-height: 1;
  display: flex;
  align-items: baseline;
  margin-bottom: 15px;
}
.home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .number h2 {
  font-size: 42px;
  font-family: var(--font-montserrat);
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1;
  font-style: italic;
}
@media (max-width: 991px) {
  .home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .number h2 {
    font-size: 40px;
  }
}
.home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .number strong {
  font-size: 42px;
  font-weight: 700;
  font-style: italic;
}
@media (max-width: 991px) {
  .home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .number strong {
    font-size: 40px;
  }
}
.home7-banner-section .banner-counter-wrapper .single-counter-wrap-area > span {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  display: block;
  margin-bottom: 55px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home7-banner-section .banner-counter-wrapper .single-counter-wrap-area > span {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-banner-section .banner-counter-wrapper .single-counter-wrap-area > span {
    margin-bottom: 30px;
  }
}
.home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .primary-btn1 {
  display: flex;
  font-size: 13px;
  font-weight: 600;
}
.home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .primary-btn1 span {
  background-image: linear-gradient(0deg, var(--title-color) 0%, var(--title-color) 100%);
  color: var(--title-color);
}
.home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .primary-btn1 span::after {
  color: var(--title-color);
}
.home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .primary-btn1 span svg {
  fill: none;
  stroke: var(--title-color);
}
@media (max-width: 576px) {
  .home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .primary-btn1 {
    justify-content: center;
  }
}
.home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .people-area {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .people-area {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .people-area {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .people-area {
    gap: 10px;
  }
}
.home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .people-area .img-grp {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .people-area .img-grp li img {
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #F0F2F4;
  margin-left: -15px;
}
@media (max-width: 1399px) {
  .home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .people-area .img-grp li img {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
  }
}
@media (max-width: 576px) {
  .home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .people-area .img-grp li img {
    min-width: 37px;
    max-width: 37px;
    height: 37px;
  }
}
.home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .people-area .img-grp li:first-child img {
  margin-left: 0;
}
.home7-banner-section .banner-counter-wrapper .single-counter-wrap-area .people-area a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  max-width: 145px;
  text-decoration: underline;
}

.banner-bottom .partner-wrapper {
  background-image: url(../img/home7/banner-bottom-bg.png), linear-gradient(270deg, rgba(157, 211, 56, 0.1) 0%, rgba(157, 211, 56, 0.1) 100%);
  backdrop-filter: blur(10px);
  padding: 30px 100px;
  display: flex;
  gap: 77px;
  border-radius: 20px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .banner-bottom .partner-wrapper {
    padding: 30px 70px;
    gap: 45px;
  }
}
@media (max-width: 1399px) {
  .banner-bottom .partner-wrapper {
    padding: 25px 30px;
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-bottom .partner-wrapper {
    padding: 25px 15px;
  }
}
@media (max-width: 767px) {
  .banner-bottom .partner-wrapper {
    padding: 25px 35px;
    border-radius: 15px;
  }
}
@media (max-width: 576px) {
  .banner-bottom .partner-wrapper {
    padding: 20px 10px;
    border-radius: 10px;
  }
}
.banner-bottom .partner-wrapper span {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  display: block;
  position: relative;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .banner-bottom .partner-wrapper span {
    font-size: 16px;
  }
}
@media (max-width: 1399px) {
  .banner-bottom .partner-wrapper span {
    font-size: 15px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .banner-bottom .partner-wrapper span {
    display: none;
  }
}
.banner-bottom .partner-wrapper span::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 35px;
  border-radius: 10px;
  background-color: rgba(var(--primary-color1-opc), 0.1);
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .banner-bottom .partner-wrapper span::before {
    right: -5px;
    display: none;
  }
}
@media (max-width: 1399px) {
  .banner-bottom .partner-wrapper span::before {
    display: none;
  }
}
.banner-bottom .partner-wrapper .partner-wrap .marquee {
  display: flex;
  gap: 60px;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 1399px) {
  .banner-bottom .partner-wrapper .partner-wrap .marquee {
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .banner-bottom .partner-wrapper .partner-wrap .marquee {
    gap: 30px;
  }
}
.banner-bottom .partner-wrapper .partner-wrap .marquee .marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 60px;
  min-width: 100%;
  animation: scroll-x-reverse 30s linear infinite;
}
@media (max-width: 1399px) {
  .banner-bottom .partner-wrapper .partner-wrap .marquee .marquee__group {
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .banner-bottom .partner-wrapper .partner-wrap .marquee .marquee__group {
    gap: 20px;
  }
}
.banner-bottom .partner-wrapper .partner-wrap .marquee .marquee__group a img {
  width: 104px;
}
@media (max-width: 1199px) {
  .banner-bottom .partner-wrapper .partner-wrap .marquee .marquee__group a img {
    width: 80px;
  }
}
@media (max-width: 576px) {
  .banner-bottom .partner-wrapper .partner-wrap .marquee .marquee__group a img {
    width: 75px;
  }
}

/*=====================================
66. Home7 Blog Section CSS
========================================*/
@media (max-width: 576px) {
  .home7-blog-section .section-title h2 {
    font-size: 26px;
    line-height: 36px;
  }
}
.home7-blog-section .blog-card {
  border: 1px solid rgba(var(--title-color2-opc), 0.1);
  border-radius: 10px;
  max-width: 410px;
  width: 100%;
}
.home7-blog-section .blog-card::before {
  display: none;
}
@media (max-width: 767px) {
  .home7-blog-section .blog-card {
    max-width: unset;
  }
}
.home7-blog-section .blog-card .blog-img {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.home7-blog-section .blog-card .blog-img img {
  border-radius: 10px;
}
.home7-blog-section .blog-card .blog-img canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home7-blog-section .blog-card .blog-content {
  padding: 30px 25px;
}
@media (max-width: 1399px) {
  .home7-blog-section .blog-card .blog-content {
    padding: 30px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-blog-section .blog-card .blog-content {
    padding: 25px 12px;
  }
}
@media (max-width: 576px) {
  .home7-blog-section .blog-card .blog-content {
    padding: 25px 15px;
  }
}
.home7-blog-section .blog-card .blog-content h3 {
  margin-bottom: 30px;
  line-height: 35px;
}
@media (max-width: 1399px) {
  .home7-blog-section .blog-card .blog-content h3 {
    line-height: 29px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-blog-section .blog-card .blog-content h3 {
    line-height: 22px;
  }
}
.home7-blog-section .blog-card .blog-content h3 a {
  color: var(--title-color2);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 25px;
  line-height: 35px;
  background: linear-gradient(to bottom, var(--title-color2) 0%, var(--title-color2) 98%);
  background-repeat: no-repeat;
  background-size: 0px 2px;
  background-position: right 100%;
  transition: background-size 0.75s;
}
@media (max-width: 1399px) {
  .home7-blog-section .blog-card .blog-content h3 a {
    font-size: 22px;
    line-height: 29px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-blog-section .blog-card .blog-content h3 a {
    font-size: 19px;
    line-height: 22px;
  }
}
@media (max-width: 991px) {
  .home7-blog-section .blog-card .blog-content h3 a {
    font-size: 20px;
    line-height: 27px;
  }
}
@media (max-width: 576px) {
  .home7-blog-section .blog-card .blog-content h3 a {
    font-size: 18px;
  }
}
.home7-blog-section .blog-card .blog-content h3 a:hover {
  background-size: 100% 2px;
  background-position: left 100%;
}
.home7-blog-section .blog-card .blog-content .tag-and-date {
  display: flex;
  align-items: center;
  gap: 30px;
  line-height: 1;
  position: relative;
}
.home7-blog-section .blog-card .blog-content .tag-and-date::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(var(--title-color2-opc), 0.2);
  left: 36%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1399px) {
  .home7-blog-section .blog-card .blog-content .tag-and-date::before {
    left: 41%;
  }
}
@media (max-width: 1199px) {
  .home7-blog-section .blog-card .blog-content .tag-and-date::before {
    left: 48%;
  }
}
@media (max-width: 991px) {
  .home7-blog-section .blog-card .blog-content .tag-and-date::before {
    left: 45%;
  }
}
.home7-blog-section .blog-card .blog-content .tag-and-date .tag {
  color: var(--title-color2);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  display: block;
  background-color: #FFD5C9;
  padding: 6px 16px;
  border-radius: 5px;
  transition: all 0.5s;
}
.home7-blog-section .blog-card .blog-content .tag-and-date .tag:hover {
  color: var(--primary-color5);
}
.home7-blog-section .blog-card .blog-content .tag-and-date .date {
  color: var(--title-color2);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  display: block;
  transition: all 0.5s;
}
.home7-blog-section .blog-card .blog-content .tag-and-date .date:hover {
  color: var(--primary-color5);
}

/*=====================================
66. Home7 Blog Section CSS
========================================*/
.home7-contact-section .contact-section-wrapper {
  background-image: url(../img/home7/home7-contact-bg-img.png), linear-gradient(180deg, rgb(21, 40, 58) 0%, rgb(21, 40, 58) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
  padding: 80px 0;
  position: relative;
}
@media (max-width: 767px) {
  .home7-contact-section .contact-section-wrapper {
    padding: 70px 0;
    border-radius: 20px;
  }
}
@media (max-width: 576px) {
  .home7-contact-section .contact-section-wrapper {
    border-radius: 15px;
  }
}
.home7-contact-section .contact-section-wrapper .section-title {
  max-width: 430px;
  width: 100%;
  margin: 0 auto 50px;
}
@media (max-width: 991px) {
  .home7-contact-section .contact-section-wrapper .section-title {
    max-width: unset;
  }
}
@media (max-width: 767px) {
  .home7-contact-section .contact-section-wrapper .section-title {
    margin: 0 auto 40px;
  }
}
.home7-contact-section .contact-section-wrapper .section-title h2 span {
  color: var(--primary-color5);
  font-family: var(--font-montserrat);
  font-size: 49px;
  font-weight: 600;
  line-height: 65px;
  margin-bottom: 0;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home7-contact-section .contact-section-wrapper .section-title h2 span {
    font-size: 45px;
    line-height: 60px;
  }
}
@media (max-width: 1399px) {
  .home7-contact-section .contact-section-wrapper .section-title h2 span {
    font-size: 42px;
    line-height: 58px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-contact-section .contact-section-wrapper .section-title h2 span {
    font-size: 40px;
    line-height: 55px;
  }
}
@media (max-width: 991px) {
  .home7-contact-section .contact-section-wrapper .section-title h2 span {
    font-size: 37px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .home7-contact-section .contact-section-wrapper .section-title h2 span {
    font-size: 33px;
    line-height: 45px;
  }
}
@media (max-width: 576px) {
  .home7-contact-section .contact-section-wrapper .section-title h2 span {
    font-size: 30px;
    line-height: 40px;
  }
}
.home7-contact-section .contact-section-wrapper .icon {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .home7-contact-section .contact-section-wrapper .icon {
    margin-bottom: 40px;
  }
}
.home7-contact-section .contact-section-wrapper .icon svg {
  fill: rgba(var(--white-color-opc), 0.1);
}
@media (max-width: 767px) {
  .home7-contact-section .contact-section-wrapper .icon svg {
    width: 150px;
  }
}
.home7-contact-section .contact-section-wrapper .contact-area {
  padding: 0;
  margin: 0;
  list-style: none;
}
.home7-contact-section .contact-section-wrapper .contact-area .single-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  margin-bottom: 55px;
  position: relative;
}
@media (max-width: 991px) {
  .home7-contact-section .contact-section-wrapper .contact-area .single-contact {
    margin-bottom: 45px;
  }
}
@media (max-width: 576px) {
  .home7-contact-section .contact-section-wrapper .contact-area .single-contact {
    margin-bottom: 35px;
  }
}
.home7-contact-section .contact-section-wrapper .contact-area .single-contact::before {
  content: "";
  position: absolute;
  background-color: rgba(var(--white-color-opc), 0.15);
  left: 38%;
  width: 1px;
  height: 35px;
}
@media (max-width: 991px) {
  .home7-contact-section .contact-section-wrapper .contact-area .single-contact::before {
    display: none;
  }
}
.home7-contact-section .contact-section-wrapper .contact-area .single-contact svg {
  fill: var(--primary-color5);
}
.home7-contact-section .contact-section-wrapper .contact-area .single-contact .contact-content span {
  color: rgba(var(--white-color-opc), 0.5);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
@media (max-width: 576px) {
  .home7-contact-section .contact-section-wrapper .contact-area .single-contact .contact-content span {
    margin-bottom: 8px;
  }
}
.home7-contact-section .contact-section-wrapper .contact-area .single-contact .contact-content a {
  color: var(--white-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  display: block;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .home7-contact-section .contact-section-wrapper .contact-area .single-contact .contact-content a {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .home7-contact-section .contact-section-wrapper .contact-area .single-contact .contact-content a {
    font-size: 16px;
  }
}
.home7-contact-section .contact-section-wrapper .contact-area .single-contact .contact-content a:hover {
  color: var(--primary-color5);
}
.home7-contact-section .contact-section-wrapper .contact-area .single-contact:last-child {
  margin-bottom: 0;
}
.home7-contact-section .contact-section-wrapper .contact-form-wrap {
  padding: 45px 55px;
  background-color: #06192B;
  border-radius: 20px;
  max-width: 704px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-contact-section .contact-section-wrapper .contact-form-wrap {
    padding: 40px 30px;
  }
}
@media (max-width: 767px) {
  .home7-contact-section .contact-section-wrapper .contact-form-wrap {
    padding: 40px 30px;
    border-radius: 15px;
  }
}
@media (max-width: 576px) {
  .home7-contact-section .contact-section-wrapper .contact-form-wrap {
    border-radius: 10px;
    padding: 35px 20px;
  }
}
.home7-contact-section .contact-section-wrapper .contact-form-wrap .form-inner input,
.home7-contact-section .contact-section-wrapper .contact-form-wrap .form-inner textarea {
  background-color: #15283A;
  border: 1px solid rgba(var(--white-color-opc), 0.1);
  color: var(--white-color);
}
.home7-contact-section .contact-section-wrapper .contact-form-wrap .form-inner input:focus,
.home7-contact-section .contact-section-wrapper .contact-form-wrap .form-inner textarea:focus {
  border-color: var(--primary-color5);
}
.home7-contact-section .contact-section-wrapper .contact-form-wrap .form-inner input::-moz-placeholder, .home7-contact-section .contact-section-wrapper .contact-form-wrap .form-inner textarea::-moz-placeholder {
  color: rgba(var(--white-color-opc), 0.3);
  font-size: 14px;
}
.home7-contact-section .contact-section-wrapper .contact-form-wrap .form-inner input::placeholder,
.home7-contact-section .contact-section-wrapper .contact-form-wrap .form-inner textarea::placeholder {
  color: rgba(var(--white-color-opc), 0.3);
  font-size: 14px;
}
.home7-contact-section .contact-section-wrapper .contact-form-wrap .form-inner label {
  color: var(--white-color);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-contact-section .contact-section-wrapper .contact-form-wrap .form-inner label {
    font-size: 14px;
  }
}
.home7-contact-section .contact-section-wrapper .contact-form-wrap .form-inner2 .form-check .form-check-input {
  width: 14px;
  height: 14px;
  border: 1px solid var(--white-color);
  border-radius: 3px;
}
.home7-contact-section .contact-section-wrapper .contact-form-wrap .form-inner2 .form-check label {
  color: rgba(var(--white-color-opc), 0.6);
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 500;
}
.home7-contact-section .contact-section-wrapper .contact-form-wrap .primary-btn2 {
  padding: 16px 26px;
}
.home7-contact-section .contact-section-wrapper .contact-form-wrap .primary-btn2 span {
  background-color: var(--white-color);
}
.home7-contact-section .contact-section-wrapper .contact-form-wrap .primary-btn2:hover {
  color: var(--title-color);
}

/*=====================================
67. Home7 Service Section CSS
========================================*/
.home7-service-section .service-wrapper {
  background-image: url(../img/home7/home7-service-section-bg.png), linear-gradient(180deg, rgb(216, 231, 239) 0%, rgb(216, 231, 239) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 120px;
  border-radius: 30px;
  position: relative;
}
@media (max-width: 1699px) {
  .home7-service-section .service-wrapper {
    padding: 80px 70px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home7-service-section .service-wrapper {
    padding: 80px 40px;
  }
}
@media (max-width: 1399px) {
  .home7-service-section .service-wrapper {
    padding: 80px 20px;
  }
}
@media (max-width: 991px) {
  .home7-service-section .service-wrapper {
    padding: 70px 15px;
    border-radius: 20px;
  }
}
@media (max-width: 576px) {
  .home7-service-section .service-wrapper {
    border-radius: 15px;
    padding: 70px 10px;
  }
}
.home7-service-section .service-wrapper .section-title {
  max-width: 724px;
}
@media (max-width: 767px) {
  .home7-service-section .service-wrapper .section-title {
    max-width: unset;
  }
}
@media (max-width: 576px) {
  .home7-service-section .service-wrapper .section-title h2 {
    font-size: 28px;
  }
}
.home7-service-section .service-wrapper .section-title span {
  justify-content: start;
}
.home7-service-section .service-wrapper .slider-btn-grp .slider-btn {
  background-color: #D8E7EF;
  border: 1px solid rgba(var(--title-color-opc), 0.2);
}
.home7-service-section .service-wrapper .slider-btn-grp .slider-btn svg {
  fill: rgba(var(--title-color-opc), 0.3);
}
.home7-service-section .service-wrapper .slider-btn-grp .slider-btn:hover {
  background-color: var(--primary-color5);
  border-color: var(--primary-color5);
}
.home7-service-section .service-wrapper .slider-btn-grp .slider-btn:hover svg {
  fill: var(--title-color);
}
.home7-service-section .service-wrapper .service-card {
  background: #D7DDCB;
  border-radius: 17px;
  padding: 35px 30px 38px 30px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home7-service-section .service-wrapper .service-card {
    padding: 35px 20px 38px 20px;
  }
}
@media (max-width: 1199px) {
  .home7-service-section .service-wrapper .service-card {
    padding: 30px 23px 33px 23px;
  }
}
@media (max-width: 767px) {
  .home7-service-section .service-wrapper .service-card {
    border: 10px;
  }
}
.home7-service-section .service-wrapper .service-card span {
  color: var(--primary-color5);
  display: block;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.home7-service-section .service-wrapper .service-card h3 {
  margin-bottom: 20px;
  line-height: 30px;
  z-index: 2;
  position: relative;
}
@media (max-width: 576px) {
  .home7-service-section .service-wrapper .service-card h3 {
    line-height: 26px;
  }
}
.home7-service-section .service-wrapper .service-card h3 a {
  color: var(--title-color2);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 98%);
  background-repeat: no-repeat;
  background-size: 0px 2px;
  background-position: right 100%;
  transition: background-size 0.75s;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home7-service-section .service-wrapper .service-card h3 a {
    font-size: 24px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home7-service-section .service-wrapper .service-card h3 a {
    font-size: 22px;
  }
}
@media (max-width: 1199px) {
  .home7-service-section .service-wrapper .service-card h3 a {
    font-size: 23px;
  }
}
@media (max-width: 767px) {
  .home7-service-section .service-wrapper .service-card h3 a {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .home7-service-section .service-wrapper .service-card h3 a {
    font-size: 21px;
    line-height: 26px;
  }
}
.home7-service-section .service-wrapper .service-card h3 a:hover {
  background-size: 100% 2px;
  background-position: left 100%;
}
.home7-service-section .service-wrapper .service-card > svg {
  fill: var(--text-color);
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}
.home7-service-section .service-wrapper .service-card .service-img {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  margin-bottom: 30px;
}
.home7-service-section .service-wrapper .service-card .service-img img {
  border-radius: 10px;
}
.home7-service-section .service-wrapper .service-card .service-img canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home7-service-section .service-wrapper .service-card > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  text-decoration: underline;
  color: var(--title-color);
  position: relative;
  z-index: 2;
}
.home7-service-section .service-wrapper .service-card > a svg {
  fill: var(--title-color);
}
.home7-service-section .service-wrapper .service-card .thumb-img {
  opacity: 0;
  border-radius: 10px;
  line-height: 0;
  transition: 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home7-service-section .service-wrapper .service-card .thumb-img img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
  z-index: 1;
}
.home7-service-section .service-wrapper .service-card .thumb-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #15283A 33.59%, rgba(21, 40, 58, 0) 58.81%, #15283A 87.99%);
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
}
.home7-service-section .service-wrapper .service-card:hover {
  background-color: unset;
}
.home7-service-section .service-wrapper .service-card:hover .service-img {
  opacity: 0;
}
.home7-service-section .service-wrapper .service-card:hover .thumb-img {
  opacity: 1;
}
.home7-service-section .service-wrapper .service-card:hover h3 a {
  color: var(--white-color);
}
.home7-service-section .service-wrapper .service-card:hover svg {
  fill: rgba(var(--white-color-opc), 0.2);
}
.home7-service-section .service-wrapper .service-card:hover > a {
  color: var(--primary-color5);
}
.home7-service-section .service-wrapper .service-card:hover > a > svg {
  fill: var(--primary-color5);
}
.home7-service-section .service-wrapper .service-card.two {
  background-color: #BADDC8;
}
.home7-service-section .service-wrapper .service-card.three {
  background-color: #BCDBFF;
}
.home7-service-section .service-wrapper .service-card.four {
  background-color: #B2EBFF;
}

/*=====================================
68. Home7 Banner Video Section CSS
========================================*/
.home7-video-banner-section .video-content-area {
  position: relative;
  height: 780px;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .home7-video-banner-section .video-content-area {
    height: 550px;
  }
}
@media (max-width: 767px) {
  .home7-video-banner-section .video-content-area {
    border-radius: 25px;
  }
}
@media (max-width: 576px) {
  .home7-video-banner-section .video-content-area {
    border-radius: 20px;
  }
}
.home7-video-banner-section .video-content-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(21, 40, 58, 0.3) 50%, #000000 100%);
  border-radius: 30px;
}
@media (max-width: 767px) {
  .home7-video-banner-section .video-content-area::before {
    border-radius: 25px;
  }
}
@media (max-width: 576px) {
  .home7-video-banner-section .video-content-area::before {
    border-radius: 20px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home7-video-banner-section .video-content-area {
    height: 700px;
  }
}
@media (max-width: 1399px) {
  .home7-video-banner-section .video-content-area {
    height: 650px;
  }
}
@media (max-width: 576px) {
  .home7-video-banner-section .video-content-area {
    height: 550px;
  }
}
.home7-video-banner-section .video-content-area video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 780px;
  border-radius: 30px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home7-video-banner-section .video-content-area video {
    height: 700px;
  }
}
@media (max-width: 1399px) {
  .home7-video-banner-section .video-content-area video {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .home7-video-banner-section .video-content-area video {
    border-radius: 25px;
  }
}
@media (max-width: 576px) {
  .home7-video-banner-section .video-content-area video {
    height: 550px;
    border-radius: 20px;
  }
}
.home7-video-banner-section .video-content-area .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1199px) {
  .home7-video-banner-section .video-content-area .logo {
    width: 310px;
  }
}
@media (max-width: 991px) {
  .home7-video-banner-section .video-content-area .logo {
    width: 280px;
  }
}
@media (max-width: 767px) {
  .home7-video-banner-section .video-content-area .logo {
    width: 245px;
  }
}
@media (max-width: 576px) {
  .home7-video-banner-section .video-content-area .logo {
    width: 200px;
  }
}

/*=====================================
69. Home7 FAQ Section CSS
========================================*/
@media (max-width: 576px) {
  .home7-faq-section .section-title h2 {
    font-size: 27px;
  }
}
.home7-faq-section .section-title span {
  justify-content: start;
}
.home7-faq-section .icon {
  margin-left: 68px;
  margin-top: -26px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .home7-faq-section .icon {
    margin-top: 0;
  }
}
.home7-faq-section .primary-btn1 {
  padding: 20px 34px;
}

/*=====================================
70. Home7 Testimonial Section CSS
========================================*/
.home7-testimonial-section .testimonial-img-wrpaper {
  position: relative;
}
.home7-testimonial-section .testimonial-img-wrpaper .testimonial-img-wrap {
  -webkit-mask-image: url(../img/home7/home7-testimonial-shape-img.png);
          mask-image: url(../img/home7/home7-testimonial-shape-img.png);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  max-width: 495px;
}
@media (max-width: 991px) {
  .home7-testimonial-section .testimonial-img-wrpaper .testimonial-img-wrap {
    max-width: unset;
  }
}
@media (max-width: 576px) {
  .home7-testimonial-section .testimonial-img-wrpaper .testimonial-img-wrap {
    -webkit-mask-image: unset;
            mask-image: unset;
  }
}
.home7-testimonial-section .testimonial-img-wrpaper .testimonial-img-wrap img {
  border-radius: 20px;
  min-height: 415px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 576px) {
  .home7-testimonial-section .testimonial-img-wrpaper .testimonial-img-wrap img {
    min-height: 350px;
    border-radius: 10px;
  }
}
.home7-testimonial-section .testimonial-img-wrpaper .circular-text2 {
  position: absolute;
  top: 35px;
  right: 60px;
  z-index: 9;
  min-width: 122px;
  height: 122px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border: 1px solid rgba(var(--title-color-opc), 0.2);
}
@media (max-width: 1199px) {
  .home7-testimonial-section .testimonial-img-wrpaper .circular-text2 {
    top: 15px;
  }
}
@media (max-width: 576px) {
  .home7-testimonial-section .testimonial-img-wrpaper .circular-text2 {
    display: none;
  }
}
.home7-testimonial-section .testimonial-img-wrpaper .circular-text2 .center-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: rgba(var(--title-color-opc), 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.home7-testimonial-section .testimonial-img-wrpaper .circular-text2 .center-icon svg {
  fill: var(--white-color);
  margin-left: 5px;
}
.home7-testimonial-section .testimonial-img-wrpaper .circular-text2 .text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: textRotation 8s linear infinite;
}
.home7-testimonial-section .testimonial-img-wrpaper .circular-text2 .text span {
  position: absolute;
  left: 50%;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 13px;
  font-weight: 600;
  transform-origin: 0 60px;
}
.home7-testimonial-section .testimonial-slider-area {
  position: relative;
}
.home7-testimonial-section .testimonial-slider-area .testimonial-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1199px) {
  .home7-testimonial-section .testimonial-slider-area .testimonial-content-grid {
    grid-template-columns: 1fr;
  }
}
.home7-testimonial-section .testimonial-slider-area .home7-testimonial-slider {
  min-width: 0;
}
.home7-testimonial-section .testimonial-slider-area .testimonial-side-card {
  background: linear-gradient(180deg, #f7fbff 0%, #edf7fb 100%);
  border: 1px solid rgba(var(--title-color-opc), 0.08);
  border-radius: 24px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
  min-height: 100%;
}
.home7-testimonial-section .testimonial-slider-area .testimonial-side-card .testimonial-side-img {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
}
.home7-testimonial-section .testimonial-slider-area .testimonial-side-card .testimonial-side-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.home7-testimonial-section .testimonial-slider-area .testimonial-side-card .testimonial-side-content span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary-color1);
  font-family: var(--font-montserrat);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home7-testimonial-section .testimonial-slider-area .testimonial-side-card .testimonial-side-content h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .home7-testimonial-section .testimonial-slider-area .testimonial-side-card .testimonial-side-content h3 {
    font-size: 21px;
  }
}
@media (max-width: 576px) {
  .home7-testimonial-section .testimonial-slider-area .testimonial-side-card {
    padding: 14px;
    border-radius: 18px;
  }
  .home7-testimonial-section .testimonial-slider-area .testimonial-side-card .testimonial-side-img img {
    height: 210px;
  }
}
.home7-testimonial-section .testimonial-slider-area .testimonial-card-content {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(var(--title-color-opc), 0.08);
  border-radius: 24px;
  padding: 40px 38px;
  box-shadow: 0 20px 46px rgba(16, 24, 40, 0.08);
  min-height: 100%;
}
@media (max-width: 576px) {
  .home7-testimonial-section .testimonial-slider-area .testimonial-card-content {
    padding: 28px 22px;
    border-radius: 18px;
  }
}
.home7-testimonial-section .testimonial-slider-area .testimonial-card-content > svg {
  fill: none;
  stroke: rgba(var(--title-color-opc), 0.2);
  margin-bottom: 40px;
}
.home7-testimonial-section .testimonial-slider-area .testimonial-card-content > span {
  display: block;
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  color: var(--primary-color1);
  margin-bottom: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home7-testimonial-section .testimonial-slider-area .testimonial-card-content > span {
    margin-bottom: 20px;
  }
}
@media (max-width: 1399px) {
  .home7-testimonial-section .testimonial-slider-area .testimonial-card-content > span {
    margin-bottom: 20px;
  }
}
.home7-testimonial-section .testimonial-slider-area .testimonial-card-content p {
  color: rgba(var(--title-color-opc), 0.78);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 27px;
  line-height: 1.7;
  text-transform: none;
  margin-bottom: 34px;
}
@media (max-width: 1399px) {
  .home7-testimonial-section .testimonial-slider-area .testimonial-card-content p {
    font-size: 22px;
    line-height: 1.65;
  }
}
@media (max-width: 576px) {
  .home7-testimonial-section .testimonial-slider-area .testimonial-card-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
  }
}
.home7-testimonial-section .testimonial-slider-area .testimonial-card-content .author-area {
  padding-top: 22px;
  border-top: 1px solid rgba(var(--title-color-opc), 0.1);
}
.home7-testimonial-section .testimonial-slider-area .testimonial-card-content .author-area .author {
  text-align: start;
  display: flex;
  gap: 14px;
  align-items: center;
}
@media (max-width: 576px) {
  .home7-testimonial-section .testimonial-slider-area .testimonial-card-content .author-area .author {
    margin-bottom: 15px;
  }
}
.home7-testimonial-section .testimonial-slider-area .testimonial-card-content .author-area .author img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(49, 210, 255, 0.18);
}
.home7-testimonial-section .testimonial-slider-area .testimonial-card-content .author-area .author h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .home7-testimonial-section .testimonial-slider-area .testimonial-card-content .author-area .author h3 {
    font-size: 17px;
  }
}
.home7-testimonial-section .testimonial-slider-area .testimonial-card-content .author-area .author span {
  color: rgba(var(--title-color-opc), 0.62);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  display: block;
}
.home7-testimonial-section .testimonial-slider-area .testimonial-card-content .author-area .author img {
  margin-bottom: 0;
}
.home7-testimonial-section .testimonial-slider-area .slider-btn-grp {
  margin-top: 26px;
  gap: 14px;
  display: flex;
  align-items: center;
}
.home7-testimonial-section .testimonial-slider-area .slider-btn-grp .slider-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(var(--title-color-opc), 0.12);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.08);
  transition: all 0.35s ease;
}
.home7-testimonial-section .testimonial-slider-area .slider-btn-grp .slider-btn svg {
  fill: var(--title-color);
  transition: all 0.35s ease;
}
.home7-testimonial-section .testimonial-slider-area .slider-btn-grp .slider-btn:hover {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
  transform: translateY(-2px);
}
.home7-testimonial-section .testimonial-slider-area .slider-btn-grp .slider-btn:hover svg {
  fill: var(--white-color);
}
.home7-testimonial-section .home7-testimonial-slider .swiper-slide-active .testimonial-card-content .rating-area,
.home7-testimonial-section .home7-testimonial-slider .swiper-slide-active .testimonial-card-content > span,
.home7-testimonial-section .home7-testimonial-slider .swiper-slide-active .testimonial-card-content p {
  animation: fadeInDown 1.7s;
}
.home7-testimonial-section .home7-testimonial-slider .swiper-slide-active .testimonial-card-content .author {
  animation: fadeInUp 1.7s;
}

/*=====================================
71. Home7 Partner Section CSS
========================================*/
/*=====================================
72. Home7 About Section CSS
========================================*/
@media (max-width: 576px) {
  .home7-about-section .section-title h2 {
    font-size: 27px;
    line-height: 40px;
  }
}
.home7-about-section .section-title span {
  justify-content: start;
}
.home7-about-section .video-and-content {
  display: flex;
  gap: 50px;
  padding-left: 93px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-about-section .video-and-content {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .home7-about-section .video-and-content {
    gap: 20px;
    padding-left: 0;
  }
}
@media (max-width: 576px) {
  .home7-about-section .video-and-content {
    flex-wrap: wrap;
  }
}
.home7-about-section .video-and-content .video-area {
  cursor: pointer;
  display: inline-block;
}
.home7-about-section .video-and-content .video-area .icon {
  position: relative;
}
.home7-about-section .video-and-content .video-area .icon .video-circle {
  stroke: var(--primary-color5);
  fill: none;
  transition: 0.5s;
}
@media (max-width: 576px) {
  .home7-about-section .video-and-content .video-area .icon .video-circle {
    width: 68px;
  }
}
.home7-about-section .video-and-content .video-area .icon .video-circle .top-half {
  stroke-dasharray: 430;
  stroke-dashoffset: 320;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.home7-about-section .video-and-content .video-area .icon .play-icon {
  fill: var(--primary-color5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: 2px;
}
@media (max-width: 576px) {
  .home7-about-section .video-and-content .video-area .icon .play-icon {
    width: 20px;
  }
}
.home7-about-section .video-and-content .video-area:hover .icon .video-circle .top-half {
  stroke-dashoffset: 0;
}
.home7-about-section .video-and-content .content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 0;
  padding-left: 15px;
  position: relative;
}
@media (max-width: 767px) {
  .home7-about-section .video-and-content .content p {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .home7-about-section .video-and-content .content p {
    padding-left: 0;
  }
}
.home7-about-section .video-and-content .content p::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2px;
  height: 77px;
  background-color: rgba(var(--black-color-opc), 0.3);
}
@media (max-width: 576px) {
  .home7-about-section .video-and-content .content p::before {
    display: none;
  }
}
.home7-about-section .btn {
  position: relative;
  line-height: 1;
  transition: 0.5s;
  height: 201px;
  width: 201px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.home7-about-section .btn .bg {
  line-height: 1;
  transition: 0.5s;
}
.home7-about-section .btn .bg svg {
  fill: transparent;
  stroke: rgba(var(--title-color-opc), 0.1);
  transition: 0.5s;
}
.home7-about-section .btn .details-button {
  transition: 0.5s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home7-about-section .btn:hover .bg svg {
  fill: var(--primary-color5);
  stroke: var(--primary-color5);
}
.home7-about-section .btn:hover .details-button {
  --background-size: 0%;
  --stroke-dashoffset: 26;
  --stroke-duration: .3s;
  --stroke-easing: cubic-bezier(0.3, 1.5, 0.5, 1);
  --stroke-delay: .195s;
  background-image: linear-gradient(0deg, #fff 0%, #fff 100%);
}
.home7-about-section .btn:hover .details-button svg {
  stroke: var(--white-color);
}
.home7-about-section .btn:hover .details-button {
  color: var(--white-color);
}
.home7-about-section .btn:hover .details-button::after {
  opacity: 0;
  transition-delay: 0s;
  color: var(--white-color);
}
.home7-about-section .about-list-wrapper {
  padding-left: 128px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home7-about-section .about-list-wrapper {
    padding-left: 66px;
  }
}
@media (max-width: 1199px) {
  .home7-about-section .about-list-wrapper {
    padding-left: 0;
  }
}
.home7-about-section .about-list-wrapper .about-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .home7-about-section .about-list-wrapper .about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    row-gap: 40px;
  }
}
@media (max-width: 767px) {
  .home7-about-section .about-list-wrapper .about-list {
    display: flex;
    flex-wrap: wrap;
  }
}
.home7-about-section .about-list-wrapper .about-list .sinlge-about-list {
  max-width: 350px;
  width: 100%;
  position: relative;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home7-about-section .about-list-wrapper .about-list .sinlge-about-list {
    max-width: 310px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-about-section .about-list-wrapper .about-list .sinlge-about-list {
    max-width: 290px;
  }
}
@media (max-width: 767px) {
  .home7-about-section .about-list-wrapper .about-list .sinlge-about-list {
    max-width: unset;
  }
}
.home7-about-section .about-list-wrapper .about-list .sinlge-about-list .about-img {
  margin-bottom: 30px;
}
.home7-about-section .about-list-wrapper .about-list .sinlge-about-list .about-img img {
  border-radius: 10px;
}
.home7-about-section .about-list-wrapper .about-list .sinlge-about-list .about-content h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-about-section .about-list-wrapper .about-list .sinlge-about-list .about-content h3 {
    font-size: 21px;
    margin-bottom: 15px;
  }
}
.home7-about-section .about-list-wrapper .about-list .sinlge-about-list .about-content p {
  color: var(--text-color);
  margin-bottom: 0;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-about-section .about-list-wrapper .about-list .sinlge-about-list .about-content p {
    font-size: 15px;
  }
}
.home7-about-section .about-list-wrapper .about-list .sinlge-about-list .icon {
  position: absolute;
  left: -60px;
  top: 50%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .home7-about-section .about-list-wrapper .about-list .sinlge-about-list .icon {
    display: none;
  }
}
.home7-about-section .about-list-wrapper .about-list .sinlge-about-list .icon svg {
  fill: var(--primary-color5);
}

/*=====================================
73. Home7 Team Section CSS
========================================*/
.home7-team-section .team-section-wrapper {
  background-image: url(../img/home7/home7-team-section-bg-img.png), linear-gradient(180deg, rgb(215, 221, 203) 0%, rgb(215, 221, 203) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
  border-radius: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .home7-team-section .team-section-wrapper {
    padding: 70px 0;
    border-radius: 20px;
  }
}
@media (max-width: 576px) {
  .home7-team-section .team-section-wrapper {
    border-radius: 15px;
  }
}
@media (max-width: 576px) {
  .home7-team-section .team-section-wrapper .section-title h2 {
    font-size: 28px;
  }
}
.home7-team-section .team-section-wrapper .team-card {
  position: relative;
  min-height: 298px;
  transition: all 0.5s ease;
}
.home7-team-section .team-section-wrapper .team-card::before {
  content: "";
  position: absolute;
  width: 252px;
  height: 298px;
  border-radius: 10px;
  background-color: #fff;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home7-team-section .team-section-wrapper .team-card::before {
    width: 230px;
    height: 289px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home7-team-section .team-section-wrapper .team-card::before {
    right: 12px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .home7-team-section .team-section-wrapper .team-card::before {
    width: 230px;
    height: 270px;
  }
}
.home7-team-section .team-section-wrapper .team-card .team-img {
  margin-bottom: 20px;
  position: relative;
}
.home7-team-section .team-section-wrapper .team-card .team-img > img {
  width: 287px;
  margin-top: 15px;
  border-radius: 10px;
  -webkit-mask-image: url(../img/home7/home7-team-img-shape.png);
          mask-image: url(../img/home7/home7-team-img-shape.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: left;
  mask-position: left;
  -webkit-mask-size: 0% 0%;
          mask-size: 0% 0%;
  transition: -webkit-mask-size 0.6s ease, mask-size 0.6s ease;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home7-team-section .team-section-wrapper .team-card .team-img > img {
    width: 250px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home7-team-section .team-section-wrapper .team-card .team-img > img {
    width: 300px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .home7-team-section .team-section-wrapper .team-card .team-img > img {
    width: 235px;
  }
}
.home7-team-section .team-section-wrapper .team-card .team-img .mask-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 287px;
  margin-top: 15px;
  border-radius: 10px;
  transition: all 0.5s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home7-team-section .team-section-wrapper .team-card .team-img .mask-img {
    width: 250px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home7-team-section .team-section-wrapper .team-card .team-img .mask-img {
    width: 300px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .home7-team-section .team-section-wrapper .team-card .team-img .mask-img {
    width: 235px;
  }
}
.home7-team-section .team-section-wrapper .team-card .team-img .mask-img img {
  border-radius: 10px;
}
.home7-team-section .team-section-wrapper .team-card .team-img .social-list {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  right: 12px;
  top: 26%;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: left;
  transition: 0.5s ease-in-out;
}
@media (min-width: 768px) and (max-width: 991px) {
  .home7-team-section .team-section-wrapper .team-card .team-img .social-list {
    right: 31px;
  }
}
.home7-team-section .team-section-wrapper .team-card .team-img .social-list li {
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home7-team-section .team-section-wrapper .team-card .team-img .social-list li {
    margin-bottom: 16px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .home7-team-section .team-section-wrapper .team-card .team-img .social-list li {
    margin-bottom: 14px;
  }
}
.home7-team-section .team-section-wrapper .team-card .team-img .social-list li::before {
  content: "";
  position: absolute;
  width: 41px;
  height: 1px;
  background-color: rgba(var(--title-color2-opc), 0.08);
  left: -73%;
  top: 25px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .home7-team-section .team-section-wrapper .team-card .team-img .social-list li::before {
    right: 28px;
  }
}
.home7-team-section .team-section-wrapper .team-card .team-img .social-list li a {
  transition: all 0.5s;
}
.home7-team-section .team-section-wrapper .team-card .team-img .social-list li a i {
  color: var(--title-color2);
  font-size: 15px;
  transition: all 0.5s;
}
.home7-team-section .team-section-wrapper .team-card .team-img .social-list li a:hover i {
  color: var(--primary-color5);
}
.home7-team-section .team-section-wrapper .team-card .team-img .social-list li:last-child {
  margin-bottom: unset;
}
.home7-team-section .team-section-wrapper .team-card .team-img .social-list li:last-child::before {
  content: unset;
}
.home7-team-section .team-section-wrapper .team-card .team-content {
  text-align: center;
  width: 252px;
  margin-left: auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  .home7-team-section .team-section-wrapper .team-card .team-content {
    width: 300px;
  }
}
.home7-team-section .team-section-wrapper .team-card .team-content h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .home7-team-section .team-section-wrapper .team-card .team-content h3 {
    font-size: 18px;
  }
}
.home7-team-section .team-section-wrapper .team-card .team-content span {
  display: block;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
}
.home7-team-section .team-section-wrapper .team-card:hover .team-img > img {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.home7-team-section .team-section-wrapper .team-card:hover .team-img .mask-img {
  opacity: 0;
}
.home7-team-section .team-section-wrapper .team-card:hover .team-img .social-list {
  opacity: 1;
  transform: scaleY(1);
  z-index: 2;
}
.home7-team-section .team-section-wrapper .pagination-area .pagination {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: unset;
  z-index: 9;
  bottom: unset;
  gap: 8px;
}
@media (max-width: 576px) {
  .home7-team-section .team-section-wrapper .pagination-area .pagination {
    justify-content: center;
    gap: 6px;
  }
}
.home7-team-section .team-section-wrapper .pagination-area .pagination .swiper-pagination-bullet {
  height: 14px;
  width: 14px;
  background-color: transparent;
  border: 1px solid #15283A;
  opacity: 1;
  position: relative;
}
.home7-team-section .team-section-wrapper .pagination-area .pagination .swiper-pagination-bullet::after {
  content: "";
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background-color: #15283A;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home7-team-section .team-section-wrapper .pagination-area .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--primary-color5);
  height: 16px;
  width: 16px;
}
.home7-team-section .team-section-wrapper .pagination-area .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color5);
}

/*=====================================
74. Home7 Value Section CSS
========================================*/
.home7-value-section .section-title span {
  justify-content: start;
}
.home7-value-section .value-list-wrapper .value-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home7-value-section .value-list-wrapper .value-list .single-value-list {
  max-width: 282px;
  width: 100%;
  margin-bottom: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(var(--title-color2-opc), 0.1);
}
@media (max-width: 1399px) {
  .home7-value-section .value-list-wrapper .value-list .single-value-list {
    margin-bottom: 45px;
  }
}
@media (max-width: 991px) {
  .home7-value-section .value-list-wrapper .value-list .single-value-list {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .home7-value-section .value-list-wrapper .value-list .single-value-list {
    max-width: 230px;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .home7-value-section .value-list-wrapper .value-list .single-value-list {
    max-width: unset;
    margin-bottom: 30px;
    padding-top: 30px;
  }
}
.home7-value-section .value-list-wrapper .value-list .single-value-list h2 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 25px;
  line-height: 1;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .home7-value-section .value-list-wrapper .value-list .single-value-list h2 {
    font-size: 23px;
  }
}
@media (max-width: 576px) {
  .home7-value-section .value-list-wrapper .value-list .single-value-list h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }
}
.home7-value-section .value-list-wrapper .value-list .single-value-list p {
  color: rgba(var(--title-color-opc), 0.7);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .home7-value-section .value-list-wrapper .value-list .single-value-list p {
    font-size: 15px;
  }
}
.home7-value-section .value-list-wrapper .value-list .single-value-list svg {
  fill: #A0EC06;
  opacity: 20%;
}
@media (max-width: 767px) {
  .home7-value-section .value-list-wrapper .value-list .single-value-list svg {
    display: none;
  }
}
.home7-value-section .value-list-wrapper .value-list .single-value-list:nth-child(5), .home7-value-section .value-list-wrapper .value-list .single-value-list:nth-child(6), .home7-value-section .value-list-wrapper .value-list .single-value-list:nth-child(7), .home7-value-section .value-list-wrapper .value-list .single-value-list:nth-child(8) {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .home7-value-section .value-list-wrapper .value-list .single-value-list:nth-child(6) {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .home7-value-section .value-list-wrapper .value-list .single-value-list:nth-child(6) {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .home7-value-section .value-list-wrapper .value-list .single-value-list:nth-child(6) {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .home7-value-section .value-list-wrapper .value-list .single-value-list:nth-child(5) {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .home7-value-section .value-list-wrapper .value-list .single-value-list:nth-child(5) {
    margin-bottom: 30px;
  }
}
.home7-value-section .value-list-wrapper .value-list .single-value-list:last-child {
  display: flex;
  justify-content: center;
}

/*=====================================
75. Home7 Value Section CSS
========================================*/
.home7-process-section .section-title span {
  justify-content: start;
}
.home7-process-section .process-card {
  max-width: 374px;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .home7-process-section .process-card {
    max-width: unset;
  }
}
.home7-process-section .process-card .content {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 35px 26px 31px 40px;
  background-position: right;
  border-left: 1px solid #E8E9EB;
  border-radius: 20px 20px 0 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-process-section .process-card .content {
    padding: 35px 20px 31px 20px;
  }
}
@media (max-width: 991px) {
  .home7-process-section .process-card .content {
    background-image: unset !important;
    border-radius: 20px;
    border: 1px solid #E8E9EB;
    padding: 35px 25px;
  }
}
.home7-process-section .process-card .content h3 {
  color: var(--title-color2);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 27px;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-process-section .process-card .content h3 {
    font-size: 21px;
  }
}
@media (max-width: 991px) {
  .home7-process-section .process-card .content h3 {
    font-size: 23px;
  }
}
.home7-process-section .process-card .content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  margin-bottom: 0;
}
.home7-process-section .process-card .step {
  position: absolute;
  right: 19px;
  top: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-process-section .process-card .step {
    right: 25px;
  }
}
@media (max-width: 991px) {
  .home7-process-section .process-card .step {
    right: 26px;
    top: 20px;
  }
}
.home7-process-section .process-card .step span {
  display: block;
  color: var(--primary-color5);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  margin-bottom: 12px;
}
.home7-process-section .process-card .step h4 {
  color: rgba(var(--title-color2-opc), 0.7);
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  text-align: center;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-process-section .process-card .step h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .home7-process-section .process-card .step h4 {
    font-size: 27px;
  }
}
.home7-process-section .process-card .icon {
  position: absolute;
  right: -87px;
  z-index: -1;
  bottom: 58px;
}
@media (max-width: 1399px) {
  .home7-process-section .process-card .icon {
    display: none;
  }
}
.home7-process-section .process-card .icon svg {
  fill: #E8E9EB;
}
.home7-process-section .process-card .icon svg rect {
  fill: white;
}

/*=====================================
76. Home4 Integration Section CSS
========================================*/
.home4-integration-section .integration-wrapper {
  max-width: 1202px;
  margin: 0 auto;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .home4-integration-section .integration-wrapper {
    padding-bottom: unset;
  }
}
.home4-integration-section .integration-wrapper .company-logo {
  height: 133px;
  width: 133px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(1.81deg, rgba(226, 76, 74, 0) 33.75%, rgba(1, 14, 208, 0.3) 99.67%);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .home4-integration-section .integration-wrapper .company-logo {
    margin-bottom: 40px;
    height: 123px;
    width: 123px;
  }
}
@media (max-width: 576px) {
  .home4-integration-section .integration-wrapper .company-logo {
    width: 111px;
    height: 111px;
  }
}
.home4-integration-section .integration-wrapper .company-logo:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 132px;
  height: 132px;
  background-color: #F7F7F0;
  border-radius: 50%;
  z-index: -1;
}
@media (max-width: 991px) {
  .home4-integration-section .integration-wrapper .company-logo:before {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .home4-integration-section .integration-wrapper .company-logo:before {
    width: 112px;
    height: 112px;
  }
}
.home4-integration-section .integration-wrapper .arrow-vec-wrap {
  display: flex;
  justify-content: center;
  margin-top: -54px;
}
@media (max-width: 1399px) {
  .home4-integration-section .integration-wrapper .arrow-vec-wrap {
    margin-top: -63px;
  }
}
@media (max-width: 1199px) {
  .home4-integration-section .integration-wrapper .arrow-vec-wrap {
    margin-top: -65px;
  }
}
@media (max-width: 991px) {
  .home4-integration-section .integration-wrapper .arrow-vec-wrap {
    display: none;
    visibility: hidden;
  }
}
.home4-integration-section .integration-wrapper .arrow-vec-wrap .awrrow-vector {
  stroke: #D9DCE5;
  fill: none;
  width: 1138px;
}
@media (max-width: 1399px) {
  .home4-integration-section .integration-wrapper .arrow-vec-wrap .awrrow-vector {
    width: 1000px;
  }
}
@media (max-width: 1199px) {
  .home4-integration-section .integration-wrapper .arrow-vec-wrap .awrrow-vector {
    width: 830px;
  }
}
.home4-integration-section .integration-wrapper .arrow-vec-wrap .sm-circle2 {
  fill: var(--primary-color1);
  stroke: var(--primary-color1);
}
.home4-integration-section .integration-wrapper .integration-wrap {
  position: relative;
}
@media (max-width: 991px) {
  .home4-integration-section .integration-wrapper .integration-wrap {
    display: flex;
    gap: 40px;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .home4-integration-section .integration-wrapper .integration-wrap {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.home4-integration-section .integration-wrapper .integration-wrap .single-integration {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(var(--title-color-opc), 0.1);
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.0509803922);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
@media (max-width: 991px) {
  .home4-integration-section .integration-wrapper .integration-wrap .single-integration {
    position: relative;
  }
}
@media (max-width: 576px) {
  .home4-integration-section .integration-wrapper .integration-wrap .single-integration {
    width: 65px;
    height: 65px;
    border-radius: 20px;
  }
}
.home4-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(1) {
  bottom: -5px;
  left: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home4-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(1) {
    left: 24px;
  }
}
@media (max-width: 991px) {
  .home4-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(1) {
    bottom: unset;
    left: unset;
  }
}
.home4-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(2) {
  bottom: -5px;
  left: 248px;
}
@media (max-width: 1199px) {
  .home4-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(2) {
    left: 189px;
  }
}
@media (max-width: 991px) {
  .home4-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(2) {
    bottom: unset;
    left: unset;
  }
}
.home4-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(3) {
  bottom: -80px;
  left: 47%;
}
@media (max-width: 1199px) {
  .home4-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(3) {
    bottom: -64px;
    left: 46%;
  }
}
@media (max-width: 991px) {
  .home4-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(3) {
    bottom: unset;
    left: unset;
  }
}
.home4-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(4) {
  right: 20.4%;
  bottom: -2px;
}
@media (max-width: 1399px) {
  .home4-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(4) {
    right: 21.6%;
  }
}
@media (max-width: 1199px) {
  .home4-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(4) {
    right: 20%;
  }
}
@media (max-width: 991px) {
  .home4-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(4) {
    right: unset;
    left: unset;
  }
}
.home4-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(5) {
  bottom: -5px;
  right: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home4-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(5) {
    right: 24px;
  }
}
@media (max-width: 991px) {
  .home4-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(5) {
    bottom: unset;
    right: unset;
  }
}
@media (max-width: 576px) {
  .home4-integration-section .integration-wrapper .integration-wrap .single-integration img {
    width: 40px;
  }
}

/*=====================================
77. Home6 Generate Section  CSS
========================================*/
.home6-generate-section {
  padding: 95px 0;
  border-bottom: 1px solid rgba(var(--title-color-opc), 0.1);
  position: relative;
}
@media (max-width: 1399px) {
  .home6-generate-section {
    padding: 85px 0;
  }
}
@media (max-width: 1199px) {
  .home6-generate-section {
    padding: 75px 0;
  }
}
@media (max-width: 767px) {
  .home6-generate-section {
    padding: 70px 0;
  }
}
.home6-generate-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 53%;
  width: 1px;
  height: 100%;
  background-color: rgba(var(--title-color-opc), 0.1);
  z-index: 1;
}
@media (max-width: 991px) {
  .home6-generate-section::before {
    display: none;
  }
}
@media (max-width: 576px) {
  .home6-generate-section .generate-wrapper .section-title h2 {
    font-size: 29px;
  }
}
.home6-generate-section .generate-wrapper .generate-content {
  max-width: 455px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 991px) {
  .home6-generate-section .generate-wrapper .generate-content {
    max-width: unset;
    text-align: start;
    margin: unset;
  }
}
.home6-generate-section .generate-wrapper .generate-content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  margin-bottom: 40px;
}

/*=====================================
77. Home5 Integration Section CSS
========================================*/
.home5-integration-section .section-title {
  margin-bottom: 140px;
}
@media (max-width: 1199px) {
  .home5-integration-section .section-title {
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .home5-integration-section .section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .home5-integration-section .section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .home5-integration-section .section-title h2 {
    font-size: 30px;
  }
}
.home5-integration-section .section-title h2 span {
  color: var(--primary-color4);
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.home5-integration-section .integration-wrapper {
  position: relative;
}
.home5-integration-section .integration-wrapper .arrow-vec-wrap {
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-integration-section .integration-wrapper .arrow-vec-wrap {
    width: 884px;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .home5-integration-section .integration-wrapper .arrow-vec-wrap {
    display: none;
    visibility: hidden;
  }
}
.home5-integration-section .integration-wrapper .arrow-vec-wrap .awrrow-vector {
  fill: none;
  stroke: var(--title-color);
  width: 1070px;
}
@media (max-width: 1399px) {
  .home5-integration-section .integration-wrapper .arrow-vec-wrap .awrrow-vector {
    width: 1000px;
  }
}
@media (max-width: 1199px) {
  .home5-integration-section .integration-wrapper .arrow-vec-wrap .awrrow-vector {
    width: 830px;
  }
}
.home5-integration-section .integration-wrapper .arrow-vec-wrap .sm-circle2 {
  fill: var(--primary-color4);
  stroke: var(--primary-color4);
}
.home5-integration-section .integration-wrapper .logo-area {
  -webkit-mask-image: url(../img/home6/logo-mask-img.svg);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  background-color: #CDE99B;
  width: 257px;
  height: 257px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -38px auto 0;
}
@media (max-width: 1199px) {
  .home5-integration-section .integration-wrapper .logo-area {
    width: 240px;
    height: 240px;
  }
}
@media (max-width: 991px) {
  .home5-integration-section .integration-wrapper .logo-area {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .home5-integration-section .integration-wrapper .logo-area {
    width: 190px;
    height: 190px;
  }
}
@media (max-width: 991px) {
  .home5-integration-section .integration-wrapper .logo-area img {
    width: 130px;
  }
}
@media (max-width: 576px) {
  .home5-integration-section .integration-wrapper .logo-area img {
    width: 110px;
  }
}
@media (max-width: 991px) {
  .home5-integration-section .integration-wrapper .integration-wrap {
    display: flex;
    gap: 40px;
    justify-content: center;
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .home5-integration-section .integration-wrapper .integration-wrap {
    gap: 25px;
    padding-top: 30px;
  }
}
@media (max-width: 576px) {
  .home5-integration-section .integration-wrapper .integration-wrap {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.home5-integration-section .integration-wrapper .integration-wrap .single-integration {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(var(--title-color-opc), 0.1);
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.0509803922);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
@media (max-width: 991px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration {
    position: relative;
  }
}
@media (max-width: 576px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration {
    width: 65px;
    height: 65px;
    border-radius: 20px;
  }
}
.home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(1) {
  top: 59px;
  left: 17px;
}
@media (max-width: 1399px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(1) {
    left: -7px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(1) {
    left: 0;
    top: 64px;
  }
}
@media (max-width: 991px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(1) {
    top: unset;
    left: unset;
  }
}
.home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(2) {
  top: 60px;
  left: 21%;
}
@media (max-width: 1399px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(2) {
    left: 20%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(2) {
    top: 63px;
  }
}
@media (max-width: 991px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(2) {
    top: unset;
    left: unset;
  }
}
.home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(3) {
  top: -74px;
  left: 37%;
}
@media (max-width: 1399px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(3) {
    left: 36.5%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(3) {
    top: -54px;
  }
}
@media (max-width: 991px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(3) {
    top: unset;
    left: unset;
  }
}
.home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(4) {
  right: 35.5%;
  top: -75px;
}
@media (max-width: 1399px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(4) {
    right: 35%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(4) {
    top: -55px;
  }
}
@media (max-width: 991px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(4) {
    top: unset;
    right: unset;
  }
}
.home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(5) {
  right: 21%;
  top: 10%;
}
@media (max-width: 1399px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(5) {
    right: 20%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(5) {
    top: 11%;
  }
}
@media (max-width: 991px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(5) {
    top: unset;
    right: unset;
  }
}
.home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(6) {
  right: 17px;
  top: 10%;
}
@media (max-width: 1399px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(6) {
    right: -10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(6) {
    right: 0;
    top: 11%;
  }
}
@media (max-width: 991px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration:nth-child(6) {
    top: unset;
    right: unset;
  }
}
@media (max-width: 576px) {
  .home5-integration-section .integration-wrapper .integration-wrap .single-integration img {
    width: 40px;
  }
}

/*=====================================
78. InnerPage Breadcrumb Section CSS
========================================*/
.breadcrumb-section {
  background-size: cover;
  background-repeat: no-repeat;
  padding: 308px 0 253px 0;
  backdrop-filter: blur(2px);
  position: relative;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .breadcrumb-section {
    padding: 284px 0 180px 0;
  }
}
@media (max-width: 1399px) {
  .breadcrumb-section {
    padding: 290px 0 162px 0;
  }
}
@media (max-width: 1199px) {
  .breadcrumb-section {
    padding: 280px 0 130px 0;
  }
}
@media (max-width: 991px) {
  .breadcrumb-section {
    padding: 215px 0 130px 0;
  }
}
@media (max-width: 576px) {
  .breadcrumb-section {
    padding: 170px 0 100px 0;
  }
}
.breadcrumb-section .banner-content {
  position: relative;
  z-index: 1;
}
.breadcrumb-section .banner-content h1 {
  color: var(--white-color);
  text-align: center;
  font-family: var(--font-montserrat);
  font-size: 60px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
  line-height: 1.3;
  text-align: start;
  margin-bottom: 20px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .breadcrumb-section .banner-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 1399px) {
  .breadcrumb-section .banner-content h1 {
    font-size: 52px;
  }
}
@media (max-width: 1199px) {
  .breadcrumb-section .banner-content h1 {
    font-size: 47px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-section .banner-content h1 {
    font-size: 40px;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .breadcrumb-section .banner-content h1 {
    font-size: 33px;
  }
}
@media (max-width: 576px) {
  .breadcrumb-section .banner-content h1 {
    font-size: 26px;
  }
}
.breadcrumb-section .banner-content .breadcrumb-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  gap: 6px;
  line-height: 1;
  padding: 10px 20px;
  backdrop-filter: blur(16px);
  background-color: rgba(var(--white-color-opc), 0.1);
  border: 1px solid rgba(var(--white-color-opc), 0.1);
  border-radius: 100px;
  position: relative;
}
.breadcrumb-section .banner-content .breadcrumb-list li {
  color: rgba(var(--white-color-opc), 0.6);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-montserrat);
  transition: all 0.5s;
}
.breadcrumb-section .banner-content .breadcrumb-list li a {
  color: var(--white-color);
  transition: all 0.5s;
}
.breadcrumb-section .banner-content .breadcrumb-list li a:hover {
  color: rgba(var(--white-color-opc), 0.6);
}
.breadcrumb-section .banner-content .breadcrumb-list li span {
  padding-left: 6px;
}

/*=====================================
79. Blog Sidebar Section CSS
========================================*/
.siderbar-area .search-area {
  padding: 36px;
  background-color: #F6F7FF;
  border-radius: 15px;
  border: 1px solid #EEEEEE;
}
@media (max-width: 1399px) {
  .siderbar-area .search-area {
    padding: 36px 28px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .siderbar-area .search-area {
    padding: 33px 17px;
  }
}
@media (max-width: 576px) {
  .siderbar-area .search-area {
    padding: 25px 15px;
  }
}
.siderbar-area .search-area .stanadard-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-color: var(--white-color);
  padding-left: 25px;
  border-radius: 7px;
  border: 1px solid var(--borders-color);
  min-height: 45px;
}
@media (max-width: 1199px) {
  .siderbar-area .search-area .stanadard-search {
    max-width: 350px;
  }
}
@media (max-width: 991px) {
  .siderbar-area .search-area .stanadard-search {
    padding: 6px 9px 6px 15px;
    max-width: unset;
  }
}
@media (max-width: 576px) {
  .siderbar-area .search-area .stanadard-search {
    padding: 7px 7px 7px 16px;
  }
}
.siderbar-area .search-area .stanadard-search input {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}
.siderbar-area .search-area .stanadard-search input::-moz-placeholder {
  color: var(--text-color);
  font-weight: 600;
}
.siderbar-area .search-area .stanadard-search input::placeholder {
  color: var(--text-color);
  font-weight: 600;
}
.siderbar-area .search-area .stanadard-search button {
  min-width: 89px;
  max-width: 89px;
  height: 45px;
  background-color: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  border-radius: 0 7px 7px 0;
}
@media (max-width: 576px) {
  .siderbar-area .search-area .stanadard-search button {
    min-width: 32px;
    max-width: 32px;
    height: 32px;
  }
}
.siderbar-area .search-area .stanadard-search button i {
  color: var(--white-color);
  font-size: 19px;
}
@media (max-width: 576px) {
  .siderbar-area .search-area .stanadard-search button i {
    width: 16px;
  }
}
.siderbar-area .search-area .stanadard-search button:hover {
  background-color: var(--primary-color2);
}
.siderbar-area .widget-title {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: var(--title-color);
  text-transform: uppercase;
  text-decoration: underline;
  margin-bottom: 25px;
}
.siderbar-area .single-widget {
  padding: 42px 28px;
  border-radius: 15px;
  border: 1px solid var(--borders-color);
  background-color: #F6F7FF;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .siderbar-area .single-widget {
    padding: 40px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .siderbar-area .single-widget {
    padding: 25px 15px;
  }
}
@media (max-width: 576px) {
  .siderbar-area .single-widget {
    padding: 25px 15px;
    border-radius: 10px;
  }
}
.siderbar-area .single-widget .category-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.siderbar-area .single-widget .category-list li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 23px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .siderbar-area .single-widget .category-list li {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .siderbar-area .single-widget .category-list li {
    margin-bottom: 23px;
  }
}
.siderbar-area .single-widget .category-list li:last-child {
  margin-bottom: 0;
}
.siderbar-area .single-widget .category-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 5px;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: 0.5s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .siderbar-area .single-widget .category-list li a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .siderbar-area .single-widget .category-list li a {
    font-size: 16px;
  }
}
.siderbar-area .single-widget .category-list li a span {
  display: flex;
  align-items: center;
  gap: 12px;
}
.siderbar-area .single-widget .category-list li:hover a {
  color: var(--primary-color1);
}
.siderbar-area .single-widget .recent-post-widget {
  display: flex;
  align-items: center;
  gap: 15px;
}
.siderbar-area .single-widget .recent-post-widget .recent-post-img {
  border-radius: 5px;
}
.siderbar-area .single-widget .recent-post-widget .recent-post-img img {
  min-width: 114px;
  max-width: 114px;
  height: 86px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .siderbar-area .single-widget .recent-post-widget .recent-post-img img {
    min-width: 80px;
    max-width: 80px;
  }
}
.siderbar-area .single-widget .recent-post-widget .recent-post-content {
  line-height: 1;
}
.siderbar-area .single-widget .recent-post-widget .recent-post-content > a {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
  transition: 0.5s;
}
@media (max-width: 576px) {
  .siderbar-area .single-widget .recent-post-widget .recent-post-content > a {
    margin-bottom: 5px;
  }
}
.siderbar-area .single-widget .recent-post-widget .recent-post-content > a:hover {
  color: var(--primary-color1);
}
.siderbar-area .single-widget .recent-post-widget .recent-post-content h4 {
  margin-bottom: 0;
  line-height: 25px;
}
.siderbar-area .single-widget .recent-post-widget .recent-post-content h4 a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  transition: 0.5s;
  background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
  background-size: 0px 1px;
  background-repeat: no-repeat;
  background-position: right 90%;
  transition: background-size 0.75s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .siderbar-area .single-widget .recent-post-widget .recent-post-content h4 a {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .siderbar-area .single-widget .recent-post-widget .recent-post-content h4 a {
    font-size: 15px;
    line-height: 22px;
  }
}
@media (max-width: 576px) {
  .siderbar-area .single-widget .recent-post-widget .recent-post-content h4 a {
    font-size: 16px;
  }
}
.siderbar-area .single-widget .recent-post-widget .recent-post-content h4 a:hover {
  background-size: 100% 1px;
  background-position: 0% 90%;
}
.siderbar-area .single-widget .tag-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  row-gap: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .siderbar-area .single-widget .tag-list {
    gap: 11px;
  }
}
.siderbar-area .single-widget .tag-list li a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 500;
  display: block;
  line-height: 1;
  transition: 0.5s;
}
.siderbar-area .single-widget .tag-list li:hover a {
  color: var(--primary-color1);
}

/*=====================================
80. Info Flow Section CSS
========================================*/
.info-flow-section .pf-caption-cursor-card {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .info-flow-section .pf-caption-cursor-card {
    width: 100%;
  }
}
.info-flow-section .pf-caption-cursor-card img {
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.info-flow-section .pf-caption-cursor-card .pf-caption-cursor-content {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  min-width: 242px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .info-flow-section .pf-caption-cursor-card .pf-caption-cursor-content {
    padding: 18px 20px;
  }
}
@media (max-width: 1399px) {
  .info-flow-section .pf-caption-cursor-card .pf-caption-cursor-content {
    padding: 18px 15px;
    min-width: 232px;
    -webkit-mask-position: right;
            mask-position: right;
  }
}
.info-flow-section .pf-caption-cursor-card .pf-caption-cursor-content span {
  color: var(--white-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 6px;
  padding: 8px 12px;
  background-color: var(--primary-color1);
  position: relative;
  text-transform: uppercase;
}
.info-flow-section .pf-caption-cursor-card .pf-caption-cursor-content h2 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 0;
  background-color: var(--black-color);
  padding: 8px 12px;
  display: inline-block;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .info-flow-section .pf-caption-cursor-card .pf-caption-cursor-content h2 {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .info-flow-section .pf-caption-cursor-card .pf-caption-cursor-content h2 {
    font-size: 12px;
  }
}
.info-flow-section .pf-caption-cursor-card:hover .pf-caption-cursor-content {
  opacity: 1;
}

/*=====================================
80. Location Area Section CSS
========================================*/
.location-area h2 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 60px;
  line-height: 1.3;
  text-transform: capitalize;
  margin-bottom: 70px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .location-area h2 {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 1399px) {
  .location-area h2 {
    font-size: 46px;
    line-height: 58px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .location-area h2 {
    font-size: 43px;
    line-height: 55px;
  }
}
@media (max-width: 991px) {
  .location-area h2 {
    font-size: 39px;
    line-height: 50px;
    margin-bottom: 50px;
  }
}
.location-area .location-list {
  max-width: 230px;
  width: 100%;
  position: relative;
}
.location-area .location-list::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -45px;
  width: 53px;
  height: 1px;
  background-color: var(--primary-color1);
}
@media (max-width: 991px) {
  .location-area .location-list::before {
    display: none;
  }
}
.location-area .location-list span {
  color: var(--primary-color1);
  display: block;
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: underline;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .location-area .location-list span {
    font-size: 15px;
  }
}
.location-area .location-list a {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
  background: linear-gradient(to bottom, var(--text-color) 0%, var(--text-color) 98%);
  background-repeat: no-repeat;
  background-size: 0px 1.5px;
  background-position: right 95%;
  transition: background-size 0.75s;
}
@media (max-width: 767px) {
  .location-area .location-list a {
    font-size: 16px;
  }
}
.location-area .location-list a:hover {
  background-size: 100% 1.5px;
  background-position: 0 95%;
}

/*=====================================
81. Contact Map Section CSS
========================================*/
.contact-map-section {
  line-height: 1;
  width: 100%;
  height: 100%;
}
.contact-map-section iframe {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  min-height: 600px;
  filter: invert(1) hue-rotate(180deg) brightness(0.7) grayscale(1);
}
@media (max-width: 1399px) {
  .contact-map-section iframe {
    min-height: 550px;
  }
}
@media (max-width: 991px) {
  .contact-map-section iframe {
    min-height: 500px;
    border-radius: 20px;
  }
}
@media (max-width: 576px) {
  .contact-map-section iframe {
    min-height: 400px;
    border-radius: 15px;
  }
}

/*=====================================
82. Inner Case Study Section CSS
========================================*/
.inner-case-study-section .inner-case-study-card {
  padding: 20px;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  max-width: 410px;
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .inner-case-study-section .inner-case-study-card {
    padding: 15px;
  }
}
@media (max-width: 991px) {
  .inner-case-study-section .inner-case-study-card {
    max-width: unset;
  }
}
@media (max-width: 576px) {
  .inner-case-study-section .inner-case-study-card {
    padding: 13px;
  }
}
.inner-case-study-section .inner-case-study-card .case-study-img {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  margin-bottom: 35px;
}
.inner-case-study-section .inner-case-study-card .case-study-img img {
  border-radius: 10px;
}
.inner-case-study-section .inner-case-study-card .case-study-img canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap {
  padding: 10px;
  padding-top: 0;
}
@media (max-width: 1199px) {
  .inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap {
    padding: 0;
  }
}
.inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .inner-case-study-content span {
  color: rgba(var(--primary-color1-opc), 0.5);
  display: block;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 10px;
}
.inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .inner-case-study-content h3 {
  margin-bottom: 20px;
  line-height: 35px;
}
@media (max-width: 1399px) {
  .inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .inner-case-study-content h3 {
    line-height: 32px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .inner-case-study-content h3 {
    line-height: 28px;
  }
}
@media (max-width: 576px) {
  .inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .inner-case-study-content h3 {
    line-height: 29px;
  }
}
.inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .inner-case-study-content h3 a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 27px;
  line-height: 35px;
  background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
  background-repeat: no-repeat;
  background-size: 0px 1.5px;
  background-position: right 95%;
  transition: background-size 0.75s;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .inner-case-study-content h3 a {
    font-size: 23px;
    line-height: 32px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .inner-case-study-content h3 a {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 576px) {
  .inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .inner-case-study-content h3 a {
    font-size: 21px;
    line-height: 29px;
  }
}
.inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .inner-case-study-content h3 a:hover {
  background-size: 100% 1.5px;
  background-position: 0 95%;
}
.inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .inner-case-study-content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .inner-case-study-content p {
    font-size: 15px;
    line-height: 29px;
  }
}
.inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .case-study-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  margin-bottom: 45px;
}
@media (max-width: 1399px) {
  .inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .case-study-list {
    gap: 6px;
  }
}
@media (max-width: 1199px) {
  .inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .case-study-list {
    flex-wrap: wrap;
    gap: 10px;
    row-gap: 15px;
  }
}
@media (max-width: 991px) {
  .inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .case-study-list {
    gap: 6px;
  }
}
.inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .case-study-list li a {
  padding: 7px 13px;
  border: 1px solid rgba(var(--title-color-opc), 0.5);
  border-radius: 100px;
  color: rgba(var(--title-color-opc), 0.5);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  display: block;
  transition: 0.5s;
}
@media (max-width: 1399px) {
  .inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .case-study-list li a {
    padding: 7px 9px;
  }
}
.inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .case-study-list li a:hover {
  border-color: var(--primary-color1);
  background-color: var(--primary-color1);
  color: var(--white-color);
}
.inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .case-btn {
  display: flex;
  gap: 6px;
}
.inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .case-btn span {
  color: var(--primary-color1);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 10px;
  padding-bottom: 3px;
  background: linear-gradient(to bottom, var(--primary-color1) 0%, var(--primary-color1) 98%);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0% 95%;
  transition: background-size 0.75s;
}
.inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .case-btn svg {
  fill: var(--primary-color1);
  transition: 0.5s;
}
.inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .case-btn:hover span {
  background-size: 0px 1px;
  background-position: 0 95%;
}
.inner-case-study-section .inner-case-study-card .inner-case-study-content-wrap .case-btn:hover svg {
  transform: translateX(3px);
}

/*=====================================
83. Industry Wrap Area Section CSS
========================================*/
.industry-wrap-area .industry-wrap {
  padding: 0 280px;
}
@media (max-width: 1899px) {
  .industry-wrap-area .industry-wrap {
    padding: 0 140px;
  }
}
@media (max-width: 1699px) {
  .industry-wrap-area .industry-wrap {
    padding: 0 100px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .industry-wrap-area .industry-wrap {
    padding: 0 40px;
  }
}
@media (max-width: 1399px) {
  .industry-wrap-area .industry-wrap {
    padding: 0;
  }
}
.industry-wrap-area .industry-wrap .industry-card {
  background-color: var(--white-color);
  border-radius: 15px;
  padding: 20px 20px 30px 20px;
}
@media (max-width: 576px) {
  .industry-wrap-area .industry-wrap .industry-card {
    border-radius: 10px;
  }
}
.industry-wrap-area .industry-wrap .industry-card img {
  border-radius: 50%;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .industry-wrap-area .industry-wrap .industry-card img {
    width: 85px;
  }
}
@media (max-width: 991px) {
  .industry-wrap-area .industry-wrap .industry-card img {
    width: 75px;
  }
}
.industry-wrap-area .industry-wrap .industry-card .industry-content {
  padding-top: 20px;
  border-top: 1px solid rgba(var(--title-color-opc), 0.1);
  margin-bottom: 20px;
}
.industry-wrap-area .industry-wrap .industry-card .industry-content h2 {
  margin-bottom: 10px;
  line-height: 1.2;
}
.industry-wrap-area .industry-wrap .industry-card .industry-content h2 a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.2;
  transition: all 0.5s;
}
@media (max-width: 1399px) {
  .industry-wrap-area .industry-wrap .industry-card .industry-content h2 a {
    font-size: 22px;
  }
}
.industry-wrap-area .industry-wrap .industry-card .industry-content h2 a:hover {
  color: var(--primary-color1);
}
.industry-wrap-area .industry-wrap .industry-card .industry-content p {
  color: rgba(var(--title-color-opc), 0.7);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .industry-wrap-area .industry-wrap .industry-card .industry-content p {
    font-size: 15px;
  }
}
.industry-wrap-area .industry-wrap .industry-card > a {
  color: var(--primary-color1);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 11px;
  line-height: 1px;
  text-transform: uppercase;
  padding-bottom: 2px;
  background: linear-gradient(to bottom, var(--primary-color1) 0%, var(--primary-color1) 98%);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0% 90%;
  transition: background-size 0.75s;
}
.industry-wrap-area .industry-wrap .industry-card > a:hover {
  background-size: 0px 1px;
  background-position: 0 90%;
}
.industry-wrap-area .industry-wrap .industry-card2 {
  background-image: url(../img/innerpages/industries-card-mask-img.png);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--primary-color1);
  padding: 85px 55px;
  border-radius: 15px;
  height: 100%;
}
@media (max-width: 1199px) {
  .industry-wrap-area .industry-wrap .industry-card2 {
    padding: 70px 45px;
  }
}
@media (max-width: 767px) {
  .industry-wrap-area .industry-wrap .industry-card2 {
    padding: 60px 35px;
  }
}
@media (max-width: 576px) {
  .industry-wrap-area .industry-wrap .industry-card2 {
    padding: 50px 20px;
    border-radius: 10px;
  }
}
.industry-wrap-area .industry-wrap .industry-card2 h3 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 40px;
  line-height: 45px;
  max-width: 335px;
  width: 100%;
  margin-bottom: 25px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .industry-wrap-area .industry-wrap .industry-card2 h3 {
    font-size: 34px;
  }
}
@media (max-width: 1199px) {
  .industry-wrap-area .industry-wrap .industry-card2 h3 {
    font-size: 33px;
  }
}
@media (max-width: 767px) {
  .industry-wrap-area .industry-wrap .industry-card2 h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 576px) {
  .industry-wrap-area .industry-wrap .industry-card2 h3 {
    font-size: 27px;
    line-height: 36px;
  }
}
.industry-wrap-area .industry-wrap .industry-card2 p {
  color: rgba(var(--white-color-opc), 0.8);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
  max-width: 408px;
}
@media (max-width: 576px) {
  .industry-wrap-area .industry-wrap .industry-card2 p {
    font-size: 15px;
  }
}
.industry-wrap-area .industry-wrap .industry-card2 p a {
  font-weight: 500;
  color: var(--white-color);
  background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 98%);
  background-repeat: no-repeat;
  background-size: 0px 1.5px;
  background-position: right 95%;
  transition: background-size 0.75s;
}
.industry-wrap-area .industry-wrap .industry-card2 p a:hover {
  background-size: 100% 1.5px;
  background-position: 0 95%;
}

/*=====================================
84. FAQ Section CSS
========================================*/
.faq-page .nav-links-wrapper {
  margin-bottom: 50px;
  background-color: #FFFAF6;
  padding: 50px 40px;
  border-radius: 30px;
  border: 1px solid rgba(var(--title-color-opc), 0.1);
}
@media (max-width: 1199px) {
  .faq-page .nav-links-wrapper {
    padding: 40px 20px;
    border-radius: 20px;
  }
}
@media (max-width: 991px) {
  .faq-page .nav-links-wrapper {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .faq-page .nav-links-wrapper {
    border-radius: 15px;
  }
}
.faq-page .nav-links-wrapper .nav-pills {
  display: unset;
}
.faq-page .nav-links-wrapper .nav-pills .nav-item {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .faq-page .nav-links-wrapper .nav-pills .nav-item {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .faq-page .nav-links-wrapper .nav-pills .nav-item {
    margin-bottom: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .faq-page .nav-links-wrapper .nav-pills .nav-item:last-child .nav-link::before {
    content: unset;
  }
}
@media (max-width: 576px) {
  .faq-page .nav-links-wrapper .nav-pills .nav-item:last-child .nav-link::before {
    content: unset;
  }
}
.faq-page .nav-links-wrapper .nav-pills .nav-item .nav-link {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: start;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .faq-page .nav-links-wrapper .nav-pills .nav-item .nav-link {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .faq-page .nav-links-wrapper .nav-pills .nav-item .nav-link {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .faq-page .nav-links-wrapper .nav-pills .nav-item .nav-link {
    font-size: 16px;
  }
}
.faq-page .nav-links-wrapper .nav-pills .nav-item .nav-link.active {
  background-color: unset;
  color: var(--primary-color1);
}
.faq-page .nav-links-wrapper .nav-pills .nav-item .nav-link.active svg {
  fill: var(--primary-color1);
}
.faq-page .nav-links-wrapper .nav-pills .nav-item .nav-link svg {
  fill: var(--title-color);
}
.faq-page .nav-links-wrapper .nav-pills .nav-item:last-child {
  margin-bottom: 0;
}
.faq-page .faq-wrap {
  max-width: unset;
  background-color: #F6F7FF;
  border-radius: 30px;
}
@media (max-width: 1199px) {
  .faq-page .faq-wrap {
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .faq-page .faq-wrap {
    border-radius: 15px;
  }
}

/*=====================================
  85. Error Page CSS
========================================*/
.error-page {
  padding-top: 220px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .error-page {
    padding-top: 220px;
  }
}
@media (max-width: 1399px) {
  .error-page {
    padding-top: 190px;
  }
}
@media (max-width: 1199px) {
  .error-page {
    padding-top: 170px;
  }
}
@media (max-width: 576px) {
  .error-page {
    padding-top: 120px;
  }
}
.error-page .error-wrapper {
  text-align: center;
}
.error-page .error-wrapper img {
  margin-bottom: 65px;
}
@media (max-width: 1399px) {
  .error-page .error-wrapper img {
    max-width: 550px;
  }
}
@media (max-width: 1199px) {
  .error-page .error-wrapper img {
    max-width: 470px;
    margin-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .error-page .error-wrapper img {
    max-width: 440px;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .error-page .error-wrapper img {
    max-width: 400px;
  }
}
@media (max-width: 576px) {
  .error-page .error-wrapper img {
    max-width: 100%;
    margin-bottom: 45px;
  }
}
.error-page .error-wrapper h2 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 80px;
  line-height: 1.2;
  margin-bottom: 25px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .error-page .error-wrapper h2 {
    font-size: 70px;
  }
}
@media (max-width: 1399px) {
  .error-page .error-wrapper h2 {
    font-size: 63px;
  }
}
@media (max-width: 991px) {
  .error-page .error-wrapper h2 {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .error-page .error-wrapper h2 {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .error-page .error-wrapper h2 {
    font-size: 38px;
  }
}
.error-page .error-wrapper h2 span {
  color: var(--primary-color1);
}
.error-page .error-wrapper p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  max-width: 746px;
  width: 100%;
  margin: 0 auto 50px;
}
@media (max-width: 991px) {
  .error-page .error-wrapper p {
    margin: 0 auto 40px;
  }
}
@media (max-width: 767px) {
  .error-page .error-wrapper p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 576px) {
  .error-page .error-wrapper p {
    font-size: 15px;
    margin: 0 auto 30px;
  }
}
.error-page .error-wrapper .primary-btn1 {
  padding: 21px 34px;
}

/*=====================================
  86. Career Details Page CSS
========================================*/
.career-details-page .job-title-and-description-area h2 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 35px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .career-details-page .job-title-and-description-area h2 {
    font-size: 46px;
  }
}
@media (max-width: 1399px) {
  .career-details-page .job-title-and-description-area h2 {
    font-size: 42px;
  }
}
@media (max-width: 1199px) {
  .career-details-page .job-title-and-description-area h2 {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .career-details-page .job-title-and-description-area h2 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .career-details-page .job-title-and-description-area h2 {
    font-size: 34px;
  }
}
@media (max-width: 576px) {
  .career-details-page .job-title-and-description-area h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.career-details-page .job-title-and-description-area .description-area {
  padding: 35px 50px;
  border: 1px dashed var(--primary-color1);
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .career-details-page .job-title-and-description-area .description-area {
    padding: 35px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .career-details-page .job-title-and-description-area .description-area {
    padding: 25px;
  }
}
@media (max-width: 991px) {
  .career-details-page .job-title-and-description-area .description-area {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .career-details-page .job-title-and-description-area .description-area {
    padding: 25px;
  }
}
@media (max-width: 576px) {
  .career-details-page .job-title-and-description-area .description-area {
    padding: 20px;
    border-radius: 15px;
  }
}
.career-details-page .job-title-and-description-area .description-area p {
  color: var(--text-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .career-details-page .job-title-and-description-area .description-area p {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .career-details-page .job-title-and-description-area .description-area p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .career-details-page .job-title-and-description-area .description-area p {
    font-size: 15px;
  }
}
.career-details-page .career-details-sidebar .career-info-wrap {
  border: 1px solid rgba(var(--black-color-opc), 0.1);
  background: #FAF9F9;
  padding: 25px 30px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1399px) {
  .career-details-page .career-details-sidebar .career-info-wrap {
    padding: 25px 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .career-details-page .career-details-sidebar .career-info-wrap {
    padding: 25px 20px;
  }
}
@media (max-width: 576px) {
  .career-details-page .career-details-sidebar .career-info-wrap {
    padding: 25px 15px;
  }
}
.career-details-page .career-details-sidebar .career-info-wrap .career-info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.career-details-page .career-details-sidebar .career-info-wrap .career-info li {
  border-bottom: 1px solid rgba(var(--black-color-opc), 0.1);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .career-details-page .career-details-sidebar .career-info-wrap .career-info li {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.career-details-page .career-details-sidebar .career-info-wrap .career-info li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.career-details-page .career-details-sidebar .career-info-wrap .career-info li span {
  color: rgba(var(--title-color-opc), 0.5);
  font-family: var(--font-poppins);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
}
.career-details-page .career-details-sidebar .career-info-wrap .career-info li h5,
.career-details-page .career-details-sidebar .career-info-wrap .career-info li h4 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .career-details-page .career-details-sidebar .career-info-wrap .career-info li h5,
  .career-details-page .career-details-sidebar .career-info-wrap .career-info li h4 {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .career-details-page .career-details-sidebar .career-info-wrap .career-info li h5,
  .career-details-page .career-details-sidebar .career-info-wrap .career-info li h4 {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .career-details-page .career-details-sidebar .career-info-wrap .career-info li h5,
  .career-details-page .career-details-sidebar .career-info-wrap .career-info li h4 {
    font-size: 17px;
  }
}
.career-details-page .career-details-sidebar .career-info-wrap::before {
  content: url(../img/innerpages/project-dt-project-info-vector.svg);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.career-details-page .career-details-sidebar .primary-btn2 {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 31px 26px;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 10px;
  text-decoration: underline;
}
@media (max-width: 1399px) {
  .career-details-page .career-details-sidebar .primary-btn2 {
    padding: 28px 24px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .career-details-page .career-details-sidebar .primary-btn2 {
    padding: 22px 20px;
    font-size: 15px;
  }
}

.details-content-wrapper .line-break {
  height: 15px;
  display: block;
}
@media (max-width: 767px) {
  .details-content-wrapper .line-break {
    height: 10px;
  }
}
.details-content-wrapper p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 17px;
  font-weight: 400;
  line-height: 38px;
}
@media (max-width: 767px) {
  .details-content-wrapper p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .details-content-wrapper p {
    font-size: 14px;
    line-height: 34px;
  }
}
.details-content-wrapper p.first-para::first-letter {
  float: left;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  margin-right: 15px;
}
@media (max-width: 576px) {
  .details-content-wrapper p.first-para::first-letter {
    font-size: 60px;
    margin-right: 10px;
  }
}
.details-content-wrapper h3,
.details-content-wrapper h2 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 35px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .details-content-wrapper h3,
  .details-content-wrapper h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .details-content-wrapper h3,
  .details-content-wrapper h2 {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .details-content-wrapper h3,
  .details-content-wrapper h2 {
    font-size: 22px;
  }
}
.details-content-wrapper h4 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .details-content-wrapper h4 {
    font-size: 26px;
  }
}
.details-content-wrapper h4 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .details-content-wrapper h4 {
    font-size: 26px;
  }
}
.details-content-wrapper .titleone {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .details-content-wrapper .titleone {
    font-size: 26px;
  }
}
.details-content-wrapper .one-title {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 0;
  color: var(--title-color);
}
.details-content-wrapper .list-area {
  padding: 0;
  margin: 0;
  list-style: none;
}
.details-content-wrapper .list-area.column {
  -moz-columns: 2;
       columns: 2;
}
@media (max-width: 767px) {
  .details-content-wrapper .list-area.column {
    -moz-columns: unset;
         columns: unset;
  }
}
.details-content-wrapper .list-area li {
  color: var(--text-color);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.34px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .details-content-wrapper .list-area li {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
.details-content-wrapper .list-area li:last-child {
  margin-bottom: 0;
}
.details-content-wrapper .list-area li svg {
  fill: var(--primary-color1);
  flex-shrink: 0;
}
.details-content-wrapper .list-area li.single-listing {
  display: block;
  line-height: 28px;
}
.details-content-wrapper .list-area li.single-listing span {
  color: var(--title-color);
}
.details-content-wrapper .list-area.style-2 {
  -moz-columns: unset;
       columns: unset;
  padding-left: 18px;
  list-style: disc;
}
.details-content-wrapper .list-area.style-2 li {
  color: var(--text-color);
  line-height: 30px;
  display: list-item;
  font-size: 17px;
  font-family: var(--font-poppins);
  font-weight: 400;
}
@media (max-width: 576px) {
  .details-content-wrapper .list-area.style-2 li {
    font-size: 15px;
  }
}
.details-content-wrapper .listing {
  padding: 0;
  margin: 0;
  list-style: none;
}
.details-content-wrapper .project-details-img-grp img {
  border-radius: 10px;
}
.details-content-wrapper.style-2 p {
  font-size: 16px;
}

/*=====================================
  83.Shop Page
========================================*/
.product-card {
  border: 1px solid #EEEEEE;
  padding: 28px;
  transition: 0.5s;
  position: relative;
  border-radius: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product-card {
    padding: 15px;
  }
}
@media (max-width: 991px) {
  .product-card {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .product-card {
    padding: 15px;
  }
}
.product-card .product-card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.product-card .product-card-img .product-img {
  -webkit-mask-image: url(../img/innerpages/product-mask-img.png);
          mask-image: url(../img/innerpages/product-mask-img.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: left;
          mask-position: left;
  display: block;
  border-radius: 10px;
}
.product-card .product-card-img .product-img img {
  transition: all 0.5s ease-out;
  border-radius: 10px;
}
.product-card .product-card-img .batch {
  position: absolute;
  left: 5px;
  top: 5px;
}
.product-card .product-card-img .batch > span {
  background-color: #CB0000;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  width: 56px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-montserrat);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  z-index: 1;
}
.product-card .product-card-img .cart {
  position: absolute;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background-color: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  right: 53px;
  transition: all 0.5s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .product-card .product-card-img .cart {
    right: 42px;
    width: 38px;
    height: 38px;
  }
  .product-card .product-card-img .cart svg {
    width: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product-card .product-card-img .cart {
    right: 36px;
    width: 38px;
    height: 38px;
  }
  .product-card .product-card-img .cart svg {
    width: 20px;
  }
}
@media (max-width: 991px) {
  .product-card .product-card-img .cart {
    right: 40px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .product-card .product-card-img .cart {
    right: 74px;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 576px) {
  .product-card .product-card-img .cart {
    right: 40px;
  }
}
.product-card .product-card-img .cart svg {
  fill: var(--white-color);
  transition: all 0.5s;
}
.product-card .product-card-img .cart:hover {
  background-color: var(--primary-color1);
}
.product-card .product-card-content h6,
.product-card .product-card-content h4,
.product-card .product-card-content h2 {
  margin-bottom: 10px;
  line-height: 1;
}
.product-card .product-card-content h6 a,
.product-card .product-card-content h4 a,
.product-card .product-card-content h2 a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.3;
  transition: 0.5s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product-card .product-card-content h6 a,
  .product-card .product-card-content h4 a,
  .product-card .product-card-content h2 a {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .product-card .product-card-content h6 a,
  .product-card .product-card-content h4 a,
  .product-card .product-card-content h2 a {
    font-size: 16px;
  }
}
.product-card .product-card-content h6 a:hover,
.product-card .product-card-content h4 a:hover,
.product-card .product-card-content h2 a:hover {
  color: var(--primary-color1);
}
.product-card .product-card-content > span {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 17px;
  font-weight: 600;
  display: block;
  line-height: 1;
}
.product-card .product-card-content > span del {
  color: rgba(var(--title-color-opc), 0.3);
  font-size: 15px;
  font-weight: 400;
}
.product-card .product-card-content .rating {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}
.product-card .product-card-content .rating ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-card .product-card-content .rating ul li {
  line-height: 1;
}
.product-card .product-card-content .rating ul li i {
  color: #FE9A31;
  font-size: 13px;
}
.product-card .product-card-content .rating span {
  color: #ABABAB;
  font-size: 13px;
  font-family: var(--font-montserrat);
  font-weight: 400;
  line-height: 1;
}
.product-card:hover .product-card-img .product-img img {
  transform: scale(1.1);
}

/*=====================================
  84. Cart Page CSS
========================================*/
.cart-page .cart-widget-title {
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .cart-page .cart-widget-title {
    margin-bottom: 25px;
  }
}
.cart-page .cart-widget-title h2 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .cart-page .cart-widget-title h2 {
    font-size: 25px;
  }
}
.cart-page .cart-shopping-wrapper .cart-table {
  width: 100%;
}
@media (max-width: 767px) {
  .cart-page .cart-shopping-wrapper .cart-table {
    margin-bottom: 30px;
  }
}
.cart-page .cart-shopping-wrapper .cart-table thead tr {
  border-top: 1px solid var(--borders-color);
  border-bottom: 1px solid var(--borders-color);
}
.cart-page .cart-shopping-wrapper .cart-table thead tr th {
  color: var(--text-color);
  font-family: var(--font-montserrat);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  padding: 20px 15px;
}
@media (max-width: 767px) {
  .cart-page .cart-shopping-wrapper .cart-table thead tr th {
    display: none;
  }
}
.cart-page .cart-shopping-wrapper .cart-table thead tr th:first-child {
  padding-left: 0;
}
@media (max-width: 767px) {
  .cart-page .cart-shopping-wrapper .cart-table tbody tr {
    border-bottom: 1px solid var(--borders-color);
  }
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td {
  padding: 30px 15px;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td span {
  color: var(--text-color);
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td:first-child {
  padding-left: 0;
}
@media (max-width: 767px) {
  .cart-page .cart-shopping-wrapper .cart-table tbody tr td {
    text-align: right;
  }
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper {
    align-items: flex-end;
    flex-direction: column;
  }
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-img img {
  border-radius: 5px;
  max-width: 120px;
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content h3 {
    font-size: 16px;
  }
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 35px;
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content p span {
  color: var(--title-color);
  font-weight: 500;
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul {
    justify-content: flex-end;
  }
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li {
  color: var(--text-color);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  position: relative;
  transition: 0.5s;
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -10px;
  width: 1px;
  height: 11px;
  background-color: rgba(var(--title-color-opc), 0.2);
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li .quantity-area {
  position: absolute;
  top: -30px;
  right: -60px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
}
@media (max-width: 991px) {
  .cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li .quantity-area {
    right: unset;
    left: -60px;
  }
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li .quantity-area .quantity {
  display: flex;
  gap: 5px;
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li .quantity-area .quantity a {
  height: 24px;
  width: 34px;
  border-radius: 4px;
  background: rgba(var(--title-color-opc), 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.35s;
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li .quantity-area .quantity a i {
  color: var(--title-color);
  transition: 0.35s;
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li .quantity-area .quantity a:hover {
  background: var(--primary-color1);
  color: var(--title-color);
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li .quantity-area .quantity a:hover i {
  color: var(--white-color);
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li .quantity-area .quantity input {
  height: 24px;
  width: 34px;
  border-radius: 4px;
  border: 1px solid var(--borders-color);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li .quantity-area.active {
  opacity: 1;
  transform: scaleY(1);
  animation: fade-down 0.3s linear;
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li:hover {
  color: rgb(255, 72, 32);
}
.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li:hover:last-child {
  color: var(--title-color);
}
@media (max-width: 767px) {
  .cart-page .cart-shopping-wrapper .cart-table tbody tr td {
    display: block;
    width: 100%;
    text-align: right;
    position: relative;
    padding: 15px;
  }
  .cart-page .cart-shopping-wrapper .cart-table tbody tr td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    color: var(--text-color);
    font-family: var(--font-montserrat);
    font-size: 18px;
    font-weight: 600;
  }
}
@media (max-width: 767px) and (max-width: 576px) {
  .cart-page .cart-shopping-wrapper .cart-table tbody tr td::before {
    font-size: 16px;
  }
}
.cart-page .cart-shopping-wrapper .details-btn {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.5s;
}
.cart-page .cart-shopping-wrapper .details-btn span {
  background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
  background-repeat: no-repeat;
  background-size: 0px 1.5px;
  background-position: right 100%;
  transition: background-size 0.75s;
}
.cart-page .cart-shopping-wrapper .details-btn svg {
  fill: none;
  stroke: var(--title-color);
  transition: 0.5s;
}
.cart-page .cart-shopping-wrapper .details-btn:hover span {
  background-size: 100% 1.5px;
  background-position: left 100%;
}
.cart-page .cart-shopping-wrapper .details-btn:hover svg {
  transform: rotate(45deg);
}
@media (min-width: 992px) {
  .cart-page .cart-order-sum-area {
    padding-left: 15px;
  }
}
.cart-page .cart-order-sum-area .order-summary-wrap {
  padding: 40px 30px;
  border: 1px solid var(--borders-color);
  border-radius: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cart-page .cart-order-sum-area .order-summary-wrap {
    padding: 40px 25px;
  }
}
@media (max-width: 576px) {
  .cart-page .cart-order-sum-area .order-summary-wrap {
    padding: 35px 15px;
  }
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
  line-height: 1;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li:first-child {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--borders-color);
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li strong {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .order-info {
  text-align: right;
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .order-info p {
  color: var(--text-color);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .order-info span {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area {
  width: 100%;
  margin-bottom: 10px;
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area span {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 15px;
  display: block;
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner {
  position: relative;
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner input {
  width: 100%;
  height: 48px;
  padding: 10px 100px 10px 20px;
  background-color: #F6F2F8;
  border-radius: 5px;
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner input::-moz-placeholder {
  color: rgba(var(--title-color-opc), 0.5);
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner input::placeholder {
  color: rgba(var(--title-color-opc), 0.5);
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner input:focus {
  border-color: transparent;
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner .apply-btn {
  padding: 15px 23px;
  border-radius: 0 5px 5px 0;
  background-color: var(--black-color);
  border: 1px solid var(--black-color);
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.48px;
  line-height: 1;
  transition: 0.5s;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
  position: absolute;
  top: 0;
  right: 0;
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner .apply-btn::after {
  position: absolute;
  content: "";
  display: block;
  left: 15%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  border-radius: 2px;
  background-color: var(--white-color);
  transform: skewX(45deg) scale(0, 1);
  z-index: -1;
  transition: all 0.5s ease-out 0s;
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner .apply-btn:hover {
  color: var(--title-color);
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner .apply-btn:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li:last-child {
  margin-bottom: 0px;
}
.cart-page .cart-order-sum-area .order-summary-wrap .primary-btn2 {
  width: 100%;
  justify-content: center;
  padding: 19px 18px;
}
.cart-page .cart-order-sum-area .order-summary-wrap .primary-btn2 svg {
  fill: var(--white-color);
}

/*=====================================
  85. Checkout Page CSS
========================================*/
.checkout-page .checkout-form-wrapper .checkout-form-title {
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .checkout-page .checkout-form-wrapper .checkout-form-title {
    margin-bottom: 25px;
  }
}
.checkout-page .checkout-form-wrapper .checkout-form-title h2 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .checkout-page .checkout-form-wrapper .checkout-form-title h2 {
    font-size: 25px;
  }
}
.checkout-page .checkout-form-wrapper .checkout-form {
  border: 1px solid var(--borders-color);
  padding: 40px 30px;
  border-radius: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .checkout-page .checkout-form-wrapper .checkout-form {
    padding: 35px 20px;
  }
}
@media (max-width: 767px) {
  .checkout-page .checkout-form-wrapper .checkout-form {
    padding: 35px 20px;
  }
}
.checkout-page .checkout-form-wrapper .checkout-form .form-inner label span {
  font-weight: 400;
  color: var(--text-color);
}
.checkout-page .order-sum-area {
  border: 1px solid var(--borders-color);
  padding: 45px 40px;
}
@media (max-width: 1399px) {
  .checkout-page .order-sum-area {
    padding: 35px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .checkout-page .order-sum-area {
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .checkout-page .order-sum-area {
    padding: 30px 20px;
  }
}
@media (max-width: 576px) {
  .checkout-page .order-sum-area {
    padding: 25px 15px;
  }
}
.checkout-page .order-sum-area .cart-body ul {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 50px;
}
.checkout-page .order-sum-area .cart-body ul .single-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.checkout-page .order-sum-area .cart-body ul .single-item:last-child {
  margin-bottom: 0;
}
.checkout-page .order-sum-area .cart-body ul .single-item .item-area {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  width: 100%;
}
.checkout-page .order-sum-area .cart-body ul .single-item .item-area .close-btn {
  transition: 0.35s;
  min-width: 25px;
  max-width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 38, 21, 0.14);
  border: unset;
}
.checkout-page .order-sum-area .cart-body ul .single-item .item-area .close-btn i {
  color: rgb(255, 72, 32);
  line-height: 1;
  font-size: 20px;
  transition: 0.35s;
}
.checkout-page .order-sum-area .cart-body ul .single-item .item-area .close-btn:hover {
  background-color: #FF2615;
}
.checkout-page .order-sum-area .cart-body ul .single-item .item-area .close-btn:hover i {
  color: var(--white-color);
}
.checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item {
  display: flex;
  gap: 15px;
  width: 100%;
}
@media (max-width: 767px) {
  .checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item {
    gap: 12px;
  }
}
.checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .item-img img {
  height: 80px;
  max-width: 77px;
  min-width: 77px;
}
@media (max-width: 767px) {
  .checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .item-img img {
    width: 45px;
    height: unset;
  }
}
.checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .content-and-quantity {
  width: 100%;
}
.checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .content {
  line-height: 1;
  margin-bottom: 15px;
}
.checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .content span {
  color: var(--text-color);
  font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 15px;
  display: inline-block;
  margin-bottom: 5px;
}
.checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .content h3 {
  margin-bottom: 0;
  line-height: 1;
}
.checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .content h3 a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
  background-repeat: no-repeat;
  background-size: 0px 1px;
  background-position: right 100%;
  transition: background-size 0.75s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .content h3 a {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .content h3 a {
    font-size: 15px;
  }
}
.checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .content h3 a:hover {
  background-size: 100% 1px;
  background-position: left 100%;
}
.checkout-page .order-sum-area .cart-body ul .single-item .quantity-area .quantity {
  display: flex;
  gap: 5px;
}
.checkout-page .order-sum-area .cart-body ul .single-item .quantity-area .quantity a {
  height: 24px;
  width: 34px;
  border-radius: 4px;
  background: rgba(var(--title-color-opc), 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--title-color);
  font-weight: 600;
  cursor: pointer;
  transition: 0.35s;
}
.checkout-page .order-sum-area .cart-body ul .single-item .quantity-area .quantity a i {
  color: var(--title-color);
  transition: 0.35s;
}
.checkout-page .order-sum-area .cart-body ul .single-item .quantity-area .quantity a:hover {
  background: var(--primary-color1);
  color: var(--white-color);
}
.checkout-page .order-sum-area .cart-body ul .single-item .quantity-area .quantity a:hover i {
  color: var(--dark-title-color);
}
.checkout-page .order-sum-area .cart-body ul .single-item .quantity-area .quantity input {
  height: 24px;
  width: 34px;
  border-radius: 4px;
  border: 1px solid var(--borders-color);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.checkout-page .order-sum-area .cart-footer .pricing-area {
  width: 100%;
}
.checkout-page .order-sum-area .cart-footer .pricing-area ul {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}
.checkout-page .order-sum-area .cart-footer .pricing-area ul li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
  line-height: 1;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  border-bottom: 1px solid var(--borders-color);
  padding-bottom: 20px;
}
.checkout-page .order-sum-area .cart-footer .pricing-area ul li strong {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
}
.checkout-page .order-sum-area .cart-footer .pricing-area ul li .order-info {
  text-align: right;
}
.checkout-page .order-sum-area .cart-footer .pricing-area ul li .order-info p {
  color: var(--text-color);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
}
.checkout-page .order-sum-area .cart-footer .pricing-area ul li .order-info span {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}
.checkout-page .order-sum-area .cart-footer .pricing-area ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: unset;
}
.checkout-page .order-sum-area .cart-footer .primary-btn2 {
  width: 100%;
  justify-content: center;
}
.checkout-page .order-sum-area .cart-footer .primary-btn2 svg {
  fill: var(--white-color);
}
.checkout-page .choose-payment-method {
  margin-bottom: 40px;
  line-height: 1;
}
.checkout-page .choose-payment-method h4 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.checkout-page .choose-payment-method .payment-option {
  line-height: 1;
}
.checkout-page .choose-payment-method .payment-option ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .checkout-page .choose-payment-method .payment-option ul {
    gap: 15px;
  }
}
.checkout-page .choose-payment-method .payment-option ul li {
  width: 110px;
  height: 68px;
  background-color: var(--white-color);
  border: 1px solid var(--borders-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .checkout-page .choose-payment-method .payment-option ul li {
    width: 100px;
  }
}
.checkout-page .choose-payment-method .payment-option ul li .checked {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background: #D2E7EF;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  border-top-left-radius: 5px;
}
.checkout-page .choose-payment-method .payment-option ul li .checked i {
  opacity: 0;
  color: var(--white-color);
  margin-left: 2px;
}
.checkout-page .choose-payment-method .payment-option ul li.active .checked {
  background: var(--primary-color1);
}
.checkout-page .choose-payment-method .payment-option ul li.active .checked i {
  opacity: 1;
}

/*=====================================
  86. Product Details Page CSS
========================================*/
.product-details-page .product-details-img {
  position: relative;
}
@media (max-width: 1199px) {
  .product-details-page .product-details-img {
    padding-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product-details-page .product-details-img {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .product-details-page .product-details-img {
    flex-direction: column;
    gap: 40px;
  }
}
.product-details-page .product-details-img .product-details-tab-img {
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .product-details-page .product-details-img .product-details-tab-img img {
    width: 100%;
  }
}
.product-details-page .product-details-img .nav-pills {
  padding-top: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1399px) {
  .product-details-page .product-details-img .nav-pills {
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .product-details-page .product-details-img .nav-pills {
    -moz-columns: unset;
         columns: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-top: 20px;
  }
}
@media (min-width: 1600px) {
  .product-details-page .product-details-img .nav-pills .nav-item {
    max-width: 160px;
    min-width: 160px;
    max-height: 107px;
  }
}
@media (max-width: 1399px) {
  .product-details-page .product-details-img .nav-pills .nav-item {
    max-width: 140px;
    min-width: 140px;
    max-height: 107px;
  }
}
@media (max-width: 576px) {
  .product-details-page .product-details-img .nav-pills .nav-item {
    max-width: 130px;
    min-width: 130px;
  }
}
.product-details-page .product-details-img .nav-pills .nav-item .nav-link {
  background-color: unset;
  border-radius: unset;
  padding: 0;
  position: relative;
  width: 100%;
}
.product-details-page .product-details-img .nav-pills .nav-item .nav-link img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .product-details-page .product-details-img .nav-pills .nav-item .nav-link img {
    max-width: 160px;
    min-width: 160px;
    max-height: 107px;
  }
}
@media (max-width: 1399px) {
  .product-details-page .product-details-img .nav-pills .nav-item .nav-link img {
    max-width: 140px;
    min-width: 140px;
    max-height: 107px;
  }
}
@media (max-width: 576px) {
  .product-details-page .product-details-img .nav-pills .nav-item .nav-link img {
    max-width: 130px;
    min-width: 130px;
  }
}
.product-details-page .product-details-img .nav-pills .nav-item .nav-link::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(26, 26, 26, 0.2);
}
.product-details-page .product-details-img .nav-pills .nav-item .nav-link.active::after {
  display: none;
}
.product-details-page .product-details-content h2 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .product-details-page .product-details-content h2 {
    font-size: 35px;
  }
}
@media (max-width: 1199px) {
  .product-details-page .product-details-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .product-details-page .product-details-content h2 {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .product-details-page .product-details-content h2 {
    font-size: 35px;
  }
}
.product-details-page .product-details-content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .product-details-page .product-details-content p {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .product-details-page .product-details-content p {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .product-details-page .product-details-content p {
    font-size: 17px;
  }
}
.product-details-page .product-details-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 45px;
}
@media (max-width: 1199px) {
  .product-details-page .product-details-content ul {
    margin-bottom: 40px;
  }
}
.product-details-page .product-details-content ul li svg {
  fill: var(--text-color);
}
.product-details-page .product-details-content ul li {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 16px;
  line-height: 22.68px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}
.product-details-page .product-details-content ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .product-details-page .product-details-content ul li {
    font-size: 17px;
  }
}
.product-details-page .product-details-content .price-tag {
  line-height: 1;
  margin-bottom: 35px;
}
@media (max-width: 1199px) {
  .product-details-page .product-details-content .price-tag {
    margin-bottom: 30px;
  }
}
.product-details-page .product-details-content .price-tag h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1199px) {
  .product-details-page .product-details-content .price-tag h3 {
    font-size: 18px;
  }
}
.product-details-page .product-details-content .price-tag h3 del {
  color: var(--text-color);
  font-weight: 500;
}
.product-details-page .product-details-content .product-quantity {
  margin-bottom: 50px;
  gap: 24px;
}
@media (max-width: 1199px) {
  .product-details-page .product-details-content .product-quantity {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .product-details-page .product-details-content .product-quantity {
    margin-bottom: 35px;
  }
}
@media (max-width: 576px) {
  .product-details-page .product-details-content .product-quantity {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.product-details-page .product-details-content .product-quantity .quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-details-page .product-details-content .product-quantity .quantity .quantity__minus,
.product-details-page .product-details-content .product-quantity .quantity .quantity__plus {
  height: 40px;
  width: 40px;
  border: 1px solid var(--borders-color);
  border-radius: 5px;
  background-color: #F0F0F0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.35s;
}
.product-details-page .product-details-content .product-quantity .quantity .quantity__minus span i,
.product-details-page .product-details-content .product-quantity .quantity .quantity__plus span i {
  font-size: 22px;
  color: var(--title-color);
  transition: 0.35s;
}
.product-details-page .product-details-content .product-quantity .quantity .quantity__minus:hover,
.product-details-page .product-details-content .product-quantity .quantity .quantity__plus:hover {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}
.product-details-page .product-details-content .product-quantity .quantity .quantity__minus:hover span i,
.product-details-page .product-details-content .product-quantity .quantity .quantity__plus:hover span i {
  color: var(--white-color);
}
.product-details-page .product-details-content .product-quantity .quantity .quantity__input {
  height: 40px;
  width: 78px;
  border: 1px solid var(--borders-color);
  background-color: transparent;
  color: var(--title-color);
  text-align: center;
  font-family: var(--font-montserrat);
  font-size: 18px;
  font-weight: 600;
}
.product-details-page .product-details-content .product-quantity .primary-btn2 {
  font-size: 14px;
  padding: 13px 16px;
}
.product-details-page .product-details-content .product-quantity .primary-btn2.svg-color svg {
  fill: var(--white-color);
}
.product-details-page .product-details-content .product-quantity .primary-btn2.transparent {
  color: var(--title-color);
  border: 1px solid rgba(var(--title-color-opc), 0.2);
}
.product-details-page .product-details-content .product-quantity .primary-btn2.transparent span {
  background-color: var(--primary-color1);
}
.product-details-page .product-details-content .product-quantity .primary-btn2.transparent:hover {
  color: var(--white-color);
}
.product-details-page .product-details-content .product-quantity .primary-btn2.transparent:hover svg {
  fill: var(--white-color);
}
.product-details-page .product-details-content .aditional-info {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}
.product-details-page .product-details-content .aditional-info > li {
  line-height: 1;
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.product-details-page .product-details-content .aditional-info > li:last-child {
  margin-bottom: 0;
}
.product-details-page .product-details-content .aditional-info > li span {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  display: inline-block;
  margin-right: 5px;
}
.product-details-page .product-details-content .aditional-info > li a {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  transition: 0.35s;
  margin-bottom: 0;
}
.product-details-page .product-details-content .aditional-info > li a:hover {
  color: var(--title-color);
}
.product-details-page .product-description-and-review-area .nav2 {
  gap: 20px;
  justify-content: start;
  width: 100%;
  line-height: 1;
  border: 1px solid var(--borders-color);
  border-radius: 30px;
  padding: 14px 20px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .product-details-page .product-description-and-review-area .nav2 {
    padding: 12px 10px;
    gap: 10px;
  }
}
.product-details-page .product-description-and-review-area .nav2 .nav-link {
  color: var(--text-color);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  padding: 6px 15px;
  border-radius: 15px;
  line-height: 1;
  background-color: transparent;
}
@media (max-width: 576px) {
  .product-details-page .product-description-and-review-area .nav2 .nav-link {
    font-size: 16px;
    padding: 6px 12px;
  }
}
.product-details-page .product-description-and-review-area .nav2 .nav-link.active {
  background-color: var(--black-color);
  color: var(--white-color);
}
.product-details-page .product-description-and-review-area .tab-content2 .description p {
  margin-bottom: 25px;
}
.product-details-page .product-description-and-review-area .tab-content2 .description p:last-child {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .product-details-page .product-description-and-review-area .tab-content2 .description p {
    font-size: 16px;
  }
}
.product-details-page .product-description-and-review-area .tab-content2 .comment-and-form-area .comment-area .comment-title {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .product-details-page .product-description-and-review-area .tab-content2 .comment-and-form-area .comment-area .comment-title {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .product-details-page .product-description-and-review-area .tab-content2 .comment-and-form-area .comment-area .comment-title {
    font-size: 26px;
  }
}
.product-details-page .product-description-and-review-area .tab-content2 .review-form {
  border: 1px solid var(--borders-color);
  padding: 50px 40px;
  border-radius: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product-details-page .product-description-and-review-area .tab-content2 .review-form {
    padding: 40px 20px;
  }
}
@media (max-width: 767px) {
  .product-details-page .product-description-and-review-area .tab-content2 .review-form {
    padding: 40px 30px;
  }
}
@media (max-width: 576px) {
  .product-details-page .product-description-and-review-area .tab-content2 .review-form {
    padding: 35px 15px;
  }
}
.product-details-page .product-description-and-review-area .tab-content2 .review-form .number-of-review {
  line-height: 1;
  margin-bottom: 30px;
}
.product-details-page .product-description-and-review-area .tab-content2 .review-form .number-of-review h4 {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 0;
}
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner input {
  background: #F0F0F0;
  border-color: transparent;
}
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner input:focus {
  border-color: var(--black-color);
}
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner textarea {
  background: #F0F0F0;
  min-height: 150px;
  border-color: transparent;
}
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner textarea:focus {
  border-color: var(--black-color);
}
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area {
  margin-bottom: 15px;
}
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area p {
  margin-bottom: 5px;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
}
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area .rate {
  float: left;
}
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area .rate:not(:checked) > input {
  position: absolute;
  top: -9999px;
}
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area .rate:not(:checked) > label {
  float: right;
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  color: #ccc;
  padding-right: 8px;
  display: inline-block;
  margin-right: 8px;
}
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area .rate:not(:checked) > label::before {
  content: "\f586";
  font-family: bootstrap-icons !important;
}
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area .rate input:checked ~ label {
  color: #DDA701;
}
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area .rate:not(:checked) > label:hover,
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area .rate:not(:checked) > label:hover ~ label {
  color: #DDA701;
}
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area input:checked + label:hover,
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area input:checked + label:hover ~ label,
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area input:checked ~ label:hover,
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area input:checked ~ label:hover ~ label,
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area label:hover ~ input:checked ~ label {
  color: #DDA701;
}
.product-details-page .product-description-and-review-area .tab-content2 .review-form .primary-btn2 {
  padding: 18px 35px;
}
.product-details-page .product-description-and-review-area .tab-content2 .review-form .primary-btn2 svg {
  fill: var(--white-color);
}

.comment-and-form-area .comment-area .comment {
  margin: 0;
  padding: 0;
  list-style: none;
}
.comment-and-form-area .comment-area .comment > li {
  margin-bottom: 40px;
}
.comment-and-form-area .comment-area .comment > li > .single-comment-area {
  margin-bottom: 24px;
}
.comment-and-form-area .comment-area .comment > li:last-child {
  margin-bottom: 0;
}
.comment-and-form-area .comment-area .comment .single-comment-area {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 576px) {
  .comment-and-form-area .comment-area .comment .single-comment-area {
    gap: 15px;
    flex-wrap: wrap;
  }
}
.comment-and-form-area .comment-area .comment .single-comment-area .author-img img {
  max-width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: unset;
  border-radius: 50%;
}
.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .author-name-deg {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .author-name-deg h3,
.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .author-name-deg h6 {
  line-height: 1;
  margin-bottom: 0;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .comment-and-form-area .comment-area .comment .single-comment-area .comment-content .author-name-deg h3,
  .comment-and-form-area .comment-area .comment .single-comment-area .comment-content .author-name-deg h6 {
    font-size: 16px;
  }
}
.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .author-name-deg span {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 576px) {
  .comment-and-form-area .comment-area .comment .single-comment-area .comment-content .author-name-deg span {
    font-size: 14px;
  }
}
.comment-and-form-area .comment-area .comment .single-comment-area .comment-content p {
  color: var(--text-color);
  margin-bottom: 12px;
}
@media (max-width: 576px) {
  .comment-and-form-area .comment-area .comment .single-comment-area .comment-content p {
    font-size: 15px;
  }
}
.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .replay-btn {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  cursor: pointer;
  transition: 0.35s;
}
.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .replay-btn svg {
  transition: 0.35s;
  fill: var(--title-color);
}
.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .replay-btn:hover {
  color: var(--title-color);
}
.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .replay-btn:hover svg {
  fill: var(--title-color);
}
.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .review-item-list {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 25px;
  max-width: 590px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 45px;
  flex-wrap: wrap;
  row-gap: 25px;
  padding-top: 10px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .comment-and-form-area .comment-area .comment .single-comment-area .comment-content .review-item-list {
    gap: 35px;
    row-gap: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .comment-and-form-area .comment-area .comment .single-comment-area .comment-content .review-item-list {
    gap: 24px;
    row-gap: 25px;
  }
}
@media (max-width: 576px) {
  .comment-and-form-area .comment-area .comment .single-comment-area .comment-content .review-item-list {
    row-gap: 20px;
  }
}
.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .review-item-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .review-item-list li span {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}
.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .review-item-list li .star-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .review-item-list li .star-list li i {
  color: #DDA701;
}
.comment-and-form-area .comment-area .comment .comment-replay {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 70px;
  border-top: 1px solid var(--borders-color);
  padding-top: 24px;
}
@media (max-width: 576px) {
  .comment-and-form-area .comment-area .comment .comment-replay {
    margin-left: 25px;
  }
}
.comment-and-form-area .comment-area .comment .comment-replay > li {
  margin-bottom: 30px;
}
.comment-and-form-area .comment-area .comment .comment-replay > li:last-child {
  margin-bottom: 0;
}
.comment-and-form-area .inquiry-form {
  background: #F0F0F0;
  padding: 45px 60px 60px;
}
@media (max-width: 1399px) {
  .comment-and-form-area .inquiry-form {
    padding: 45px 50px 60px;
  }
}
@media (max-width: 1199px) {
  .comment-and-form-area .inquiry-form {
    padding: 45px 40px;
  }
}
@media (max-width: 767px) {
  .comment-and-form-area .inquiry-form {
    padding: 40px 25px;
  }
}
@media (max-width: 576px) {
  .comment-and-form-area .inquiry-form {
    padding: 40px 20px;
  }
}
.comment-and-form-area .inquiry-form .form-wrap {
  margin-top: 35px;
}
@media (max-width: 576px) {
  .comment-and-form-area .inquiry-form .form-wrap {
    margin-top: 30px;
  }
}
.comment-and-form-area .inquiry-form .form-wrap .form-inner input,
.comment-and-form-area .inquiry-form .form-wrap .form-inner textarea {
  background-color: var(--white-color);
  font-size: 16px;
  border: 1px solid transparent;
  border-radius: 0;
}
.comment-and-form-area .inquiry-form .form-wrap .form-inner input::-moz-placeholder, .comment-and-form-area .inquiry-form .form-wrap .form-inner textarea::-moz-placeholder {
  color: rgba(var(--title-color-opc), 0.5);
  font-weight: 400;
}
.comment-and-form-area .inquiry-form .form-wrap .form-inner input::placeholder,
.comment-and-form-area .inquiry-form .form-wrap .form-inner textarea::placeholder {
  color: rgba(var(--title-color-opc), 0.5);
  font-weight: 400;
}
.comment-and-form-area .inquiry-form .form-wrap .form-inner input:focus,
.comment-and-form-area .inquiry-form .form-wrap .form-inner textarea:focus {
  border-color: var(--black-color);
}
.comment-and-form-area .inquiry-form .form-wrap .form-inner2 .form-check-input {
  border-color: var(--black-color);
  height: 14px;
  width: 14px;
}
.comment-and-form-area .inquiry-form .form-wrap .form-inner2 .form-check-input:checked {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}

.related-product-section h3 {
  margin-bottom: 25px;
}
.related-product-section .related-product-slider-area {
  position: relative;
}
@media (max-width: 576px) {
  .related-product-section .related-product-slider-area .slider-btn-grp {
    display: none;
  }
}
.related-product-section .related-product-slider-area .slider-btn-grp .slider-btn {
  position: absolute;
  top: calc(50% - 56px);
  left: -20px;
  z-index: 1;
  opacity: 0;
  transition: 0.5s;
}
.related-product-section .related-product-slider-area .slider-btn-grp .slider-btn svg {
  fill: none;
  stroke: var(--black-color);
}
.related-product-section .related-product-slider-area .slider-btn-grp .slider-btn.related-product-slider-next {
  left: unset;
  right: -20px;
}
.related-product-section .related-product-slider-area .slider-btn-grp .slider-btn:hover svg {
  stroke: var(--white-color);
}
.related-product-section .related-product-slider-area:hover .slider-btn-grp .slider-btn {
  opacity: 1;
}

/*=====================================
  87. Terms & Condition Page CSS
========================================*/
@media (max-width: 576px) {
  .terms-and-conditions-page .terms-and-conditions-top-area {
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--borders-color);
  }
}
.terms-and-conditions-page .terms-and-conditions-top-area .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border: 1px solid var(--borders-color);
  border-radius: 10px;
  max-width: 350px;
  margin-bottom: 25px;
}
.terms-and-conditions-page .terms-and-conditions-top-area .tag strong {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .terms-and-conditions-page .terms-and-conditions-top-area .tag strong {
    font-size: 15px;
  }
}
.terms-and-conditions-page .terms-and-conditions-top-area .tag svg {
  fill: var(--borders-color);
}
.terms-and-conditions-page .terms-and-conditions-top-area .tag span {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
}
@media (max-width: 576px) {
  .terms-and-conditions-page .terms-and-conditions-top-area .tag span {
    font-size: 15px;
  }
}
.terms-and-conditions-page .terms-and-conditions-top-area p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .terms-and-conditions-page .terms-and-conditions-top-area p {
    font-size: 16px;
  }
}
.terms-and-conditions-page .divider-line {
  fill: var(--borders-color);
  width: 100%;
  margin-top: 30px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .terms-and-conditions-page .divider-line {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .terms-and-conditions-page .divider-line {
    display: none;
  }
}
.terms-and-conditions-page .terms-and-conditions h2 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .terms-and-conditions-page .terms-and-conditions h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }
}
.terms-and-conditions-page .terms-and-conditions p {
  color: var(--text-color);
  font-family: var(--font-montserrat);
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .terms-and-conditions-page .terms-and-conditions p {
    font-size: 16px;
  }
}
.terms-and-conditions-page .terms-and-conditions p:last-child {
  margin-bottom: 0;
}
.terms-and-conditions-page .terms-and-conditions ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 50px;
  margin-bottom: 5px;
  padding-top: 5px;
}
@media (max-width: 767px) {
  .terms-and-conditions-page .terms-and-conditions ul {
    padding-left: 20px;
  }
}
.terms-and-conditions-page .terms-and-conditions ul li {
  color: var(--text-color);
  font-family: var(--font-montserrat);
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .terms-and-conditions-page .terms-and-conditions ul li {
    font-size: 16px;
  }
}
.terms-and-conditions-page .terms-and-conditions ul li strong {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
}

/*=====================================
  88. Project Details Page CSS
========================================*/
.portfolio-details-page .portfolio-big-img {
  margin-bottom: 70px;
  border-radius: 10px;
  min-height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 576px) {
  .portfolio-details-page .portfolio-big-img {
    min-height: 400px;
  }
}
.portfolio-details-page .portfolio-big-img.two {
  min-height: 450px;
}
@media (max-width: 767px) {
  .portfolio-details-page .portfolio-big-img.two {
    min-height: 400px;
  }
}
.portfolio-details-page .project-details-sidebar .project-info-wrap {
  border: 1px solid rgba(var(--black-color-opc), 0.1);
  background: #FAF9F9;
  padding: 35px 30px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1399px) {
  .portfolio-details-page .project-details-sidebar .project-info-wrap {
    padding: 35px 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .portfolio-details-page .project-details-sidebar .project-info-wrap {
    padding: 30px 20px;
  }
}
.portfolio-details-page .project-details-sidebar .project-info-wrap .project-info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.portfolio-details-page .project-details-sidebar .project-info-wrap .project-info li {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(var(--black-color-opc), 0.1);
  padding-bottom: 25px;
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .portfolio-details-page .project-details-sidebar .project-info-wrap .project-info li {
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
}
.portfolio-details-page .project-details-sidebar .project-info-wrap .project-info li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.portfolio-details-page .project-details-sidebar .project-info-wrap .project-info li .icon svg {
  fill: #010ED0;
}
.portfolio-details-page .project-details-sidebar .project-info-wrap .project-info li .content {
  line-height: 1;
}
.portfolio-details-page .project-details-sidebar .project-info-wrap .project-info li .content span {
  color: rgba(var(--title-color-opc), 0.5);
  font-family: var(--font-poppins);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
}
.portfolio-details-page .project-details-sidebar .project-info-wrap .project-info li .content h5,
.portfolio-details-page .project-details-sidebar .project-info-wrap .project-info li .content h4 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .portfolio-details-page .project-details-sidebar .project-info-wrap .project-info li .content h5,
  .portfolio-details-page .project-details-sidebar .project-info-wrap .project-info li .content h4 {
    font-size: 16px;
  }
}
.portfolio-details-page .project-details-sidebar .project-info-wrap::before {
  content: url(../img/innerpages/project-dt-project-info-vector.svg);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.portfolio-details-page .project-details-sidebar .sidebar-banner {
  position: relative;
}
.portfolio-details-page .project-details-sidebar .sidebar-banner img {
  border-radius: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .portfolio-details-page .project-details-sidebar .sidebar-banner img {
    min-height: 420px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.portfolio-details-page .project-details-sidebar .sidebar-banner .banner-content-wrap {
  background: linear-gradient(189.54deg, rgba(0, 0, 0, 0.1) 6.82%, rgba(0, 0, 0, 0.9) 78.76%, rgba(0, 0, 0, 0.9) 91.39%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  padding: 35px;
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .portfolio-details-page .project-details-sidebar .sidebar-banner .banner-content-wrap {
    padding: 35px 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .portfolio-details-page .project-details-sidebar .sidebar-banner .banner-content-wrap {
    padding: 35px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .portfolio-details-page .project-details-sidebar .sidebar-banner .banner-content-wrap {
    padding: 50px 40px;
  }
}
@media (max-width: 576px) {
  .portfolio-details-page .project-details-sidebar .sidebar-banner .banner-content-wrap {
    padding: 30px 20px;
  }
}
.portfolio-details-page .project-details-sidebar .sidebar-banner .banner-content-wrap h2 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 25px;
}
@media (max-width: 1399px) {
  .portfolio-details-page .project-details-sidebar .sidebar-banner .banner-content-wrap h2 {
    font-size: 37px;
  }
}
@media (max-width: 1199px) {
  .portfolio-details-page .project-details-sidebar .sidebar-banner .banner-content-wrap h2 {
    font-size: 33px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .portfolio-details-page .project-details-sidebar .sidebar-banner .banner-content-wrap h2 {
    font-size: 50px;
    max-width: 400px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .portfolio-details-page .project-details-sidebar .sidebar-banner .banner-content-wrap h2 {
    font-size: 45px;
    max-width: 400px;
  }
}
.portfolio-details-page .project-details-sidebar .sidebar-banner .banner-content-wrap h2 span {
  color: var(--primary-color5);
  font-weight: 700;
}
.portfolio-details-page .project-details-sidebar .sidebar-banner .banner-content-wrap .primary-btn2 {
  padding: 16px 31px;
  border-radius: 10px;
  color: var(--primary-color1);
  font-size: 18px;
}
@media (max-width: 576px) {
  .portfolio-details-page .project-details-sidebar .sidebar-banner .banner-content-wrap .primary-btn2 {
    font-size: 17px;
    padding: 15px 28px;
  }
}
.portfolio-details-page .project-details-sidebar .sidebar-banner .banner-content-wrap .primary-btn2:hover {
  color: var(--white-color);
}

/*=====================================
  89. Case Study Details Page CSS
========================================*/
.case-study-details-sidebar .case-study-details-info-wrap {
  border: 1px solid rgba(var(--black-color-opc), 0.1);
  background: #F6F7FF;
  padding: 35px 30px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .case-study-details-sidebar .case-study-details-info-wrap {
    padding: 35px 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .case-study-details-sidebar .case-study-details-info-wrap {
    padding: 30px 20px;
  }
}
.case-study-details-sidebar .case-study-details-info-wrap .case-study-info-wrap .case-study-info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.case-study-details-sidebar .case-study-details-info-wrap .case-study-info-wrap .case-study-info li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-bottom: 1px solid var(--white-color);
  padding-bottom: 25px;
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .case-study-details-sidebar .case-study-details-info-wrap .case-study-info-wrap .case-study-info li {
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
}
.case-study-details-sidebar .case-study-details-info-wrap .case-study-info-wrap .case-study-info li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.case-study-details-sidebar .case-study-details-info-wrap .case-study-info-wrap .case-study-info li .content {
  line-height: 1;
  text-align: center;
}
.case-study-details-sidebar .case-study-details-info-wrap .case-study-info-wrap .case-study-info li .content span {
  color: rgba(var(--title-color-opc), 0.5);
  font-family: var(--font-poppins);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
}
.case-study-details-sidebar .case-study-details-info-wrap .case-study-info-wrap .case-study-info li .content h5,
.case-study-details-sidebar .case-study-details-info-wrap .case-study-info-wrap .case-study-info li .content h4 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .case-study-details-sidebar .case-study-details-info-wrap .case-study-info-wrap .case-study-info li .content h5,
  .case-study-details-sidebar .case-study-details-info-wrap .case-study-info-wrap .case-study-info li .content h4 {
    font-size: 16px;
  }
}
.case-study-details-sidebar .case-study-details-info-wrap .download-btns {
  padding: 0;
  margin: 0;
  list-style: none;
}
.case-study-details-sidebar .case-study-details-info-wrap .download-btns li {
  margin-bottom: 20px;
}
.case-study-details-sidebar .case-study-details-info-wrap .download-btns li .primary-btn2 {
  width: 100%;
  justify-content: center;
  padding: 19px 27px;
  border-radius: 10px;
}
.case-study-details-sidebar .case-study-details-info-wrap .download-btns li:first-child .primary-btn2 {
  background-color: #E5252A;
  color: var(--white-color);
}
.case-study-details-sidebar .case-study-details-info-wrap .download-btns li:first-child .primary-btn2 svg {
  fill: none;
  stroke: var(--white-color);
}
.case-study-details-sidebar .case-study-details-info-wrap .download-btns li:last-child {
  margin-bottom: 0;
}
.case-study-details-sidebar .case-study-details-info-wrap .download-btns li:last-child .primary-btn2 svg {
  fill: none;
  stroke: var(--white-color);
}
.case-study-details-sidebar .case-study-tags {
  padding: 42px 28px;
  border-radius: 15px;
  border: 1px solid var(--borders-color);
  background-color: #F6F7FF;
  margin-bottom: 30px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .case-study-details-sidebar .case-study-tags {
    padding: 40px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .case-study-details-sidebar .case-study-tags {
    padding: 25px 15px;
  }
}
@media (max-width: 576px) {
  .case-study-details-sidebar .case-study-tags {
    padding: 25px 15px;
    border-radius: 10px;
  }
}
.case-study-details-sidebar .case-study-tags h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: underline;
  margin-bottom: 30px;
}
.case-study-details-sidebar .case-study-tags .tag-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  row-gap: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .case-study-details-sidebar .case-study-tags .tag-list {
    gap: 11px;
  }
}
.case-study-details-sidebar .case-study-tags .tag-list li a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 13px;
  font-weight: 500;
  display: block;
  line-height: 1;
  transition: 0.5s;
  text-transform: uppercase;
}
.case-study-details-sidebar .case-study-tags .tag-list li:hover a {
  color: var(--primary-color1);
}
.case-study-details-sidebar .social-area {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: 1px solid #EEEEEE;
  border-radius: 100px;
  padding: 9px 20px;
}
.case-study-details-sidebar .social-area h6,
.case-study-details-sidebar .social-area h4 {
  line-height: 1;
  margin-bottom: 0;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 18px;
  font-weight: 600;
}
.case-study-details-sidebar .social-area ul {
  padding: 0;
  margin: 0;
  list-style: none;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 15px;
}
.case-study-details-sidebar .social-area ul li {
  line-height: 1;
}
.case-study-details-sidebar .social-area ul li a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #F0F0F0;
  color: var(--text-color);
  transition: 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-study-details-sidebar .social-area ul li a i {
  font-size: 14px;
}
.case-study-details-sidebar .social-area ul li a i.bi-twitter-x {
  font-size: 12px;
}
.case-study-details-sidebar .social-area ul li a:hover {
  color: var(--white-color);
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}

/*=====================================
  90. Career Page CSS
========================================*/
.title-text {
  font-family: var(--font-montserrat);
  font-size: 55px;
  font-weight: 700;
  line-height: 65px;
  margin-bottom: 0;
  max-width: 490px;
}
@media (max-width: 1399px) {
  .title-text {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  .title-text {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .title-text {
    line-height: 55px;
    font-size: 42px;
  }
}
@media (max-width: 576px) {
  .title-text {
    font-size: 33px;
    line-height: 45px;
  }
}

.career-feature-section .title-area .content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .career-feature-section .title-area .content p {
    font-size: 17px;
  }
}
.career-feature-section .title-area .content .button-area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .career-feature-section .title-area .content .button-area {
    margin-top: 15px;
  }
}
@media (max-width: 576px) {
  .career-feature-section .title-area .content .button-area {
    flex-wrap: wrap;
  }
}
.career-feature-section .title-area .content .button-area span {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}
.career-feature-section .title-area .content .button-area a {
  color: var(--primary-color1);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.5s;
}
.career-feature-section .title-area .content .button-area a svg {
  fill: none;
  stroke: var(--primary-color3);
  transition: 0.5s;
}
.career-feature-section .title-area .content .button-area a:hover {
  color: var(--title-color);
}
.career-feature-section .title-area .content .button-area a:hover svg {
  stroke: var(--title-color);
  transform: rotate(45deg);
}
.career-feature-section .single-feature {
  padding: 35px 25px;
  border-radius: 10px;
  background-color: #F4DE9B;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .career-feature-section .single-feature {
    padding: 35px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .career-feature-section .single-feature {
    padding: 30px 15px;
  }
}
@media (max-width: 576px) {
  .career-feature-section .single-feature {
    padding: 30px 20px;
  }
}
.career-feature-section .single-feature .icon {
  margin-bottom: 25px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .career-feature-section .single-feature .icon {
    margin-bottom: 20px;
  }
}
.career-feature-section .single-feature .icon svg {
  fill: var(--dark-title-color);
}
.career-feature-section .single-feature h5,
.career-feature-section .single-feature h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 15px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .career-feature-section .single-feature h5,
  .career-feature-section .single-feature h3 {
    margin-bottom: 10px;
    font-size: 21px;
  }
}
.career-feature-section .single-feature p {
  color: #545454;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .career-feature-section .single-feature p {
    font-size: 15px;
  }
}
.career-feature-section .single-feature:hover .icon svg {
  animation: bounceIn 1.2s linear;
}
.career-feature-section .single-feature.two {
  background-color: #DDD9D6;
}
.career-feature-section .single-feature.three {
  background-color: #D4DFFC;
}
.career-feature-section .single-feature.four {
  background-color: #C1E8CF;
}

.career-page-thumb {
  min-height: 780px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .career-page-thumb {
    min-height: 720px;
  }
}
@media (max-width: 1199px) {
  .career-page-thumb {
    min-height: 680px;
  }
}
@media (max-width: 991px) {
  .career-page-thumb {
    min-height: 650px;
  }
}
@media (max-width: 767px) {
  .career-page-thumb {
    min-height: 600px;
    background-position: 25%;
  }
}
@media (max-width: 576px) {
  .career-page-thumb {
    min-height: 500px;
  }
}
.career-page-thumb .thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.2);
}
.career-page-thumb .thumb-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.career-page-benefit-section .title-area .content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .career-page-benefit-section .title-area .content p {
    font-size: 17px;
  }
}
.career-page-benefit-section .single-benefit {
  padding: 27px 30px;
  border-radius: 10px;
  border: 1px solid var(--borders-color);
  min-height: 118px;
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .career-page-benefit-section .single-benefit {
    padding: 27px 20px;
    min-height: 115px;
  }
}
@media (max-width: 991px) {
  .career-page-benefit-section .single-benefit {
    padding: 25px 20px;
    height: 100%;
  }
}
@media (max-width: 576px) {
  .career-page-benefit-section .single-benefit {
    padding: 20px 20px;
    min-height: 100px;
  }
}
.career-page-benefit-section .single-benefit h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 0;
  display: flex;
  gap: 8px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .career-page-benefit-section .single-benefit h3 {
    font-size: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .career-page-benefit-section .single-benefit h3 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .career-page-benefit-section .single-benefit h3 {
    font-size: 18px;
  }
}
.career-page-benefit-section .single-benefit.two {
  background-color: #F4DE9B;
  border-color: #F4DE9B;
}
.career-page-benefit-section .single-benefit.two h5 {
  color: var(--title-color);
}
.career-page-benefit-section .single-benefit.three {
  background-color: #D4DFFC;
  border-color: #D4DFFC;
}
.career-page-benefit-section .single-benefit.three h5 {
  color: var(--title-color);
}
.career-page-benefit-section .single-benefit.four {
  background-color: #FDEC9E;
  border-color: #FDEC9E;
}
.career-page-benefit-section .single-benefit.four h5 {
  color: var(--title-color);
}
.career-page-benefit-section .single-benefit.five {
  background-color: #C1E8CF;
  border-color: #C1E8CF;
}
.career-page-benefit-section .single-benefit.five h5 {
  color: var(--title-color);
}
.career-page-benefit-section .single-benefit.six {
  background-color: #DDD9D6;
  border-color: #DDD9D6;
}
.career-page-benefit-section .single-benefit.six h5 {
  color: var(--title-color);
}

/*=====================================
  91. Job Post Section CSS
========================================*/
.job-post-section .job-post-wrapper {
  background-color: #F5F7FA;
  border-radius: 10px;
  padding: 80px 100px;
}
@media (max-width: 1199px) {
  .job-post-section .job-post-wrapper {
    padding: 70px 30px;
  }
}
@media (max-width: 576px) {
  .job-post-section .job-post-wrapper {
    padding: 70px 20px;
  }
}
.job-post-section .job-title {
  color: rgba(var(--title-color-opc), 0.7);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  text-align: center;
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  .job-post-section .job-title {
    font-size: 25px;
  }
}
@media (max-width: 576px) {
  .job-post-section .job-title {
    font-size: 22px;
  }
}
.job-post-section .single-job-card {
  padding: 35px 30px;
  background-color: var(--white-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
@media (max-width: 991px) {
  .job-post-section .single-job-card {
    padding: 35px 20px;
  }
}
@media (max-width: 576px) {
  .job-post-section .single-job-card {
    padding: 30px 20px;
    flex-wrap: wrap;
  }
}
.job-post-section .single-job-card .job-list-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .job-post-section .single-job-card .job-list-content {
    max-width: 730px;
  }
}
@media (max-width: 1199px) {
  .job-post-section .single-job-card .job-list-content {
    max-width: 650px;
  }
}
@media (max-width: 991px) {
  .job-post-section .single-job-card .job-list-content {
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .job-post-section .single-job-card .job-list-content {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.job-post-section .single-job-card .job-list-content .post-name {
  line-height: 1;
  max-width: 320px;
  width: 100%;
}
@media (max-width: 991px) {
  .job-post-section .single-job-card .job-list-content .post-name {
    max-width: 215px;
    min-width: 215px;
  }
}
@media (max-width: 767px) {
  .job-post-section .single-job-card .job-list-content .post-name {
    max-width: unset;
    min-width: unset;
  }
}
.job-post-section .single-job-card .job-list-content .post-name h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.3;
}
@media (max-width: 1399px) {
  .job-post-section .single-job-card .job-list-content .post-name h3 {
    font-size: 23px;
  }
}
@media (max-width: 1199px) {
  .job-post-section .single-job-card .job-list-content .post-name h3 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .job-post-section .single-job-card .job-list-content .post-name h3 {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .job-post-section .single-job-card .job-list-content .post-name h3 {
    font-size: 21px;
  }
}
@media (max-width: 576px) {
  .job-post-section .single-job-card .job-list-content .post-name h3 {
    font-size: 19px;
  }
}
.job-post-section .single-job-card .job-list-content .job-discription ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 380px;
}
@media (max-width: 1199px) {
  .job-post-section .single-job-card .job-list-content .job-discription ul {
    width: 300px;
  }
}
@media (max-width: 991px) {
  .job-post-section .single-job-card .job-list-content .job-discription ul {
    max-width: 260px;
  }
}
@media (max-width: 576px) {
  .job-post-section .single-job-card .job-list-content .job-discription ul {
    max-width: unset;
    flex-direction: column;
    gap: 20px;
  }
}
.job-post-section .single-job-card .job-list-content .job-discription ul li {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 767px) {
  .job-post-section .single-job-card .job-list-content .job-discription ul li {
    font-size: 15px;
  }
}
.job-post-section .single-job-card .job-list-content .job-discription ul li .title {
  display: block;
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .job-post-section .single-job-card .job-list-content .job-discription ul li .title {
    font-size: 15px;
    margin-bottom: 12px;
  }
}
.job-post-section .single-job-card .icon {
  min-width: 49px;
  max-width: 49px;
  height: 49px;
  border: 1px solid #EEEEEE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.job-post-section .single-job-card .icon svg {
  transition: all 0.5s;
  fill: var(--title-color);
}
.job-post-section .single-job-card:hover .icon {
  border-color: var(--primary-color1);
  background-color: var(--primary-color1);
}
.job-post-section .single-job-card:hover .icon svg {
  fill: var(--white-color);
}

/*=====================================
  92. Career Opportunities Section CSS
========================================*/
.career-opportunities .section-title h2 {
  text-transform: uppercase;
  margin-bottom: 20px;
}
.career-opportunities p {
  color: rgba(var(--title-color-opc), 0.5);
  font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 30px;
  line-height: 48px;
  text-align: center;
}
@media (max-width: 1199px) {
  .career-opportunities p {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .career-opportunities p {
    font-size: 20px;
    line-height: 37px;
  }
}
@media (max-width: 576px) {
  .career-opportunities p {
    font-size: 18px;
    line-height: 34px;
  }
}
.career-opportunities p span {
  color: var(--title-color);
}

.career-img-area img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 670px;
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .career-img-area img {
    min-height: 600px;
  }
}
@media (max-width: 767px) {
  .career-img-area img {
    min-height: 500px;
  }
}
@media (max-width: 576px) {
  .career-img-area img {
    min-height: 350px;
  }
}

/*=====================================
  93. Industries Details Page CSS
========================================*/
.industries-details-top-section .industries-img img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  min-height: 420px;
}
@media (max-width: 991px) {
  .industries-details-top-section .industries-img img {
    min-height: 390px;
  }
}
@media (max-width: 576px) {
  .industries-details-top-section .industries-img img {
    min-height: 340px;
  }
}

.industries-details-content h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 40px;
  line-height: 55px;
  text-transform: capitalize;
  margin-bottom: 0;
  max-width: 569px;
}
@media (max-width: 1399px) {
  .industries-details-content h3 {
    font-size: 34px;
  }
}
@media (max-width: 1199px) {
  .industries-details-content h3 {
    max-width: unset;
    font-size: 31px;
  }
}
@media (max-width: 991px) {
  .industries-details-content h3 {
    line-height: 47px;
  }
}
@media (max-width: 767px) {
  .industries-details-content h3 {
    font-size: 29px;
    line-height: 45px;
  }
}
@media (max-width: 576px) {
  .industries-details-content h3 {
    font-size: 23px;
    line-height: 38px;
  }
}
.industries-details-content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .industries-details-content p {
    font-size: 15px;
  }
}

.industries-overview-section .industries-overview-img img {
  min-height: 509px;
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .industries-overview-section .industries-overview-img img {
    min-height: 450px;
    max-height: 450px;
  }
}
@media (max-width: 576px) {
  .industries-overview-section .industries-overview-img img {
    min-height: 400px;
    max-height: 400px;
  }
}
.industries-overview-section .industries-overview-content h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 50px;
  line-height: 65px;
  text-transform: capitalize;
  margin-bottom: 30px;
  max-width: 627px;
}
@media (max-width: 1399px) {
  .industries-overview-section .industries-overview-content h3 {
    font-size: 43px;
    line-height: 62px;
  }
}
@media (max-width: 1199px) {
  .industries-overview-section .industries-overview-content h3 {
    font-size: 36px;
    line-height: 53px;
  }
}
@media (max-width: 991px) {
  .industries-overview-section .industries-overview-content h3 {
    max-width: unset;
  }
}
@media (max-width: 767px) {
  .industries-overview-section .industries-overview-content h3 {
    font-size: 31px;
    line-height: 46px;
  }
}
@media (max-width: 576px) {
  .industries-overview-section .industries-overview-content h3 {
    font-size: 26px;
    line-height: 42px;
  }
}
.industries-overview-section .industries-overview-content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
}
.industries-overview-section.two .industries-overview-img img {
  min-height: 590px;
}
@media (max-width: 991px) {
  .industries-overview-section.two .industries-overview-img img {
    min-height: 450px;
    max-height: 450px;
  }
}
@media (max-width: 576px) {
  .industries-overview-section.two .industries-overview-img img {
    min-height: 400px;
    max-height: 400px;
  }
}
.industries-overview-section.two .industries-overview-content {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .industries-overview-section.two .industries-overview-content {
    margin-bottom: 50px;
  }
}

.industries-details-list-wrapper h3 {
  color: var(--title-color);
  text-align: center;
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 50px;
  line-height: 1.3;
  text-transform: capitalize;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .industries-details-list-wrapper h3 {
    font-size: 46px;
  }
}
@media (max-width: 1199px) {
  .industries-details-list-wrapper h3 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .industries-details-list-wrapper h3 {
    font-size: 38px;
    margin-bottom: 35px;
  }
}
@media (max-width: 576px) {
  .industries-details-list-wrapper h3 {
    font-size: 31px;
    margin-bottom: 33px;
  }
}
.industries-details-list-wrapper .industries-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  row-gap: 40px;
}
@media (max-width: 1399px) {
  .industries-details-list-wrapper .industries-list {
    gap: 39px;
    row-gap: 35px;
  }
}
@media (max-width: 991px) {
  .industries-details-list-wrapper .industries-list {
    gap: 26px;
    row-gap: 35px;
  }
}
@media (max-width: 576px) {
  .industries-details-list-wrapper .industries-list {
    flex-direction: column;
  }
}
.industries-details-list-wrapper .industries-list .single-industries-list {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 17px;
  display: flex;
  gap: 8px;
  align-items: center;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .industries-details-list-wrapper .industries-list .single-industries-list {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .industries-details-list-wrapper .industries-list .single-industries-list {
    font-size: 14px;
  }
}
.industries-details-list-wrapper .industries-list .single-industries-list svg {
  fill: var(--primary-color1);
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .industries-details-list-wrapper .industries-list .single-industries-list svg {
    width: 17px;
  }
}
.industries-details-list-wrapper .industries-list .single-industries-list svg path {
  fill: var(--white-color);
}

/*=====================================
  94. Service Details Page CSS
========================================*/
.service-details-img-area .service-content-and-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .service-details-img-area .service-content-and-tag {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.service-details-img-area .service-content-and-tag h2 {
  max-width: 536px;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .service-details-img-area .service-content-and-tag h2 {
    max-width: 420px;
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .service-details-img-area .service-content-and-tag h2 {
    max-width: unset;
  }
}
@media (max-width: 576px) {
  .service-details-img-area .service-content-and-tag h2 {
    font-size: 34px;
    line-height: 41px;
  }
}
.service-details-img-area .service-content-and-tag h2 span {
  padding-left: 50px;
  color: rgba(var(--title-color-opc), 0.5);
}
@media (max-width: 576px) {
  .service-details-img-area .service-content-and-tag h2 span {
    padding-left: 30px;
  }
}
.service-details-img-area .service-content-and-tag ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 15px;
}
@media (max-width: 576px) {
  .service-details-img-area .service-content-and-tag ul {
    flex-wrap: wrap;
  }
}
.service-details-img-area .service-content-and-tag ul li {
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  padding: 9px 15px;
  border: 1px solid rgba(var(--title-color-opc), 0.1);
  border-radius: 50px;
  transition: all 0.5s;
}
@media (max-width: 1199px) {
  .service-details-img-area .service-content-and-tag ul li {
    font-size: 10px;
  }
}
.service-details-img-area .service-content-and-tag ul li:hover {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
  color: var(--white-color);
}
.service-details-img-area .service-big-img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  min-height: 530px;
}
@media (max-width: 767px) {
  .service-details-img-area .service-big-img {
    min-height: 420px;
  }
}
@media (max-width: 576px) {
  .service-details-img-area .service-big-img {
    min-height: 380px;
  }
}

.service-details-area .details-content-wrapper h3 {
  font-size: 40px;
}
@media (max-width: 991px) {
  .service-details-area .details-content-wrapper h3 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .service-details-area .details-content-wrapper h3 {
    font-size: 30px;
  }
}

/*=====================================
 95. Blog Details Page
========================================*/
.blog-details-page .line-break {
  height: 15px;
  display: block;
}
@media (max-width: 576px) {
  .blog-details-page .line-break {
    height: 10px;
  }
}
.blog-details-page .blog-details-img {
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 500px;
}
@media (max-width: 767px) {
  .blog-details-page .blog-details-img {
    min-height: 420px;
  }
}
@media (max-width: 576px) {
  .blog-details-page .blog-details-img {
    min-height: 350px;
  }
}
.blog-details-page .blog-details-author-meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.blog-details-page .blog-details-author-meta ul li {
  color: rgba(var(--title-color-opc), 0.5);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.3px;
  margin-right: 50px;
  position: relative;
  transition: 0.25s ease;
  display: flex;
  align-items: center;
}
@media (min-width: 576px) and (max-width: 767px) {
  .blog-details-page .blog-details-author-meta ul li {
    margin-right: 20px;
  }
}
@media (max-width: 576px) {
  .blog-details-page .blog-details-author-meta ul li {
    margin-right: 16px;
    font-size: 12px;
    line-height: 1.2;
  }
}
.blog-details-page .blog-details-author-meta ul li:hover a {
  color: var(--primary-color1);
}
.blog-details-page .blog-details-author-meta ul li:hover a svg {
  fill: var(--primary-color1);
}
.blog-details-page .blog-details-author-meta ul li::before {
  content: "";
  position: absolute;
  right: -26px;
  top: 3px;
  width: 2px;
  height: 10px;
  line-height: 5px;
  background-color: var(--primary-color1);
  border-radius: 4px;
}
@media (min-width: 576px) and (max-width: 767px) {
  .blog-details-page .blog-details-author-meta ul li::before {
    right: -10px;
  }
}
@media (max-width: 576px) {
  .blog-details-page .blog-details-author-meta ul li::before {
    right: -10px;
  }
}
.blog-details-page .blog-details-author-meta ul li:last-child {
  margin-right: 0;
}
.blog-details-page .blog-details-author-meta ul li:last-child::before {
  display: none;
  visibility: hidden;
}
.blog-details-page .blog-details-author-meta ul li svg {
  width: 14px;
  margin-right: 10px;
  fill: var(--text-color);
  transition: 0.25s ease;
}
@media (min-width: 576px) and (max-width: 767px) {
  .blog-details-page .blog-details-author-meta ul li svg {
    margin-right: 5px;
  }
}
@media (max-width: 576px) {
  .blog-details-page .blog-details-author-meta ul li svg {
    margin-right: 5px;
  }
}
.blog-details-page .blog-details-author-meta ul li a {
  color: var(--text-color);
}
.blog-details-page .blog-details-author-meta h2 {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 48px;
  line-height: 57px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .blog-details-page .blog-details-author-meta h2 {
    font-size: 44px;
    line-height: 56px;
  }
}
@media (max-width: 1399px) {
  .blog-details-page .blog-details-author-meta h2 {
    font-size: 38px;
    line-height: 48px;
  }
}
@media (max-width: 1199px) {
  .blog-details-page .blog-details-author-meta h2 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .blog-details-page .blog-details-author-meta h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 576px) {
  .blog-details-page .blog-details-author-meta h2 {
    font-size: 22px;
    line-height: 35px;
  }
}
.blog-details-page .blog-details-author-meta .author-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-details-page .blog-details-author-meta .author-area .author-img img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.blog-details-page .blog-details-author-meta .author-area .author-content h3 {
  color: var(--text-color);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
}
.blog-details-page .blog-details-author-meta .author-area .author-content h3 a {
  color: var(--primary-color1);
}
.blog-details-page .blog-details-content p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .blog-details-page .blog-details-content p {
    font-size: 15px;
  }
}
.blog-details-page .blog-details-content p.first-para::first-letter {
  float: left;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  margin-right: 6px;
}
@media (max-width: 576px) {
  .blog-details-page .blog-details-content p.first-para::first-letter {
    font-size: 60px;
  }
}
.blog-details-page .blog-details-content h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 35px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .blog-details-page .blog-details-content h3 {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .blog-details-page .blog-details-content h3 {
    font-size: 25px;
  }
}
.blog-details-page .blog-details-content blockquote {
  background-color: #FFF9F6;
  padding: 28px 42px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-details-page .blog-details-content blockquote {
    padding: 28px 30px;
  }
}
@media (max-width: 767px) {
  .blog-details-page .blog-details-content blockquote {
    padding: 28px 25px;
  }
}
@media (max-width: 576px) {
  .blog-details-page .blog-details-content blockquote {
    padding: 28px 20px;
  }
}
.blog-details-page .blog-details-content blockquote svg {
  fill: var(--primary-color1);
}
.blog-details-page .blog-details-content blockquote p {
  color: rgba(var(--title-color-opc), 0.5);
  font-family: var(--font-poppins);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.9;
  padding-top: 20px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .blog-details-page .blog-details-content blockquote p {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .blog-details-page .blog-details-content blockquote p {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .blog-details-page .blog-details-content blockquote p {
    font-size: 16px;
  }
}
.blog-details-page .blog-details-content blockquote h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .blog-details-page .blog-details-content blockquote h3 {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .blog-details-page .blog-details-content blockquote h3 {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .blog-details-page .blog-details-content blockquote h3 {
    font-size: 20px;
  }
}
.blog-details-page .blog-details-content .blog-details-img-grp img {
  border-radius: 15px;
}
.blog-details-page .blog-details-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
  -moz-columns: 2;
       columns: 2;
}
@media (max-width: 767px) {
  .blog-details-page .blog-details-content ul {
    -moz-columns: 1;
         columns: 1;
  }
}
@media (max-width: 576px) {
  .blog-details-page .blog-details-content ul {
    -moz-columns: unset;
         columns: unset;
  }
}
.blog-details-page .blog-details-content ul li {
  color: rgba(var(--title-color-opc), 0.7);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.34px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .blog-details-page .blog-details-content ul li {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .blog-details-page .blog-details-content ul li {
    font-size: 14px;
  }
}
.blog-details-page .blog-details-content ul li:last-child {
  margin-bottom: 0;
}
.blog-details-page .blog-details-content ul li svg {
  fill: var(--primary-color1);
}
.blog-details-page .tag-and-social-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.blog-details-page .tag-and-social-area .tag-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.blog-details-page .tag-and-social-area .tag-list li a {
  color: rgba(var(--title-color-opc), 0.5);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: 0.5s;
}
.blog-details-page .tag-and-social-area .tag-list li a span {
  color: var(--primary-color3);
}
.blog-details-page .tag-and-social-area .tag-list li a:hover {
  color: var(--primary-color1);
}
.blog-details-page .tag-and-social-area .social-area {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-details-page .tag-and-social-area .social-area h4 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
}
.blog-details-page .tag-and-social-area .social-area .social-link {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  line-height: 1;
}
.blog-details-page .tag-and-social-area .social-area .social-link li a i {
  font-size: 18px;
  color: rgba(var(--title-color-opc), 0.4);
  transition: 0.5s;
}
.blog-details-page .tag-and-social-area .social-area .social-link li a i.bi-twitter-x {
  font-size: 15px;
}
.blog-details-page .tag-and-social-area .social-area .social-link li a:hover i {
  color: var(--primary-color1);
}
.blog-details-page .details-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  padding: 30px 0;
  border-top: 1px solid rgba(var(--title-color-opc), 0.1);
  border-bottom: 1px solid rgba(var(--title-color-opc), 0.1);
}
@media (max-width: 767px) {
  .blog-details-page .details-navigation {
    padding: 25px 0;
  }
}
.blog-details-page .details-navigation .navigation-arrow {
  width: 40px;
  height: 30px;
  border-radius: 15px;
  background-color: rgba(var(--primary-color1-opc), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.blog-details-page .details-navigation .navigation-arrow svg {
  fill: var(--primary-color1);
  transition: 0.5s;
}
.blog-details-page .details-navigation .navigation-arrow:hover {
  background-color: var(--primary-color1);
}
.blog-details-page .details-navigation .navigation-arrow:hover svg {
  fill: var(--white-color);
}
.blog-details-page .details-navigation p {
  color: rgba(var(--title-color-opc), 0.7);
  font-family: var(--font-montserrat);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .blog-details-page .details-navigation p {
    font-size: 18px;
  }
}
.blog-details-page .comment-area .title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .blog-details-page .comment-area .title {
    margin-bottom: 50px;
  }
}
.blog-details-page .comment-area .title h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--title-color);
}
@media (max-width: 767px) {
  .blog-details-page .comment-area .title h3 {
    font-size: 25px;
  }
}
@media (max-width: 576px) {
  .blog-details-page .comment-area .title h3 {
    font-size: 22px;
  }
}
.blog-details-page .comment-area .comment {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-details-page .comment-area .comment {
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .blog-details-page .comment-area .comment {
    margin-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .blog-details-page .comment-area .comment {
    margin-bottom: 70px;
  }
}
.blog-details-page .comment-area .comment > li {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(var(--title-color-opc), 0.1);
}
.blog-details-page .comment-area .comment > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: unset;
}
.blog-details-page .comment-area .comment .single-comment-area {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 767px) {
  .blog-details-page .comment-area .comment .single-comment-area {
    gap: 14px;
  }
}
@media (max-width: 576px) {
  .blog-details-page .comment-area .comment .single-comment-area {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.blog-details-page .comment-area .comment .single-comment-area .author-img img {
  max-width: 100px;
  min-width: 100px;
  height: 100px;
  border-radius: 15px;
}
@media (max-width: 576px) {
  .blog-details-page .comment-area .comment .single-comment-area .author-img img {
    max-width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 10px;
  }
}
.blog-details-page .comment-area .comment .single-comment-area .comment-content .author-name-date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .blog-details-page .comment-area .comment .single-comment-area .comment-content .author-name-date {
    margin-bottom: 15px;
  }
}
.blog-details-page .comment-area .comment .single-comment-area .comment-content .author-name-date h4 {
  line-height: 1;
  margin-bottom: 0;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .blog-details-page .comment-area .comment .single-comment-area .comment-content .author-name-date h4 {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .blog-details-page .comment-area .comment .single-comment-area .comment-content .author-name-date h4 {
    font-size: 20px;
  }
}
.blog-details-page .comment-area .comment .single-comment-area .comment-content .author-name-date span {
  color: rgba(var(--title-color-opc), 0.5);
  font-family: var(--font-montserrat);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .blog-details-page .comment-area .comment .single-comment-area .comment-content .author-name-date span {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .blog-details-page .comment-area .comment .single-comment-area .comment-content .author-name-date span {
    font-size: 15px;
  }
}
.blog-details-page .comment-area .comment .single-comment-area .comment-content p {
  color: rgba(var(--title-color-opc), 0.5);
  font-family: var(--font-poppins);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 28px;
}
@media (max-width: 576px) {
  .blog-details-page .comment-area .comment .single-comment-area .comment-content p {
    font-size: 15px;
  }
}
.blog-details-page .comment-area .comment .single-comment-area .comment-content .replay-btn {
  display: inline-block;
  padding: 10px 26px;
  border: 1px solid var(--primary-color1);
  border-radius: 100px;
  line-height: 1;
  cursor: pointer;
  transition: 0.35s;
}
.blog-details-page .comment-area .comment .single-comment-area .comment-content .replay-btn svg {
  transition: 0.35s;
  fill: var(--title-color);
}
.blog-details-page .comment-area .comment .single-comment-area .comment-content .replay-btn .details-button {
  transition: 0.5s;
  position: relative;
  display: inline-block;
  vertical-align: top;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  outline: none;
  padding: 0 1.375em 0.0625em 0;
  cursor: pointer;
  background-color: transparent;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: var(--background-size, 100%) 0.0625em;
  transition: background-size 0.2s linear var(--background-delay, 0.15s);
  border: none;
  background-image: linear-gradient(0deg, #7572FD 0%, #7572FD 100%);
  color: var(--primary-color1);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  text-transform: unset;
}
.blog-details-page .comment-area .comment .single-comment-area .comment-content .replay-btn .details-button::after {
  content: "\f123";
  font-family: "bootstrap-icons";
  display: block;
  position: absolute;
  right: 0;
  left: initial;
  top: 0;
  opacity: 1;
  transition: opacity 0.3s 0.15s;
  color: var(--primary-color1);
}
.blog-details-page .comment-area .comment .single-comment-area .comment-content .replay-btn .details-button svg {
  position: absolute;
  display: block;
  line-height: 1.8125em;
  width: 1.375em;
  height: 1.8125em;
  right: 0;
  left: initial;
  top: 50%;
  margin: -0.92em 0 0;
  fill: none;
  stroke: var(--title-color);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1px;
  stroke-dasharray: 7.95 30;
  stroke-dashoffset: var(--stroke-dashoffset, 46);
  transition: stroke-dashoffset var(--stroke-duration, 0.15s) var(--stroke-easing, linear) var(--stroke-delay, 0s);
}
.blog-details-page .comment-area .comment .single-comment-area .comment-content .replay-btn:hover {
  background-color: var(--primary-color1);
}
.blog-details-page .comment-area .comment .single-comment-area .comment-content .replay-btn:hover .details-button {
  --background-size: 0%;
  --stroke-dashoffset: 26;
  --stroke-duration: .3s;
  --stroke-easing: cubic-bezier(0.3, 1.5, 0.5, 1);
  --stroke-delay: .195s;
  background-image: linear-gradient(0deg, #fff 0%, #fff 100%);
}
.blog-details-page .comment-area .comment .single-comment-area .comment-content .replay-btn:hover .details-button svg {
  stroke: var(--white-color);
}
.blog-details-page .comment-area .comment .single-comment-area .comment-content .replay-btn:hover .details-button {
  color: var(--white-color);
}
.blog-details-page .comment-area .comment .single-comment-area .comment-content .replay-btn:hover .details-button::after {
  opacity: 0;
  transition-delay: 0s;
  color: var(--white-color);
}
.blog-details-page .inquiry-form-area {
  position: relative;
}
.blog-details-page .inquiry-form-area .inquiry-form {
  background: #FAF8FB;
  padding: 45px 50px;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .blog-details-page .inquiry-form-area .inquiry-form {
    padding: 45px 30px;
    border-radius: 15px;
  }
}
@media (max-width: 576px) {
  .blog-details-page .inquiry-form-area .inquiry-form {
    padding: 40px 20px;
    border-radius: 10px;
  }
}
.blog-details-page .inquiry-form-area .inquiry-form .form-inner input,
.blog-details-page .inquiry-form-area .inquiry-form .form-inner textarea {
  background-color: transparent;
  border: 1px solid rgba(var(--title-color-opc), 0.2);
}
.blog-details-page .inquiry-form-area .inquiry-form .form-inner input:focus,
.blog-details-page .inquiry-form-area .inquiry-form .form-inner textarea:focus {
  border-color: var(--title-color);
}
.blog-details-page .inquiry-form-area .inquiry-form button {
  border: unset;
}
.blog-details-page .inquiry-form-area .inquiry-form button.primary-btn2 {
  font-size: 15px;
  padding: 18px 28px;
}
.blog-details-page .inquiry-form-area .vector {
  position: absolute;
  top: 30px;
  left: 50%;
}
@media (max-width: 767px) {
  .blog-details-page .inquiry-form-area .vector {
    display: none;
  }
}

/*=====================================
 96. Kye Feature Section
========================================*/
.kye-feature-section .kye-feature-wrapper {
  padding: 0 60px;
  background-image: url(../img/home3/home3-kye-feature-img.png), linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  backdrop-filter: blur(194px);
  border-radius: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .kye-feature-section .kye-feature-wrapper {
    padding: 0 30px;
  }
}
@media (max-width: 991px) {
  .kye-feature-section .kye-feature-wrapper {
    padding: 40px 30px;
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .kye-feature-section .kye-feature-wrapper {
    border-radius: 15px;
  }
}
@media (max-width: 576px) {
  .kye-feature-section .kye-feature-wrapper {
    padding: 50px 20px;
    border-radius: 10px;
  }
}
.kye-feature-section .kye-feature-wrapper img {
  margin-bottom: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .kye-feature-section .kye-feature-wrapper .section-title h2 {
    font-size: 38px;
  }
}
.kye-feature-section .kye-feature-wrapper .primary-btn3 span {
  background-color: #FF6C10;
}
.kye-feature-section .kye-feature-wrapper .feature-wrap {
  border: 1px solid var(--borders-color);
  border-radius: 20px;
  min-height: 595px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .kye-feature-section .kye-feature-wrapper .feature-wrap {
    min-height: 500px;
  }
}
@media (max-width: 767px) {
  .kye-feature-section .kye-feature-wrapper .feature-wrap {
    min-height: 520px;
  }
}
@media (max-width: 576px) {
  .kye-feature-section .kye-feature-wrapper .feature-wrap {
    display: none;
  }
}
.kye-feature-section .kye-feature-wrapper .feature-wrap .throwable-box-wrap {
  max-width: 100%;
  width: 100%;
  position: absolute;
  pointer-events: none;
  bottom: 0;
  z-index: 1;
}
.kye-feature-section .kye-feature-wrapper .feature-wrap .throwable-box-wrap .throwable-item-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 585px;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .kye-feature-section .kye-feature-wrapper .feature-wrap .throwable-box-wrap .throwable-item-wrap {
    padding-bottom: 500px;
  }
}
@media (max-width: 576px) {
  .kye-feature-section .kye-feature-wrapper .feature-wrap .throwable-box-wrap .throwable-item-wrap {
    padding-bottom: 380px;
  }
}
.kye-feature-section .kye-feature-wrapper .feature-wrap .throwable-box-wrap .throwable-item-wrap > * {
  position: absolute;
  display: inline-block;
  margin-bottom: 0;
  left: 0;
  top: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: auto;
  transition: none;
}
.kye-feature-section .kye-feature-wrapper .feature-wrap .throwable-item {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  background-color: #191919;
  padding: 10px 20px;
  text-align: center;
  border-radius: 55% 45% 55% 45%;
  width: 194px;
  height: 194px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 767px) {
  .kye-feature-section .kye-feature-wrapper .feature-wrap .throwable-item {
    font-size: 15px;
    width: 170px;
    height: 170px;
  }
}
@media (max-width: 576px) {
  .kye-feature-section .kye-feature-wrapper .feature-wrap .throwable-item {
    font-size: 15px;
    padding: 10px 17px;
  }
}
.kye-feature-section .kye-feature-wrapper .feature-wrap .throwable-item.software {
  width: 116px;
  height: 116px;
}
.kye-feature-section .kye-feature-wrapper .feature-wrap .throwable-item.it-service {
  width: 125px;
  height: 125px;
}
.kye-feature-section .kye-feature-wrapper .feature-wrap .throwable-item.ui-ux {
  width: 154px;
  height: 154px;
}

/*=====================================
97. Home1 Tect Section CSS
========================================*/
@media (max-width: 991px) {
  .home1-tech-section .tech-wrapper .tap-wrapper-area {
    flex-wrap: wrap;
  }
}
.home1-tech-section .tech-wrapper .tap-wrapper-area .nav {
  justify-content: space-between;
  min-width: 470px;
  margin: 0 auto;
  border: 1px solid rgba(var(--title-color-opc), 0.08);
  border-bottom: unset;
}
@media (max-width: 767px) {
  .home1-tech-section .tech-wrapper .tap-wrapper-area .nav {
    min-width: 400px;
  }
}
@media (max-width: 576px) {
  .home1-tech-section .tech-wrapper .tap-wrapper-area .nav {
    flex-direction: column;
    min-width: unset;
    width: 100%;
  }
}
.home1-tech-section .tech-wrapper .tap-wrapper-area .nav .nav-link {
  padding: 20px 30px;
  border-radius: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--title-color);
}
@media (max-width: 767px) {
  .home1-tech-section .tech-wrapper .tap-wrapper-area .nav .nav-link {
    font-size: 15px;
  }
}
.home1-tech-section .tech-wrapper .tap-wrapper-area .nav .nav-link.active {
  background-color: rgba(var(--primary-color1-opc), 0.15);
  color: var(--primary-color1);
}
.home1-tech-section .tech-wrapper .tap-wrapper-area .nav .nav-link:hover {
  background-color: rgba(var(--primary-color1-opc), 0.15);
  color: var(--primary-color1);
}
.home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(var(--title-color-opc), 0.08);
  border-radius: 10px;
  background-image: url(../img/home1/home1-tech-bg.png), linear-gradient(180deg, rgba(253, 237, 221, 0.15) 0%, rgba(253, 237, 221, 0.15) 100%);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 768px) and (max-width: 991px) {
  .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list {
    grid-template-columns: repeat(4, 1fr);
    border: unset;
  }
}
@media (max-width: 767px) {
  .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li {
  padding: 37px 40px;
  border-bottom: 1px solid rgba(var(--title-color-opc), 0.08);
  text-align: center;
  position: relative;
}
@media (max-width: 991px) {
  .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li {
    padding: 30px 20px;
    border: 1px solid rgba(var(--title-color-opc), 0.08);
  }
  .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li:nth-child(1), .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li:nth-child(2), .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li:nth-child(3), .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li:nth-child(5), .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li:nth-child(6), .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li:nth-child(7), .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li:nth-child(9) {
    border-bottom: unset;
    border-right: unset;
  }
  .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li:nth-child(4) {
    border-bottom: unset;
  }
}
@media (max-width: 767px) {
  .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li {
    border: unset;
  }
}
.home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li::before {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 110px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(var(--title-color-opc), 0.08);
}
@media (max-width: 991px) {
  .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li::before {
    display: none;
  }
}
.home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li:nth-child(5)::before, .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li:nth-child(10)::before {
  content: unset;
}
@media (max-width: 991px) {
  .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li:nth-child(5)::before, .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li:nth-child(10)::before {
    display: none;
  }
}
.home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li:nth-last-child(-n+5) {
  border-bottom: unset;
}
@media (max-width: 991px) {
  .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li:nth-last-child(-n+5) {
    border-bottom: 1px solid rgba(var(--title-color-opc), 0.08);
  }
}
@media (max-width: 767px) {
  .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li:nth-last-child(-n+5) {
    border: unset;
  }
}
.home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li img {
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li img {
    width: 55px;
  }
}
@media (max-width: 576px) {
  .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li img {
    width: 50px;
  }
}
.home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li span {
  color: var(--title-color);
  display: block;
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home1-tech-section .tech-wrapper .tap-wrapper-area .tab-content .tech-list li span {
    font-size: 14px;
  }
}

/*=====================================
97. Home1 Tect Section CSS
========================================*/
.home7-counter-section {
  position: relative;
}
.home7-counter-section::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: 1px;
  width: 1620px;
  background-color: rgba(var(--title-color2-opc), 0.1);
}
.home7-counter-section .counter-wrapper .counter-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .home7-counter-section .counter-wrapper .counter-wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .home7-counter-section .counter-wrapper .counter-wrap {
    flex-direction: column;
    gap: 25px;
  }
}
.home7-counter-section .counter-wrapper .counter-wrap .single-counter-wrap {
  text-align: center;
}
.home7-counter-section .counter-wrapper .counter-wrap .single-counter-wrap .number {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  line-height: 1;
  display: flex;
  align-items: baseline;
  margin-bottom: 5px;
  justify-content: center;
}
.home7-counter-section .counter-wrapper .counter-wrap .single-counter-wrap .number h2 {
  font-size: 55px;
  font-family: var(--font-montserrat);
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1;
}
@media (max-width: 1399px) {
  .home7-counter-section .counter-wrapper .counter-wrap .single-counter-wrap .number h2 {
    font-size: 48px;
  }
}
@media (max-width: 1199px) {
  .home7-counter-section .counter-wrapper .counter-wrap .single-counter-wrap .number h2 {
    font-size: 44px;
  }
}
@media (max-width: 991px) {
  .home7-counter-section .counter-wrapper .counter-wrap .single-counter-wrap .number h2 {
    font-size: 40px;
  }
}
.home7-counter-section .counter-wrapper .counter-wrap .single-counter-wrap .number strong {
  font-size: 55px;
  font-weight: 700;
}
@media (max-width: 1399px) {
  .home7-counter-section .counter-wrapper .counter-wrap .single-counter-wrap .number strong {
    font-size: 48px;
  }
}
@media (max-width: 1199px) {
  .home7-counter-section .counter-wrapper .counter-wrap .single-counter-wrap .number strong {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .home7-counter-section .counter-wrapper .counter-wrap .single-counter-wrap .number strong {
    font-size: 40px;
  }
}
.home7-counter-section .counter-wrapper .counter-wrap .single-counter-wrap span {
  color: rgba(var(--title-color2-opc), 0.6);
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}
.home7-counter-section .counter-wrapper .counter-wrap .single-counter-wrap .icon {
  padding-bottom: 25px;
  margin-bottom: 35px;
  position: relative;
}
@media (max-width: 576px) {
  .home7-counter-section .counter-wrapper .counter-wrap .single-counter-wrap .icon {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.home7-counter-section .counter-wrapper .counter-wrap .single-counter-wrap .icon::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 1px;
  background-color: var(--primary-color5);
}
.home7-counter-section .counter-wrapper .counter-wrap .single-counter-wrap .icon svg {
  fill: var(--primary-color5);
}
@media (max-width: 991px) {
  .home7-counter-section .counter-wrapper .counter-wrap .single-counter-wrap .icon svg {
    width: 50px;
  }
}
.home7-counter-section .vector {
  position: absolute;
  top: -55px;
  left: 167px;
}
@media (max-width: 1699px) {
  .home7-counter-section .vector {
    left: 20px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home7-counter-section .vector {
    width: 140px;
  }
}
@media (max-width: 1399px) {
  .home7-counter-section .vector {
    width: 120px;
  }
}
@media (max-width: 1199px) {
  .home7-counter-section .vector {
    display: none;
  }
}

/*=====================================
98. Home1 Tect Section CSS
========================================*/
.home7-graph-section .graph-wrapper {
  padding-top: 90px;
  background-color: #15283A;
  border-radius: 30px;
  overflow: hidden;
}
.home7-graph-section .graph-wrapper .section-title {
  margin-bottom: 120px;
}
.home7-graph-section .graph-wrapper .data-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  max-height: 385px;
  min-height: 385px;
}
@media (max-width: 1399px) {
  .home7-graph-section .graph-wrapper .data-list {
    max-height: 330px;
    min-height: 330px;
  }
}
@media (max-width: 991px) {
  .home7-graph-section .graph-wrapper .data-list {
    display: block;
    max-height: unset;
    min-height: unset;
  }
}
.home7-graph-section .graph-wrapper .data-list .single-data {
  width: 100%;
  height: 95%;
  background-color: #B1B9C1;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: scaleY(0);
  transform-origin: bottom;
}
@media (max-width: 1399px) {
  .home7-graph-section .graph-wrapper .data-list .single-data {
    padding: 35px 26px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-graph-section .graph-wrapper .data-list .single-data {
    padding: 35px 18px;
  }
}
@media (max-width: 991px) {
  .home7-graph-section .graph-wrapper .data-list .single-data {
    transform: scaleY(1);
    height: 120px;
    width: 95%;
    flex-direction: row-reverse;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .home7-graph-section .graph-wrapper .data-list .single-data {
    flex-direction: unset;
    gap: 14px;
    padding: 35px 18px;
  }
}
.home7-graph-section .graph-wrapper .data-list .single-data h3 {
  color: var(--white-color);
  margin-bottom: 0;
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  text-transform: capitalize;
  padding-bottom: 32px;
  border-bottom: 1px solid #C1C7D0;
}
@media (max-width: 1399px) {
  .home7-graph-section .graph-wrapper .data-list .single-data h3 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .home7-graph-section .graph-wrapper .data-list .single-data h3 {
    border-bottom: unset;
    padding-bottom: unset;
  }
}
@media (max-width: 767px) {
  .home7-graph-section .graph-wrapper .data-list .single-data h3 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .home7-graph-section .graph-wrapper .data-list .single-data h3 {
    font-size: 27px;
  }
}
.home7-graph-section .graph-wrapper .data-list .single-data span {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  text-transform: capitalize;
  display: block;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home7-graph-section .graph-wrapper .data-list .single-data span {
    font-size: 18px;
  }
}
@media (max-width: 1399px) {
  .home7-graph-section .graph-wrapper .data-list .single-data span {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home7-graph-section .graph-wrapper .data-list .single-data span {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .home7-graph-section .graph-wrapper .data-list .single-data span {
    font-size: 16px;
  }
}
.home7-graph-section .graph-wrapper .data-list .single-data.two {
  height: 88%;
  background-color: #6E997F;
}
@media (max-width: 991px) {
  .home7-graph-section .graph-wrapper .data-list .single-data.two {
    width: 88%;
    height: 120px;
  }
}
.home7-graph-section .graph-wrapper .data-list .single-data.three {
  height: 100%;
  background-color: #89B49B;
}
@media (max-width: 991px) {
  .home7-graph-section .graph-wrapper .data-list .single-data.three {
    width: 100%;
    height: 120px;
  }
}
.home7-graph-section .graph-wrapper .data-list .single-data.four {
  height: 76%;
  background-color: #717CA3;
}
@media (max-width: 991px) {
  .home7-graph-section .graph-wrapper .data-list .single-data.four {
    width: 76%;
    height: 120px;
  }
}
.home7-graph-section .graph-wrapper .data-list .single-data.five {
  height: 85%;
  background-color: #8A93B1;
}
@media (max-width: 991px) {
  .home7-graph-section .graph-wrapper .data-list .single-data.five {
    width: 85%;
    height: 120px;
  }
}

.login-modal .modal-content {
  border-radius: unset;
  border: 1px solid var(--primary-color1);
}
.login-modal .modal-content .modal-header {
  padding: 0;
  border: unset;
}
.login-modal .modal-content .modal-header .nav {
  width: 100%;
  border-bottom: 1px solid rgba(34, 34, 34, 0.5);
}
.login-modal .modal-content .modal-header .nav .nav-item {
  flex-basis: 50%;
  border: none;
}
.login-modal .modal-content .modal-header .nav .nav-item .nav-link {
  width: 100%;
  color: rgba(34, 34, 34, 0.5);
  font-family: var(--font-montserrat);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: capitalize;
  border: none;
  padding: 18px 0;
}
@media (max-width: 767px) {
  .login-modal .modal-content .modal-header .nav .nav-item .nav-link {
    font-size: 17px;
    padding: 15px 0;
  }
}
.login-modal .modal-content .modal-header .nav .nav-item .nav-link.active {
  border: unset;
  border-bottom: 2px solid var(--primary-color1);
  color: var(--primary-color1);
}
.login-modal .modal-content .modal-header .nav .nav-item:focus-visible {
  outline: none;
}
.login-modal .modal-content .modal-header .nav .nav-item:hover {
  border: none;
}
.login-modal .modal-content .modal-body {
  padding: 40px 45px;
}
@media (max-width: 576px) {
  .login-modal .modal-content .modal-body {
    padding: 30px 20px;
  }
}
.login-modal .modal-content .modal-body .login-registration-form .form-title {
  text-align: center;
}
.login-modal .modal-content .modal-body .login-registration-form .form-title h3 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.login-modal .modal-content .modal-body .login-registration-form .form-inner {
  position: relative;
}
.login-modal .modal-content .modal-body .login-registration-form .form-inner input {
  border: 1px solid var(--primary-color1);
  width: 100%;
  height: 50px;
  padding: 15px 20px;
}
.login-modal .modal-content .modal-body .login-registration-form .form-inner input:focus {
  border: 1px solid #ddd;
}
.login-modal .modal-content .modal-body .login-registration-form .form-inner input::-moz-placeholder {
  color: rgba(34, 34, 34, 0.5);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: capitalize;
}
.login-modal .modal-content .modal-body .login-registration-form .form-inner input::placeholder {
  color: rgba(34, 34, 34, 0.5);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: capitalize;
}
.login-modal .modal-content .modal-body .login-registration-form .form-inner i {
  position: absolute;
  right: 20px;
  bottom: 13px;
  color: var(--primary-color1);
  cursor: pointer;
}
.login-modal .modal-content .modal-body .login-registration-form .form-remember-forget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  margin-bottom: 30px;
}
.login-modal .modal-content .modal-body .login-registration-form .form-remember-forget .remember .custom-check-box {
  opacity: 0;
  display: none;
}
.login-modal .modal-content .modal-body .login-registration-form .form-remember-forget .remember .custom-check-box + label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.login-modal .modal-content .modal-body .login-registration-form .form-remember-forget .remember .custom-check-box + label::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid var(--primary-color1);
}
.login-modal .modal-content .modal-body .login-registration-form .form-remember-forget .remember .custom-check-box:checked + label::before {
  content: "\f26e";
  color: var(--white-color);
  font-family: "bootstrap-icons";
  background-color: var(--primary-color1);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-modal .modal-content .modal-body .login-registration-form .form-remember-forget .remember label {
  color: var(--primary-color1);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: capitalize;
}
.login-modal .modal-content .modal-body .login-registration-form .form-remember-forget .forget-pass {
  color: var(--primary-color1);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: capitalize;
}
.login-modal .modal-content .modal-body .login-registration-form .primary-btn2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}
.login-modal .modal-content .modal-body .login-registration-form .member {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
}/*# sourceMappingURL=style.css.map */
