@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=ADLaM+Display&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alata&display=swap");
@import url("https://site-assets.fontawesome.com/releases/v7.1.0/css/all.css");
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
b,
small,
strong,
body,
button,
input,
optgroup,
select,
textarea {
  font-family: "Noto Sans", sans-serif;
}

body {
  overflow-x: hidden !important;
}

a,
i,
.btn,
div {
  text-decoration: none !important;
  transition: all 0.3s ease-in-out !important;
}

textarea {
  outline: 2px solid transparent !important;
  box-shadow: none !important;
}

input,
.navbar-toggler,
button,
input {
  outline: 2px solid transparent !important;
  box-shadow: none !important;
}

body {
  scroll-behavior: smooth;
}

html {
  --scrollbarBG: #cfd8dc;
  --thumbBG: #90a4ae;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #463269;
}

::-webkit-scrollbar-thumb {
  background: #cfb5fd;
}

.lg-container {
  width: 100%;
  margin: 0px auto;
  max-width: 1530px;
  padding-left: 15px;
  padding-right: 15px;
}

.md-container {
  width: 100%;
  margin: 0px auto;
  max-width: 1330px;
  padding-left: 15px;
  padding-right: 15px;
}

.animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.btn-primary {
  width: fit-content;
  height: 60px;
  background: linear-gradient(90deg, #ed8435 0%, #f8ac3c 100%);
  border: 1px solid #ffffff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out !important;
  gap: 10px;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  padding: 15px 30px;
  color: #ffffff;
}

.btn-primary:hover {
  background: #fff;
  border: 1px solid #ed8435 !important;
  color: #ed8435 !important;
}

.btn-light {
  width: fit-content;
  height: 60px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  padding: 15px 30px;
  color: #271c3a;
}

.btn-light:hover {
  background: #271c3a;
  border: 1px solid #fff;
  color: #fff;
}

.btn-dark {
  width: fit-content;
  height: 50px;
  background: #271c3a;
  border: 1px solid #c3aaee;
  box-shadow: 0px 4px 25px #271c3a;
  border-radius: 5px;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #ffffff;
  padding: 15px 18px;
}

.btn-dark:hover {
  color: #271c3a;
  background: #fff;
  border: 1px solid #271c3a;
}

.btn-lg {
  height: 80px !important;
}

.layout {
  overflow-x: hidden;
}

.header {
  width: 100%;
  min-height: 80px;
  background: #271c3a;
  padding: 10px 0px;
}
.header .header-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header-row .logo img {
  height: 60px;
}
.header .header-row .action-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.header .header-row .action-btns .header-link {
  color: #ffffff;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 0px;
  cursor: pointer;
}
.header .header-row .action-btns .header-link:hover {
  color: #03bf95;
}
.header .header-row .action-btns .hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 200;
  padding: 15px 15px;
}
.header .header-row .action-btns .hamburger span {
  box-shadow: 0px 1px 3px #2a1a38;
  width: 28px;
  height: 3px;
  background: #2a1a38;
  border-radius: 5px;
  transition: 0.3s ease;
}
.header .header-row .action-btns .hamburger:hover {
  background: #fff;
}
.header .header-row .action-btns .hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header .header-row .action-btns .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .header-row .action-btns .hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.header .header-row .btn-primary br {
  display: none;
}
.header-nav {
  display: none;
  width: 100%;
  position: relative;
  z-index: 10;
}
.header-nav .nav-link-list {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: auto;
  background-color: rgba(39, 28, 58, 0.8823529412);
  gap: 10px;
  padding: 20px;
}
.header-nav .nav-link-list .header-link {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 0px;
  cursor: pointer;
  color: #fff;
  padding: 10px;
  width: 100%;
  text-align: center;
}
.header-nav .nav-link-list.active {
  transform: translateX(0%) !important;
}

