@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.primary-btn {
  border-radius: 6px;
  background: #F1487F !important;
  color: #FFF;
  padding: 9px 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  border: none;
}

/* Hover state */
.primary-btn:hover {
  background: #D8286A !important;
}

/* Pressed (active / clicked) state */
.primary-btn:active {
  background: #9E164A !important;
}

.outline-btn {
  display: flex;
  padding: 9px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border: 1px solid var(--Grey-50, #D9D9D9);
  color: #4D4D4D;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.outline-btn:hover {
  color: #000000;
  border: 1px solid var(--Grey-30, #808080);
}

.secondary-white-btn {
  display: flex;
  padding: 9px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background-color: #fff;
  color: #4D4D4D;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.secondary-white-btn:hover {
  background: #F8F8F8;
}

.secondary-white-btn:active {
  background-color: #E0E0E0;
}

@media (max-width:991px) {

  .secondary-white-btn,
  .outline-btn,
  .secondary-white-btn {
    padding: 10px 18px;
  }
}

header.container {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
}

#check,
.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
}

.nav-link>a {
  letter-spacing: -0.48px;
  font-weight: 500;
  line-height: 100%;
}

.nav-link>a {
  font-family: "Poppins", sans-serif;
}

#check:checked~.hamburger-menu-container .hamburger-menu div,
.btn-outline-white {
  background-color: transparent;
}

.insights .dropdown .dropdown-inner .inner-col:hover,
.services .dropdown,
.solutions .dropdown .dropdown-inner .inner-col:hover,
header,
header .container,
header .logo-container img {
  background: #fff;
}

header {
  padding: 2px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 22px 46px 0 rgba(0, 0, 0, 0.01), 0 16.002px 31.005px 0 rgba(0, 0, 0, 0.01), 0 11.137px 20.053px 0 rgba(0, 0, 0, 0.02), 0 7.305px 12.443px 0 rgba(0, 0, 0, 0.02), 0 4.4px 7.475px 0 rgba(0, 0, 0, 0.02), 0 2.32px 4.447px 0 rgba(0, 0, 0, 0.03), 0 0.962px 2.659px 0 rgba(0, 0, 0, 0.03), 0 0.223px 1.411px 0 rgba(0, 0, 0, 0.04);
}

header .container {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  padding: 0 10px 0 26px;
}

header .container ul {
  padding-left: 0;
  margin-bottom: 0;
}


header .logo-container {
  z-index: 999999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile,
.nav-links ul.mobile,
header .logo-container .cta-mobile {
  display: none;
}

.nav-btn {
  flex: none;
  display: flex;
}

.nav-links {
  flex: 2;
  align-items: center;
  justify-content: flex-end;
  display: flex;
}

.nav-links>ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.nav-link {
  margin-right: 24px;
  padding: 25px 0;
}

.nav-link.insights:hover .drop-down-arrow,
.nav-link.services:hover .drop-down-arrow,
.nav-link.solutions:hover .drop-down-arrow {
  transform: rotate(180deg);
  transition: 0.4s;
}

.nav-link.insights,
.nav-link.services,
.nav-link.solutions {
  cursor: pointer;
}

.nav-link:last-child {
  margin-right: 0;
}

.nav-link>a {
  color: var(--Text-Tertiary, #777);
  font-size: 14px;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-link>a.primary-btn {
  color: #fff;
}

.services .dropdown {
  max-height: 675px;
  position: absolute;
  top: 100%;
  max-width: 100%;
  width: 100%;
  right: 0;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  border-radius: 13px;
  padding: 32px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.32);
  overflow-y: scroll;
}

.insights .dropdown,
.solutions .dropdown {
  top: 100%;
  max-width: 12rem;
  width: 100%;
  transform: translateY(10px);
  border-radius: 13px;
  padding: 12px 8px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.32);
  background: #fff;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}

.services .dropdown .dropdown-inner {
  display: flex;
}

.services .dropdown .dropdown-inner .inner-col {
  padding: 40px;
  max-width: 324px;
  width: 100%;
  border-radius: var(--Values-16px, 16px);
  background: rgba(81, 68, 224, 0.08);
}

.services .dropdown .dropdown-inner .inner-col p {
  padding: 12px;
  line-height: 22px;
  cursor: pointer;
  transition: all 0.5s;
}

.tab-content {
  display: none;
  gap: 80px;
  min-height: 397px;
}

.tab-content.active {
  display: flex;
}

.services .dropdown .dropdown-inner .link-list a,
.services .dropdown .dropdown-inner .link-list p.not-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  min-width: 283px;
  border-bottom: 1px solid #E0E0E0;
}

.services .dropdown .dropdown-inner .link-list a:last-of-type,
.services .dropdown .dropdown-inner .link-list p.not-link:last-of-type {
  border-bottom: none;
}

.services .dropdown .dropdown-inner .inner-col .tab-content {
  display: none;
}

.services .dropdown .dropdown-inner .inner-col .tab-content.active {
  display: flex;
}

.services .dropdown .dropdown-inner .inner-col #tab-buttons p.active {
  border-radius: 8px;
  background: var(--white-100, #FFF);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}

.services .dropdown .dropdown-inner .inner-col .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.insights .dropdown .dropdown-inner .inner-col a img,
.services .dropdown .dropdown-inner .inner-col .top img,
.solutions .dropdown .dropdown-inner .inner-col a img {
  opacity: 0;
}

.available-post .container .job-card-grid .job-detail-card .inner-left,
.services .dropdown .dropdown-inner .inner-col .bottom-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insights .dropdown .dropdown-inner .inner-col a:hover,
.services .dropdown .dropdown-inner .inner-col:hover,
.solutions .dropdown .dropdown-inner .inner-col a:hover {
  background: rgba(81, 68, 224, 0.08);
}

.home-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.insights .dropdown .dropdown-inner .inner-col a:hover img,
.services .dropdown .dropdown-inner .inner-col:hover .top img,
.solutions .dropdown .dropdown-inner .inner-col a:hover img {
  opacity: 1;
}

.insights .dropdown {
  right: 26%;
  overflow: hidden;
}

.company-location .container .located .weare br,
.desktop,
.home-service-section .service-detail ul.accordion-list li.active .minus,
.insights .dropdown .dropdown-inner,
.solutions .dropdown .dropdown-inner {
  display: block;
}

.insights .dropdown .dropdown-inner .inner-col,
.solutions .dropdown .dropdown-inner .inner-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}

.insights .dropdown .dropdown-inner .inner-col a,
.solutions .dropdown .dropdown-inner .inner-col a {
  padding: 12px;
  background: 0 0;
  border-radius: 8px;
  color: #585361;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.solutions .dropdown {
  right: 34%;
  overflow: hidden;
}

#check,
.searchbox .searchboxlabel {
  top: 50%;
  transform: translateY(-50%);
}

.dropdown-link:hover>.dropdown,
.nav-link:hover>.dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}

.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hamburger-menu div {
  width: 20px;
  height: 2px;
  border-radius: 3px;
  background-color: #000;
  position: relative;
  z-index: 1001;
  transition: 0.4s;
}

.hamburger-menu div:after,
.hamburger-menu div:before {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #000;
  border-radius: 3px;
  transition: 0.4s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
}

#check {
  position: absolute;
  right: 0.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked~.hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked~.hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}

