:root {
  --primary-green:#00C9A7;
  --mid-green:#009f85;
  --primary-white:#EFF8FF;
  --primary-white-2:#E4E4E4;
  --primary-white-3:#BDBDBD;
  --primary-white-4:#DADADA;
  --primary-sky:#9CCFE9;
  --primary-sky2:#BFD6DF;
  --mid-sky:#00C9A7;
  --dark-sky:#0D1E30;
  --light-blue:#4A5565;
  --mid-blue:#0D1E30;
  --mid-blue-2:#0D1E30;
  --dark-blue:#101828;
  --primary-gray:#505050;
  --primary-gradient: linear-gradient(289.2deg, #00C9A7 -50.65%, #0D1E30 94.96%);
  --footer-gradient: linear-gradient(109.2deg, #00C9A7 -79.29%, #0D1E30 100%);
  --secondary-gradient: linear-gradient(102.44deg, #FFFFFF 1.97%, #9CCFE9 95.9%);
  --fs-12:12px;
  --fs-14:14px;
  --fs-18:clamp(15px,1.6vw,16px);
  --fs-20:clamp(16px,2vw,18px);
  --fs-24:clamp(18px,2.2vw,22px);
  --fs-26:clamp(18px,2.4vw,24px);
  --fs-32:clamp(20px,2.2vw,28px);
  --fs-48:clamp(22px,4vw,42px);
  --fs-72:clamp(26px,6vw,64px);
  --desc-fs-20:clamp(14px,2vw,18px);
  --fs-footer-text:clamp(14px,1.6vw,15px);
  --fs-testimonial:clamp(14px,1.6vw,15px);
  --fs-step-works:clamp(13px,1.6vw,15px);
  --fs-button:clamp(14px,1.6vw,15px);
  --fs-currency:clamp(32px,3.6vw,40px);
}

body {
  font-family: "Comfortaa";
  color: black;
}

.app-page {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background-color: white;
}

.page-content {
  flex: 1;
}

@media (min-width: 1600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1720px;
    padding-inline: 20px;
  }
}
.base-btn {
  background: transparent;
  border: 1.5px solid;
  outline: none;
  transition: 0.3s all ease-in-out;
  border-radius: 55px;
  padding: 12px 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  line-height: 100%;
  text-decoration: none;
  font-size: var(--fs-button);
}
.base-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
}
@media (max-width: 992px) {
  .base-btn .icon {
    width: 20px;
    height: 20px;
  }
}
.base-btn .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.base-white {
  color: var(--dark-sky);
  background: white;
  border: none;
}
.base-white:hover {
  background: var(--primary-white-2);
}

.base-outline-white {
  color: white;
  border-color: white;
  background: transparent;
}
.base-outline-white:hover {
  background: white;
  color: var(--mid-blue);
}

.base-outline-green {
  color: black;
  border-color: var(--primary-green);
  background: transparent;
}
.base-outline-green:hover {
  background: var(--primary-green);
  color: white;
}

.base-outline-mid-blue {
  color: var(--mid-blue);
  border-color: var(--mid-blue);
  background: transparent;
}
.base-outline-mid-blue:hover {
  background: var(--mid-blue);
  color: white;
}

.base-green {
  border-color: var(--primary-green);
  background: transparent;
  color: var(--primary-white);
  background: var(--primary-green);
}
.base-green:hover {
  border-color: var(--mid-green);
  background-color: var(--mid-green);
}

.custom-subtitle {
  font-size: var(--fs-14);
  padding: 8px 16px;
  font-weight: 600;
  border-radius: 33554400px;
  backdrop-filter: blur(50px);
}
.custom-subtitle.custom-white {
  background-color: var(--primary-white);
  color: var(--mid-blue);
  text-align: center;
}

.section-title {
  font-size: var(--fs-48);
  font-weight: 700;
  line-height: 120%;
  color: black;
  margin: 0;
}

.section-description {
  font-weight: 400;
  color: var(--primary-gray);
  font-size: var(--desc-fs-20);
  margin: 0;
}

.custom-header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-header-section .info-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.custom-header-section .button-side {
  display: flex;
  gap: 16px;
}
.custom-header-section .top-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
@media (max-width: 778px) {
  .custom-header-section {
    flex-direction: column;
  }
}

.custom-icon {
  display: flex;
}
.custom-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.section-page .container {
  padding-block: 80px;
}
@media (max-width: 992px) {
  .section-page .container {
    padding-block: 40px;
  }
}

.custom-glow {
  max-width: 100%;
  max-height: 100%;
  width: 623px;
  height: 623px;
  filter: blur(100px);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  pointer-events: none;
}

.learn-more {
  display: none;
}

@media (max-width: 992px) {
  .section-description .text-content {
    -webkit-line-clamp: 2;
  }
  .text-content {
    display: -webkit-inline-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .text-content:has(+ .learn-more.show) {
    display: block;
  }
  .learn-more {
    color: var(--mid-blue);
    font-weight: 500;
    display: -webkit-inline-box;
    cursor: pointer;
    transition: 0.3s color ease-in-out;
    text-decoration: underline;
  }
  .learn-more:hover {
    color: var(--primary-sky);
  }
}
#header .header .main-header {
  position: fixed;
  top: 10px;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: 0.3s all ease-in-out;
}
#header .header .main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  z-index: 1;
}
#header .header .main-header .container .left-side {
  height: 100px;
  width: 120px;
  display: flex;
  transition: 0.3s all ease-in-out;
  aspect-ratio: 1/1;
}
@media (max-width: 778px) {
  #header .header .main-header .container .left-side {
    height: 76px;
    width: 76px;
  }
}
@media (max-width: 558px) {
  #header .header .main-header .container .left-side {
    height: 64px;
    width: 64px;
  }
}
#header .header .main-header .container .left-side .logo2 {
  display: none;
}
#header .header .main-header .container .left-side img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1200px) {
  #header .header .main-header .container .center-side {
    display: none;
  }
}
#header .header .main-header .container .center-side .list-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
  padding: 0;
  margin: 0;
}
@media (max-width: 1600px) {
  #header .header .main-header .container .center-side .list-links {
    gap: 24px;
  }
}
@media (max-width: 1400px) {
  #header .header .main-header .container .center-side .list-links {
    gap: 16px;
  }
}
#header .header .main-header .container .center-side .list-links a {
  font-size: var(--fs-18);
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  transition: 0.3s all ease-in-out;
  padding-bottom: 12px;
  border-bottom: 1px solid transparent;
}
#header .header .main-header .container .center-side .list-links a.active, #header .header .main-header .container .center-side .list-links a:hover {
  border-color: #FFFFFF;
}
#header .header .main-header .container .right-side {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 778px) {
  #header .header .main-header .container .right-side {
    gap: 8px;
  }
}
#header .header .main-header .container .right-side .base-btn {
  font-size: 14px;
}
#header .header .main-header .container .right-side .menuBTN {
  display: none;
  padding: 0;
  height: 40px;
  width: 40px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  border: none;
  cursor: pointer;
  background: #FFFFFF;
  padding: 12.5px 10.35px 11.5px 9.65px;
  border-radius: 50%;
}
#header .header .main-header .container .right-side .menuBTN span {
  height: 3px;
  width: 100%;
  background: var(--mid-blue);
  border-radius: 2px;
  transition: width 0.3s ease, background 0.3s ease;
}
#header .header .main-header .container .right-side .menuBTN span:first-child {
  width: 60%;
}
#header .header .main-header .container .right-side .menuBTN:hover span:nth-child(1) {
  width: 100%;
}
@media (max-width: 1200px) {
  #header .header .main-header .container .right-side .menuBTN {
    display: flex;
  }
}
@media (max-width: 778px) {
  #header .header .main-header {
    padding: 0 12px;
    top: 0;
    width: 100%;
    padding: 0;
  }
  #header .header .main-header .container {
    padding: 16px 16px;
  }
}
#header .header .main-header::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0;
  transition: 0.3s all ease-in-out;
  z-index: -1;
  pointer-events: none;
}
#header .header .main-header.scrolled {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1490196078);
  transition: background 0.3s, box-shadow 0.3s;
  top: 0;
}
#header .header .main-header.scrolled::before {
  opacity: 1;
}
#header .header .main-header.scrolled .container {
  padding-block: 12px;
}
#header .header .main-header.scrolled .container .left-side {
  height: 64px;
  width: 140px;
}
#header .header .main-header.scrolled .container .left-side .logo1 {
  display: none;
}
#header .header .main-header.scrolled .container .left-side .logo2 {
  display: block;
}
@media (max-width: 778px) {
  #header .header .main-header.scrolled .container {
    padding: 8px 16px;
  }
  #header .header .main-header.scrolled .container .left-side {
    height: 50px;
    width: 100px;
  }
}
#header .header .mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 100vw;
  height: 100vh;
  background: var(--primary-gradient);
  z-index: 2000;
  flex-direction: column;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.12);
  padding: 32px 20px 24px 20px;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.3s;
  transform: translateX(-100%);
  opacity: 0;
}
#header .header .mobile-menu.active {
  display: flex;
  transform: translateX(0%);
  opacity: 1;
}
#header .header .mobile-menu .menu-close-icon {
  width: 32px;
  height: 32px;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 32px;
  transition: opacity 0.2s;
  filter: brightness(20);
}
#header .header .mobile-menu .menu-close-icon:hover {
  opacity: 0.7;
}
#header .header .mobile-menu .nav-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  margin: 0;
}
#header .header .mobile-menu .nav-items .nav-item a {
  color: var(--primary-white-2);
  text-decoration: none;
  font-size: var(--fs-18);
  font-weight: 500;
  padding: 8px 12px;
  display: block;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
