@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  scroll-behavior: smooth;
}

@layer base {
  body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.625;
    color: #7C7C7C;
    font-family: "Inter", sans-serif;
    background-color: #fff;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #292F29;
    font-weight: 600;
  }
  h1 {
    font-size: 54px;
    line-height: 116%;
  }
  @media only screen and (min-width: 992px) and (max-width: 1279px) {
    h1 {
      font-size: 46px;
    }
  }
  @media only screen and (max-width: 991px) {
    h1 {
      font-size: 36px;
    }
  }
  h2 {
    font-size: 44px;
    line-height: 116%;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    h2 {
      font-size: 36px;
    }
  }
  @media only screen and (max-width: 767px) {
    h2 {
      font-size: 28px;
    }
  }
  h4 {
    font-size: 32px;
    line-height: 130%;
  }
  @media only screen and (max-width: 991px) {
    h4 {
      font-size: 24px;
    }
  }
  h5 {
    font-size: 24px;
    line-height: 120%;
  }
  @media only screen and (max-width: 767px) {
    h5 {
      font-size: 20px;
    }
  }
  h6 {
    text-align: center;
    font-size: 20px;
    line-height: 130%;
  }
  @media only screen and (max-width: 767px) {
    h6 {
      font-size: 16px;
    }
  }
  img {
    max-width: 100%;
  }
  a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }
  input,
  textarea,
  button {
    outline: none;
    transition: all 0.3s ease-in-out;
  }
  input:focus,
  textarea:focus,
  button:focus {
    outline: none;
    border-color: #282F29;
  }
  button {
    cursor: pointer;
  }
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
  }
}
@layer components {
  .common-padding {
    --padding-y: 80px;
    --padding-x: 0;
    padding: var(--padding-y) var(--padding-x);
  }
  @media only screen and (min-width: 992px) and (max-width: 1279px) {
    .common-padding {
      --padding-y: 60px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .common-padding {
      --padding-y: 50px;
    }
  }
  @media only screen and (max-width: 767px) {
    .common-padding {
      --padding-y: 40px;
    }
  }
  .common-padding-top {
    padding-top: var(--padding-y);
  }
  .common-title {
    margin-bottom: 70px;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .common-title {
      margin-bottom: 54px;
    }
  }
  @media only screen and (max-width: 767px) {
    .common-title {
      margin-bottom: 40px;
    }
  }
  .common-title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    min-height: 34px;
    background-color: #F2F3F7;
    color: #005299;
    font-size: 14px;
    font-weight: 400;
    padding: 0 16px;
    margin-bottom: 16px;
  }
  .common-title p {
    margin-top: 20px;
    color: #7C7C7C;
    font-size: 16px;
    line-height: 140%;
  }
  .overflow-x-auto::-webkit-scrollbar,
  .overflow-y-auto::-webkit-scrollbar {
    width: var(--scroll, 6px);
    height: var(--scroll, 6px);
  }
  .overflow-x-auto::-webkit-scrollbar-track,
  .overflow-y-auto::-webkit-scrollbar-track {
    border-radius: 100px;
    background-color: rgba(0, 0, 0, 0.1);
  }
  .overflow-x-auto::-webkit-scrollbar-thumb,
  .overflow-y-auto::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-color: rgba(0, 0, 0, 0.215);
  }
  #root {
    overflow: hidden;
  }
  .swiper-slide {
    text-align: center;
    overflow: hidden;
  }
  .swiper-slide img {
    max-height: 100%;
  }
}
@keyframes headerAnimation {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.heading {
  padding: var(--navbar-padding-y) 0;
  --navbar-padding-y: 20px;
}
@media only screen and (max-width: 991px) {
  .heading {
    --navbar-padding-y: 16px;
  }
}
.heading.fixed {
  animation: headerAnimation 0.5s linear;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: rgba(41, 47, 41, 0.05) 0px 0.636953px 0.636953px -0.3125px, rgba(41, 47, 41, 0.06) 0px 1.9316px 1.9316px -0.625px, rgba(41, 47, 41, 0.08) 0px 5.10612px 5.10612px -0.9375px, rgba(41, 47, 41, 0.15) 0px 16px 16px -1.25px;
}
@media only screen and (max-width: 991px) {
  .heading-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #F2F8FF;
    padding: 24px;
    z-index: 9;
    transform: translateY(150%);
    opacity: 0;
    visibility: hidden;
    box-shadow: rgba(41, 47, 41, 0.05) 0px 0.636953px 0.636953px -0.3125px, rgba(41, 47, 41, 0.06) 0px 1.9316px 1.9316px -0.625px, rgba(41, 47, 41, 0.08) 0px 5.10612px 5.10612px -0.9375px, rgba(41, 47, 41, 0.15) 0px 16px 16px -1.25px;
    transition: all 0.3s ease-in-out;
  }
  .heading-menu.show-menu {
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (max-width: 767px) {
  .heading-menu {
    padding: 16px;
  }
}

.accordion button svg {
  transition: all 0.3s ease-in-out;
}
.accordion-content {
  display: none;
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
  .service-card .single-item {
    overflow: hidden;
  }
}
@media only screen and (max-width: 991px) {
  .service-card .single-item {
    overflow: hidden;
  }
}

.marquee-track {
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.banner-shape {
  animation: left-right 5s linear infinite;
}

@keyframes left-right {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0px);
  }
}
.why-shape {
  animation: rotate 5s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* */
