@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");

* {
  font-family: "Roboto Condensed", sans-serif;
  list-style: none;
  text-decoration: none;
  line-height: 1.4;
}
.mb-60 {
  margin-bottom: 60px;
}
.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.my-35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.my-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  text-decoration: none;
}
body {
  background: -webkit-linear-gradient(
    top,
    rgba(237, 240, 244, 0) 0%,
    rgba(237, 240, 244, 0.85) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(237, 240, 244, 0) 0%,
    rgba(237, 240, 244, 0.85) 100%
  );
  background-image: -webkit-linear-gradient(
    349.38deg,
    rgba(249, 215, 175, 0.3) 0%,
    rgba(214, 202, 245, 0.3) 24.03%,
    rgba(198, 241, 255, 0.3) 45.73%,
    rgba(248, 242, 222, 0.3) 69.05%,
    rgba(212, 179, 253, 0.3) 100.44%
  );
  background-image: linear-gradient(
    100.62deg,
    rgba(249, 215, 175, 0.3) 0%,
    rgba(214, 202, 245, 0.3) 24.03%,
    rgba(198, 241, 255, 0.3) 45.73%,
    rgba(248, 242, 222, 0.3) 69.05%,
    rgba(212, 179, 253, 0.3) 100.44%
  );
  -webkit-backdrop-filter: blur(10px);
  background-image: -webkit-linear-gradient(
    10deg,
    rgba(249, 215, 175, 0.3) 0%,
    rgba(214, 202, 245, 0.3) 23.81%,
    rgba(198, 241, 255, 0.3) 45.3%,
    rgba(248, 242, 222, 0.3) 68.4%,
    rgba(212, 179, 253, 0.3) 99.5%
  );
  background-image: linear-gradient(
    80deg,
    rgba(249, 215, 175, 0.3) 0%,
    rgba(214, 202, 245, 0.3) 23.81%,
    rgba(198, 241, 255, 0.3) 45.3%,
    rgba(248, 242, 222, 0.3) 68.4%,
    rgba(212, 179, 253, 0.3) 99.5%
  );

  background-image: -webkit-linear-gradient(
    349.38deg,
    rgba(249, 215, 175, 0.3) 0%,
    rgba(214, 202, 245, 0.3) 24.03%,
    rgba(198, 241, 255, 0.3) 45.73%,
    rgba(248, 242, 222, 0.3) 69.05%,
    rgba(212, 179, 253, 0.3) 100.44%
  );
  background-image: linear-gradient(
    100.62deg,
    rgba(249, 215, 175, 0.3) 0%,
    rgba(214, 202, 245, 0.3) 24.03%,
    rgba(198, 241, 255, 0.3) 45.73%,
    rgba(248, 242, 222, 0.3) 69.05%,
    rgba(212, 179, 253, 0.3) 100.44%
  );
  backdrop-filter: blur(10px);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
nav {
  width: 100%;
  background-color: white;
  top: 0;
  left: 0;
  z-index: 1000;
  position: sticky;
  transition: background 0.3s ease;
}

/* Class to be added on scroll */
nav.scrolled {
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 1)
  );
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
  max-width: 1224px;
}
.logo img {
  width: 12rem;
}
.mobileLogo {
  display: none;
}
.nav ul {
  display: flex;
  gap: 3rem;
  right: 0;
  position: absolute;
    

}
.nav ul li {
  font-weight: 500;
  letter-spacing: 0.7px;
}

@media (min-width: 1224px) {
  .nav ul {
    position: static;
    margin-left: auto;
  }
}
.mobile-nav-toggle {
  display: none;
}