#header .header .mobile-menu .nav-items .nav-item a:hover, #header .header .mobile-menu .nav-items .nav-item a:focus {
  background: var(--primary-sky);
  color: var(--mid-blue);
}
#header .header .mobile-menu .nav-items .nav-item.active a {
  color: var(--yellow);
  font-weight: 700;
}
@media (max-width: 1199px) {
  #header .header .mobile-menu {
    display: flex;
  }
}
@media (min-width: 1200px) {
  #header .header .mobile-menu {
    display: none !important;
  }
}
#header.inner-header .header .main-header {
  background: var(--mid-blue);
}
@media (max-width: 1199px) {
  #header::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    backdrop-filter: blur(20px);
    opacity: 0;
    transition: 0.3s all ease-in-out;
    z-index: 10;
    pointer-events: none;
  }
  #header:has(.header .mobile-menu.active)::before {
    opacity: 1;
    pointer-events: all;
  }
  #header:has(.header .mobile-menu.active) .header .main-header {
    opacity: 0;
    z-index: -1;
  }
}

@media (min-width: 1200px) {
  .scaled-screen .container, .scaled-screen .container-lg, .scaled-screen .container-md, .scaled-screen .container-sm, .scaled-screen .container-xl {
    max-width: 1600px;
  }
}

.banner {
  min-height: 100dvh;
  background: var(--primary-gradient);
  background-size: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  opacity: 1;
  z-index: 1;
}
@media (max-width: 992px) {
  .banner {
    min-height: 90dvh;
  }
}
.banner .pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: -1;
  opacity: 0.1;
}
.banner .pattern img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  z-index: 1;
  padding-block: 100px;
  max-height: -moz-max-content;
  max-height: max-content;
}
.banner .container .left-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  max-width: 751px;
}
.banner .container .left-side .custom-main-title {
  margin: 12px 0 24px;
  font-size: var(--fs-72);
  line-height: clamp(36px, 7vw, 90px);
  color: transparent;
  font-weight: 700;
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
          background-clip: text;
}
@media (max-width: 778px) {
  .banner .container .left-side .custom-main-title {
    margin: 16px 0;
  }
}
.banner .container .left-side .desc {
  font-weight: 400;
  color: var(--primary-white-2);
  font-size: var(--desc-fs-20);
  margin-bottom: 40px;
}
.banner .container .left-side .actions {
  display: flex;
  gap: 18px;
}
@media (max-width: 778px) {
  .banner .container .left-side .actions {
    gap: 12px;
  }
  .banner .container .left-side .actions .base-btn {
    font-size: 14px;
    padding: 8px 12px;
  }
}
.banner .container .right-side {
  display: flex;
  align-items: flex-end;
  flex: 1;
  height: 100%;
  position: relative;
  height: 724px;
}
.banner .container .right-side .tablet-view {
  width: 100%;
  max-height: 490px;
  transform-origin: bottom right;
}
.banner .container .right-side .tablet-view img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border: 10px solid #1C1C1C;
  border-radius: 24px;
}
.banner .container .right-side::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 25dvw;
  height: 25dvw;
  border-radius: 50%;
  background: rgba(240, 240, 245, 0.2);
  filter: blur(100px);
  z-index: -1;
}
.banner .container .right-side .notify {
  position: absolute;
  top: 100px;
  right: -80px;
  backdrop-filter: blur(50px);
  box-shadow: 0px 24px 40px 0px rgba(34, 34, 34, 0.1019607843);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 18px 16px;
  z-index: 1;
}
.banner .container .right-side .notify .body-notify {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.banner .container .right-side .notify .body-notify .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.banner .container .right-side .notify .body-notify .header .checkmark {
  width: 56px;
  height: 51px;
  display: flex;
}
.banner .container .right-side .notify .body-notify .header .checkmark img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .container .right-side .notify .body-notify .header .title {
  font-size: var(--fs-14);
  color: black;
  font-weight: 700;
  margin: 0;
}
.banner .container .right-side .notify .body-notify .info-date {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: start;
  font-size: var(--fs-12);
}
.banner .container .right-side .notify .body-notify .info-date .date {
  display: flex;
  align-items: center;
  gap: 4px;
}
.banner .container .right-side .notify .body-notify .info-date .icon {
  width: 16px;
  height: 16px;
}
.banner .container .right-side .notify .body-notify .split-line {
  width: 100%;
  height: 1px;
  border: 1px solid #EDF1F3;
}
.banner .container .right-side .notify .base-btn {
  font-size: 10px;
  font-weight: 700;
  color: #000000;
}
.banner .container .right-side .notify .base-btn:hover {
  color: white;
}
.banner .container .right-side .notify .base-btn:hover .icon {
  filter: grayscale(1) invert(1) brightness(4);
}
.banner .container .right-side .notify .base-btn .icon {
  height: 16px;
  width: 16px;
  transition: 0.3s all ease-in-out;
}
@media (max-width: 1850px) {
  .banner .container .right-side .notify {
    right: -20px;
  }
}
@media (max-width: 1599px) {
  .banner .container .right-side .notify {
    right: -80px;
    top: 160px;
  }
}
@media (max-width: 1465px) {
  .banner .container .right-side .notify {
    right: -40px;
  }
}
@media (max-width: 1399px) {
  .banner .container .right-side .notify {
    top: 240px;
    right: -60px;
  }
}
@media (max-width: 1240px) {
  .banner .container .right-side .notify {
    top: 300px;
    right: -40px;
  }
}
@media (max-width: 1199px) {
  .banner .container .right-side .notify {
    top: 300px;
    right: -80px;
  }
}
@media (max-width: 1150px) {
  .banner .container .right-side .notify {
    display: none;
  }
}
@media (max-width: 1150px) {
  .banner .container {
    flex-direction: column;
    padding-block: 120px;
  }
  .banner .container .right-side {
    height: 500px;
    flex: auto;
  }
  .banner .container .left-side {
    max-width: 100%;
    width: 100%;
  }
  .banner .container .left-side .desc {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .banner .container .right-side {
    height: 420px;
  }
  .banner .container .right-side .mobile-view .mobile-content {
    height: 100%;
  }
}
@media (max-width: 668px) {
  .banner .container .right-side {
    height: 360px;
  }
  .banner .container .right-side .mobile-view .mobile-content {
    padding: 12px;
  }
}
@media (max-width: 448px) {
  .banner .container .right-side {
    height: 320px;
  }
}

.mobile-view {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  max-width: 53%;
  overflow: hidden;
}
@media (max-width: 1150px) {
  .mobile-view {
    height: 100%;
  }
}
.mobile-view .mobile-container {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-view .mobile-content {
  position: absolute;
  width: 100%;
  height: auto;
  max-height: 100%;
  z-index: 1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  padding: 18px;
  display: flex;
}
.mobile-view .mobile-content .swiper-slide {
  overflow: hidden;
  border-radius: 24px;
}
.mobile-view .mobile-content .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

.app-features .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 37px;
}
.app-features .container .left-side {
  display: flex;
  justify-content: center;
  max-width: 623px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.app-features .container .left-side .custom-glow {
  background: rgba(191, 214, 223, 0.5019607843);
}
.app-features .container .left-side .mobile-view {
  position: relative;
  max-width: 359px;
  top: auto;
  left: auto;
}
.app-features .container .left-side .mobile-view .mobile-content img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}
.app-features .container .right-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 42px;
  z-index: 1;
}
.app-features .container .right-side .custom-subtitle {
  background: var(--primary-white);
  color: var(--mid-blue);
}
.app-features .container .right-side .list-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  width: 100%;
}
.app-features .container .right-side .list-features .feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
  gap: 12px;
  border-radius: 10px;
  background: var(--primary-white);
  border-top: 1px solid var(--primary-white);
  transition: 0.3s box-shadow ease-in-out;
}
.app-features .container .right-side .list-features .feature-card:hover {
  box-shadow: 0px 24px 40px 0px rgba(34, 34, 34, 0.1019607843);
}
.app-features .container .right-side .list-features .feature-card .icon {
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  padding: 12px;
  background-color: var(--mid-blue);
}
.app-features .container .right-side .list-features .feature-card .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.app-features .container .right-side .list-features .feature-card .body-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app-features .container .right-side .list-features .feature-card .body-card .title-card {
  color: var(--dark-blue);
  font-size: var(--fs-18);
  font-weight: 600;
  margin: 0;
}
.app-features .container .right-side .list-features .feature-card .body-card .description-card {
  font-size: var(--fs-14);
  color: var(--light-blue);
}
@media (max-width: 1440px) {
  .app-features .container .left-side {
    max-width: 480px;
  }
  .app-features .container .right-side {
    gap: 24px;
  }
}
@media (max-width: 1200px) {
  .app-features .container .right-side .list-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .app-features .container .left-side {
    display: none;
  }
}
@media (max-width: 992px) {
  .app-features .container .right-side .custom-header-section .info-header {
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .app-features .container .right-side .custom-header-section .top-side {
    align-items: center;
  }
  .app-features .container .right-side .list-features {
    gap: 12px;
  }
  .app-features .container .right-side .list-features .feature-card {
    gap: 8px;
    align-items: center;
    text-align: center;
    padding: 12px;
  }
  .app-features .container .right-side .list-features .feature-card .body-card {
    gap: 2px;
  }
}

.how-works {
  background: var(--primary-white);
  overflow: hidden;
}
.how-works .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.how-works .container .custom-header-section .info-header {
  max-width: 1002px;
}
.how-works .container .custom-header-section .info-header .custom-subtitle {
  background: #FFFFFF;
  color: var(--mid-blue);
}
@media (max-width: 992px) {
  .how-works .container .custom-header-section {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px;
  }
  .how-works .container .custom-header-section .top-side {
    align-items: center;
  }
}
.how-works .container .timeline-works {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 992px) {
  .how-works .container .timeline-works {
    gap: 12px;
  }
}
.how-works .container .timeline-works .list-steps {
  display: flex;
}
.how-works .container .timeline-works .list-steps .step-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1;
  cursor: pointer;
}
.how-works .container .timeline-works .list-steps .step-item .header-slide {
  position: relative;
}
.how-works .container .timeline-works .list-steps .step-item .header-slide .number-slide {
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  color: black;
  font-size: var(--fs-20);
  font-weight: 700;
  border-radius: 50%;
  width: 57px;
  height: 57px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s background ease-in-out, 0.3s border ease-in-out, 0.3s color ease-in-out;
}
.how-works .container .timeline-works .list-steps .step-item .header-slide::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
  transition: 0.3s background ease-in-out;
}
.how-works .container .timeline-works .list-steps .step-item .body-slide {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-inline-end: 30px;
}
.how-works .container .timeline-works .list-steps .step-item .body-slide .title {
  font-size: var(--fs-24);
  font-weight: 700;
  color: #000000;
  margin: 0;
}
.how-works .container .timeline-works .list-steps .step-item .body-slide .description {
  font-size: var(--fs-step-works);
  color: var(--primary-gray);
}
.how-works .container .timeline-works .list-steps .step-item:hover .header-slide::before, .how-works .container .timeline-works .list-steps .step-item.active .header-slide::before {
  background: var(--mid-blue);
}
.how-works .container .timeline-works .list-steps .step-item:hover .number-slide, .how-works .container .timeline-works .list-steps .step-item.active .number-slide {
  background: var(--mid-blue);
  border: 3px solid var(--primary-sky);
  color: white;
}
.how-works .container .timeline-works .list-steps .step-item.completed .header-slide::before {
  background: var(--mid-blue);
}
.how-works .container .timeline-works .list-steps .step-item.completed .number-slide {
  border: 1.5px solid var(--mid-blue);
}
@media (max-width: 992px) {
  .how-works .container .timeline-works .list-steps {
    flex-direction: column;
  }
  .how-works .container .timeline-works .list-steps .step-item {
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
  }
  .how-works .container .timeline-works .list-steps .step-item .body-slide {
    padding-bottom: 15px;
    padding-inline-end: 0;
  }
  .how-works .container .timeline-works .list-steps .step-item .header-slide .number-slide {
    font-size: 12px;
    height: 42px;
    width: 42px;
  }
  .how-works .container .timeline-works .list-steps .step-item .header-slide::before {
    height: 100%;
    width: 1px;
    top: 0;
    translate: -50% 0;
  }
}
.how-works .container .timeline-works .container-steps {
  width: 100%;
}
.how-works .container .timeline-works .container-steps .swiper-content-steps {
  width: 100%;
}
.how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 58px;
  padding: 32px;
  border-radius: 50px;
  background: #FFFFFF;
}
.how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide .left-side {
  display: flex;
  flex: 1;
  max-width: 762px;
  border: 10px solid #EAECF3;
  border-radius: 24px;
  overflow: hidden;
}
.how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide .left-side img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide .right-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide .right-side .header-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide .right-side .header-info .title-step {
  font-size: var(--fs-32);
  color: #000000;
  font-weight: 700;
  margin: 0;
}
.how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide .right-side .header-info .desc-step {
  color: var(--primary-gray);
  font-size: var(--desc-fs-20);
}
.how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide .right-side .list-functionality {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide .right-side .list-functionality li {
  display: flex;
  gap: 12px;
  font-size: 16px;
  line-height: 24px;
}
.how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide .right-side .list-functionality li .icon {
  height: 20px;
  width: 20px;
  display: flex;
  aspect-ratio: 1/1;
}
.how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide .right-side .list-functionality li .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1200px) {
  .how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide {
    flex-direction: column;
    gap: 32px;
  }
  .how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide .left-side {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide {
    padding: 16px;
    gap: 18px;
    border-radius: 24px;
  }
  .how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide .right-side {
    gap: 16px;
  }
  .how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide .right-side .header-info {
    gap: 12px;
  }
  .how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide .right-side .list-functionality {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide .right-side .list-functionality li {
    font-size: 14px;
    line-height: 100%;
  }
  .how-works .container .timeline-works .container-steps .swiper-content-steps .swiper-slide .right-side .list-functionality li .icon {
    height: 16px;
    width: 16px;
  }
}

.how-works2 {
  background: var(--mid-blue-2);
  overflow: hidden;
  position: relative;
  z-index: 1;
  max-width: 100% !important;
  width: 100% !important;
  min-height: 100%;
}
.how-works2 .pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  opacity: 0.1;
  z-index: -1;
}
.how-works2 .pattern img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.how-works2 .container {
  display: flex;
  gap: 30px;
}
.how-works2 .container .left-side {
  flex: 1;
  max-width: 724px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.how-works2 .container .left-side .custom-header-section .info-header .top-side .custom-subtitle {
  background: var(--primary-white);
  color: var(--mid-blue);
}
.how-works2 .container .left-side .custom-header-section .info-header .top-side .section-title {
  color: #FFFFFF;
}
.how-works2 .container .left-side .custom-header-section .info-header .top-side .section-description {
  color: var(--primary-white-2);
}
.how-works2 .container .left-side .swiper-how-works {
  width: 100%;
  height: 612px;
}
.how-works2 .container .left-side .swiper-how-works .swiper-slide {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  height: -moz-fit-content;
  height: fit-content;
}
.how-works2 .container .left-side .swiper-how-works .swiper-slide:not(:last-child) .left-side-slide {
  padding-bottom: 48px;
}
.how-works2 .container .left-side .swiper-how-works .swiper-slide .left-side-slide {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 557px;
}
.how-works2 .container .left-side .swiper-how-works .swiper-slide .left-side-slide .icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  padding: 17px;
  background-color: #FFFFFF;
  display: flex;
}
.how-works2 .container .left-side .swiper-how-works .swiper-slide .left-side-slide .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.how-works2 .container .left-side .swiper-how-works .swiper-slide .left-side-slide .body-slide {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.how-works2 .container .left-side .swiper-how-works .swiper-slide .left-side-slide .body-slide .title-slide {
  font-size: var(--fs-26);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}
.how-works2 .container .left-side .swiper-how-works .swiper-slide .left-side-slide .body-slide .desc-slide {
  font-size: var(--fs-18);
  color: var(--primary-white-3);
}
.how-works2 .container .left-side .swiper-how-works .swiper-slide .right-side-slide {
  padding-inline: 18px 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.3019607843);
  color: var(--primary-sky);
  font-size: 20px;
  width: 43px;
}
.how-works2 .container .right-side {
  flex: 1;
  position: relative;
}
.how-works2 .container .right-side .wrapper-bg {
  position: absolute;
  top: -120px;
  left: -80px;
  display: flex;
  height: 1427px;
  width: 1200px;
}
.how-works2 .container .right-side .wrapper-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .how-works2 .container .right-side {
    display: none;
  }
  .how-works2 .container .left-side .custom-header-section .top-side {
    align-items: center;
  }
  .how-works2 .container .left-side .swiper-how-works {
    height: -moz-fit-content;
    height: fit-content;
    pointer-events: none;
  }
  .how-works2 .container .left-side .swiper-how-works .swiper-slide {
    flex-direction: row-reverse;
    gap: 12px;
  }
  .how-works2 .container .left-side .swiper-how-works .swiper-slide .right-side-slide {
    border: none;
    padding-inline: 6px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.3019607843);
  }
}