@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services .dropdown::-webkit-scrollbar {
  width: 10px;
}

.services .dropdown::-webkit-scrollbar-thumb {
  background: #585361;
  border-radius: 24px;
}

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

  .dropdown,
  .nav-link {
    opacity: 1;
  }

  .dropdown,
  .nav-btn {
    background-color: #fff;
  }

  .dropdown,
  .nav-btn,
  .nav-link,
  .nav-links,
  .nav-links ul.mobile .next-step {
    width: 100%;
  }

  .hamburger-menu-container {
    display: flex;
  }

  #check,
  .dropdown-link:hover>.dropdown,
  .nav-link:hover>.dropdown,
  .nav-links,
  header .container .logo-container .cta-mobile {
    display: block;
  }

  header .container .cta-desktop {
    display: none;
  }

  .nav-btn {
    position: absolute;
    top: 30px;
    padding-top: 36px;
    left: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-x: hidden;
    transition: 0.4s linear;
    overflow-y: hidden;
    max-height: 0;
    gap: 40px;
  }

  header .container #check:checked~.nav-btn {
    border-radius: 0;
    max-height: 90vh;
    box-shadow: 0 182px 51px 0 rgba(0, 0, 0, 0), 0 117px 47px 0 rgba(0, 0, 0, 0.01), 0 66px 39px 0 rgba(0, 0, 0, 0.05), 0 29px 29px 0 rgba(0, 0, 0, 0.09), 0 7px 16px 0 rgba(0, 0, 0, 0.1);
  }

  .nav-btn.active-submenu .inner {
    max-height: 77vh;
    overflow-y: scroll;
  }

  header .container .logo-container .cta-mobile .primary-btn {
    padding: 8px 16px;
    font-size: 12px;
    margin-right: 16px;
  }

  header .container {
    --bs-gutter-x: 2rem;
    padding: 5px 20px;
  }

  .nav-links {
    flex: none;
  }

  .dropdown,
  .nav-links ul.desktop {
    display: none;
  }

  .nav-links>ul,
  .with-sidebar-box {
    flex-direction: column;
  }

  .dropdown {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    pointer-events: auto;
    padding: 0;
  }

  .nav-links ul.mobile {
    padding: 16px;
    display: flex;
  }

  .nav-links ul.mobile li.nav-link {
    padding: 0;
    margin-right: 0;
  }

  .nav-links ul.mobile li.nav-link:nth-child(4) {
    border-bottom: none;
  }

  .nav-links ul.mobile li.nav-link a {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 12px 8px;
  }

  .nav-links ul.mobile li.nav-link a:hover {
    color: #000000;
    background-color: rgba(251, 227, 229, 1);
  }

  .nav-links ul.mobile li.nav-link:last-child {
    border-bottom: 1px solid transparent !important;
  }

  .nav-links ul.mobile .next-step .top {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
  }

  .nav-links ul.mobile .next-step .top a {
    color: var(--Text-Tertiary, #585361);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
  }

  .nav-links ul.mobile .next-step .inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .nav-links ul.mobile .next-step .inner .link-box {
    border-radius: var(--Values-16px, 16px);
    background: rgba(81, 68, 224, 0.08);
    padding: 16px;
  }

  .nav-links ul.mobile .next-step .inner .link-box .all-links .top-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--Text-Secondary, #2e2c33);
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
  }

  .nav-links ul.mobile .next-step .inner .link-box .all-links .bottom-links {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .nav-links ul.mobile .next-step .inner .link-box .all-links .bottom-links a p,
  .nav-links ul.mobile .next-step .inner .link-box .all-links .bottom-links p.not-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--Text-Tertiary, #585361);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 145%;
  }

  header .hamburger-menu {
    height: auto;
    width: auto;
  }

  header .logo-container {
    background: #fff;
  }

  .nav-links ul.mobile #services-content .inner {
    overflow-y: scroll;
    max-height: 700px;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .primary-btn-large {
    padding: 16px 22px;
  }



  header {
    padding: 0;
  }

  header .container {
    --bs-gutter-x: 2rem;
    padding: 7px 16px;
  }

  header .hamburger-menu {
    height: auto;
    width: auto;
  }

}