@media (max-width: 600px) {
 .nav ul {
  gap: 2em;
  inset: 0 0 0 0%;
  flex-direction: column;
  padding: min(20vh, 10rem) 2em;
  background: rgba(255, 255, 255, 0.968);
  backdrop-filter: blur(40px);
  z-index: 1000;
  height: fit-content;
  transform: translateY(-100%); 
  transition: transform 880ms ease-out, opacity 880ms ease-out;
  opacity: 0; 
  visibility: hidden; 
  text-align: center;
}

.nav ul[data-visible="true"] {
  transform: translateY(0%); 
  opacity: 1; 
  visibility: visible; 
}

  .mobile-nav-toggle {
    position: absolute;
    width: 2rem;
    aspect-ratio: 1;
    top: 1rem;
    right: 2rem;
    z-index: 9999;
    cursor: pointer;
    border: none;
    display: block;
    background: transparent;
    font-size: 18px;
  }
  .mobileLogo {
    display: block;
  }
  .mobileLogo > div {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .mobileLogo > div img {
    width: 8rem;
    padding: 1rem 0;
  }
  .mobileLogo > div span {
    font-size: 14px;
    font-weight: 500;
  }
  .logo {
    display: none;
  }
}

@media (min-width: 601px) {
  nav ul {
    padding-block: 1.4rem;
    padding-inline: clamp(3rem, 10vw, 10rem);
    gap: clamp(1.5rem, 5vw, 3rem);
  }
}

ul.dropdown {
  display: none;
  position: absolute;
  background-color: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 250px;
  border-radius: 4px;
  margin-top: 12px;
}

ul.dropdown li {
  padding: 10px;
}

ul.dropdown li a {
  color: #333;
  text-decoration: none;
  display: block;
}

.services-dropdown {
  position: relative;
}

/* When dropdown is visible */
ul.dropdown.active {
  opacity: 1;
  visibility: visible;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 80%;
  height: auto;
}

/* hero wrapper */
.herWrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hero-1 .hero-shape1,
.hero-1 .hero-shape2,
.hero-1 .hero-shape3 {
  position: absolute;
  z-index: 2;
}

.hero-1 .hero-shape1,
.hero-1 .hero-shape2 {
  top: 10%;
  right: 0;
  -webkit-animation: jumpAni 7s linear infinite;
  animation: jumpAni 7s linear infinite;
}

.hero-1 .hero-shape2 {
  -webkit-animation: jumpReverseAni 7s linear infinite;
  animation: jumpReverseAni 7s linear infinite;
}

.hero-1 .hero-shape3 {
  bottom: -80px;
  left: -60px;
  -webkit-animation: jumpAni 7s linear infinite;
  animation: jumpAni 7s linear infinite;
}

.hero-1 .hero-img {
  position: absolute;
  top: 60px;
  right: 10%;
  z-index: 3;
}

.hero-1 .hero-img:before {
  content: "";
  width: 500px;
  height: 500px;
  background-color: #f2ba4c;
  opacity: 0.3;
  -webkit-filter: blur(300px);
  filter: blur(300px);
  border-radius: 50%;
  position: absolute;
  right: -40px;
  top: -180px;
  z-index: -1;
  -webkit-animation: bgColor 8s ease-in-out infinite;
  animation: bgColor 8s ease-in-out infinite;
}

.jump {
  -webkit-animation: jumpAni 7s linear infinite;
  animation: jumpAni 7s linear infinite;
}

@-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);
  }
}

.jump-reverse {
  -webkit-animation: jumpReverseAni 7s linear infinite;
  animation: jumpReverseAni 7s linear infinite;
}