.testimonials {
  padding-bottom: 80px;
  background-color: rgba(244, 246, 251, 0.6);
}
.testimonials .container {
  padding-bottom: 60px;
}
.testimonials .container .custom-header-section {
  justify-content: center;
  text-align: center;
}
.testimonials .container .custom-header-section .top-side {
  align-items: center;
}
.testimonials .container .custom-header-section .top-side .custom-subtitle {
  background: var(--primary-white);
  color: var(--mid-blue);
}
.testimonials .container .custom-header-section .top-side .section-description .text-content {
  -webkit-line-clamp: 1;
}
.testimonials .track-testimonials-wrapper {
  overflow: hidden;
  width: 100%;
}
.testimonials .testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.testimonials .track-testimonials {
  display: flex;
  gap: 24px;
  width: -moz-max-content;
  width: max-content;
}
.testimonials .track-testimonials .card-testimonial {
  display: flex;
  flex-direction: column;
  padding: 25px 22px;
  background: #FFFFFF;
  border-top: 1px solid var(--primary-white);
  gap: 28px;
  width: 540px;
  max-width: 100%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .testimonials .track-testimonials .card-testimonial {
    width: 316px;
  }
}
.testimonials .track-testimonials .card-testimonial .content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.testimonials .track-testimonials .card-testimonial .content .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.testimonials .track-testimonials .card-testimonial .content .header .left .rate {
  display: flex;
  align-items: center;
  gap: 4px;
}
.testimonials .track-testimonials .card-testimonial .content .header .left .rate .item-rate {
  height: 20px;
  width: 20px;
  display: flex;
}
.testimonials .track-testimonials .card-testimonial .content .header .left .rate .item-rate img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.testimonials .track-testimonials .card-testimonial .content .header .right .icon {
  height: 40px;
  width: 40px;
  display: flex;
}
.testimonials .track-testimonials .card-testimonial .content .header .right .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.testimonials .track-testimonials .card-testimonial .content .message-testimonial {
  font-size: var(--fs-testimonial);
  color: black;
  margin: 0;
}
.testimonials .track-testimonials .card-testimonial .owner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 17px;
}
.testimonials .track-testimonials .card-testimonial .owner .profile-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials .track-testimonials .card-testimonial .owner .profile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .track-testimonials .card-testimonial .owner .info {
  display: flex;
  flex-direction: column;
}
.testimonials .track-testimonials .card-testimonial .owner .info .name {
  font-size: var(--fs-testimonial);
  color: black;
  font-weight: 700;
  margin: 0;
  line-height: 24px;
}
.testimonials .track-testimonials .card-testimonial .owner .info .position {
  font-size: var(--fs-12);
  color: var(--primary-green);
  font-weight: 500;
  margin: 0;
  line-height: 20px;
}