.bottom-right {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.hero-section {
  width: 100%;
  min-height: 842px;
  background: linear-gradient(318.12deg, rgba(174, 8, 160, 0.2) 1.14%, rgba(134, 42, 191, 0.2) 98.86%), linear-gradient(81.93deg, #422782 1.63%, #3882e4 98.37%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 200px 0px 100px;
  position: relative;
}
.hero-section .bg-icon {
  position: absolute;
  left: 55px;
  bottom: 55px;
}
.hero-section .bg-icon img {
  height: 400px;
}
.hero-section .bg-icon h1 {
  font-family: "Segoe UI Symbol", "Segoe UI", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 96px;
  margin-bottom: 0px;
  color: rgba(255, 255, 255, 0.2);
}
.hero-section .content {
  position: relative;
  z-index: 1;
}
.hero-section .content h1 {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 72px;
  line-height: 109px;
  margin-bottom: 122px;
  color: #ffffff;
}
.hero-section .content h1 br {
  display: none;
}
.hero-section .content .action-btns {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 70px;
}
.hero-section .content .action-btns .text {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  margin-bottom: 22px;
}
.hero-section .content .action-btns a.btn-light {
  width: 100%;
}
.hero-section .carousel {
  margin-bottom: 30px;
}
.hero-section .carousel .carousel-inner video {
  width: 100%;
}
.hero-section .carousel .carousel-item {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.hero-section .carousel .carousel-item .play {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section .carousel .carousel-item .play img {
  height: 80px;
  width: 80px;
}
.hero-section .carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .carousel .carousel-indicators [data-bs-target] {
  margin: 0px 7px !important;
}
.hero-section .carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  background-color: #535353;
  border-radius: 50%;
  opacity: 1;
}
.hero-section .carousel .carousel-indicators .active {
  background-color: #ffffff;
}

.companies-section {
  width: 100%;
  min-height: 160px;
  background: #ffffff;
  padding: 40px 0;
  overflow: hidden;
}
.companies-section .marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.companies-section .marquee-wrapper .marquee-content {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.companies-section .marquee-wrapper .marquee-content:hover {
  animation-play-state: paused;
}
.companies-section .marquee-wrapper .marquee-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 0 40px;
}
.companies-section .marquee-wrapper .marquee-item img {
  height: 80px;
  width: auto;
  display: block;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.left-heading {
  width: fit-content;
  margin-bottom: 50px;
}
.left-heading h1 {
  font-family: "Alata";
  font-style: normal;
  font-weight: 400;
  font-size: 128px;
  line-height: 177px;
  margin-bottom: 0px;
  color: rgba(255, 255, 255, 0.2);
}
.left-heading .title {
  width: 100%;
  border-top: 3px solid #cccccc;
  display: flex;
  justify-content: flex-end;
  padding-top: 16px;
}
.left-heading .title span {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 54px;
  color: #ffffff;
}

.cases-section {
  width: 100%;
  background: #271c3a;
  padding: 75px 0px 160px;
}
.cases-section .cases-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.cases-cards-sectiion {
  padding-left: 70px;
}
.cases-cards-sectiion .case-card {
  width: 100%;
  min-height: 295px;
  background: #534b62;
  border-radius: 20px;
  padding: 22px;
  margin-top: 100px;
}
.cases-cards-sectiion .case-card .image-title {
  width: calc(100% + 90px);
  margin-left: -90px;
  margin-top: -70px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.cases-cards-sectiion .case-card .image-title img {
  width: 100%;
}
.cases-cards-sectiion .case-card .image-title .title {
  position: absolute;
  bottom: 14px;
  right: 10px;
  z-index: 1;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 38px;
  color: #ffffff;
  width: 75%;
  text-align: center;
}
.cases-cards-sectiion .case-card .heading-outline {
  width: calc(100% - 10px);
  min-height: 70px;
  margin-bottom: 30px;
  background: #534b62;
  border: 1px solid #ffffff;
  border-radius: 10px;
  transform: rotate(-0.11deg);
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  color: #ffffff;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cases-cards-sectiion .case-card .disc-outline {
  width: calc(100% - 10px);
  min-height: 70px;
  background: #534b62;
  border: 1px solid #ffffff;
  border-radius: 10px;
  transform: rotate(-0.11deg);
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 23px;
  line-height: 200%;
  text-align: center;
  color: #ffffff;
  padding: 27px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cases-cards-sectiion .case-card .disc-outline .arrow-right {
  position: absolute;
  right: -30px;
}
.cases-cards-sectiion .case-card .heading-fill {
  width: 100%;
  min-height: 70px;
  margin-bottom: 30px;
  background: #271c3a;
  border: 1px solid #271c3a;
  border-radius: 10px;
  transform: rotate(-0.11deg);
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  color: #ffffff;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cases-cards-sectiion .case-card .disc-fill {
  width: 100%;
  min-height: 70px;
  background: #271c3a;
  border: 1px solid #271c3a;
  border-radius: 10px;
  transform: rotate(-0.11deg);
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 23px;
  line-height: 200%;
  text-align: center;
  color: #ffffff;
  padding: 27px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.the-call-ai {
  width: 100%;
  height: 200px;
  background: #3880e1;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.the-call-ai h3 {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 65px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 0px;
}
.the-call-ai h3 .br-sp {
  display: none;
}

.features-section {
  padding: 50px 0px 100px;
}

.feature-card {
  width: 100%;
  min-height: 346px;
  background: #f6f6f6;
  border-radius: 20px;
  padding: 0px 50px;
  margin-top: 100px;
}
.feature-card .content {
  padding: 60px 0px;
}
.feature-card .content h3 {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 150%;
  display: flex;
  align-items: center;
  margin-bottom: 45px;
  color: #333333;
}
.feature-card .content p {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 150%;
  display: flex;
  align-items: center;
  color: #333333;
  margin-bottom: 0px;
  max-width: 653px;
}
.feature-card .banner {
  width: 100%;
  height: 100%;
  margin-top: -25px;
  height: calc(100% + 50px);
  background: #ebebeb;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-card .banner img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.comparison-section {
  padding: 75px 0px 200px;
  width: 100%;
  background: #271c3a;
}

.comparison-table table {
  width: 100%;
}
.comparison-table table thead td {
  padding: 16px;
  background: #3f3351;
  text-align: center;
  border-bottom: 1px solid #3f3351;
}
.comparison-table table thead td span {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #cbd5e1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.comparison-table table thead td span small {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #cbd5e1;
}
.comparison-table table thead td:first-child {
  text-align: left;
  border-bottom: 1px solid #56496c;
}
.comparison-table table thead td:first-child span {
  align-items: flex-start;
}
.comparison-table table thead td.active {
  background: #2563eb;
  border-radius: 10px 10px 0px 0px;
}
.comparison-table table tbody tr:last-child td.active {
  border-radius: 0px 0px 10px 10px;
}
.comparison-table table tbody td {
  border-bottom: 1px solid #3f3351;
  padding: 16px;
}
.comparison-table table tbody td span {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #cbd5e1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.comparison-table table tbody td span small {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
  color: #cbd5e1;
}
.comparison-table table tbody td:first-child {
  background: #3f3351;
  border-bottom: 1px solid #56496c;
  text-align: left;
}
.comparison-table table tbody td:first-child span {
  align-items: flex-start;
}
.comparison-table table tbody td:first-child span small {
  font-size: 20px;
}
.comparison-table table tbody td.active {
  background: #2563eb;
}

.how-to-use-section {
  width: 100%;
  background: #204478;
  min-height: 100px;
  padding: 50px 0px;
}
.how-to-use-section .heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 75px;
}
.how-to-use-section .heading h3 {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 54px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 0px;
}
.how-to-use-section .heading h3 br {
  display: none;
}

.how-to-use-row {
  width: 100%;
  display: flex;
  gap: 100px;
}
.how-to-use-row .outer-card {
  width: 100%;
  min-height: 132px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 0px 22px 16px;
}
.how-to-use-row .outer-card .l1-btn,
.how-to-use-row .outer-card .l2-btn,
.how-to-use-row .outer-card .r1-btn,
.how-to-use-row .outer-card .r2-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.how-to-use-row .outer-card .l1-btn {
  width: 100%;
  height: 47px;
  background: #ffffff;
  box-shadow: inset 0px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  font-size: 17px;
  line-height: 23px;
  color: #204478;
  padding: 5px;
  margin-top: -23px;
  margin-bottom: 10px;
}
.how-to-use-row .outer-card .l1-btn:hover {
  background: #204478;
  color: #ffffff;
  box-shadow: inset 0px 6px 14px rgba(0, 0, 0, 0.35);
}
.how-to-use-row .outer-card .l2-btn {
  width: 100%;
  height: 80px;
  background: linear-gradient(90deg, #ec8235 0%, #f8ac3c 100%);
  border: 1px solid #ffffff;
  box-shadow: 2px 4px 0px #f29839;
  border-radius: 5px;
  font-size: 24px;
  line-height: 33px;
  color: #ffffff;
  gap: 25px;
  padding: 10px;
}
.how-to-use-row .outer-card .l2-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #fff 0%, #fff 100%);
  box-shadow: 0px 8px 20px rgba(242, 152, 57, 0.6);
  filter: brightness(1.05);
  color: #ed8435 !important;
}
.how-to-use-row .outer-card .l2-btn:active {
  transform: translateY(0);
  box-shadow: 2px 4px 0px #f29839;
}
.how-to-use-row .outer-card .r1-btn {
  width: 100%;
  height: 47px;
  background: #204478;
  border: 1px solid #ffffff;
  box-shadow: inset 0px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  font-size: 17px;
  line-height: 23px;
  color: #ffffff;
  padding: 5px;
  margin-top: -23px;
  margin-bottom: 10px;
}
.how-to-use-row .outer-card .r1-btn:hover {
  background: #2c5aa0;
  box-shadow: inset 0px 6px 14px rgba(0, 0, 0, 0.35);
}
.how-to-use-row .outer-card .r2-btn {
  width: 100%;
  height: 80px;
  background: #ffffff;
  border: 1px solid #204478;
  box-shadow: 2px 4px 0px #002f73;
  border-radius: 5px;
  font-size: 24px;
  line-height: 33px;
  color: #204478;
  gap: 25px;
  padding: 10px;
}
.how-to-use-row .outer-card .r2-btn:hover {
  background: #204478;
  color: #ffffff;
  box-shadow: 0px 8px 18px rgba(0, 47, 115, 0.4);
}
.how-to-use-row .outer-card .l2-btn i,
.how-to-use-row .outer-card .r2-btn i {
  transition: transform 0.3s ease;
}
.how-to-use-row .outer-card .l2-btn:hover i,
.how-to-use-row .outer-card .r2-btn:hover i {
  transform: translateX(6px);
}

.flow-section {
  padding: 75px 0px 90px;
}
.flow-section #flow-slider .owl-stage-outer {
  position: relative;
  padding: 50px 0px 28px;
}
.flow-section #flow-slider .owl-stage-outer .left-layer {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  width: 175px;
  height: 100%;
  background: linear-gradient(88.71deg, rgba(255, 255, 255, 0) 1.1%, #ffffff 98.9%);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
.flow-section #flow-slider .owl-stage-outer .right-layer {
  position: absolute;
  z-index: 99;
  top: 0;
  right: 0;
  width: 175px;
  height: 100%;
  background: linear-gradient(88.71deg, rgba(255, 255, 255, 0) 1.1%, #ffffff 98.9%);
}
.flow-section #flow-slider .owl-nav {
  position: absolute;
  top: 35%;
  width: 100%;
  /* Group 75095 */
}
.flow-section #flow-slider .owl-prev {
  position: absolute;
  left: -40px;
  width: 70px;
  height: 70px;
  background: rgba(102, 102, 102, 0.23);
  border-radius: 100px;
}
.flow-section #flow-slider .owl-prev span {
  display: none;
}
.flow-section #flow-slider .owl-next {
  position: absolute;
  right: -40px;
  width: 70px;
  height: 70px;
  background: rgba(102, 102, 102, 0.23);
  border-radius: 100px;
}
.flow-section #flow-slider .owl-next span {
  display: none;
}
.flow-section #flow-slider .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  background: #d9d9d9;
}
.flow-section #flow-slider .owl-dots .owl-dot.active span {
  width: 15px;
  height: 15px;
  background: #7b7b7b;
}
.flow-section #flow-slider .flow-card {
  width: 100%;
  height: 300px;
  background: #f1e9ff;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 100px 45px 20px 45px;
  position: relative;
}
.flow-section #flow-slider .flow-card .number {
  position: absolute;
  left: 50%;
  top: -50px;
  transform: translateX(-50px);
  width: 100px;
  height: 100px;
  background: #f1e9ff;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  font-family: "ADLaM Display";
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 63px;
  color: #374149;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flow-section #flow-slider .flow-card .content {
  display: flex;
  gap: 30px;
  max-width: 360px;
  margin: auto;
}
.flow-section #flow-slider .flow-card .content .icon {
  width: 100px;
}
.flow-section #flow-slider .flow-card .content .icon img {
  width: 100%;
  height: auto;
}
.flow-section #flow-slider .flow-card .content .text {
  width: calc(100% - 135px);
}
.flow-section #flow-slider .flow-card .content .text h4 {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 33px;
  color: #000000;
  margin-bottom: 26px;
}
.flow-section #flow-slider .flow-card .content .text p {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 0px;
  color: #000000;
}