@-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);
  }
}
.heroContainer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  width: 90%;
  margin: auto;
  max-width: 1224px;
  flex-direction: row-reverse;
}
.heroContainer .heroContent {
  width: 60%;
  margin-top: 4rem;
  z-index: 3;
}
.heroContainer img {
  z-index: 3;
  width: 400px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.heroContent .subtitle {
  font-size: 16px;
  letter-spacing: 1px;
}
.heroContent .title {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.2px;
  margin-top: clamp(1.4rem, 3vw, 4rem);
}

.circle-sketch-highlight {
  position: relative;
  left: 0.5em;
  font-size: 48px;
  font-weight: 600;
}
.circle-sketch-highlight:before {
  content: "";
  z-index: -1;
  left: -0.5em;
  top: -0.1em;
  border-width: 2px;
  border-style: solid;
  border-color: #ef8c22;
  position: absolute;
  border-right-color: transparent;
  width: 100%;
  height: 1em;
  transform: rotate(2deg);
  opacity: 0.7;
  border-radius: 50%;
  padding: 0.1em 0.25em;
}
.circle-sketch-highlight:after {
  content: "";
  z-index: -1;
  left: -0.5em;
  top: 0.1em;
  padding: 0.1em 0.25em;
  border-width: 2px;
  border-style: solid;
  border-color: #ef8c22;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  width: 100%;
  height: 1em;
  transform: rotate(-1deg);
  opacity: 0.7;
  border-radius: 50%;
}

.heroContainer .hero-text {
  font-size: 16px;
  letter-spacing: 0.6px;
}
.hero-text {
  font-size: 16px;
  letter-spacing: 0.6px;
}
.btn-group a {
  display: inline-block;
  border: none;
  background-color: #f2ba4c;
  color: black;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
}

.btn-group a:hover {
  background-color: #d9a639;
  transform: translateY(-2px);
}

.about-sec-v4 {
  padding-top: 67px;
}

.feature-card {
  text-align: center;
  border: 2px solid #d9e0f3;
  border-radius: 10px;
  padding: 40px 12px;
}

.feature-card .shape-icon {
  width: 120px;
  height: 115px;
  line-height: 115px;
  margin: 0 auto 30px auto;
  -webkit-filter: drop-shadow(0px 10px 30px rgba(8, 14, 28, 0.06));
  filter: drop-shadow(0px 10px 30px rgba(8, 14, 28, 0.06));
}

.feature-card .shape-icon:before {
  background-color: white;
  -webkit-clip-path: path(
    "M6.35418 25.7699C-3.10248 43.0115 -1.601 65.2669 8.18807 82.317C21.8699 106.149 51.9755 119.386 78.1565 111.915C104.338 104.443 123.425 76.1006 119.484 48.8163C112.307 -0.867846 31.1988 -19.5262 6.35418 25.7699Z"
  );
  clip-path: path(
    "M6.35418 25.7699C-3.10248 43.0115 -1.601 65.2669 8.18807 82.317C21.8699 106.149 51.9755 119.386 78.1565 111.915C104.338 104.443 123.425 76.1006 119.484 48.8163C112.307 -0.867846 31.1988 -19.5262 6.35418 25.7699Z"
  );
}

.feature-card_text {
  max-width: 315px;
  margin: 0 auto -0.5em auto;
}

.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: #180b53;
}

.img-box6 {
  position: relative;
}

.img-box6 .shape1 {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-animation: jumpReverseAni 7s linear infinite;
  animation: jumpReverseAni 7s linear infinite;
}

.img-box6 .shape2 {
  position: absolute;
  top: 0;
  left: -40px;
  -webkit-animation: moving 8s linear infinite;
  animation: moving 8s linear infinite;
}

.img-box6 .img1 {
  position: relative;
  text-align: right;
  z-index: 2;
  border-radius: 30px;
}

.title-area {
  margin-bottom: calc(60px - 10px);
  position: relative;
  z-index: 2;
}
.sub-title {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #180b53;
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 24px;
  margin-top: -0.34em;
}

.sec-title {
  margin-bottom: calc(60px - 10px);
  margin-top: -0.32em;
  text-transform: capitalize;
}

.checklist ul {
  padding-left: 0;
  list-style: none;
  text-align: left;
  margin-bottom: 0;
}

.checklist li {
  color: #141d38;
  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: #180b53;
}

.checklist.style4 li {
  color: #141d38;
}

.checklist.style4 li:not(:last-child) {
  margin-bottom: 20px;
}

.checklist.style4 li > i {
  font-size: 25px;
}

.checklist.style4 li img {
  max-width: 26px;
}

.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: #180b53;
  color: white;

  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 20.5px 20px;
  min-width: 144px;
  border-radius: 4px;
}

.round-container {
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .round-container {
    border-radius: 0;
  }
}
@media (max-width: 600px) {
  .heroContainer {
    display: flex;
    flex-direction: column;
  }
  .heroContainer .heroContent {
    width: 100%;
  }

  .circle-sketch-highlight {
    position: relative;
    left: 0.5em;
    font-size: 28px;
    font-weight: 600;
  }
  .img-box6 .img1 {
    margin-bottom: 2rem;
    width: 80%;
  }
  .img-box6 .shape2,
  .img-box6 .shape1,
  .img-box7 .shape2,
  .img-box8 .shape2,
  .img-box7 .shape1,
  .img-box8 .shape1 {
    width: 30%;
  }
  .counter-card {
    margin-top: 1rem;
  }
  .counter-card_number {
    font-size: 24px;
  }
  .checklist.style2 li {
    font-size: 12px !important;
  }
  .checklist.style2 li img {
    font-size: 13px !important;
  }
  .partner-img {
    padding: 0 !important;
    background-color: transparent !important;
  }
  .process-card-area .position-top {
    display: none;
  }
  .widget_title {
    margin-top: 2rem;
  }

  ul.dropdown {
    margin-top: 2rem;
  }
  ul.dropdown li a {
    text-decoration: none;
    display: block;
    color: #180b53;
    font-weight: normal;
    opacity: 1;
  }
  .hero-text {
    text-align: justify;
    white-space: -1px;
  }
  .sub-title {
    margin-top: 12px;
  }
}