.app-preview .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 37px;
}
.app-preview .container .inner-mobile,
.app-preview .container .left-side {
  justify-content: center;
  max-width: 623px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.app-preview .container .inner-mobile .custom-glow,
.app-preview .container .left-side .custom-glow {
  background: var(--primary-sky2);
}
.app-preview .container .inner-mobile .mobile-view,
.app-preview .container .left-side .mobile-view {
  position: relative;
  max-width: 359px;
  top: auto;
  left: auto;
}
.app-preview .container .inner-mobile .mobile-view .mobile-content,
.app-preview .container .left-side .mobile-view .mobile-content {
  opacity: 0;
  transition: 0.3s opacity ease-in-out;
}
.app-preview .container .inner-mobile .mobile-view .mobile-content.active,
.app-preview .container .left-side .mobile-view .mobile-content.active {
  opacity: 1;
}
.app-preview .container .inner-mobile .mobile-view .mobile-content img,
.app-preview .container .left-side .mobile-view .mobile-content img {
  width: 100%;
  border-radius: 24px;
}
.app-preview .container .left-side {
  display: flex;
}
@media (max-width: 992px) {
  .app-preview .container .left-side {
    display: none;
  }
}
.app-preview .container .inner-mobile {
  display: none;
}
.app-preview .container .inner-mobile .mobile-view {
  height: 448px;
}
@media (max-width: 992px) {
  .app-preview .container .inner-mobile {
    display: flex;
  }
}
.app-preview .container .right-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1;
}
.app-preview .container .right-side .title-container {
  height: auto;
}
.app-preview .container .right-side .title-container .swiper-slide {
  max-height: -moz-fit-content;
  max-height: fit-content;
  height: auto;
}
.app-preview .container .right-side .custom-subtitle {
  background-color: rgba(239, 248, 255, 0.8);
  color: var(--mid-blue);
}
.app-preview .container .right-side .list-functionality {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.app-preview .container .right-side .list-functionality li {
  display: flex;
  gap: 12px;
  font-size: 16px;
  line-height: 24px;
}
.app-preview .container .right-side .list-functionality li .icon {
  height: 20px;
  width: 20px;
  display: flex;
  aspect-ratio: 1/1;
}
.app-preview .container .right-side .list-functionality li .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .app-preview .container .right-side {
    gap: 12px;
  }
  .app-preview .container .right-side .custom-header-section .top-side {
    align-items: center;
  }
  .app-preview .container .right-side .custom-header-section .top-side .title-container {
    margin-bottom: 12px;
  }
  .app-preview .container .right-side .custom-header-section .top-side .section-title {
    text-align: center;
  }
}
@media (max-width: 668px) {
  .app-preview .container .right-side .list-functionality {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .app-preview .container .right-side .list-functionality li {
    line-height: 100%;
  }
  .app-preview .container .right-side .list-functionality li .icon {
    height: 16px;
    width: 16px;
  }
}

.pricing {
  background: rgba(244, 246, 251, 0.6);
}
.pricing .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 1600px) {
  .pricing .container {
    max-width: 1326px;
  }
}
.pricing .container .custom-header-section {
  justify-content: center;
}
.pricing .container .custom-header-section .top-side {
  align-items: center;
}
.pricing .container .custom-header-section .top-side .custom-subtitle {
  background: var(--primary-white);
  color: var(--mid-blue);
}
@media (max-width: 778px) {
  .pricing .container .custom-header-section {
    text-align: center;
  }
}
.pricing .container .pricing-items {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  place-content: center;
}
.pricing .container .pricing-items .pricing-item {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 280px;
  max-width: 402px;
  gap: 37px;
  padding: 34px;
  background: #FFFFFF;
  border-top: 1px solid var(--primary-white);
  border-radius: 16px;
}
.pricing .container .pricing-items .pricing-item:has(.most-popular) {
  border: 2px solid var(--primary-green);
}
.pricing .container .pricing-items .pricing-item .most-popular {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1019607843), 0px 10px 15px -3px rgba(0, 0, 0, 0.1019607843);
}
.pricing .container .pricing-items .pricing-item .header-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 24px;
}
.pricing .container .pricing-items .pricing-item .header-item .info-plan {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
.pricing .container .pricing-items .pricing-item .header-item .info-plan .title-item {
  font-size: var(--fs-32);
  color: black;
  font-weight: 500;
  margin: 0;
}
.pricing .container .pricing-items .pricing-item .header-item .info-plan .desc-item {
  font-size: var(--desc-fs-20);
  color: var(--primary-gray);
}
.pricing .container .pricing-items .pricing-item .header-item .price-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing .container .pricing-items .pricing-item .header-item .price-wrapper .currency {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-currency);
  color: var(--mid-blue);
  font-weight: 700;
  margin: 0;
}
.pricing .container .pricing-items .pricing-item .header-item .price-wrapper .currency span {
  font-size: var(--fs-24);
}
.pricing .container .pricing-items .pricing-item .header-item .price-wrapper .limit-plan {
  font-size: var(--fs-14);
  color: var(--primary-gray);
}
.pricing .container .pricing-items .pricing-item .body-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing .container .pricing-items .pricing-item .body-item .features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.pricing .container .pricing-items .pricing-item .body-item .features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--fs-16);
  line-height: 24px;
}
.pricing .container .pricing-items .pricing-item .body-item .features-list li .icon {
  height: 20px;
  width: 20px;
  display: flex;
  aspect-ratio: 1/1;
}
.pricing .container .pricing-items .pricing-item .body-item .features-list li .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pricing .container .pricing-items .pricing-item .footer-item {
  margin-top: auto;
}