.summary-section {
  width: 100%;
  min-height: 100px;
  background: #204478;
}
.summary-section .inner-row {
  padding: 60px 0px;
  width: 100%;
  max-width: 1360px;
  margin: auto;
  position: relative;
}
.summary-section .inner-row .content {
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.summary-section .inner-row .content h3 {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 54px;
  color: #ffffff;
  margin-bottom: 25px;
}
.summary-section .inner-row .content h3 br {
  display: none;
}
.summary-section .inner-row .content .action-btns {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 70px;
}
.summary-section .inner-row .content .action-btns .text {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  color: #ffffff;
  margin-bottom: 22px;
}
.summary-section .inner-row .content .action-btns .btn {
  width: 100%;
}
.summary-section .inner-row .bg-icon {
  position: absolute;
  right: 0px;
  bottom: 30px;
}
.summary-section .inner-row .bg-icon img {
  height: 190px;
}
.summary-section .inner-row .bg-icon h4 {
  font-family: "Segoe UI Symbol", "Segoe UI", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 44px;
  margin-bottom: 0px;
  color: rgba(255, 255, 255, 0.2);
}

.faq-section {
  padding: 50px 0 100px;
}
.faq-section .accordion-item {
  border: none;
  border-radius: 0px;
  margin-bottom: 20px;
  background: transparent;
}
.faq-section .accordion-button {
  background: #835ec3;
  border-radius: 10px !important;
  padding: 10px 14px;
  display: flex;
  gap: 40px;
  position: relative;
  box-shadow: none;
}
.faq-section .accordion-button::after {
  display: none;
}
.faq-section .accordion-body {
  margin-top: 10px;
}
.faq-section .accordion-button:not(.collapsed) {
  background: #835ec3;
  box-shadow: none;
}
.faq-section .question {
  cursor: pointer;
}
.faq-section .question .icon {
  width: 50px;
  height: 50px;
  background: #57398b;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: #fff;
  font-weight: 700;
}
.faq-section .question p {
  width: calc(100% - 140px);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 7px 0;
}
.faq-section .question .plus {
  position: absolute;
  right: 14px;
  top: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.faq-section .question .plus i {
  transition: transform 0.3s ease;
}
.faq-section .accordion-button:not(.collapsed) .plus i {
  transform: rotate(45deg); /* PLUS → MINUS */
}
.faq-section .answer {
  background: #4f60be;
  border-radius: 10px;
  display: flex;
  gap: 40px;
  padding: 10px 14px;
}
.faq-section .answer .icon {
  width: 50px;
  height: 50px;
  background: #2c3ea2;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: #fff;
  font-weight: 700;
}
.faq-section .answer p {
  width: calc(100% - 140px);
  font-size: 24px;
  color: #fff;
  margin: 7px 0;
}

.footer {
  width: 100%;
  padding: 100px 0px 42px;
  min-height: 372px;
  background: #271c3a;
}
.footer .footer-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer .footer-row .logo img {
  height: 80px;
}
.footer .footer-row .footer-nav-section {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #fff;
}
.footer .footer-row .footer-nav-section .footer-nav {
  display: flex;
  gap: 80px;
  margin-bottom: 50px;
}
.footer .footer-row .footer-nav-section .footer-nav .nav-link {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  color: #ffffff;
}
.footer .footer-row .footer-nav-section .footer-nav2 {
  display: flex;
  gap: 80px;
}
.footer .footer-row .footer-nav-section .footer-nav2 .nav-link {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 26px;
  margin-bottom: 50px;
}

.bottom {
  width: 100%;
  min-height: 40px;
  padding: 8px;
  display: flex;
  align-items: center;
  background: linear-gradient(89.98deg, #625972 0%, #271c3a 100%);
}
.bottom .bottom-row {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.bottom .bottom-row span {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #ffffff;
}

.order1 {
  order: 1;
}

.order2 {
  order: 2;
}

/*# sourceMappingURL=style.css.map */
