@use "sass:math";
:root {
  --theme-color: #684df4;
  --theme-color2: #684df4;
  --title-color: #141d38;
  --body-color: #737887;
  --smoke-color: #f5f5f5;
  --smoke-color2: #e2e8fa;
  --smoke-color3: #eff1f9;
  --black-color: #000000;
  --black-color2: #080e1c;
  --gray-color: #bdbdbd;
  --white-color: #ffffff;
  --light-color: #72849b;
  --yellow-color: #ffb539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --th-border-color: #e0e0e0;
  --title-font: "Barlow", sans-serif;
  --body-font: "Roboto", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1220px;
  --container-gutters: 24px;
  --section-space: 80px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}
html,
body {
  scroll-behavior: smooth !important;
}
body {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.theme-blue3 {
  --theme-color: #3e66f3;
}
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}
input:focus {
  outline: none;
  box-shadow: none;
}
img:not([draggable]) {
  max-width: 100%;
  height: auto;
}
ul {
  list-style-type: disc;
}
a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
a:hover {
  color: var(--title-color);
}
a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0;
}
button {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
img {
  border: none;
  max-width: 100%;
}
p:empty {
  display: none;
}
p {
  font-family: var(--body-font);
  margin: 0 0 18px 0;
  color: var(--body-color);
  line-height: 1.75;
}
h3 a,
p a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 15px 0;
}
h1 {
  font-size: 48px;
  line-height: 1.208;
}
h2 {
  font-size: 40px;
  line-height: 1.25;
}
h3 {
  font-size: 36px;
  line-height: 1.278;
}
h4 {
  font-size: 30px;
  line-height: 1.333;
}
h5 {
  font-size: 24px;
  line-height: 1.417;
}
h6 {
  font-size: 20px;
  line-height: 1.5;
}

@media (max-width: 990px) {
  .service-item2 {
    height: 100%;
  }

  .about-sec {
    padding-top: 0;
  }

  .service-area12 {
    padding-bottom: 0;
  }

  .cta-sec6 {
    padding: 45px 50px;
  }
}

@media (max-width: 1199px) {
  h1 {
    font-size: 44px;
    line-height: 1.3;
  }
  h2 {
    font-size: 36px;
    line-height: 1.3;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 34px;
    line-height: 1.3;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 34px;
    line-height: 1.35;
  }
  h2 {
    font-size: 28px;
  }
}
@media (max-width: 375px) {
  h1 {
    font-size: 32px;
  }
}
@media (max-width: 1399px) {
  :root {
    --main-container: 1250px;
  }
}
@media only screen and (min-width: 1300px) {
  .container-xl,
  .container {
    max-width: calc(var(--main-container) + var(--container-gutters));
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
  .th-container4 {
    --main-container: 1380px;
  }
}
.form-control,
textarea,
input {
  height: 56px;
  padding: 0 25px 0 25px;
  padding-right: 45px;
  border: 1px solid transparent;
  color: var(--body-color);
  background-color: var(--smoke-color);
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
  font-family: var(--body-font);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.form-control:focus,
textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--theme-color);
  background-color: var(--smoke-color);
}
.form-control::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--body-color);
}
.form-control::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: var(--body-color);
}
.form-control:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--body-color);
}
.form-control::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: var(--body-color);
}
.form-control::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--body-color);
}
.form-control:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--body-color);
}
.form-control::-ms-input-placeholder,
textarea::-ms-input-placeholder,
input::-ms-input-placeholder {
  color: var(--body-color);
}
textarea.form-control,
textarea {
  min-height: 154px;
  padding-top: 16px;
  padding-bottom: 17px;
}
.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-messages {
  display: none;
}
.th-slider.has-shadow {
  padding-left: 12px;
  padding-right: 12px;
  margin: -25px -12px;
}
.th-slider.has-shadow .swiper-wrapper {
  padding: 25px 0;
}
.slider-area {
  position: relative;
}
.slider-arrow {
  display: inline-block;
  padding: 0;
  background-color: var(--white-color);
  border: 1px solid #ebedf1;
  -webkit-filter: drop-shadow(0px 26px 65px rgba(232, 234, 238, 0.55));
  filter: drop-shadow(0px 26px 65px rgba(232, 234, 238, 0.55));
  color: var(--theme-color);
  position: absolute;
  top: 50%;
  left: var(--pos-x, -120px);
  width: var(--icon-size, 55px);
  height: var(--icon-size, 55px);
  line-height: var(--icon-size, 55px);
  font-size: var(--icon-font-size, 18px);
  margin-top: calc(var(--icon-size, 55px) / -2);
  z-index: 3;
  border-radius: 50%;
}
@media (max-width: 1500px) {
  .slider-arrow {
    display: none !important;
  }
}
.slider-arrow.style3 {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: var(--theme-color);
}
.slider-arrow.style3:hover {
  background-color: var(--title-color);
  border-color: var(--title-color);
}
.slider-arrow.slider-next {
  right: var(--pos-x, -120px);
  left: auto;
}
.slider-arrow:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: var(--theme-color);
}
@media (max-width: 1500px) {
  .slider-arrow {
    --arrow-horizontal: -20px;
    --pos-x: -70px;
  }
}
@media (max-width: 1399px) {
  .slider-arrow {
    --arrow-horizontal: 40px;
    --pos-x: -17px;
  }
}
@media (max-width: 991px) {
  .slider-arrow {
    --icon-size: 40px;
    line-height: 38px;
    margin-right: 40px;
    font-size: 14px;
  }
  .slider-arrow.slider-next {
    margin-right: 0;
    margin-left: 40px;
  }
}
.th-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}
.th-menu-wrapper .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
  /* background-color: var(--smoke-color2); */
  background-color: var(--title-color);
}

.th-menu-wrapper.th-body-visible {
  opacity: 1;
  visibility: visible;
}

.th-menu-wrapper.th-body-visible .th-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.header-layout11 .sticky-wrapper.sticky {
  background-color: var(--title-color);
}
.sticky-wrapper.sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--white-color);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  -webkit-animation: stickyAni 0.4s ease-in-out;
  animation: stickyAni 0.4s ease-in-out;
  padding: 10px;
}