.request-demo {
  position: relative;
  overflow: hidden;
  padding-top: 87px;
}
@media (max-width: 1024px) {
  .request-demo {
    padding-top: 0;
  }
}
.request-demo .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 67px;
}
.request-demo .container .left-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1;
  width: 754px;
  max-width: 36%;
}
.request-demo .container .left-side .custom-header-section .top-side .custom-subtitle {
  background: var(--primary-white);
  color: var(--mid-blue);
}
.request-demo .container .left-side .list-features {
  font-weight: 500;
  font-size: var(--fs-14);
  color: var(--mid-blue);
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.request-demo .container .left-side .list-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.request-demo .container .left-side .list-features li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--primary-green);
  border-radius: 50%;
}
.request-demo .container .right-side {
  flex: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 925px;
  max-width: 50%;
}
.request-demo .container .right-side .wrapper-bg {
  position: absolute;
  display: flex;
  overflow: hidden;
  bottom: 0;
}
.request-demo .container .right-side .wrapper-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.request-demo .container .right-side .wrapper-bg.tablet-bg {
  border-radius: 24px;
  border: 10px solid #1C1C1C;
  right: -20px;
  height: calc(100% - 70px);
}
.request-demo .container .right-side .wrapper-bg.tablet-bg img {
  -o-object-position: left top;
     object-position: left top;
}
.request-demo .container .right-side .wrapper-bg.mobile-bg {
  left: 0;
  translate: -50% 0;
  max-width: 40%;
}
@media (max-width: 1024px) {
  .request-demo .container {
    flex-direction: column;
    padding-bottom: 395px;
  }
  .request-demo .container .left-side {
    max-width: 100%;
  }
  .request-demo .container .left-side .custom-header-section .top-side {
    align-items: center;
    text-align: center;
  }
  .request-demo .container .left-side .list-features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .request-demo .container .right-side {
    height: 355px;
    max-width: calc(90% - 16px);
  }
  .request-demo .container .right-side .wrapper-bg.tablet-bg {
    height: 100%;
    width: 100%;
  }
  .request-demo .container .right-side .wrapper-bg.mobile-bg {
    left: 0;
    max-width: 24%;
    translate: 0 0;
  }
}
@media (max-width: 887px) {
  .request-demo .container {
    padding-bottom: 320px;
  }
  .request-demo .container .right-side {
    width: 100%;
    height: 300px;
    max-width: calc(100% - 16px);
  }
  .request-demo .container .right-side .wrapper-bg.mobile-bg {
    max-width: 24%;
  }
}
@media (max-width: 668px) {
  .request-demo .container {
    padding-bottom: 290px;
  }
  .request-demo .container .right-side {
    height: 260px;
  }
  .request-demo .container .right-side .wrapper-bg.mobile-bg {
    max-width: 26%;
  }
}
@media (max-width: 558px) {
  .request-demo .container {
    padding-bottom: 290px;
  }
  .request-demo .container .right-side {
    height: 260px;
  }
  .request-demo .container .right-side .wrapper-bg.mobile-bg {
    max-width: 34%;
  }
}
@media (max-width: 558px) {
  .request-demo .container .right-side .wrapper-bg.mobile-bg {
    max-width: 40%;
  }
}

