@font-face {
  font-family: Gilroy;
  src: url(../fonts/Gilroy-Regular.woff) format("woff");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Gilroy;
  src: url(../fonts/Gilroy-Medium.woff) format("woff");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Gilroy;
  src: url(../fonts/Gilroy-Semibold.woff) format("woff");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Gilroy;
  src: url(../fonts/Gilroy-Bold.woff) format("woff");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: OraDisplay;
  src: url(../fonts/IvyOraDisplay-Medium.ttf) format("ttf");
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Gilroy, system-ui, sans-serif;
  font-weight: 500;
}
:root {
  --heading: 48px;
  --para: 16px;
  --para-color: #6e6e6e;
}
h2 {
  letter-spacing: -1.5px;
}
.container-xxl {
  max-width: 1600px !important;
}
.blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 30% 30%, #00f0ff, #f0f);
  filter: blur(80px);
  opacity: 0.7;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite alternate;
  left: 30%;
  top: 3.5%;
}
@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, -80px) scale(1.1);
  }
  50% {
    transform: translate(-70px, 60px) scale(0.9);
  }
  75% {
    transform: translate(80px, 100px) scale(1.05);
  }
  100% {
    transform: translate(-50px, -60px) scale(1);
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  height: auto;
  padding-inline: 0 !important;
}
#header.scrolled {
  background-image: linear-gradient(to right, #fff, #fff);
  border-bottom: 1px solid #ececec;
}
nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5%;
}
.nav-right > button {
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
}
.nav-right > button:last-child {
  color: #fff;
  background: linear-gradient(to right, #10528b, #85c6ff);
  border: 5px solid #c0dfff;
}
.nav-right > button:first-child {
  background: transparent;
  border: 1px solid #10528b;
  margin-right: 8px;
}
.nav-right > button:first-child a {
  color: #10528b;
  text-decoration: none;
}
.section1 {
  width: 100%;
  padding: 100px 5% 0;
  background: linear-gradient(to bottom right, #ffff 50%, #c0e2ff 100%);
  border-bottom: 1px solid #ececec;
}
.section1-content {
  display: flex;
}
.section1-left,
.section1-right {
  width: 100%;
  height: fit-content;
}

.section1-header {
  width: 100%;
  text-align: left;
  will-change: transform, opacity;
}
.section1-header h1 {
  font-size: var(--heading);
  font-weight: 600;
}
.section1-header p {
  font-size: var(--para);
  color: var(--para-color);
  margin-top: 16px;
}
.section1-header button {
  font-size: 14px;
  padding: 8px 24px;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
}
.section1-header button:nth-child(1) {
  color: #fff;
  background: linear-gradient(to right, #10528b, #85c6ff);
  border: 5px solid #c0dfff;
}
.section1-header button:nth-child(2) {
  width: fit-content;
  border: 1px solid #10528b;
  color: #10528b;
  background: transparent;
}
.btn-group {
  flex-direction: column;
}
.section1-body {
  width: 100%;
  margin-top: 24px;
}
.section1-body-image {
  width: 100%;
  display: grid;
}
.section1-body-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
  border: 10px solid rgba(195, 227, 255, 0.6);
  border-bottom: 0;
}
.section1-body-image img:last-child {
  border: none;
}
.section1-body-image img.show {
  opacity: 1;
  transform: translateY(0);
}
.section1-form-container {
  width: 100%;
  height: 100%;
  max-width: 400px;
  margin: 0 auto;
  background-color: #fff;
  border: 1.5px solid #ececec;
  border-radius: 12px;
  /* border-bottom: 0;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px; */
  display: flex;
  overflow: hidden;
  z-index: 9;
  position: relative;
}
.section1-form1,
.section1-form2 {
  width: 100%;
  flex-shrink: 0;
  padding: 24px;
}
.form-seprator {
  border-top: 1px dashed #e6e6e6;
  margin-bottom: 8px;
}
.section1-form1 h5,
.section1-form2 h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.section1-form1 p,
.section1-form2 p {
  color: #595959;
  font-size: 14px;
}
.section1-form1 button,
.section1-form2 button {
  width: 100%;
  background-color: #10528b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
}
.form-resendOtpBtn {
  background-color: transparent !important;
  border: 1px solid #10528b !important;
  color: #10528b !important;
}
.form-formGroup {
  margin-bottom: 16px;
}
.form-btnGroup {
  display: flex;
  gap: 12px;
}
.form-formGroup label {
  color: #10528b;
  font-size: 14px;
  font-weight: 600 !important;
  margin-bottom: 4px;
}
.form-formGroup label span {
  color: red;
}
.form-formGroup input {
  border-radius: 8px;
  padding: 10px;
}
.form-formGroup input::placeholder {
  font-size: 14px;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-input-error {
  color: red;
  font-size: 12px;
  display: none;
}
.section2 {
  width: 100%;
  padding: 100px 5%;
}
.section2-header {
  width: 100%;
  position: relative;
}
.section2-header h2 {
  font-size: var(--heading);
}
.section2-header p {
  font-size: var(--para);
  color: var(--para-color);
  margin-top: 8px;
}
.section2-header button {
  padding: 8px 24px;
  color: #10528b;
  font-size: 14px;
  background: #fff;
  border: 1.5px solid #10528b;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.section2-marquee {
  width: 100%;
  margin-top: 48px;
  display: flex;
  gap: 16px;
  position: relative;
  padding: 6px 0;
}
.section2-overlay {
  width: 180px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  place-content: center;
  text-align: center;
  text-transform: capitalize;
}
.section2-overlay img {
  width: 120px;
}
.section2-overlay::after {
  content: "";
  height: 100%;
  width: 10px;
  position: absolute;
  top: 0;
  right: 0;
  border-left: 1.5px solid #111;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.section2-overlay::before {
  content: "";
  height: 100%;
  width: 10px;
  position: absolute;
  top: 0;
  left: 0;
  border-right: 1.5px solid #111;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.section2-marquee-inner {
  width: 100%;
  overflow: hidden;
}
.section2-marquee-inner ul {
  width: 100%;
  display: flex;
  justify-content: end;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 16px;
  animation: section2-marquee 13s linear infinite;
}
.section2-marquee-inner.old ul {
  opacity: 0.5;
}
.section2-marquee-inner.new ul li {
  border: 1.5px solid #10528b;
  background: linear-gradient(to bottom right, #fff, #c3e3ff);
  color: #10528b;
}
.section2-marquee-inner ul li {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 16px;
  border: 1.5px dashed #000;
  padding: 4px 16px;
  border-radius: 24px;
}
@keyframes section2-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(110%);
  }
}
.section3 {
  width: 100%;
  padding: 48px 5%;
  background: linear-gradient(to bottom right, #10528b, #85c6ff);
}
.section3-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section3-header h2 {
  font-size: var(--heading);
  color: #fff;
  margin-bottom: 0;
}
.section3-header button {
  padding: 10px 28px;
  color: #10528b;
  background-color: #fff;
  border: 5px solid rgba(16, 82, 139, 0.3);
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
}
.section3-body {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.section3-grid-card {
  width: 100%;
}
.section3-grid-card img {
  width: 100%;
  object-fit: cover;
}
.section4 {
  width: 100%;
  padding: 48px 5%;
}
.section4-body {
  width: 100%;
  display: flex;
  gap: 10px;
}
.section4-left,
.section4-right {
  width: 50%;
}
.section4-left {
  position: sticky;
  top: 85px;
  height: 100%;
}
.section4-left h2 {
  font-size: var(--heading);
}
.section4-left p {
  color: var(--para-color);
  font-size: var(--para);
  margin-top: 8px;
}
.section4-right-list {
  width: 100%;
  display: flex;
  gap: 15px;
  border-bottom: 1.5px dashed #dadada;
  margin-top: 40px;
}
.section4-right-list:first-child {
  margin-top: 0;
}
.section4-right-list h5 {
  font-size: 18px;
  text-transform: uppercase;
}
.section4-right-list-img {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}
.section4-right-list-img img {
  width: 100%;
}
.section4-right-list-body p {
  color: var(--para-color);
  font-size: var(--para);
}
.section5 {
  width: 100%;
  padding: 48px 5%;
  background: linear-gradient(to top right, #fff 50%, #c0e2ff 100%);
}
.section5-header {
  width: 100%;
  text-align: center;
}
.section5-header h2 {
  font-size: var(--heading);
}
.section5-header p {
  font-size: var(--para);
  color: var(--para-color);
  margin-top: 8px;
}
.section5-marquee {
  width: 100%;
  margin-block: 48px;
  overflow: hidden;
}
.section5-marquee-inner {
  width: min-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: marquee 20s linear infinite;
}
.section5-marquee-inner img {
  width: 130px;
}
@keyframes marquee {
  from {
    transform: translateX(-5%);
  }
  to {
    transform: translateX(-45%);
  }
}
.section5-metrics {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.section5-metric {
  width: 100%;
  text-align: center;
}
.section5-metric h3 {
  font-size: 48px;
}
.section5-metric p {
  font-size: var(--para);
  color: var(--para-color);
}
.section6 {
  width: 100%;
  padding: 48px 5%;
}
.section6-header {
  width: 100%;
  text-align: center;
}
.section6-header h2 {
  font-size: var(--heading);
}
.section6-header p {
  font-size: var(--para);
  color: var(--para-color);
  margin-top: 8px;
}
.section6-body {
  width: 100%;
}
.reviews-marquee {
  width: 100%;
  margin-top: 48px;
  overflow: hidden;
  position: relative;
  -webkit-mask: linear-gradient(
    to right,
    transparent,
    #fff 20%,
    #fff 80%,
    transparent
  );
  mask: linear-gradient(to right, transparent, #fff 20%, #fff 80%, transparent);
}
.reviews-marquee-inner {
  width: min-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.marquee-left-direction {
  animation: reviews-marquee-animation 20s linear infinite;
}
.marquee-right-direction {
  animation: reviews-marquee-animation 20s linear infinite;
  margin-top: 20px;
  animation-direction: reverse;
}
.review-card {
  flex-shrink: 0;
  max-width: 300px;
  padding: 24px;
  border: 1px solid #ececec;
  border-radius: 16px;
}
.review-card-body p {
  font-size: 14px;
  color: var(--para-color);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}
.review-card-title h6 {
  font-size: 14px;
  font-weight: 600;
}
.review-card-title p {
  font-size: 14px;
  color: var(--para-color);
  margin: 0;
}
.review-card-img {
  width: 40px;
}
.review-card-img img {
  width: 100%;
  border-radius: 8px;
}
@keyframes reviews-marquee-animation {
  to {
    transform: translateX(-10%);
  }
  from {
    transform: translateX(-60%);
  }
}
.section7 {
  width: 100%;
  padding: 48px 5%;
}
.section7-header {
  width: 100%;
  text-align: center;
  position: relative;
}
.section7-header h2 {
  font-size: var(--heading);
}
.section7-header p {
  font-size: var(--para);
  color: var(--para-color);
  margin-block: 8px;
}
.section7-header button {
  padding: 8px 24px;
  color: #10528b;
  font-size: 14px;
  background-color: #fff;
  border: 5px solid rgba(16, 82, 139, 0.3);
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  z-index: 11;
}
.section7-body {
  width: 100%;
  min-height: 140px;
  position: relative;
}
.integration-icons {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -115%);
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  padding: 18px 24px;
  border-radius: 10px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid #ececec;
}
.integration-icons.show {
  opacity: 1;
  transform: translate(-50%, -120%);
  z-index: 9;
}
.integration-icons .integration-icon {
  position: relative;
  padding: 12px;
}
.integration-icons .integration-icon img {
  width: 45px;
  height: 45px;
}
.integration-icon {
  position: absolute;
  display: inline-block;
  padding: 16px;
  border-radius: 8px;
  background-color: #fff;
  border: 1.5px solid #ececec;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  z-index: 9;
  transition: all 0.3s ease-in-out;
}
.integration-icon.hidden {
  opacity: 0;
}
.integration-icon span {
  width: max-content;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -35px);
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 8px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.integration-icon:hover span {
  opacity: 1;
  transform: translate(-50%, -45px);
  background-color: #36454f;
}
.integration-icon svg {
  width: 40px;
  height: 40px;
}
.section7-body.upper .integration-icon:nth-child(1) {
  left: 50%;
  --rotation: 0deg;
  transform-origin: center;
  animation: floatAndRotate2 4s ease-in-out infinite;
}
.section7-body.lower .integration-icon:nth-child(1) {
  bottom: 0;
  left: 50%;
  --rotation: 0deg;
  transform-origin: center;
  animation: floatAndRotate2 4s ease-in-out infinite;
}
.section7-body.lower .integration-icon:nth-child(2),
.section7-body.upper .integration-icon:nth-child(2) {
  top: 50%;
  left: 30%;
  --rotation: 6deg;
  transform-origin: center;
  animation: floatAndRotate 4s ease-in-out infinite;
}
.section7-body.lower .integration-icon:nth-child(3),
.section7-body.upper .integration-icon:nth-child(3) {
  top: 50%;
  left: 70%;
  --rotation: -4deg;
  transform-origin: center;
  animation: floatAndRotate 4s ease-in-out infinite;
}
.section7-body.upper .integration-icon:nth-child(2) {
  animation-delay: 0.2s;
}
.section7-body.upper .integration-icon:nth-child(3) {
  animation-delay: 0.4s;
}
.section7-body.lower .integration-icon:nth-child(2) {
  animation-delay: 0.6s;
}
.section7-body.lower .integration-icon:nth-child(3) {
  animation-delay: 0.8s;
}
@keyframes floatAndRotate {
  0% {
    transform: translate(-50%, -50%) rotate(calc(var(--rotation))) translateY(0)
      scale(0.95);
  }
  50% {
    transform: translate(-50%, -50%) rotate(calc(var(--rotation) + 2deg))
      translateY(-6px) scale(0.95);
  }
  100% {
    transform: translate(-50%, -50%) rotate(calc(var(--rotation))) translateY(0)
      scale(0.95);
  }
}
@keyframes floatAndRotate2 {
  0% {
    transform: translateX(-50%) rotate(calc(var(--rotation))) translateY(0);
  }
  50% {
    transform: translateX(-50%) rotate(calc(var(--rotation) + 2deg))
      translateY(-6px);
  }
  100% {
    transform: translateX(-50%) rotate(calc(var(--rotation))) translateY(0);
  }
}
.section8 {
  width: 100%;
  padding: 48px 5%;
  background: linear-gradient(to bottom right, #10528b, #85c6ff);
}
.section8-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section8-header h2 {
  font-size: var(--heading);
  margin-bottom: 0;
  color: #fff;
}
.section8-header button {
  padding: 8px 24px;
  color: #10528b;
  font-size: 14px;
  background-color: #fff;
  border: 5px solid rgba(16, 82, 139, 0.3);
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
}
.section8-body {
  width: 100%;
  margin-block: 48px;
}
.section8-marquee {
  width: 100%;
}
.section8-marquee-inner {
  width: 100%;
  overflow: hidden;
  -webkit-mask: linear-gradient(
    to right,
    transparent,
    #fff 15%,
    #fff 85%,
    transparent
  );
  mask: linear-gradient(to right, transparent, #fff 15%, #fff 85%, transparent);
}
.section8-marquee-right {
  margin-top: 24px;
}
.section8-marquee-inner ul {
  width: min-content;
  display: flex;
  padding: 0;
  list-style: none;
  gap: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  animation: industries-marquee 40s linear infinite;
}
.section8-marquee-right ul {
  animation-direction: reverse;
}
.section8-marquee-inner ul li {
  background: linear-gradient(135deg, #10528b48, #85c6ff);
  border-radius: 16px;
  padding: 10px 4px;
}
.section8-marquee-inner ul li span {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 24px;
  border-radius: 12px;
  font-size: 18px;
  white-space: nowrap;
}
.section8-marquee-inner .section8-footer {
  width: 100%;
}
@keyframes industries-marquee {
  from {
    transform: translateX(-10%);
  }
  to {
    transform: translateX(-60%);
  }
}
.section8-footer h6 {
  color: #fff;
  font-weight: 600;
}
.section9 {
  width: 100%;
  padding: 48px 5%;
}
.section9-body {
  width: 100%;
  display: flex;
  gap: 24px;
  background: linear-gradient(to bottom right, #10528b, #85c6ff);
  border-radius: 18px;
  padding: 48px 48px 0 48px;
}
.section9-body-left h2 {
  font-size: var(--heading);
  color: #fff;
}
.section9-body-left p {
  font-size: var(--para);
  color: #d2d2d2;
}
.section9-body-left button {
  padding: 10px 28px;
  color: #10528b;
  background-color: #fff;
  border: 5px solid rgba(16, 82, 139, 0.3);
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
}
.section9-body-right img {
  max-width: 300px;
}
.modal-table {
  /* min-width: 1000px; */
  min-height: 550px;
  background-color: #fff;
  border-radius: 28px;
  margin: 0 auto;
  display: flex;
  padding: 8px;
}
.modal-column {
  min-height: 100%;
  text-align: center;
}
.modal-column.left {
  width: 30%;
  border-radius: 20px;
  background-color: #f5f5f5;
}
.modal-column.middle,
.modal-column.right {
  width: 35%;
}
.modal-column.left p {
  font-weight: 600;
}
.table-heading {
  font-weight: 600;
  font-size: 20px;
  margin-top: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ececec;
}
.table-heading img {
  width: 30px;
}
.table-rows {
  height: 90%;
}
.table-row {
  height: calc(90% / 7);
  margin-bottom: 8px;
  place-content: center;
  border-bottom: 1px solid #ececec;
}
.table-row:last-child {
  border-bottom: none;
}
.table-row p {
  font-size: 15px;
  margin: 0;
  line-height: 1.1;
  padding-inline: 32px;
}
.table-modal-dialog,
.table-modal-dialog .modal-body,
.table-modal-dialog .modal-content {
  /* max-width: 1000px; */
}
.animation-screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999;
}
.split {
  width: 100%;
  height: 50%;
  position: relative;
}
.top-half {
  background: linear-gradient(to right, #10528b, #85c6ff 100%);
}
.bottom-half {
  background: linear-gradient(to right, #10528b, #85c6ff 100%);
}
.text-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
}
.text-container h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: var(--heading);
  letter-spacing: -1px;
  margin: 0;
}
.text-container img {
  width: 55px;
}
.error-message {
  color: red;
  font-size: 12px;
}
.form-group {
  display: inline-block;
  width: 49%;
  position: relative;
  margin-bottom: 18px;
}
input,
select {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #e6e6ee;
  border-radius: 4px;
  background: 0 0;
  outline: 0;
}
input:-webkit-autofill {
  background-color: transparent !important;
}
.form-group input,
.form-group select {
  font-size: 14px;
}
.modal-body label,
option {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  background: #fff;
  color: #999;
  transition: all 0.2s ease;
  padding: 0 4px;
  pointer-events: none;
  font-size: 14px;
}
.modal-body label span {
  opacity: 0;
  color: red;
}
input:focus + label,
input:not(:placeholder-shown) + label,
select:focus + label,
select:valid + label {
  top: 0;
  left: 10px;
  font-size: 12px;
  color: #10528b;
  font-weight: 600;
}
input:focus + label span,
input:not(:placeholder-shown) + label span,
select:focus + label span,
select:valid + label span {
  opacity: 1;
}
input.invalid {
  border: 1px solid red !important;
}
.modal-title {
  color: #10528b;
  font-weight: 700;
}
.modal-body {
  background-color: #fafafa;
}
.modal-body::-webkit-scrollbar {
  display: none;
}
.modal-body form {
  background-color: #fff;
  padding: 24px 16px;
}
.modal-body form h1 {
  color: #10528b;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.modal-body button {
  width: 100%;
  background: var(--btn-gradient);
  border: none;
  color: var(--white);
  border-radius: 8px;
  padding: 12px;
}
.modal-content .alert {
  max-width: 600px;
  width: 90%;
  position: fixed !important;
  top: 30px !important;
  font-size: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
}
@media screen and (min-width: 1440px) {
  .section3-body {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
}
@media (min-width: 992px) {
  .modal-xl.table-modal-dialog {
    --bs-modal-width: 900px !important;
  }
}

@media (min-width: 600px) {
  .modal {
    --bs-modal-width: 80% !important;
  }
}

@media screen and (max-width: 992px) {
  .section1-form-container {
    border-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .section1-content {
    flex-direction: column;
    gap: 18px;
  }
  .section1-header {
    text-align: center;
  }
  .btn-group {
    align-items: center;
  }
  .section4-body {
    flex-direction: column;
    gap: 48px;
  }
  .section4-left,
  .section4-right {
    width: 100%;
    position: relative;
    top: 0;
  }
  .section9-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
  }
  .section9-body-left,
  .section9-body-right {
    max-width: 500px;
  }
  .table-modal-dialog .modal-body {
    overflow-x: auto;
  }
  .modal-body form {
    width: 100% !important;
  }

  .modal-table {
    overflow-x: scroll;
  }

  .modal-column {
    min-width: 200px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --heading: 32px;
  }
  .section3-header,
  .section8-header {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .section2-header button {
    position: relative;
    transform: translateY(0);
  }
  .section5-metric h3 {
    font-size: 32px;
    font-weight: 600;
  }
  .integration-icon svg {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 576px) {
  .btn-group {
    align-items: start;
  }
  .form-btnGroup {
    flex-direction: column-reverse;
  }
  .nav-left img {
    width: 150px;
  }
  .nav-right button {
    padding: 8px 12px;
  }
  .nav-right button:first-child {
    display: none;
  }
  .section1 {
    overflow: hidden;
  }
  .section1-header {
    text-align: left;
  }
  .section1-header p br {
    display: none;
  }
  .btn-group button:last-child {
    display: none;
  }
  .blob {
    display: none;
  }
  .btn-group {
    flex-direction: column;
  }
  .section2 {
    padding: 50px 5%;
  }
  .section2-marquee-inner.old,
  .section2-overlay {
    display: none;
  }
  .section2-marquee-inner.new ul {
    animation: none;
    flex-direction: column;
  }
  .section2-marquee-inner.new ul li {
    width: fit-content;
  }
  .integration-icon svg {
    width: 25px;
    height: 25px;
  }
  .integration-icons .integration-icon img {
    width: 35px;
    height: 35px;
  }
  .section7-body {
    min-height: 120px;
  }
  .integration-icons {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .integration-icons.show {
    transform: translate(-50%, -113%);
  }
  .section7-body.lower .integration-icon:nth-child(2),
  .section7-body.upper .integration-icon:nth-child(2) {
    left: 15%;
  }
  .section7-body.lower .integration-icon:nth-child(3),
  .section7-body.upper .integration-icon:nth-child(3) {
    left: 85%;
  }
  .section8-marquee-inner ul li span {
    font-size: 16px;
  }
  .section9-body {
    padding: 24px 24px 0 24px;
  }
  .section9-body-right img {
    max-width: 250px;
  }
}