.solution:nth-child(even) {
  background: #F8F8F8;
  /* even children */
}

.solution:nth-child(odd) {
  background: #ffffff;
  /* odd children */
}

.timeline {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 4rem 0;
  --before-height: 100px;
  font-weight: 300;
}

.timeline .timeline-item {
  display: flex;
  gap: 52px;
  margin-bottom: 80px;
  align-items: center;
  position: relative;
}

.timeline .timeline-item:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 20%;
  left: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 0 15px rgb(241, 72, 127);
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
  border-radius: 100%;
}

.timeline .timeline-item>div {
  width: 50%;
}

.timeline .timeline-item>div img {
  max-width: 100%;
  object-fit: cover;
}

.timeline .timeline-item .timeline-item__date {
  position: relative;
  border-radius: 8px;
  display: inline-flex;
  padding: 14px 24px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  background-color: #1b1139;
}

.timeline .timeline-item .timeline-item__content {
  padding: 24px;
}

.timeline .timeline-item:nth-child(2n) {
  flex-direction: row-reverse;
}

.timeline .timeline-item:nth-child(2n) .timeline-item__content {
  background: none;
}

.timeline .timeline-item:nth-child(2n) .timeline-item__content:after {
  left: auto;
  right: 100%;
  transform: translateY(-50%) rotate(180deg);
}