.form-group .base-label {
  font-size: 14px;
}
.form-group .wrapper-input {
  position: relative;
}
.form-group .wrapper-input .custom-icon {
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  translate: 0 -50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px;
}
.form-group .wrapper-input .custom-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.form-group .wrapper-input input, .form-group .wrapper-input textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.031372549);
  padding: 17px 32px;
  font-size: var(--body-1);
  color: black;
  border: none;
  outline: none;
}
.form-group .wrapper-input input::-moz-placeholder, .form-group .wrapper-input textarea::-moz-placeholder {
  color: #969696;
}
.form-group .wrapper-input input::placeholder, .form-group .wrapper-input textarea::placeholder {
  color: #969696;
}
.form-group .error-msg {
  display: none;
  font-weight: 700;
  color: red;
}
.form-group.show-error .error-msg {
  display: block;
}

.select-group input {
  display: none;
}
.select-group .base-select-label {
  border: 1px solid #DBDEE1;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.select-group .base-select-label .check-icon {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  border: 1px solid #DBDEE1;
  transition: 0.3s all ease-in-out;
}
.select-group .base-select-label .option-text {
  color: black;
  font-weight: 500;
  font-size: var(--body-2);
  transition: 0.3s all ease-in-out;
}
.select-group:has(:checked) .base-select-label {
  border-color: transparent;
  background: var(--subtitle-color);
}
.select-group:has(:checked) .base-select-label .check-icon {
  border-color: var(--mid-blue);
  background: white;
  border-width: 4px;
}
.select-group:has(:checked) .base-select-label .option-text {
  color: var(--mid-blue);
}
.select-group:hover .base-select-label {
  border-color: transparent;
  background: var(--subtitle-color);
}
.select-group:hover .check-icon {
  border-color: var(--mid-blue);
  background: white;
  border-width: 4px;
}