.th-menu-wrapper .mobile-logo img {
  width: 50%;
}
.th-menu-wrapper .th-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: -16.5px;
  top: 25px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 35px;
  font-size: 18px;
  z-index: 1;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 50%;
}
.th-menu-wrapper .th-menu-toggle:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}
.th-menu-wrapper .th-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: #fff;
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 1;
}
.th-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}
.th-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}
.th-mobile-menu ul li {
  border-bottom: 1px solid #fdedf1;
  list-style-type: none;
}
.th-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--title-color);
  padding-left: 18px;
}
.th-mobile-menu ul li a:before {
  content: "\f105";
  font-family: var(--icon-font);
  position: absolute;
  left: 0;
  top: 12px;
  margin-right: 10px;
  display: inline-block;
}
.th-mobile-menu > ul {
  padding: 0 40px;
}
.th-mobile-menu > ul > li:last-child {
  border-bottom: none;
}
.th-menu-toggle {
  width: 56px;
  height: 56px;
  padding: 0;
  font-size: 20px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 4px;
}
.th-menu-toggle:hover {
  background-color: var(--title-color);
}
@media (max-width: 400px) {
  .th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .th-mobile-menu > ul {
    padding: 0 20px;
  }
}
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: var(--white-color);
}
.th-preloader {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}
.th-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}
.th-preloader .animation-preloader .txt-loading {
  font-family: var(--title-font);
  font-size: 72px;
  line-height: 82px;
  font-weight: 700;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.th-preloader .animation-preloader .txt-loading .characters {
  color: rgba(0, 0, 0, 0.2);
  position: relative;
}
.th-preloader .animation-preloader .txt-loading .characters:before {
  -webkit-animation: characters 4s infinite;
  animation: characters 4s infinite;
  color: var(--theme-color);
  content: attr(preloader-text);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
}
.th-preloader
  .animation-preloader
  .txt-loading
  .characters:nth-child(2):before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.th-preloader
  .animation-preloader
  .txt-loading
  .characters:nth-child(3):before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.th-preloader
  .animation-preloader
  .txt-loading
  .characters:nth-child(4):before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.th-preloader
  .animation-preloader
  .txt-loading
  .characters:nth-child(5):before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.th-preloader
  .animation-preloader
  .txt-loading
  .characters:nth-child(6):before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
@media (max-width: 575px) {
  .th-preloader .animation-preloader .txt-loading {
    font-size: 30px;
    line-height: 30px;
  }
}
@-webkit-keyframes characters {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes characters {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
.th-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 20.5px 20px;
  min-width: 144px;
  border-radius: 4px;
}
.th-btn:before,
.th-btn:after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--title-color);
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  border-radius: 99px;
  -webkit-transform: scaleY(1.1);
  -ms-transform: scaleY(1.1);
  transform: scaleY(1.1);
}
.th-btn:before {
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
}
.th-btn:after {
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
}
.th-btn:hover {
  color: var(--white-color);
  box-shadow: none;
}
.th-btn:hover::before,
.th-btn:hover:after {
  border-radius: 0;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.th-btn.style3:hover {
  color: var(--title-color);
}
.th-btn.style3:hover:before,
.th-btn.style3:hover:after {
  background-color: var(--white-color);
}
.th-btn.style9 {
  background-color: var(--white-color);
  color: var(--theme-color);
  box-shadow: none;
  border: none;
  padding: 17px 35.6px;
  font-weight: 700;
}
.th-btn.style9:hover {
  color: var(--white-color);
}
.th-btn.style9:hover:before,
.th-btn.style9:hover:after {
  background-color: var(--title-color);
}
.th-btn.style10 {
  background-color: var(--white-color);
  border: 1px solid #e3e7f0;
  color: var(--theme-color);
  border-radius: 100px;
  padding: 18px 44px;
}
.th-btn.style10:hover {
  color: var(--white-color);
}
.th-btn.style-radius {
  border-radius: 100px;
  padding: 18px 40px;
}
@media (max-width: 375px) {
  .th-btn.style-radius {
    padding: 18px 25px;
  }
}
.th-btn.th-border {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12.5px);
  backdrop-filter: blur(12.5px);
  padding: 16px 39.4px;
}
.th-btn.th-border:hover {
  background: var(--title-color);
  border: 1px solid var(--title-color);
}
.icon-btn {
  display: inline-block;
  width: var(--btn-size, 56px);
  height: var(--btn-size, 56px);
  line-height: var(--btn-size, 56px);
  font-size: var(--btn-font-size, 16px);
  background-color: var(--icon-bg, transparent);
  color: var(--title-color);
  text-align: center;
  border-radius: 4px;
  border: 1px solid #232c47;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.icon-btn:hover {
  background-color: var(--white-color);
  color: var(--theme-color);
  border-color: var(--white-color);
}
.line-btn {
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  line-height: 0.8;
  position: relative;
  padding-bottom: 4px;
  margin-bottom: -1px;
  text-transform: uppercase;
  color: var(--theme-color);
}
.line-btn i {
  margin-left: 5px;
  font-size: 0.9rem;
}
.line-btn:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--theme-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.line-btn:hover {
  color: var(--title-color);
}
.line-btn:hover::before {
  background-color: var(--title-color);
  width: 45px;
}
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 10000;
  opacity: 1;
  visibility: hidden;
  -webkit-transform: translateY(45px);
  -ms-transform: translateY(45px);
  transform: translateY(45px);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