.timeline:after {
  content: "";
  position: absolute;
  width: 1px;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #E0E0E0;
}

@media (max-width: 991px) {
  .timeline {
    padding: 0;
    margin-top: 0;
  }

  .timeline .timeline-item {
    flex-wrap: wrap;
    margin-bottom: 60px;
  }

  .timeline .timeline-item:after {
    left: 20px;
  }

  .timeline .timeline-item>div {
    width: 100%;
  }

  .timeline .timeline-item>div img {
    max-width: 100%;
    padding: 5px 35px;
  }

  .timeline .timeline-item .timeline-item__content {
    padding: 12px 12px 12px 60px;
  }

  .timeline .timeline-item__image {
    display: none;
  }

  .timeline:after,
  .timeline:before {
    top: 0;
    left: 20px;
  }

  .timeline:after {
    top: 5%;
    max-height: 910px;
  }
}

@media (max-width: 767px) {
  .timeline .timeline-item:after {
    top: 13%;
  }

  .timeline:after {
    top: 2%;
    max-height: 1250px;
  }

  .timeline .timeline-item {
    margin-bottom: 40px;
  }

  .banner-tab p {
    font-size: 12px !important;
  }
}

.service-card {
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 22px 46px 0 rgba(0, 0, 0, 0.01), 0 16.002px 31.005px 0 rgba(0, 0, 0, 0.01), 0 11.137px 20.053px 0 rgba(0, 0, 0, 0.02), 0 7.305px 12.443px 0 rgba(0, 0, 0, 0.02), 0 4.4px 7.475px 0 rgba(0, 0, 0, 0.02), 0 2.32px 4.447px 0 rgba(0, 0, 0, 0.03), 0 0.962px 2.659px 0 rgba(0, 0, 0, 0.03), 0 0.223px 1.411px 0 rgba(0, 0, 0, 0.04);
  transition: 0.3s all;
}