footer .wrapper-footer {
  background: var(--footer-gradient);
}
footer .wrapper-footer .top-footer {
  padding-block: 60px 32px;
}
footer .wrapper-footer .top-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 887px) {
  footer .wrapper-footer .top-footer .container {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  footer .wrapper-footer .top-footer {
    padding-block: 40px 24px;
  }
}
@media (max-width: 778px) {
  footer .wrapper-footer .top-footer {
    flex-direction: column;
    gap: 24px;
  }
}
footer .wrapper-footer .top-footer .title-footer .title {
  padding-bottom: 9px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}
footer .wrapper-footer .top-footer .title-footer .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 24px;
}
footer .wrapper-footer .top-footer .contact-footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .wrapper-footer .top-footer .contact-footer .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-button);
  color: white;
  text-decoration: none;
  font-weight: 400;
}
footer .wrapper-footer .top-footer .contact-footer .contact-item .icon {
  padding: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: transparent;
  border-radius: 10px;
  background: #FFFFFF;
  transition: 0.3s all ease-in-out;
  aspect-ratio: 1/1;
}
footer .wrapper-footer .top-footer .contact-footer .contact-item .icon img {
  transition: 0.3s all ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .wrapper-footer .top-footer .contact-footer .contact-item:hover .icon {
  background: var(--mid-blue);
}
footer .wrapper-footer .top-footer .contact-footer .contact-item:hover .icon img {
  filter: invert(1) brightness(4);
}
footer .wrapper-footer .top-footer .left-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 448px;
}
@media (max-width: 887px) {
  footer .wrapper-footer .top-footer .left-side {
    max-width: 100%;
  }
}
footer .wrapper-footer .top-footer .left-side .logo {
  display: flex;
  height: 106px;
  width: 78px;
}
footer .wrapper-footer .top-footer .left-side .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .wrapper-footer .top-footer .left-side .desc {
  font-size: var(--fs-button);
  color: var(--primary-white-4);
}
footer .wrapper-footer .top-footer .left-side .social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
footer .wrapper-footer .top-footer .left-side .social-links a {
  padding: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: transparent;
  border-radius: 10px;
  background: #FFFFFF;
  transition: 0.3s all ease-in-out;
}
footer .wrapper-footer .top-footer .left-side .social-links a:hover {
  background: var(--mid-blue);
}
footer .wrapper-footer .top-footer .left-side .social-links a:hover img {
  filter: invert(1) brightness(4);
}
footer .wrapper-footer .top-footer .left-side .social-links a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s all ease-in-out;
}
footer .wrapper-footer .top-footer .center-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .wrapper-footer .top-footer .right-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 496px;
}
@media (max-width: 887px) {
  footer .wrapper-footer .top-footer .right-side {
    max-width: 100%;
  }
}
footer .wrapper-footer .top-footer .right-side .subscribe {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .wrapper-footer .top-footer .right-side .subscribe .desc {
  font-size: var(--fs-footer-text);
  color: #D1D5DC;
  line-height: 135%;
}
footer .wrapper-footer .top-footer .right-side .subscribe .subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .wrapper-footer .top-footer .right-side .subscribe .subscribe-form .wrapper-input {
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid #FFFFFF;
  border-radius: 50px;
}
footer .wrapper-footer .top-footer .right-side .subscribe .subscribe-form .wrapper-input input {
  background: none;
  border: none;
  outline: none;
  color: white;
  font-size: var(--fs-14);
  min-width: 0;
}
footer .wrapper-footer .top-footer .right-side .subscribe .subscribe-form .wrapper-input input::-moz-placeholder {
  color: #D1D5DC;
}
footer .wrapper-footer .top-footer .right-side .subscribe .subscribe-form .wrapper-input input::placeholder {
  color: #D1D5DC;
}
footer .wrapper-footer .top-footer .right-side .subscribe .subscribe-form .wrapper-input button {
  font-size: var(--fs-12);
}
footer .wrapper-footer .top-footer .right-side .subscribe .subscribe-form .info-form {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-14);
  color: #D1D5DC;
}
footer .wrapper-footer .bottom-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.3019607843);
}
footer .wrapper-footer .bottom-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
  gap: 16px;
}
@media (max-width: 778px) {
  footer .wrapper-footer .bottom-footer .container {
    flex-direction: column;
  }
}
footer .wrapper-footer .bottom-footer .copyright {
  color: var(--primary-white-4);
  font-size: var(--fs-14);
}
footer .wrapper-footer .bottom-footer .links {
  display: flex;
  align-items: center;
  gap: 16px;
}
footer .wrapper-footer .bottom-footer .links a {
  text-decoration: none;
  color: var(--primary-white-4);
  font-size: var(--fs-14);
}
footer .wrapper-footer .bottom-footer .links a:hover {
  text-decoration: underline;
}
footer .wrapper-footer .bottom-footer .links .divider {
  width: 1.2px;
  height: 16px;
  background: rgba(255, 255, 255, 0.5019607843);
}/*# sourceMappingURL=style.css.map */