.arrow-wrap {
  position: relative;
}

.arrow-wrap .slider-arrow {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.4);
  -ms-transform: scale(0.4);
  transform: scale(0.4);
}

@media (max-width: 1299px) {
  .arrow-wrap .slider-arrow {
    display: none;
  }
}

.arrow-wrap:hover .slider-arrow {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.counter-card {
  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: 30px;
}

.counter-card_icon {
  width: 112px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  position: relative;
  padding-left: 15px;
  margin-bottom: 2px;
  z-index: 2;
}

.media-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.counter-card_icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.counter-card_number {
  font-size: 40px;
  color: black;
  font-weight: 900;
  margin-bottom: 8px;
  margin-top: -0.3em;
}

.counter-card_text {
  font-weight: 500;
  color: white;
  display: block;
  margin-bottom: -0.5em;
}

.counter-card .icon {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.counter-card:hover .counter-card_icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.counter-card:hover .icon {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

@media (max-width: 1299px) {
  .counter-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .counter-card_number {
    margin-bottom: 4px;
  }
}

@media (max-width: 375px) {
  .counter-card_number {
    font-size: 36px;
  }

  .counter-card_text {
    font-size: 14px;
  }
}

.title-area {
  margin-bottom: calc(60px - 10px);
  position: relative;
  z-index: 2;
}
.slider-area {
  position: relative;
}

.fadein,
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-name: var(--animation-name);
  animation-name: var(--animation-name);
}

.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);
}

.swiper-slide-active .fadein {
  --animation-name: fadein;
}

.swiper-slide-active .scalein {
  --animation-name: scalein;
}

.swiper-slide-active .slidetopleft {
  --animation-name: slidetopleft;
}

.swiper-slide-active .slidebottomright {
  --animation-name: slidebottomright;
}

.swiper-slide-active .slideinleft {
  --animation-name: slideinleft;
}

.swiper-slide-active .slideinright {
  --animation-name: slideinright;
}

.swiper-slide-active .slideinup {
  --animation-name: slideinup;
}

.swiper-slide-active .slideindown {
  --animation-name: slideindown;
}

.swiper-slide-active .rollinleft {
  --animation-name: rollinleft;
}