.service-card:hover {
  box-shadow: 0 47px 13px 0 rgba(0, 0, 0, 0), 0 30px 12px 0 rgba(0, 0, 0, 0.01), 0 17px 10px 0 rgba(0, 0, 0, 0.05), 0 7px 7px 0 rgba(0, 0, 0, 0.09), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.service-card.white {
  position: relative;
  background: #FFFFFF;
  margin-left: 16px;
  padding: 40px 24px 24px 24px;
}

.service-card.white .icon {
  position: absolute;
  left: -16px;
  top: -30px;
  display: flex;
  width: 56px;
  height: 56px;
  padding: 14px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 52px;
  background: linear-gradient(0deg, rgba(91, 157, 225, 0.5) 0%, rgba(91, 157, 225, 0.5) 100%), linear-gradient(180deg, #35ABFF 0%, #718ED5 29.33%, #FF466E 100%);
}

a {
  text-decoration: none;
  color: #111;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

a.white {
  color: #fff;
}

a.bold {
  font-weight: 500;
}

a.small {
  font-size: 14px;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

html {
  scroll-behavior: smooth;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 64px);
  color: #111111;
  font-style: normal;
  font-weight: 500;
  line-height: clamp(42px, 4vw, 68px);
  margin: 0;
}

h3 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  color: #000;
  font-style: normal;
  font-weight: 500;
  line-height: clamp(40px, 4vw, 48px);
  margin: 0;
}

h3.white {
  color: #fff;
}

h3.lightgrey {
  color: #777;
}

h6 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(18px, 4vw, 20px);
  color: #111111;
  font-style: normal;
  font-weight: 600;
  line-height: clamp(28px, 4vw, 32px);
  margin: 0;
}

h6.white {
  color: #fff;
}

p {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

p.darkgrey {
  color: #ccc;
}

p.lightgrey {
  color: #777;
}

p.semibold {
  font-weight: 500;
}

p.bold {
  font-weight: 600;
}

p.extrabold {
  font-weight: 700;
}

p.grey {
  color: #808080;
}

p.white {
  color: #fff !important;
}

p.small {
  font-size: 14px;
}

p.extra-small {
  font-size: 12px;
}

p.blue {
  color: #0F75BD;
}

.lightgrey {
  color: #777;
}

.color-red {
  color: #F1487F;
}

.color-blue {
  color: #0F75BD;
}

.color-green {
  color: #197831;
}

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

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
  flex-shrink: 0;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.padding-56 {
  padding-top: 56px;
  padding-bottom: 56px;
}

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

.padding-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.rgb-color {
  background: linear-gradient(180deg, #758CD2 2.69%, #B06EA7 51.09%, #DA5989 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.color-gradient {
  background: linear-gradient(180deg, #758CD2 2.69%, #B06EA7 51.09%, #DA5989 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  max-width: 1240px;
  --bs-gutter-x: 2.75rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.footer-gradient {
  color: #F1487F;

}

.form-submit {
  background-color: transparent;
  color: #fff;
  border: none;
  padding: 0;
  position: relative;
  z-index: 10;
}


@media (width < 991px) {
  .container {
    --bs-gutter-x: 3.75rem;
  }

  .padding-56 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .padding-80 {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .padding-120 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .mt-75 {
    margin-top: 70px;
  }
}

@media (width < 767px) {

  .padding-80 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .padding-120 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container {
    --bs-gutter-x: 2.5rem;
  }

  .contact-form .name p {
    flex-direction: column;
  }
}

.color-gradient {
  background: linear-gradient(180deg, #35ABFF 0%, #718ED5 30.77%, #FF466E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-form .name p {
  display: flex;
  gap: 24px;
}

.contact-form .name p br {
  display: none;
}

input[type=text],
input[type=email] {
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--Grey-70, #F2F2F2);
  padding: 5px 10px;
  width: 100%;
  height: 64px;
  color: var(--Grey-30, #808080) !important;


}

textarea {
  border: 1px solid transparent;
  color: var(--Grey-30, #808080) !important;

  border-radius: 12px;
  background: var(--Grey-70, #F2F2F2);
  padding: 5px 10px;
  width: 100%;
  border-color: transparent !important;
}

input[type=text]:focus-visible,
input[type=email]:focus-visible,
textarea:focus-visible {
  background: var(--Grey-90, #FFF);
  border-color: #F1487F !important;

}

input[type=text]:hover,
input[type=email]:hover,
textarea:hover {
  outline: none;
  border: 1px solid #B2B2B2;
  border-color: #B2B2B2 !important;

}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  font-family: "Poppins", sans-serif;
  color: var(--Grey-30, #808080);
  font-size: var(--font-size-Caption, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--font-line-height-Caption, 24px);
}

.wpcf7-spinner {
  display: none;
}

#contactModal {
  padding: 0 16px;
}

#contactModal .main-form {
  overflow-y: auto;
  max-height: 95vh;
}

#contactModal .custom-modal {
  background: #FFFFFF;
  max-width: 802px;
  width: 100%;
  padding: 20px;
  position: relative;
  border-radius: 12px;
}

#contactModal .custom-modal .modal-inner {
  padding: 20px;
  background: #fff;
  border-radius: 16px;
}

#contactModal .custom-modal .modal-inner .close-btn {
  cursor: pointer;
  background-color: transparent;
}

#contactModal .main-form {
  overflow-y: auto;
  max-height: 95vh;
}

@media (width < 767px) {


  #contactModal .custom-modal {
    padding: 16px;
    border-radius: 16px;
  }

  #contactModal .custom-modal .modal-inner {
    padding: 0;
    border-radius: 10px;
  }
}

/*# sourceMappingURL=condensed.css.map */