.scroll-top:after {
  content: "\f062";
  font-family: var(--icon-font);
  position: absolute;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: var(--theme-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  border: 2px solid var(--theme-color);
  box-shadow: none;
  border-radius: 50%;
}
.scroll-top svg {
  color: var(--theme-color);
  border-radius: 50%;
  background: var(--white-color);
}
.scroll-top svg path {
  fill: none;
}
.scroll-top .progress-circle path {
  stroke: var(--theme-color);
  stroke-width: 20px;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.sec-title {
  margin-bottom: calc(var(--section-title-space) - 10px);
  margin-top: -0.32em;
  text-transform: capitalize;
}
.sub-title {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 24px;
  margin-top: -0.34em;
}
.sub-title:has(img) {
  margin-top: 0;
}
.sub-title.sub-title3 {
  position: relative;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--theme-color);
  margin-bottom: 25px;
}
.sub-title.sub-title3.style1::before {
  margin-left: -4.5rem;
  display: none;
}
@media (max-width: 575px) {
  .sub-title.sub-title3.style1::before {
    margin-left: -4.5rem;
  }
}
@media (max-width: 375px) {
  .sub-title.sub-title3.style1::before {
    display: none;
  }
}
.sub-title.sub-title3::before,
.sub-title.sub-title3:after {
  content: "";
  position: absolute;
  top: 48%;
  height: 2px;
  width: 40px;
}
@media (max-width: 575px) {
  .sub-title.sub-title3::before,
  .sub-title.sub-title3:after {
    width: 30px;
  }
}
@media (max-width: 450px) {
  .sub-title.sub-title3::before,
  .sub-title.sub-title3:after {
    display: none;
  }
}
.sub-title.sub-title3::before {
  background-color: var(--theme-color);
  margin-left: -3.2rem;
}
@media (max-width: 575px) {
  .sub-title.sub-title3::before {
    margin-left: -2.6rem;
  }
}
.sub-title.sub-title3::after {
  background-color: var(--theme-color);
  margin-left: 10px;
}
.box-title {
  font-size: 24px;
  line-height: 1.417;
  font-weight: 700;
  margin-top: -0.32em;
}
.box-title a {
  color: inherit;
}
.box-title a:hover {
  color: var(--theme-color);
}
.title-area {
  margin-bottom: calc(var(--section-title-space) - 10px);
  position: relative;
  z-index: 2;
}
.title-area .sec-title {
  margin-bottom: 15px;
}
.title-area.mb-0 .sec-title {
  margin-bottom: -0.41em;
}
@media (max-width: 1199px) {
  .sub-title {
    margin-bottom: 20px;
  }
  .title-area,
  .sec-title {
    --section-title-space: 60px;
  }
}
@media (max-width: 991px) {
  .title-area,
  .sec-title {
    --section-title-space: 50px;
  }
}

@media (max-width: 500px) {
  .title-area,
  .sec-title {
    --section-title-space: 50px;
    font-size: 23px;
  }

  .sub-title.sub-title3 {
    margin-bottom: 15px;
  }
}
.shape-mockup {
  position: absolute;
  z-index: -1;
}
.shape-mockup.z-index-3 {
  z-index: 3;
}
.z-index-3 {
  z-index: 3;
}
.th-radius3 {
  border-radius: 30px;
}
.media-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.btn-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.fw-semibold {
  font-weight: 600;
}
.bg-theme {
  background-color: var(--theme-color) !important;
}
.bg-black {
  background-color: var(--black-color) !important;
}
.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.bg-top-center {
  background-size: auto;
  background-position: top center;
}
.text-theme {
  color: var(--theme-color) !important;
}
.text-body {
  color: var(--body-color) !important;
}
.text-white {
  color: var(--white-color) !important;
}
@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }
}
@-webkit-keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes jumpReverseAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes jumpReverseAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes footerLine {
  0% {
    left: 40px;
  }
  50% {
    left: 0;
  }
  100% {
    left: 40px;
  }
}
@keyframes footerLine {
  0% {
    left: 40px;
  }
  50% {
    left: 0;
  }
  100% {
    left: 40px;
  }
}
.th-ani {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.th-ani:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.widget_nav_menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
}
.widget_nav_menu .menu {
  margin: 0 0 -10px 0;
}
.widget_nav_menu a {
  display: block;
  background-color: var(--white-color);
  margin: 0 0 10px 0;
  padding: 16px 45px 19px 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.313;
  color: var(--body-color);
  border-radius: 4px;
}
.widget_nav_menu a::before {
  content: "\f061";
  position: absolute;
  right: 25px;
  top: 17px;
  font-family: var(--icon-font);
  font-weight: 600;
  color: var(--theme-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.widget_nav_menu li {
  display: block;
  position: relative;
}
.widget_nav_menu li:last-child a {
  border-bottom: none;
}
.widget_nav_menu a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
}
.widget_nav_menu a:hover:before {
  color: var(--white-color);
}
.widget_nav_menu a {
  padding-right: 20px;
}
.wp-block-archives a:not(:hover) {
  color: inherit;
}
.widget {
  padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px);
  background-color: var(--smoke-color);
  margin-bottom: 40px;
  position: relative;
  border-radius: 5px;
}
.widget_title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--title-font);
  line-height: 1em;
  margin: -0.12em 0 28px 0;
}
.widget_banner:has(.widget-map) {
  padding: 0;
  line-height: 0px;
}
@media (max-width: 1199px) {
  .widget {
    --widget-padding-y: 30px;
    --widget-padding-x: 30px;
  }
  .widget_title {
    font-size: 22px;
    margin: -0.12em 0 24px 0;
  }
}
@media (max-width: 991px) {
  .widget {
    --widget-padding-y: 40px;
    --widget-padding-x: 40px;
  }
}
@media (max-width: 767px) {
  .widget {
    padding: 35px 20px;
  }
}
.footer-widget {
  margin-bottom: 50px;
}
.footer-widget {
  padding: 0;
  border: none;
  padding-bottom: 0;
  background-color: transparent;
  box-shadow: none;
}
.footer-widget .widget_title {
  max-width: 270px;
  color: var(--white-color);
  font-weight: 600;
  text-transform: uppercase;
  margin: -0.12em 0 35px 0;
  padding: 0 0 17px 0;
}
.footer-widget .widget_title:before {
  content: "";
  height: 2px;
  width: 100px;
  background-color: var(--theme-color);
  position: absolute;
  left: 0;
  bottom: 0;
}
.footer-widget .widget_title:after {
  content: "";
  height: 10px;
  width: 10px;
  background-color: var(--white-color);
  position: absolute;
  bottom: -4px;
  left: 96px;
  border-radius: 99px;
  border: 2px solid var(--theme-color);
}
.footer-widget .widget_title.style2 {
  color: var(--white-color);
}
.footer-widget .widget_title.style2:before,
.footer-widget .widget_title.style2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 61px;
  height: 2px;
  background: -webkit-linear-gradient(
    top,
    var(--theme-color) 0%,
    var(--theme-color2) 100%
  );
  background: linear-gradient(
    180deg,
    var(--theme-color) 0%,
    var(--theme-color2) 100%
  );
}
.footer-widget .widget_title.style2:after {
  width: 16px;
  border: 2px solid var(--black-color);
  height: 10px;
  background: transparent;
  bottom: -3px;
  left: 40px;
  -webkit-animation: footerLine 7s linear infinite;
  animation: footerLine 7s linear infinite;
}
.footer-widget.widget_nav_menu ul {
  margin-top: -5px;
}
.footer-widget.widget_nav_menu .menu {
  margin-bottom: -5px;
}
.footer-widget.widget_nav_menu a {
  font-size: 16px;
  font-weight: 400;
  padding: 0 0 0 20px;
  margin-bottom: 21px;
  font-family: var(--body-font);
  display: block;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 0;
  background-color: transparent;
  border-bottom: none;
  position: relative;
}
.footer-widget.widget_nav_menu a:before {
  content: "\f054";
  font-weight: 600;
  left: 0;
  top: 2px;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  font-size: 0.9em;
  background-color: transparent;
  border: none;
  color: inherit;
}
.footer-widget.widget_nav_menu a:hover {
  background-color: transparent;
  color: var(--theme-color);
}
.footer-widget.widget_nav_menu a:hover:before {
  color: var(--theme-color);
}
.footer-widget.widget_nav_menu li:last-child a {
  margin-bottom: 0;
}
.footer-text {
  margin-top: -0.46em;
  margin-bottom: 25px;
}
.newsletter-widget {
  max-width: 290px;
}
.newsletter-widget .form-control {
  background-color: var(--white-color) !important;
  border: 1px solid var(--th-border-color);
}
.newsletter-form {
  position: relative;
  max-width: 465px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.newsletter-form .th-btn {
  min-width: 145px;
  padding: 21px 20px;
}
@media (max-width: 1199px) {
  .footer-widget.widget_nav_menu a {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .footer-widget .widget_title {
    margin-bottom: 35px;
  }
}
.th-header {
  position: relative;
  z-index: 41;
}
.header-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

@media (max-width: 992px) {
  .header-absolute {
    padding: 15px 0px;
  }
}

.sticky-wrapper {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.main-menu a {
  display: block;
  position: relative;
  font-weight: 600;
  font-size: 20px;
  color: var(--title-color);
  font-family: var(--title-font);
  text-transform: uppercase;
}
.main-menu a:hover {
  color: var(--theme-color);
}
.main-menu > ul > li {
  margin: 0 14px;
}
.main-menu > ul > li > a {
  padding: 23px 0;
}

.main-menu > ul > li > a:hover {
  color: var(--theme-color);
}
.main-menu ul {
  margin: 0;
  padding: 0;
}
.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}
.main-menu ul li:last-child {
  margin-right: 0 !important;
}
.main-menu ul li:first-child {
  margin-left: 0 !important;
}
.header-button {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.header-logo {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 575px) {
  .header-logo {
    max-width: 150px;
  }
}
@media (max-width: 1199px) {
  .main-menu > ul > li > a {
    padding: 37px 0;
  }
}
.header-layout1 .main-menu > ul > li > a:not(:hover) {
  color: var(--white-color);
}
.header-layout3 .header-button .icon-btn:not(:hover) {
  border-color: #bdbdbd;
}
.header-layout11 .menu-area {
  /* padding: 15px 0; */
}
.header-layout11 .main-menu > ul > li > a {
  color: var(--white-color);
  text-transform: capitalize;
}
.header-layout11 .main-menu > ul > li > a:hover {
  /* background: rgba(62, 101, 243, 0.1); */
  color: var(--theme-color);
}
.footer-wrapper {
  --border-color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}
.widget-area {
  padding-top: var(--section-space);
  padding-bottom: 66px;
}
.copyright-wrap {
  padding: 22px 0;
  background-size: 100% auto;
}
.copyright-text {
  margin: 0;
}
.copyright-text a {
  color: var(--theme-color);
}
.copyright-text a:hover {
  color: var(--white-color);
}
@media (max-width: 991px) {
  .footer-wrapper .widget-area {
    padding-top: var(--section-space-mobile);
    padding-bottom: 30px;
  }
  .copyright-text {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .copyright-wrap {
    background-size: cover;
  }
}
.newsletter-widget .newsletter-form {
  gap: 0;
}
.newsletter-widget input {
  border-radius: 5px 0 0 5px;
}
.newsletter-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 465px;
  gap: 15px;
}
.newsletter-form input {
  background-color: transparent;
  border: 1px solid #323232;
  width: 100%;
}
.newsletter-form input:focus {
  background-color: transparent;
  color: var(--body-color);
}
.newsletter-form .th-btn {
  min-width: 150px;
}
@media (max-width: 991px) {
  .footer-wrapper .newsletter-form {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .footer-wrapper .newsletter-form {
    max-width: 550px;
    gap: 15px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .footer-wrapper .newsletter-form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer-layout5 .th-social a:not(:hover) {
  background: var(--white-color);
  color: var(--title-color);
  box-shadow: 0px 9px 20px 0px rgba(0, 0, 0, 0.06);
}
.footer-layout6 .th-social a:not(:hover) {
  background: var(--white-color);
  color: var(--title-color);
  box-shadow: 0px 9px 20px 0px rgba(0, 0, 0, 0.06);
}
.footer-layout7 .th-social a:not(:hover) {
  background: var(--white-color);
  color: var(--title-color);
  box-shadow: 0px 9px 20px 0px rgba(0, 0, 0, 0.06);
}
.footer-layout8 {
  --body-color: #8d929c;
}
.footer-layout8 .footer-widget.style2 {
  max-width: 561px;
  background-color: #16181d;
  padding: 40px;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .footer-layout8 .footer-widget.style2 {
    max-width: 100%;
  }
}
@media (max-width: 375px) {
  .footer-layout8 .footer-widget.style2 {
    padding: 30px;
  }
}
.footer-layout8 .footer-widget.style2 .widget_title {
  color: var(--white-color);
}
.footer-layout8 .footer-widget.style2 .widget_title:after {
  border: 2px solid #16181d;
}
.footer-layout8 .newsletter-widget {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.footer-layout8 .newsletter-widget .newsletter-form {
  max-width: 481px;
}
@media (max-width: 1199px) {
  .footer-layout8 .newsletter-widget .newsletter-form {
    max-width: 100%;
  }
}
.footer-layout8 .newsletter-widget .newsletter-form.style2 i {
  background: -webkit-linear-gradient(
    top,
    var(--theme-color) 0%,
    var(--theme-color) 100%
  );
  background: linear-gradient(
    180deg,
    var(--theme-color) 0%,
    var(--theme-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.footer-layout8 .newsletter-widget i {
  position: absolute;
  top: 18px;
  left: 30px;
  font-weight: 400;
  font-size: 18px;
  background: -webkit-linear-gradient(
    top,
    var(--theme-color) 0%,
    var(--theme-color2) 100%
  );
  background: linear-gradient(
    180deg,
    var(--theme-color) 0%,
    var(--theme-color2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.footer-layout8 .newsletter-widget .form-control {
  border-radius: 100px;
  min-height: 56px;
  padding-left: 55px;
  padding-right: 130px;
  background-color: var(--black-color) !important;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .footer-layout8 .newsletter-widget .form-control {
    min-width: 100%;
    padding-right: 30px;
  }
}
.footer-layout8 .newsletter-widget .form-control:hover {
  border: 1px solid var(--theme-color);
}
.footer-layout8 .newsletter-widget .th-btn {
  padding: 20px 30px;
  text-transform: capitalize;
  position: absolute;
  top: 0px;
  right: 0px;
  border-radius: 100px;
  min-width: auto;
}
@media (max-width: 575px) {
  .footer-layout8 .newsletter-widget .th-btn {
    max-width: 100%;
    padding: 16px 20px;
    position: relative;
    margin-top: 10px;
    display: block;
    width: 100%;
  }
}
.footer-layout8 .widget-area {
  padding-top: 80px;
  padding-bottom: 40px;
}
.footer-layout8 .widget_title {
  font-weight: 600;
  color: var(--title-color);
  font-size: 20px;
  text-transform: none;
}
.footer-layout8 .copyright-wrap {
  background-color: #16181d;
}
.footer-layout8 .copyright-wrap .copyright-text {
  color: var(--white-color);
}
.footer-layout8 .copyright-wrap .copyright-text a {
  font-family: var(--body-font);
  background: -webkit-linear-gradient(top, #02ce80 0%, #7bd706 100%);
  background: linear-gradient(180deg, #02ce80 0%, #7bd706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.footer-layout9 .copyright-wrap .copyright-text a {
  background: transparent;
  color: var(--theme-color);
  -webkit-text-fill-color: var(--theme-color);
}
.footer-layout11 .th-social a:not(:hover) {
  background: #1c1c25;
  box-shadow: 0px 9px 20px rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  color: var(--white-color);
}
.footer-layout12 .th-social a:not(:hover) {
  background: var(--white-color);
  box-shadow: 0px 9px 20px rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  color: var(--title-color);
}
.footer-layout18 .th-social a:not(:hover) {
  background: var(--white-color);
  box-shadow: 0px 9px 20px rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  color: var(--title-color);
}
.th-hero-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hero-title {
  font-size: 74px;
  font-weight: bold;
  line-height: 1.135;
  margin-bottom: 0;
}
.hero-title:last-of-type {
  margin-bottom: 21px;
}
@media (max-width: 1400px) {
  .hero-title {
    font-size: 68px;
  }
}
@media (max-width: 1199px) {
  .hero-title {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 54px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .hero-title {
    font-size: 38px;
    line-height: 1.24;
  }
  .hero-title:last-of-type {
    margin-bottom: 16px;
  }
}
@media (max-width: 390px) {
  .hero-title {
    font-size: 34px;
    line-height: 1.3;
  }
}
@media (max-width: 330px) {
  .hero-title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .hero-title {
    font-size: 38px;
    line-height: 1.24;
  }
  .hero-title:last-of-type {
    margin-bottom: 16px;
  }
}
@media (max-width: 1199px) {
  .hero-watch-area .btn-group:has(.call-btn) {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .hero-watch-area .btn-group:has(.call-btn) {
    gap: 20px;
  }
}
.hero-13 .th-hero-img {
  border-radius: 30px;
  /* margin-top: 55px; */
}
@media (max-width: 1199px) {
  .hero-13 .th-hero-img {
    margin-top: 0;
  }
}
.hero-13 .th-hero-img img {
  border-radius: 30px;
}
.hero-style13 {
  padding: 210px 0 323px 0;
}
@media (max-width: 1199px) {
  .hero-style13 {
    padding: 160px 0 40px 0;
    max-width: 738px;
  }
}
@media (max-width: 575px) {
  .hero-style13 {
    padding: 130px 0 40px 0;
  }
}
.hero-style13 .sub-title {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 10px;
  color: white !important;
}
@media (max-width: 480px) {
  .hero-style13 .sub-title {
    font-size: 19px;
  }
}
.hero-style13 .hero-title {
  color: var(--white-color);
  font-size: 76px;
  line-height: 94px;
  margin-bottom: 0px;
}
@media (max-width: 1299px) {
  .hero-style13 .hero-title {
    font-size: 70px;
    line-height: 80px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .hero-style13 .hero-title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 480px) {
  .hero-style13 .hero-title {
    font-size: 35px;
    line-height: 50px;
  }
}
.hero-style13 .hero-title .square-text {
  position: relative;
  display: inline-block;
  font-weight: 400;
  line-height: 60px;
  /* background: -webkit-linear-gradient(top, #02ce80 0%, #7bd706 100%); */
  background: -webkit-linear-gradient(top, #16b7cd 0%, #16b7cd 100%);
  /* background: linear-gradient(180deg, #02ce80 0%, #7bd706 100%); */
  background: linear-gradient(180deg, #16b7cd 0%, #16b7cd 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding: 8px 33px 14px 33px;
  z-index: 2;
}
@media (max-width: 767px) {
  .hero-style13 .hero-title .square-text {
    line-height: 40px;
  }
}
@media (max-width: 480px) {
  .hero-style13 .hero-title .square-text {
    line-height: 30px;
  }
}
@media (max-width: 575px) {
  .hero-style13 .hero-title .square-text {
    line-height: 30px;
  }
}
.hero-style13 .hero-title .square-text:before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid;
  border-image-slice: 1;
  border-width: 2px;
  border-image-source: linear-gradient(180deg, #02ce80 0%, #7bd706 100%);
  z-index: -1;
}
.hero-style13 .hero-title .square-text .dot1,
.hero-style13 .hero-title .square-text .dot2 {
  position: absolute;
  top: -10px;
  height: calc(100% + 20px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.hero-style13 .hero-title .square-text .dot1:before,
.hero-style13 .hero-title .square-text .dot1:after,
.hero-style13 .hero-title .square-text .dot2:before,
.hero-style13 .hero-title .square-text .dot2:after {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  border: 2px solid;
  border-image-slice: 1;
  border-width: 2px;
  border-image-source: linear-gradient(180deg, #02ce80 0%, #7bd706 100%);
}
.hero-style13 .hero-title .square-text .dot1 {
  left: -9px;
}
.hero-style13 .hero-title .square-text .dot2 {
  right: -9px;
}
.hero-style13 .hero-wrapp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1299px) {
  .hero-style13 .hero-wrapp {
    display: block;
  }
}
.hero-style13 .cilent-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 10px;
}
.hero-style13 .cilent-box img {
  margin-bottom: 10px;
}
.hero-style13 .cilent-box .title {
  color: var(--white-color);
  display: block;
  margin-bottom: 5px;
}
.hero-style13 .cilent-box .about_review i {
  color: #ff9900;
  font-size: 14px;
  margin-right: 5px;
}
.hero-style13 .cilent-box .line-btn {
  font-size: 14px;
  color: var(--white-color);
  text-transform: capitalize;
  font-weight: 400;
  padding-bottom: 0;
}
.hero-style13 .cilent-box .line-btn i {
  font-size: 14px;
}
.hero-style13 .cilent-box .line-btn:before {
  display: none;
}
.hero-style13 .about-wrapp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 375px) {
  .hero-style13 .about-wrapp {
    display: block;
  }
}
.hero-style13 .btn-group:has(.call-btn) {
  gap: 24px;
}
.hero-style13 .th-btn {
  font-size: 16px;
  padding: 20.5px 47px;
  border-radius: 100px;
}
.brand-slider7 {
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #eff1f9;
  padding: 40px 36px 40px 36px;
  max-width: 1008px;
  margin-left: 0;
  -webkit-clip-path: polygon(
    0 0,
    95% 0%,
    100% 40%,
    100% 80%,
    100% 100%,
    0 100%,
    0% 80%,
    0% 20%
  );
  clip-path: polygon(
    0 0,
    95% 0%,
    100% 40%,
    100% 80%,
    100% 100%,
    0 100%,
    0% 80%,
    0% 20%
  );
}
@media (max-width: 991px) {
  .brand-slider7 {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .brand-slider7 {
    max-width: 100%;
    padding: 15px;
  }
}
.appointment-form2 {
  margin-left: 75px;
}
@media (max-width: 1299px) {
  .appointment-form2 {
    margin-left: 40px;
  }
}
@media (max-width: 1199px) {
  .appointment-form2 {
    margin-left: 0;
  }
}
.appointment-form2 .form-control,
.appointment-form2 textarea,
.appointment-form2 input {
  background-color: var(--white-color);
  border: none;
  color: var(--body-color);
  font-weight: 400;
  border-radius: 100px;
}
.appointment-form2 .form-control::-moz-placeholder,
.appointment-form2 textarea::-moz-placeholder,
.appointment-form2 input::-moz-placeholder {
  color: var(--body-color);
}
.appointment-form2 .form-control::-webkit-input-placeholder,
.appointment-form2 textarea::-webkit-input-placeholder,
.appointment-form2 input::-webkit-input-placeholder {
  color: var(--body-color);
}
.appointment-form2 .form-control:-ms-input-placeholder,
.appointment-form2 textarea:-ms-input-placeholder,
.appointment-form2 input:-ms-input-placeholder {
  color: var(--body-color);
}
.appointment-form2 .form-control::-webkit-input-placeholder,
.appointment-form2 textarea::-webkit-input-placeholder,
.appointment-form2 input::-webkit-input-placeholder {
  color: var(--body-color);
}
.appointment-form2 .form-control::-moz-placeholder,
.appointment-form2 textarea::-moz-placeholder,
.appointment-form2 input::-moz-placeholder {
  color: var(--body-color);
}
.appointment-form2 .form-control:-ms-input-placeholder,
.appointment-form2 textarea:-ms-input-placeholder,
.appointment-form2 input:-ms-input-placeholder {
  color: var(--body-color);
}
.appointment-form2 .form-control::-ms-input-placeholder,
.appointment-form2 textarea::-ms-input-placeholder,
.appointment-form2 input::-ms-input-placeholder {
  color: var(--body-color);
}
.appointment-form2 textarea.form-control,
.appointment-form2 textarea {
  min-height: 150px;
  border-radius: 20px;
}
.appointment-form2 .th-btn {
  padding: 20px 51px;
  margin-top: 10px;
}
.appointment-form2 .row {
  --bs-gutter-x: 11px;
}
.contact-item_link:not(:hover),
.contact-item_text:not(:hover) {
  color: var(--title-color);
}
.btn-group:has(.call-btn) {
  gap: 50px;
}
@media (max-width: 575px) {
  .btn-group:has(.call-btn) {
    gap: 30px;
  }
}
.img-box14 {
  position: relative;
  z-index: 2;
  line-height: 1px;
  padding: 40px;
}
@media (max-width: 1199px) {
  .img-box14 {
    margin-bottom: 50px;
  }
}
.img-box14 .img1 {
  display: inline-block;
  border-radius: 30px;
  overflow: hidden;
}
.img-box14 .img2 {
  position: absolute;
  bottom: -6%;
  right: 10%;
  background-color: var(--white-color);
  padding: 10px 0 0 10px;
  -webkit-filter: drop-shadow(-10px 10px 15px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(-10px 10px 15px rgba(0, 0, 0, 0.15));
  border-radius: 10px;
  -webkit-animation: jumpAni 7s linear infinite;
  animation: jumpAni 7s linear infinite;
}
.img-box14 .img2 img {
  border-radius: inherit;
}
.img-box14 .img3 {
  position: absolute;
  left: -55px;
  top: 80px;
  -webkit-filter: drop-shadow(-10px 10px 50px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(-10px 10px 50px rgba(0, 0, 0, 0.15));
  border-radius: 10px;
  -webkit-animation: jumpReverseAni 7s linear infinite;
  animation: jumpReverseAni 7s linear infinite;
}
@media (max-width: 1399px) {
  .img-box14 .img3 {
    left: -10px;
  }
}
.img-box14 .img3 img {
  border-radius: 10px;
}
.img-box14 .shape1 {
  position: absolute;
  top: -15px;
  right: -47px;
  z-index: -1;
}
@media (max-width: 991px) {
  .img-box14 .shape1 {
    right: 0;
  }
}
.img-box14 .shape2 {
  position: absolute;
  position: absolute;
  top: -1%;
  right: 8%;
  -webkit-animation: spin 8s linear infinite;
  animation: spin 8s linear infinite;
}
@media (max-width: 575px) {
  .img-box14 .img3 {
    left: 0;
    max-width: 40%;
  }
  .img-box14 .img2 {
    max-width: 30%;
    right: 0%;
  }
  .img-box14 .shape1 {
    max-width: 50%;
    left: -30px;
    top: 40%;
  }
}
.testimonial-area9 {
  /* padding: 220px 0; */
  padding-top: 150px;
  padding-bottom: 50px;
  -webkit-clip-path: path("M0 0L270 100.815H1920V825L1650 724.185H0V0Z");
  clip-path: path("M0 0L270 100.815H1920V825L1650 724.185H0V0Z");
}
@media (min-width: 1930px) {
  .testimonial-area9 {
    -webkit-clip-path: path(
      "M0 0L468.703 100.815H3333V825L2864.3 724.185H0V0Z"
    );
    clip-path: path("M0 0L468.703 100.815H3333V825L2864.3 724.185H0V0Z");
  }
}
@media (max-width: 1299px) {
  .testimonial-area9 {
    padding-bottom: 200px;
  }
}
@media (max-width: 1199px) {
  .testimonial-area9 {
    padding-bottom: 240px;
  }
}
@media (max-width: 991px) {
  .testimonial-area9 {
    padding: 80px 0;
    -webkit-clip-path: none;
    clip-path: none;
  }
}
.checklist ul {
  padding-left: 0;
  list-style: none;
  text-align: left;
  margin-bottom: 0;
}
.checklist li {
  color: var(--title-color);
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.checklist li > i {
  color: var(--theme-color);
}
.checklist li:not(:last-child) {
  margin-bottom: 10px;
}
.checklist.style8 li {
  gap: 15px;
  color: var(--body-color);
}
.checklist.style8 li i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 10px;
  font-size: 24px;
  background-color: #eff1f9;
  text-align: center;
}
@media (max-width: 1199px) {
  .checklist.mb-40 {
    margin-bottom: 32px;
  }
}
.two-column:has(.checklist.style6) {
  gap: 30px;
}
.th-anim {
  position: relative;
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}
.th-anim img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}
.skill-circle-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 60px;
}
@media (max-width: 1199px) {
  .skill-circle-wrap {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .skill-circle-wrap {
    gap: 10px;
  }
}
@media (max-width: 575px) {
  /* .skill-circle-wrap {
    display: block;
  } */
  .skill-circle-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 575px) {
  .skill-circle {
    margin-bottom: 30px;
  }
}
.skill-circle .box-text {
  font-family: var(--body-font);
  color: var(--title-color);
  margin-bottom: 0px;
  position: absolute;
  bottom: 40px;
  left: 25px;
  text-align: center;
}
.skill-circle .progressbar {
  position: relative;
  max-height: 176px;
}
.skill-circle .circle-num {
  font-family: var(--title-font);
  font-size: 54px;
  font-weight: 700;
  color: var(--title-color);
  font-family: var(--title-font);
  position: absolute;
  top: -20px;
  left: 0;
  width: 176px;
  height: 176px;
  line-height: 176px;
  border-radius: 50%;
  margin: 8px;
  text-align: center;
}
.appointment-area {
  padding: 100px;
}
@media (max-width: 991px) {
  .appointment-area {
    padding: 50px;
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .appointment-area {
    padding: 80px 40px;
  }
}
@media (max-width: 575px) {
  .appointment-area {
    padding: 80px 20px;
  }
}
.appointment-area .sub-title:after {
  background-color: var(--white-color);
}
@media (max-width: 991px) {
  .about-sec {
    padding-top: 50px;
  }
}

@media (max-width: 992px) {
  .service-area12 {
    padding: 40px 0px;
  }
}
.cta-sec6 {
  padding: 80px 100px;
  border-radius: 30px;
}
@media (max-width: 1199px) {
  .cta-sec6 {
    padding: 80px 50px;
  }
}

@media (max-width: 900px) {
  .cta-sec6 {
    padding: 35px 50px;
  }
}
.cta-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cta-content {
    display: block;
  }
}
.cta-content .cta-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 80px;
  margin-right: 80px;
  min-width: 440px;
}
@media (max-width: 1299px) {
  .cta-content .cta-wrapper {
    padding-right: 40px;
    margin-right: 40px;
    min-width: 360px;
  }
}
@media (max-width: 991px) {
  .cta-content .cta-wrapper {
    border: none;
    padding: 0;
    margin: 0;
  }
}
@media (max-width: 375px) {
  .cta-content .cta-wrapper {
    display: block;
  }
}
.cta-content .cta-wrapper .cta-icon {
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 90px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.cta-content .cta-wrapper .cta-icon:hover {
  background-color: var(--title-color);
}
@media (max-width: 375px) {
  .cta-content .cta-wrapper .cta-icon {
    margin-bottom: 20px;
  }
}
.cta-content .cta-wrapper .header-info_link {
  font-size: 30px;
  font-weight: 600;
  color: var(--white-color);
  letter-spacing: -0.3px;
  margin-bottom: 0;
}
@media (max-width: 1299px) {
  .cta-content .cta-wrapper .header-info_link {
    font-size: 24px;
  }
}
.cta-content .cta-wrapper .header-info_link a {
  color: inherit;
}
.cta-content .title-area {
  margin-right: 64px;
}
@media (max-width: 1299px) {
  .cta-content .title-area {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .cta-content .title-area {
    margin: 30px 0 30px 0 !important;
  }
}
.cta-content .cta-group {
  min-width: 160px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-left: auto;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}
@media (max-width: 991px) {
  .cta-content .cta-group {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0;
  }
}
.newsletter-form.style2 {
  position: relative;
  margin: auto;
}
.newsletter-form.style2 i {
  position: absolute;
  top: 22px;
  left: 30px;
  color: var(--theme-color);
}
.newsletter-form.style2 .form-control {
  border-radius: 100px;
  min-height: 56px;
  padding-left: 55px;
  padding-right: 200px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.newsletter-form.style2 .th-btn {
  background-color: transparent;
  background: var(
    --Theme-color,
    linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 100%)
  );
  min-width: 130px;
  padding: 16px 35px;
  border-radius: 100px;
  /* position: absolute; */
  top: 5px;
  right: 5px;
}
.service-item2 {
  position: relative;
  padding: 50px 40px 60px 40px;
  background-color: var(--theme-color);
  box-shadow: 0px 0px 15px #e9e9e9;
  border-radius: 5px 5px 50px 5px;
  margin-bottom: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: 2;
  height: 350px;
  margin: 10px;
}
@media (max-width: 1399px) {
  .service-item2 {
    padding: 40px 30px;
  }
}
@media (max-width: 1299px) {
  .service-item2 {
    padding: 50px 20px;
  }
}

.service-area12 {
  padding: 40px 0px;
}

@media (max-width: 500px) {
  .service-area12 {
    padding-bottom: 0px;
  }
  .service-item2 {
    height: 100%;
  }

  .service-item2_text {
    margin-bottom: 0px;
  }

  .img-box14 {
    width: 100%;
    padding: 5px;
  }

  .img-box14 .shape2 {
    top: -13%;
    right: -13%;
  }
}
.service-item2:hover:before {
  height: 0;
}
.service-item2:before,
.service-item2:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.service-item2:before {
  background-color: var(--white-color);
}
.service-item2:after {
  border-top: 6px solid var(--theme-color);
}
.service-item2 .box-title {
  font-weight: 600;
  margin-right: 40px;
}
@media (max-width: 1399px) {
  .service-item2 .box-title {
    margin-right: 20px;
  }
}
@media (max-width: 1299px) {
  .service-item2 .box-title {
    margin-right: 0;
  }
}
.service-item2 .box-title a {
  color: inherit;
}
.service-item2_text {
  margin-bottom: 25px;
}
.service-item2:hover .service-item2_text {
  color: var(--white-color);
}
.service-item2:hover .box-title {
  color: var(--white-color);
}
.service-item2:hover .line-btn {
  color: var(--white-color);
}
.service-item2:hover .line-btn:before {
  background-color: var(--white-color);
}
.service-item2 .line-btn {
  font-size: 16px;
  color: var(--theme-color);
  text-transform: capitalize;
}
.service-item2 .line-btn:before {
  background-color: var(--theme-color);
}
.gallery-box .box-title a:not(:hover) {
  color: var(--white-color);
}
.project-card2 {
  --space: 48px;
  position: relative;
  overflow: hidden;
}
.project-card2 .project-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  z-index: 2;
}
.project-card2 .project-img img {
  width: 100%;
  border-radius: 20px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.project-card2 .project-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 40, 0) 0%,
    rgba(0, 0, 40, 0.140476) 43.1%,
    #000028 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 40, 0) 0%,
    rgba(0, 0, 40, 0.140476) 43.1%,
    #000028 100%
  );
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: 1;
  border-radius: inherit;
  height: 100%;
  opacity: 1;
}
.project-card2 .project-content-wrap {
  position: absolute;
  left: var(--space);
  bottom: -30px;
  width: 100%;
  max-width: 474px;
  z-index: 3;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  bottom: var(--space);
  opacity: 1;
}
.project-card2 .project-content {
  background-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: auto;
  mask-size: auto;
  background-color: var(--white-color);
  background-size: auto;
  background-position: center center;
  position: relative;
  z-index: 2;
  padding: 90px 30px 30px 30px;
}
.project-card2 .box-title {
  color: var(--title-color);
  margin-bottom: 0px;
  line-height: 1;
}
.project-card2 .box-title a {
  color: inherit;
}
.project-card2 .box-title:hover {
  color: var(--theme-color);
}
.project-card2 .project-subtitle {
  font-size: 14px;
  margin-bottom: 5px;
  color: var(--theme-color);
}
.project-card2 .icon-btn {
  position: absolute;
  right: 20px;
  top: 25px;
  border: none;
  --btn-size: auto;
  color: var(--theme-color);
  font-size: 20px;
}
.project-card2:hover .project-img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.project-card2:hover .project-img:before {
  height: 100%;
  opacity: 1;
}
.project-card2:hover .project-content-wrap {
  bottom: var(--space);
  opacity: 1;
}
@media (max-width: 375px) {
  .project-card2 {
    --space: 15px;
  }
}
@media (max-width: 360px) {
  .project-card2 .box-title {
    font-size: 15px;
  }
  .project-card2 .project-content {
    padding: 12px 20px;
  }
}
.video-box2 {
  position: relative;
  text-align: center;
  margin-top: 35px;
}
@media (max-width: 991px) {
  .video-box2 {
    margin-bottom: 80px;
  }
}
.video-box2 img {
  width: 100%;
  border-radius: 30px;
}
.video-box2 .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 0;
  width: 100px;
  height: 100px;
  line-height: 102px;
  -webkit-transition: all 1s cubic-bezier(0, 0, 0.2, 1);
  transition: all 1s cubic-bezier(0, 0, 0.2, 1);
  border-radius: 50%;
  background: transparent;
  margin: 0 auto;
  display: inline-block;
  font-size: 24px;
  text-align: center;
  color: var(--white-color);
}
@media (max-width: 767px) {
  .video-box2 .video-play-btn {
    width: 50px;
    height: 50px;
    line-height: 52px;
    font-size: 20px;
  }
}
.video-box2 .video-play-btn i {
  color: var(--white-color);
}
.video-box2 .video-play-btn:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.3;
  transition: 0.3;
  border-radius: 50%;
  border: 2px solid var(--white-color);
  -webkit-animation: ripple 2s linear infinite;
  animation: ripple 2s linear infinite;
}
.video-box2 .video-play-btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.3;
  transition: 0.3;
  border-radius: 50%;
  border: 2px solid var(--white-color);
  -webkit-animation: ripple 2s linear 1s infinite;
  animation: ripple 2s linear 1s infinite;
}
.process-card-wrap:has(.pulse) {
  padding: 0 12px;
}
.process-card-wrap:has(.pulse):nth-child(even) {
  padding-top: 60px;
}
.process-card:has(.pulse) {
  margin-top: 52px;
}
@media (max-width: 1199px) {
  .process-card-wrap:has(.pulse):nth-child(even) {
    padding-top: 30px;
  }
  .process-card:has(.pulse) {
    margin-top: 8px;
  }
}
@media (max-width: 575px) {
  .process-card-wrap:has(.pulse):nth-child(even) {
    padding-top: 0;
  }
}
.process-image {
  border-radius: 20px;
}
.process-image img {
  border-radius: 20px;
}
.process-tabs-wrapper {
  position: relative;
  border-radius: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-filter: drop-shadow(0px 16px 48px rgba(18, 20, 26, 0.06));
  filter: drop-shadow(0px 16px 48px rgba(18, 20, 26, 0.06));
  z-index: 3;
  overflow: hidden;
}
@media (max-width: 990px) {
  .process-tabs-wrapper {
    display: block;
  }
}
.process-tabs-wrapper:before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-size: cover;
  background-position: center center;
  -webkit-mask-image: url(../img/shape/process-shape.png);
  mask-image: url(../img/shape/process-shape.png);
  background-color: var(--white-color);
  z-index: -1;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .process-tabs-wrapper {
    gap: 30px;
  }
}
.process-tabs-wrapper .process-image {
  min-width: 344px;
  border-radius: 30px;
}
@media (max-width: 1199px) {
  .process-tabs-wrapper .process-image {
    min-width: 230px;
  }
}
@media (max-width: 767px) {
  .process-tabs-wrapper .process-image {
    min-width: 100%;
    margin-top: 40px;
  }
}
.process-tabs-wrapper .box-text {
  font-size: 14px;
  margin-bottom: 0;
}
.process-tabs-wrapper .checklist li {
  font-size: 14px;
}
.process-tabs-wrapper .checklist li:not(:last-child) {
  margin-bottom: 5px;
}
.process-tabs-wrapper .th-btn {
  margin-top: 30px;
}
.process-tabs-tabs.nav-tabs {
  border-bottom: none;
  padding: 60px 40px 60px 60px;
  display: block;
}
@media (max-width: 1299px) {
  .process-tabs-tabs.nav-tabs {
    padding: 40px 40px 40px 40px;
  }
}
@media (max-width: 991px) {
  .process-tabs-tabs.nav-tabs {
    padding: 40px 20px 40px 40px;
    margin-bottom: 0;
  }
}

@media (max-width: 375px) {
  .process-tabs-tabs.nav-tabs {
    max-width: 100%;
    padding: 60px 20px 20px 20px;
  }
}
.process-tabs-tabs.nav-tabs .nav-link:focus,
.process-tabs-tabs.nav-tabs .nav-link:hover {
  color: var(--title-color);
  background-color: transparent;
  border-color: transparent;
}
.process-tabs-tabs.nav-tabs .nav-link.active {
  color: var(--white-color);
  background-color: transparent;
  border-color: transparent;
}
.process-tabs-tabs.nav-tabs .nav-link.active .step {
  color: var(--white-color);
  background-color: var(--theme-color);
}
.process-tabs-tabs.nav-tabs .nav-link.active .title {
  color: var(--white-color);
  background-color: var(--theme-color);
}

@media (max-width: 768px) {
  .process-tabs-tabs .nav-link {
    width: 100%;
  }
  .process-tabs-tabs .nav-link .step {
    width: 50%;
  }

  .process-tabs-tabs .nav-link .title {
    width: 100%;
  }
}

.process-tabs-tabs .nav-link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.process-tabs-tabs .nav-link:not(:last-child) {
  margin-bottom: 18px;
}
@media (max-width: 520px) {
  .process-tabs-tabs .nav-link {
    display: block;
  }
}
.process-tabs-tabs .nav-link .step {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: var(--title-color);
  background-color: var(--white-color);
  border: 1px solid #e3e7f0;
  border-radius: 100px;
  display: block;
  padding: 19.5px 28px;
  min-width: 124px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .process-tabs-tabs .nav-link .step {
    font-size: 14px;
    padding: 16px 20px;
  }
}
@media (max-width: 520px) {
  .process-tabs-tabs .nav-link .step {
    margin-bottom: 20px;
  }
}
@media (max-width: 375px) {
  .process-tabs-tabs .nav-link .step {
    min-width: 100%;
    padding: 14px 30px;
  }
}
.process-tabs-tabs .nav-link .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: var(--title-color);
  background-color: var(--white-color);
  border: 1px solid #e3e7f0;
  border-radius: 100px;
  display: block;
  padding: 14px 28px;
  min-width: 300px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1299px) {
  .process-tabs-tabs .nav-link .title {
    min-width: 200px;
  }
}
@media (max-width: 1199px) {
  .process-tabs-tabs .nav-link .title {
    font-size: 16px;
    padding: 14px 20px;
    min-width: 150px;
  }
}
@media (max-width: 990px) {
  .process-tabs-tabs .nav-link .title {
    min-width: 300px;
  }
}
@media (max-width: 375px) {
  .process-tabs-tabs .nav-link .title {
    min-width: 100%;
    padding: 14px 30px;
  }
}
@media (max-width: 991px) {
  .process-tabs-tabs {
    margin-bottom: 30px;
  }
}
.process-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  border-left: 1px solid #e3e7f0;
  padding: 60px 60px 60px 40px;
  z-index: 2;
}
@media (max-width: 1299px) {
  .process-wrapper {
    padding: 40px 40px 40px 40px;
  }
}
@media (max-width: 1199px) {
  .process-wrapper {
    padding: 60px 40px 40px 0;
    margin: 0;
    border: none;
  }
}
@media (max-width: 991px) {
  .process-wrapper {
    padding: 40px 40px 40px 0;
  }
}
@media (max-width: 990px) {
  .process-wrapper {
    padding: 0px 40px 40px 60px;
  }
}
@media (max-width: 767px) {
  .process-wrapper {
    display: block;
    padding: 0 40px 40px 40px;
  }
}
.process-wrapper:before {
  content: "";
  position: absolute;
  top: 60px;
  left: -2px;
  width: 9px;
  height: 35px;
  background-color: var(--white-color);
  z-index: 1;
}
.process-area5 {
  position: relative;
  padding: 200px 0 120px 0;
  -webkit-clip-path: path("M0 0L270 128.559H1920V1192L1650 1068.58H0V0Z");
  clip-path: path("M0 0L270 128.559H1920V1192L1650 1068.58H0V0Z");
}
@media (min-width: 1930px) {
  .process-area5 {
    -webkit-clip-path: path(
      "M0 0L468.703 128.559H3333V1192L2864.3 1068.58H0V0Z"
    );
    clip-path: path("M0 0L468.703 128.559H3333V1192L2864.3 1068.58H0V0Z");
  }
}
#ourLeaders {
  padding: 40px 0px;
}

@media (max-width: 990px) {
  .process-area5 {
    -webkit-clip-path: none;
    clip-path: none;
    padding: 40px 0 80px 0;
    margin-bottom: 40px;
  }

  #ourLeaders {
    padding: 40px 0px;
  }

  .video-box2 {
    margin-bottom: 0;
  }

  .appointment-area {
    margin-top: 0px;
  }
}
@media (max-width: 1199px) {
  .process-area5 .container {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .process-area5 {
    padding: 330px 0 80px 0;
  }
}
.feature-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}
@media (max-width: 1199px) {
  .feature-wrapper {
    margin-bottom: 30px;
  }
}
.feature-wrapper.style4 {
  gap: 15px;
}
.feature-wrapper .feature-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--white-color);
  font-size: 14px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--white-color);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.feature-wrapper .feature-icon:hover {
  background-color: var(--white-color);
}
.feature-wrapper .feature-icon:hover i {
  color: var(--theme-color);
}
.feature-wrapper .feature-icon i {
  color: var(--white-color);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.feature-wrapper .header-info_link {
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: -0.3rem;
}
.feature-wrapper .header-info_link a {
  color: inherit;
}
.feature-wrapper .header-info_label {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
  margin-bottom: 0;
}
.sec-desc {
  font-size: 18px;
  color: #c7c7c7;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mt-n2 {
  margin-top: -0.6rem;
}
.space,
.space-top {
  padding-top: var(--section-space);
}
.space,
.space-bottom {
  padding-bottom: var(--section-space);
}
@media (max-width: 991px) {
  .space,
  .space-top {
    padding-top: var(--section-space-mobile);
  }
  .space,
  .space-bottom {
    padding-bottom: var(--section-space-mobile);
  }
}

/* .process-area5 {
  background: url(../img/bg/process_bg_2.jpg);
  margin-top: -742px;
} */

.process-area5 {
  margin-top: 0px !important;
}

@media (max-width: 500px) {
  #about-sec .btn-group {
    gap: 2px;
  }

  #ourLeaders {
    padding: 20px;
  }
}

@media (max-width: 500px) {
  .cta-sec6 {
    padding: 25px 30px;
  }

  .cta-sec6 .sec-title {
    font-size: 20px;
  }

  .process-area5 {
    padding: 35px 0 80px 0;
  }

  .process-wrapper {
    padding: 0 20px 20px 20px;
  }
}

.project-sec {
  padding: 20px 0px;
}

.ourLeaders {
  padding: 80px 20px;
}

.team-img img {
  width: 100%;
}

.team-card3.style2 {
  box-shadow: 1px 5px 10px 5px transparent;
}

.team-card3 .team-img {
  position: relative;
  border-radius: 15px;
}

.team-card3 .team-img img {
  border-radius: 15px;
  -webkit-transition: 1.3s all ease;
  transition: 1.3s all ease;
}

.team-card3 .box-content {
  background-color: var(--white-color);
  border-radius: 15px;
  padding: 20px 0px 10px 0px;
}

.team-card3 .box-title {
  margin-bottom: 6px;
  margin-bottom: -0.3rem;
}

.team-card3 .team-desig {
  color: #737887;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: -0.3rem;
}

.team-card3 {
  position: relative;
  text-align: center;
  background-color: var(--white-color);
  border-radius: 30px;
  padding: 20px;
}

@media (max-width: 500px) {


  .process-wrapper {
    display: block;
    padding: 10px 20px;
  }

  .why-sec-v5 .title-area .sec-title {
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .process-tabs-tabs .nav-link .step {
    width: 100%;
  }

  #about-sec .btn-group {
    display: flex;
    justify-content: space-between;
  }
  #about-sec .btn-group .th-btn {
    width: 49%;
  }

  .video-box2 {
    margin-bottom: 0;
  }

  .testimonial-area9 {
    padding: 40px 0px;
  }
}