.swiper-slide-active .rollinright {
  --animation-name: rollinright;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes slideinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@-webkit-keyframes slideinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(180px);
    transform: translateX(180px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(180px);
    transform: translateX(180px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slideindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slidebottomright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(120px) translateY(120px);
    transform: translateX(120px) translateY(120px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@keyframes slidebottomright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(120px) translateY(120px);
    transform: translateX(120px) translateY(120px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@-webkit-keyframes slidetopleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px) translateY(-100px);
    transform: translateX(-100px) translateY(-100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@keyframes slidetopleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px) translateY(-100px);
    transform: translateX(-100px) translateY(-100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.shape-mockup-wrap {
  z-index: 2;
  position: relative;
}

.img-box7,
.img-box8 {
  position: relative;
  margin-left: 50px;
}

.img-box7 .shape1,
.img-box8 .shape1 {
  position: absolute;
  top: 0;
  left: 0px;
  -webkit-animation: jumpReverseAni 7s linear infinite;
  animation: jumpReverseAni 7s linear infinite;
}

.img-box7 .shape2,
.img-box8 .shape2 {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-animation: moving 8s linear infinite;
  animation: moving 8s linear infinite;
}

.checklist.style2 li {
  font-size: 18px;
  font-weight: 700;
  color: #180b53;
  gap: 15px;
}

.checklist.style2 li:not(:last-child) {
  margin-bottom: 26px;
}

.checklist.style2 li > i {
  font-size: 20px;
  border-radius: 50%;
  border: 1px dashed #180b53;
  padding: 9px;
}

.mt-n2 {
  margin-top: -0.6rem;
}

.two-column {
  display: grid;
  grid-template-columns: auto auto;
  max-width: 700px;
}
.shape-mockup {
  position: absolute;
  z-index: -1;
}
.particle-3 {
  max-width: 600px;
  height: 470px;
}

.process-card-area {
  position: relative;
}

.process-card-area .process-line {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.process-card-area .position-top {
  /* top: 42px; */
  bottom: unset;
}
.gy-40 {
  --bs-gutter-y: 40px;
}
.process-card-wrap {
  padding: 30px 0 0 30px;
}

.process-card-wrap:has(.pulse) {
  padding: 0 12px;
}

.process-card-wrap:has(.pulse):nth-child(even) {
  padding-top: 60px;
}

.service-3d {
  text-align: center;
  background: var(--white-color);
  border-radius: 10px;
  padding: 40px 12px;
}

.service-3d_text {
  max-width: 315px;
  margin: 0 auto 22px auto;
}

.service-3d_icon {
  margin-bottom: 30px;
}

.service-3d_icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-3d .th-btn {
  padding: 15.5px 18px;
  background-color: #f5f5f5;
  color: #141d38;
  box-shadow: none;
}

.service-3d .th-btn:before,
.service-3d .th-btn:after {
  background-color: #f5f5f5;
}

.service-3d .th-btn:hover {
  color: white;
}

.service-3d .th-btn:hover:before,
.service-3d .th-btn:hover:after {
  background-color: #180b53;
}

.service-3d:hover .service-3d_icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.ripple-animation,
.play-btn:after,
.play-btn:before,
.testi-box_quote:after,
.testi-box_quote:before,
.testi-grid_quote:after,
.testi-grid_quote:before,
.faq-img4 .faq-shape:after,
.faq-img4 .faq-shape:before,
.service-grid_icon:after,
.service-grid_icon:before,
.process-card_number:after,
.process-card_number:before,
.process-card .pulse:after,
.process-card .pulse:before {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: ripple;
  animation-name: ripple;
}

.process-card {
  position: relative;
  box-shadow: 0px 10px 15px rgba(8, 14, 28, 0.06);
  border-radius: 10px;
  background-color: white;
  text-align: center;
  padding: 30px 20px;
  max-width: 230px;
  margin-left: auto;
  margin-right: auto;
}

.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;
}

.process-card .box-title {
  font-weight: 600;
  margin-bottom: 14px;
}

.process-card_icon {
  margin-bottom: 24px;
}
.process-card_number,
.process-card .pulse {
  height: 60px;
  width: 60px;
  line-height: 60px;
  background-color: #180b53;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: -30px;
  left: -30px;
  z-index: 2;
  font-size: 36px;
  font-weight: 700;
  color: white;
}

.process-card_number:after,
.process-card .pulse:after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.process-card .pulse {
  width: 16px;
  height: 16px;
  position: absolute;
  top: -52px;
  left: calc(50% - 8px);
}

.process-card .pulse:before,
.process-card .pulse:after {
  -webkit-animation-name: ripple2;
  animation-name: ripple2;
}

.process-card_number:after,
.process-card_number:before,
.process-card .pulse:after,
.process-card .pulse:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #180b53;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

@-webkit-keyframes ripple2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.4;
  }

  100% {
    -webkit-transform: scale(2.8);
    transform: scale(2.8);
    opacity: 0;
  }
}

@keyframes ripple2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.4;
  }

  100% {
    -webkit-transform: scale(2.8);
    transform: scale(2.8);
    opacity: 0;
  }
}

.accordion-card {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  box-shadow: 0px 5px 15px rgba(42, 77, 113, 0.04);
  border-radius: 5px;
  overflow: hidden;
}

.accordion-card:not(:last-child) {
  margin-bottom: 24px;
}

.accordion-card .accordion-button {
  font-size: 18px;
  font-weight: 700;

  border: 0;
  color: #180b53;
  background-color: white;
  border-radius: 0;
  padding: 12px 45px 12px 30px;
  min-height: 56px;
  gap: 10px;
  margin-bottom: 0;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.accordion-card .accordion-button:after {
  content: "\2b";
  height: 100%;
  width: auto;
  line-height: 1;
  background-color: transparent;
  color: #180b53;
  font-weight: 700;
  font-size: 1em;
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 30px;
  -webkit-clip-path: polygon(20px 0%, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(20px 0%, 100% 0, 100% 100%, 0% 100%);
  padding-left: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.movingX {
  -webkit-animation: movingX 8s linear infinite;
  animation: movingX 8s linear infinite;
}

@-webkit-keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.moving {
  -webkit-animation: moving 8s linear infinite;
  animation: moving 8s linear infinite;
}

@-webkit-keyframes moving {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes moving {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.footer-wrapper {
  --border-color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

.footer-wrapper .th-social a {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.footer-wrapper .th-social a:hover {
  background-color: #180b53;
  border-color: #180b53;
}

.footer-layout2 {
  background-color: #f5f5f5;
}

.footer-layout2.bg-transparent {
  background-color: transparent;
  border-top: 1px solid #d9e0f3;
}

.footer-layout2 .footer-widget .widget_title,
.footer-layout2 .footer-widget .recent-post .post-title {
  color: #141d38;
  font-weight: 700;
}

.copyright-wrap {
  padding: 22px 0;
  background-size: 100% auto;
}

.copyright-text {
  margin: 0;
}

.copyright-text a:hover {
  color: gray;
}
.footer-links ul {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.footer-layout2 .th-social a {
  color: #737887;
  box-shadow: none;
  border: 1px solid #737887;
}

.footer-layout2 .th-social a:hover {
  color: white;
}

.widget-area {
  padding-top: 120px;
  padding-bottom: 66px;
}

.footer-layout2 .footer-widget .widget_title,
.footer-layout2 .footer-widget .recent-post .post-title {
  color: #141d38;
  font-weight: 700;
}
.th-widget-about.style2 {
  max-width: 290px;
}

.th-social a {
  display: inline-block;
  width: var(--icon-size, 46px);
  height: var(--icon-size, 46px);
  line-height: var(--icon-size, 46px);
  background-color: white;
  color: #737887;
  font-size: 16px;
  text-align: center;
  margin-right: 5px;
  border-radius: 50%;
}
.th-social a:last-child {
  margin-right: 0;
}

.th-social a:hover {
  background-color: #180b53;
  color: white;
}

.th-social.style2 a {
  --icon-size: 40px;
  font-size: 14px;
  background-color: transparent;
  color: white;
  border: 1px solid;
}

.th-social.style2 a:hover {
  border-color: #180b53;
  color: white;
  background-color: #180b53;
}

.th-widget-contact {
  max-width: 265px;
}
.contact-feature {
  padding: 0 !important;
  background-color: transparent;
  box-shadow: none;
  gap: 15px;
}

.contact-feature:not(:last-child) {
  margin-bottom: 28px;
}

.contact-feature .icon-btn {
  --btn-size: 44px;
  font-size: 16px;
}

.contact-feature_label {
  margin-top: -0.4em;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.5;
}

.contact-feature_link {
  font-size: 18px;
  margin-bottom: -0.4em;
  display: block;
}
.contact-feature {
  padding: 22px;
  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: 20px;
  /* box-shadow: 0px 10px 30px rgba(8, 14, 28, 0.06); */
  border-radius: 5px;
}

.contact-feature .icon-btn {
  background-color: #180b53;
  color: white;
  font-size: 16px;
  box-shadow: 0px 6px 20px rgba(0, 96, 255, 0.6);
  border-radius: 5px;
  border: none;
  padding: 12px;
}

.contact-feature_label {
  margin-bottom: 0;
}

.contact-feature_link {
  font-size: 20px;
  font-weight: 600;
  color: var(--title-color);
}

.contact-feature_link:hover {
  color: var(--theme-color);
}

@media (max-width: 1299px) {
  .contact-feature {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .contact-feature {
    gap: 15px;
    padding: 15px;
  }

  .contact-feature-wrap {
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .contact-feature {
    padding: 22px;
  }

  .contact-feature-wrap {
    grid-template-columns: auto;
  }
}

.our-partners {
  margin-top: 6rem;
  margin-bottom: 10rem;
}

.partner-img {
  width: 100%;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  /* background-color: white; */
  padding: 1rem;
  border-radius: 8px;
}

.service-item {
  border-radius: 30px;
  border: 1px solid white;
  padding: 40px 30px;
  background: -webkit-linear-gradient(
    top,
    #fff 77.78%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(180deg, #fff 77.78%, rgba(255, 255, 255, 0) 100%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-item_icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  display: block;
  margin-bottom: 28px;
  background-color: #f3f5fc;
  border-radius: 50%;
}

.service-item_text {
  font-size: 16px;
  margin-bottom: 15px;
}

.service-item .box-title {
  letter-spacing: -0.48px;
  margin-bottom: 10px;
}

@media (max-width: 1299px) {
  .service-item .box-title {
    font-size: 20px;
  }
}

.service-item img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-item:hover .service-item_icon img {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

.form-group {
  margin-bottom: 10px;
  position: relative;
}
