@import url("./variables.css");
@import url("./fonts.css");
@import url("./layouts.css");
@import url("./typo.css");

* {
  box-sizing: border-box;
}

.cursor {
  cursor: pointer;
}

button {
  cursor: pointer;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--main-bg-color);
}

/* Header section */

header:is(.home-header) .nav-bar {
  background-color: var(--bg-white);
}

header:not(.home-header) .nav-bar {
  background-color: var(--primary-color);
}

header:is(.home-header) .nav-bar nav a {
  color: var(--primary-color);
}
header:not(.home-header) .nav-bar nav a {
  color: var(--text-white);
}

header .nav-bar nav a.active {
  text-decoration: underline;
  color: var(--action-bg);
}

.nav-bar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  max-width: 1400px;
  border-radius: 12px;
  margin: 15px auto;
  padding: 0px 70px;
  margin: 0 auto;
}

.mob-nav {
  display: none;
}

.nav-section {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: row;
  z-index: 4;
}

.nav-bar .logo {
  width: 200px;
}

.nav-bar nav {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.nav-bar nav ul {
  display: flex;
  list-style: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  /* flex: 1; */
}

nav ul > * {
  margin: 0 15px;
  font-size: 15px;
  font-weight: 300;
  min-width: 80px;
  text-align: center;
}
nav > ul > li > a {
  padding: 10px 15px;
}

.button-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.button-group > * {
  margin: 10px 5px;
}

.button-group button,
a.btn-white,
a.btn-transparent {
  letter-spacing: -0.03em;
  font-size: 15px;
  font-weight: 300;
  padding: 10px 15px;
  border-width: 1px;
  border-radius: 4px;
  line-height: 17.42px;
}

a.btn-primary,
a.btn-secondary {
  padding: 10px 15px;
  text-align: center;
}

.button-group .btn-white {
  background-color: var(--bg-white);
  color: var(--primary-color);
  width: 182px;
  border-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.button-group .btn-primary {
  background-color: var(--primary-color);
  color: var(--text-white);
  width: 147px;
  border-color: var(--text-white);
}

.button-group .btn-secondary {
  background-color: var(--btn-scondary);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.button-group .btn-transparent {
  background-color: transparent;
  color: var(--text-white);
  border-color: var(--text-white);
  border: 1px solid var(--text-white);
}

.nav-bar .button-group {
  width: 340px;
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.hero > * {
  margin: 30px auto;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.hero-content > * {
  margin: 20px auto;
}

.hero p {
  line-height: 31px;
  font-weight: 300;
}

/* Footer section */
footer {
  background-color: var(--footer-bg);
  display: flex;
  flex-direction: column;
}

footer .footer-contents {
  margin: 60px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
}

.footer-content {
  color: var(--text-white);
  margin: 0 25px;
}

.footer-content ul {
  margin: 10px 0;
  padding: 0;
}

.footer-content li {
  font-size: 13px;
  font-weight: 200;
  line-height: 26px;
  text-align: left;
  width: 136px;
}

footer .copyright {
  background-color: var(--copy-bg);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 25px 0;
}

.copyright p {
  font-size: 14px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--text-white);
}

/* Index Page start here */
.partners {
  background-color: var(--bg-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 169px;
}

.partners > * {
  margin: 30px 0;
}

.partners > p {
  font-size: 15px;
  font-weight: 500;
  line-height: 17.42px;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--gray-600);
}

/* .partners-list {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: scrollPartners 10s infinite linear;
} */

.partners-list li {
  margin: 0 16px;
}

#partners {
  overflow: hidden;
}

.empowring {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.empowring > * {
  margin: 0 40px;
}

.empowering-content {
  width: calc(var(--contianer-width) / 3);
}

.empowering-content:first-child {
  width: calc(var(--child-width) - 120px);
}

.empowering-content > p:not(.bold) {
  font-weight: 300;
}

.empowering-content > p {
  margin: 25px 0;
  font-size: 15px;
  line-height: 26px;
  text-align: justify;
  color: var(--text-black);
}

.products {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.products-heading {
  width: calc(var(--child-width) + 50px);
  padding: 12px 25px;
  text-align: center;
}

.products-heading > * {
  margin: 30px auto;
  color: var(--text-black);
}

.products-heading > h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 48.41px;
  letter-spacing: -0.03em;
}

.products-heading > p {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.products-grids {
  flex: 1;
  display: grid;
  margin: 55px auto;
  grid-template-columns: repeat(3, 369px);
  grid-template-rows: repeat(2, 290px);
}

.product-grid {
  border: 1px solid var(--gray-line);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
}

.product-grid > * {
  margin: 14px 0;
}

.product-grid h3 {
  font-size: 18px;
  line-height: 28px;
  text-align: left;
  color: var(--gray-900);
  margin-top: 24px;
}

.product-grid p {
  font-size: 14px;
  font-weight: 300;
  line-height: 26px;
  text-align: left;
  color: var(--gray-600);
}

.product-grid:hover {
  background-color: var(--bg-white);
}

.products-foot {
  width: var(--child-width);
  padding: 12px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.trigger-cm {
  cursor: pointer;
}

.products-foot > p,
.products-foot > a {
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  color: var(--gray-600);
  margin-top: 23px;
}

.solutions {
  background-color: var(--bg-white);
  position: relative;
  z-index: 2;
}

.solutions .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: var(--height-screen);
}

.solutions .container > * {
  margin: 55px 0;
}

.solutions-heading {
  width: var(--child-width);
}

.solutions-heading > * {
  margin: 15px auto;
  text-align: center;
  color: var(--text-black);
}

.solutions-heading > p {
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
  text-align: left;
}

.solutions-heading > ol {
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
  text-align: left;
}

.solutions-lists {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.solution {
  width: var(--solution-width);
  height: var(--solution-height);
  border-radius: 65px 0px 65px 0px;
  margin: 0 16px;
}

.solution {
  position: relative;
  display: flex;
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 29px;
}

.solution span {
  position: absolute;
  top: 45px;
  font-size: 40px;
  font-weight: 100;
  line-height: 40px;
  letter-spacing: -0.03em;
  text-align: right;
  transform: translateY(-50%);
}

.solution h5 {
  position: absolute;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.03em;
  text-align: left;
  color: var(--text-black);
}

.solution .info {
  position: absolute;
  bottom: 0;
  z-index: 0;
  left: 0;
  width: calc(var(--solution-width) - 5px);
  background-color: var(--bg-white);
  border-radius: 60px 4px 66px 4px;
  border-top: 6px solid;
  margin: 2px;
}

.solutions-lists > *:nth-child(1) {
  background-color: #f5edd3;
}
.solutions-lists > *:nth-child(2) {
  background-color: #d7f1f5;
}
.solutions-lists > *:nth-child(3) {
  background-color: #f5daf1;
}

.solutions-lists > *:nth-child(1) .info {
  border-color: #f3d05b;
}

.solutions-lists > *:nth-child(2) .info {
  border-color: #0f4953;
}

.solutions-lists > *:nth-child(3) .info {
  border-color: #af53c6;
}

.extras {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.extras-heading {
  width: var(--child-width);
  padding: 12px 25px;
  text-align: center;
  margin-bottom: 35px;
}

.extras-heading > h2 {
  margin-bottom: 10px;
}

.extras-heading > p {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  text-align: center;
  margin-top: 10px;
}

.extras-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.extras-content > * {
  margin: 0;
}

/* .extras-content .content {
  width: calc(var(--contianer-width) / 3);
}

.extras-content .content:first-child {
  width: calc(var(--child-width) - 50px);
} */

.extras-content ul {
  margin-top: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 261px;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.extras-content ul li {
  box-shadow: -5px 10px 12.9px 0px #00000026;
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  width: 200px;
  height: 100%;
  padding: 15px 5px;
  border-radius: 18px;
  gap: 14px;
  color: var(--text-white);
  margin: 0;
}

.extras-content li > h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
  width: auto;
  margin: 0 auto;
}

.extras-content li > p {
  font-size: 14px;
  font-weight: 300;
  line-height: 20.94px;
  text-align: center;
}

img:is(.img-with-radiu) {
  width: 375px;
  height: 380px;
  border-radius: 80px 0px 80px 0px;
}

.extras-foot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
}

.extras-foot > * {
  margin: 10px 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
}

.action {
  background-color: var(--action-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 467px;
  position: relative;
}

.img-rocket {
  position: absolute;
  top: -70px;
  right: 120px;
  width: 174px;
  height: 161px;
}

.img-check {
  position: absolute;
  bottom: -60px;
  left: 120px;
  width: 130px;
  height: 123px;
}

.action-content {
  width: var(--child-width);
  margin: 0 auto;
  text-align: center;
}

.action-content h2 {
  color: var(--primary-color);
  font-size: 46px;
  font-weight: 600;
  line-height: 55.67px;
  letter-spacing: -0.03em;
  text-align: center;
  margin: 15px 0;
}

.action-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;
  margin: 15px 0;
  color: var(--text-black);
}

.blogs {
  background-color: var(--bg-white);
  display: flex;
}

.blogs .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: var(--height-screen);
}

.blogs .container > * {
  margin: 15px 0;
}

.blogs-heading {
  text-align: center;
  width: var(--child-width);
  padding: 12px 25px;
}

.blogs-heading > * {
  margin: 15px 0;
}

.blogs-heading h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 48.41px;
  letter-spacing: -0.03em;
  color: var(--text-black);
}

.blogs-heading p {
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
  color: var(--text-black);
}

.blogs-list {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.blogs-list > * {
  margin: 0 20px;
  padding: 15px;
  border-radius: 8px;
  width: 333px;
  height: 445px;
  box-shadow: var(--main-shadow);
}

.blog:is(div) {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  position: relative;
}

.blog:is(div) > * {
  margin: 8px 0;
}

.blog:is(div) .desc > * {
  margin: 2px 0;
}

.blog:is(div) img {
  border-radius: 8px;
  width: 100%;
}

.desc h6 {
  font-size: 17px;
  font-weight: 600;
  line-height: 24.2px;
  letter-spacing: -0.03em;
  text-align: left;
}

.desc p {
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
  text-align: left;
}

.blog .below-blog {
  position: absolute;
  width: 90%;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.below-blog .publish,
.below-blog a {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
}

.below-blog a {
  text-decoration: underline;
  color: var(--brand-color);
}

.faq {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.faq-heading {
  text-align: center;
  width: var(--child-width);
  padding: 12px 25px;
}

.faq-heading > * {
  margin: 15px 0;
}

.faq-heading h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 48.41px;
  letter-spacing: -0.03em;
  color: var(--text-black);
}

.faq-heading p {
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
  color: var(--text-black);
}

.faq-grids {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

.faq-grid,
.faq-grid::marker {
  color: var(--text-black);
  position: relative;
}

.faq-grid::marker {
  font-size: 15px;
  font-weight: 400;
}

.faq-grid h4 {
  font-size: 15px;
  font-weight: 700;
  line-height: 17.42px;
  letter-spacing: -0.03em;
  text-align: left;
  margin-bottom: 15px;
  cursor: pointer;
}

.faq-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.faq-grid h4::after {
  content: url("../images/icons/show-icon.svg");
  position: absolute;
  right: 0;
}

.faq-grid.active h4::after {
  content: url("../images/icons/hide-icon.svg");
  position: absolute;
  right: 0;
}

.faq-grid p {
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
  text-align: left;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-grid.active p {
  max-height: 200px;
}

.marquee {
  width: var(--marquee-width);
  overflow: hidden;
  position: relative;
}

.marquee-content {
  list-style: none;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  flex-shrink: 0;
  width: var(--marquee-element-width);
  font-size: calc(var(--marquee-height) * 3 / 4); /* 5rem; */
  white-space: nowrap;
  margin: 0 2px;
}

.marquee-content li img {
  max-width: 100%;
  height: 100px;
}

/* About page start here */
.building-hero {
  color: var(--text-black);
}

.building-hero > * {
  margin: 32px 0;
}

.building-hero > p {
  width: calc(var(--child-width) - 250px);
  margin: auto;
}

.mid-banner {
  background-color: var(--bg-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mid-banner .banner-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  background-color: var(--action-bg);
  width: calc(var(--child-width) + 340px);
  /* height: 407px; */
  padding: 40px;
  gap: 24px;
  border-radius: 80px 0px;
  position: relative;
}

img:is(.banner-desc) {
  gap: 0px;
  border-radius: 60px 0px;
  position: relative;
  left: -100px;
  flex: 1;
}

.banner-desc:not(img) {
  color: var(--text-black);
  position: relative;
  left: -80px;
}

.banner-desc > h2 {
  color: var(--primary-color);
}

.banner-desc > p {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  text-align: justify;
  color: var(--primary-color);
}

.how {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: calc(var(--height-screen) - 200px);
}

.how-contents {
  position: relative;
  width: calc(var(--child-width) - 200px);
  margin: 0 25px;
}

.how-contents:is(.texts) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.how-contents:is(.texts) > * {
  margin: 10px 0;
}

.how-contents:not(.texts) {
  position: relative;
  background-color: #fff;
  height: 395px;
  width: 487.03px;
  border-radius: 80px 0px;
}

.how-contents:not(.texts) .img-anch {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  height: 109px;
  padding: 36px 25px;
  width: 100%;
  background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 0px 0px 80px 0px;
}

.how-contents:not(.texts) .img-anch .name {
  color: var(--text-white);
  font-weight: 500;
  margin: 5px 0;
}

.how-contents:not(.texts) .img-anch .post {
  color: var(--text-white);
  font-weight: 200;
}

.how-contents:not(.texts) > img {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.how-contents > h2 {
  color: var(--text-black);
  font-weight: 600;
  line-height: 48.41px;
  letter-spacing: -0.03em;
  text-align: left;
}

.how-contents > p {
  color: var(--text-black);
  font-weight: 300;
  font-size: 16px;
  line-height: 23px;
  text-align: left;
}

.vision {
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(var(--height-screen) - 200px) !important;
  position: relative;
}

.vision .vision-content {
  width: var(--child-width);
  text-align: center;
}

.vision .vision-content > * {
  margin: 24px auto;
}

.vision-content > p {
  font-size: 16px;
  font-weight: 200;
  line-height: 31px;
  text-align: center;
  width: calc(var(--child-width) - 100px);
}

.values {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-white);
}

.values > * {
  margin: 21px auto;
}

.values .values-heading {
  width: var(--child-width);
  text-align: center;
}

.values-heading > * {
  margin: 15px 0;
  color: var(--text-black);
}

.values-heading p {
  font-weight: 300;
  font-size: 15px;
  line-height: 26px;
}

.values-content {
  display: grid;
  grid-template-columns: repeat(250px, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  justify-content: space-between;
  align-items: stretch;
}

.value {
  background-color: var(--bg-white);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0px 3px var(--gray-line);
}

.value:nth-child(2) {
  grid-column: 2/4;
}

.value:nth-child(3) {
  grid-column: 4/6;
}

.value:nth-child(4) {
  grid-column: 6/8;
}

.value:nth-child(6) {
  grid-column: 1/3;
}

.value:nth-child(7) {
  grid-column: 3/5;
}

.value:nth-child(8) {
  grid-column: 5/7;
}

.value:nth-child(9) {
  grid-column: 7/9;
}

.empty-box:nth-child(1),
.empty-box:nth-child(6) {
  background: linear-gradient(
    270deg,
    rgba(15, 73, 83, 0.04) 0%,
    rgba(245, 181, 105, 0) 100%
  );
  box-shadow: none;
}

.empty-box:nth-child(5),
.empty-box:nth-child(9) {
  background: linear-gradient(
    90deg,
    rgba(15, 73, 83, 0.04) 0%,
    rgba(245, 181, 105, 0) 100%
  );
  box-shadow: none;
}

.value {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

.value > * {
  margin: 0 4px;
}

.value > p {
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  text-align: left;
}

.values-footer {
  width: var(--child-width);
}

.values-footer p {
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-black);
  line-height: 26px;
}

.team {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.team > * {
  margin: 30px auto;
}

.teams-heading {
  width: calc(var(--child-width) - 200px);
}

.teams-heading > * {
  margin: 20px auto;
  text-align: center;
  color: var(--text-black);
}

.teams-heading p {
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
  text-align: center;
}

.team-container {
  width: 100%;
  overflow: hidden;
}

.team-list {
  max-width: var(--width-size);
  display: flex;
  flex-direction: row;
  /* justify-content: flex-start; */
  align-items: center;
  gap: 10px 12px;
  animation: teamscroll 20s linear infinite;
}

.team-list:hover {
  animation-play-state: paused;
}

.team-member {
  margin: 10px 15px;
  max-width: 180px;
  min-width: 180px;
  width: 180px;
  height: 254px;
  border-radius: 8px;
  position: relative;
}

.team-member .team-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 55%;
  width: 100%;
  border-radius: 40px 40px 0px 0px;
  z-index: 0;
}

.team-member:nth-child(odd) .team-bg {
  background-color: #f8e5cd;
}

.team-member:nth-child(even) .team-bg {
  background-color: #c4f6ff;
}

.team-member img {
  /* width: 180px;
  height: 270px; */
  border-radius: 4px;
  position: absolute;
  bottom: 52px;
  z-index: 1;
}

.team-info {
  position: absolute;
  bottom: 0;
  z-index: 4;
  background-color: var(--bg-white);
  width: 100%;
  height: 55px;
  border-radius: 14.1px 14.1px 0px 0px;
  border-top: 3.73px solid var(--secondary-color);
  opacity: 0px;
  padding: 0 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}

.team-member .team-info > * {
  margin: 3px 0;
}

.team-info h5 {
  font-size: 16px;
  font-weight: 500;
  line-height: 14.2px;
  letter-spacing: -0.03em;
}

.team-info p {
  font-size: 12px;
  font-weight: 300;
  line-height: 14.2px;
  letter-spacing: -0.03em;
}

.future {
  width: calc(var(--contianer-width) - 200px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.future-content {
  width: calc(var(--child-width) - 300px);
  margin: 0 21px;
}

.future-content h2 {
  color: var(--primary-color);
  margin-bottom: 22px;
}

.future-content p {
  color: var(--text-black);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  margin: 21px 0;
}

.future-content img {
  width: 330.67px;
}

.ready {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ready-content {
  width: calc(var(--child-width) + 340px);
  min-height: calc(var(--height-screen) - 400px) !important;
  background-color: var(--action-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  border-radius: 20px;
  gap: 24px;
}

.white-btn {
  background-color: var(--bg-white) !important;
  width: fit-content;
  padding: 10px 16px;
  gap: 10px;
  border-radius: 8px;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  line-height: 17.42px;
  letter-spacing: -0.03em;
  text-align: left;
  color: var(--primary-color);
}

.ready-content h2 {
  text-align: center;
  width: calc(var(--child-width) - 100px);
  margin-bottom: 22px;
  color: var(--text-black);
  font-weight: 600;
  line-height: 33.41px;
  letter-spacing: -0.03em;
}

.ready-content p:not(.white-btn) {
  text-align: center;
  width: calc(var(--child-width) - 200px);
  color: var(--text-black);
  font-weight: 300;
  line-height: 24.41px;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

/* Product page start here */
.products-hero {
  width: calc(var(--child-width) + 170px);
}

.prod-hero-heading span {
  color: var(--btn-scondary);
}

.prod-hero-heading {
  text-align: center;
  color: var(--text-black);
}

.products-hero > * {
  margin: 34px auto;
}

.prod-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.prod-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: calc(var(--child-width) - 240px);
  margin: 10px auto;
  column-gap: 3px;
}

.api-content .prod-list {
  width: calc(var(--child-width) + 200px);
  margin-left: 54px;
}

.prod-list > h3 {
  position: relative;
  font-size: 16px;
  font-weight: 300;
  line-height: 31px;
  text-align: center;
  min-width: 131px;
  text-align: center;
  padding: 5px 10px;
  margin: 6px auto;
  border-radius: 8px;
  color: var(--text-black);
}

.prod-list > h3:nth-child(1) {
  background-color: var(--action-bg);
}

.prod-list > h3:nth-child(2) {
  background-color: #00d3f04f;
}

.prod-list > h3:nth-child(3) {
  background-color: #ffc5d3;
}

.prod-list > h3:nth-child(4) {
  background-color: #0f49531f;
}

.prod-list > h3:nth-child(5) {
  background-color: #9747ff47;
}

.prod-list > h3:nth-child(6) {
  background-color: #9affbc;
}

.prod-text {
  flex: 1;
}

.prod-text p {
  font-size: 20px;
  font-weight: 300;
  line-height: 31px;
  text-align: center;
}

.product-details {
  display: grid;
  grid-template-columns: repeat(2, 539px);
  grid-template-rows: auto;
  column-gap: 34px;
  row-gap: 185px;
  margin: 0 auto;
  justify-content: center;
}

.prod-detail {
  position: relative;
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 20px;
  margin: 0 auto;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 8px 20px 0px #0000001f;
  border: 4px solid #ffffff;
}

.prod-detail p {
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
  text-align: justify;
  margin-bottom: 24px;
  color: var(--text-black);
}

.prod-detail li {
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
  text-align: justify;
  margin-bottom: 8px;
}

.prod-detail li > h3 {
  display: inline;
  font-size: 15px;
  font-weight: 600;
}

.prod-detail li > p {
  display: inline;
}

.prod-detail h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 14px;
}

.prod-detail h2 {
  margin-bottom: 24px;
  font-size: 30px;
  font-weight: 600;
  line-height: 48.41px;
  letter-spacing: -0.03em;
  text-align: left;
  color: var(--text-black);
}

.prod-detail img:not(.loan-icon) {
  position: absolute;
  top: -85px;
}

.loan-icon {
  position: absolute;
  top: -55px;
}

.prod-detail > p:last-child {
  background-color: var(--action-bg);
  width: fit-content;
  align-self: flex-end;
  padding: 10px 15px;
  gap: 10px;
  border-radius: 8px;
  opacity: 0px;
  font-style: italic;
  color: var(--primary-color);
}

.prod-detail:nth-child(even) {
  top: 75px;
}

.prod-detail:nth-child(even) img {
  right: 15px;
}

.prod-detail:nth-child(1) {
  background: radial-gradient(
    89.37% 89.37% at 9.02% 10.63%,
    #f2fdff 0%,
    #fdf3e8 100%
  );
}

.prod-detail:nth-child(2) {
  background-color: #f5f5ff;
}

.prod-detail:nth-child(3) {
  background-color: #daf2ff;
}

.prod-detail:nth-child(4) {
  background: radial-gradient(
    161.22% 87.07% at 70.67% 12.93%,
    #f9f7ff 0%,
    #fff9f9 100%
  );
}

.prod-detail:nth-child(5) {
  background: radial-gradient(
    89.37% 89.37% at 9.02% 10.63%,
    #f2fdff 0%,
    #fdf3e8 100%
  );
}

.prod-detail:nth-child(6) {
  background: radial-gradient(
    161.22% 87.07% at 70.67% 12.93%,
    #f9f7ff 0%,
    #fff9f9 100%
  );
}

/* developers page */

/* .developer-header {
  background-color: var(--bg-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
} */

.developer-header .hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.developers-hero > * {
  margin: 25px auto;
  width: calc(var(--child-width) + 100px);
}

.developers-hero > h1 {
  text-align: center;
}

.developers-hero > p {
  text-align: left;
  font-size: 18px;
  text-align: justify;
  font-weight: 300;
}

.api {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.api-heading {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  width: var(--width-size);
  gap: 105px;
}

.heading-content {
  width: var(--child-width);
}

.heading-content:has(img) {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.heading-content:has(:not(img)) {
  padding-top: 39px;
}

.heading-content > * {
  margin: 20px 0;
}

.heading-content h2 {
  font-size: 35px;
  font-weight: 500;
  line-height: 48.41px;
  letter-spacing: -0.03em;
  text-align: left;
}

.api h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 29.05px;
  letter-spacing: -0.03em;
  text-align: left;
  color: var(--text-black);
}

.heading-content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 31px;
  text-align: justify;
}

.api-contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 45px;
  width: var(--width-size);
}

.api-contents h4 {
  margin-bottom: 35px;
}

.inline-list li h3,
.inline-list li p {
  display: inline;
  margin-bottom: 12px;
}

.inline-list li h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  text-align: left;
  color: var(--text-black);
}

.inline-list li p {
  font-size: 18px;
  font-weight: 300;
  line-height: 31px;
  text-align: left;
  color: var(--text-black);
}

.api-content .inline-list {
  margin-left: 65px;
  max-width: calc(var(--width-size) - 390px);
}

section:has(.documentation) {
  background-color: var(--brand-color);
}

.documentation {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 55px;
  width: var(--width-size);
  margin: 0 auto;
}

.documentation > .docs-contents {
  width: calc(var(--width-size) / 2);
}

.documentation > .docs-contents:has(img) {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.docs-heading > * {
  margin: 25px 0;
  color: var(--text-black);
}

.docs-heading h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 48.41px;
  letter-spacing: -0.03em;
  text-align: left;
}

.docs-heading p {
  font-size: 24px;
  font-weight: 500;
  line-height: 29.05px;
  letter-spacing: -0.03em;
  text-align: left;
}

.docs-content > p {
  font-size: 18px;
  font-weight: 300;
  line-height: 31px;
  text-align: left;
  color: var(--text-black);
}

.tools {
  width: calc(var(--child-width) + 100px);
  margin: 0 auto;
}

.tools > * {
  margin: 35px 0;
}

.dev-tools {
  background-color: #101a33;
  color: var(--text-white) !important;
}

.dev-tools li p,
.dev-tools li h3 {
  color: var(--text-white) !important;
}

.tools-heading > * {
  margin: 15px 0;
}

.tools-content > p {
  font-size: 18px;
  font-weight: 300;
  line-height: 31px;
  text-align: left;
}

.support-heading {
  display: flex;
  flex-direction: column;
  width: calc(var(--child-width) + 40px);
  margin: 0 auto;
  gap: 25px;
}

.support {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  background-color: var(--bg-white);
}

.support-heading h2,
.support-heading h5 {
  text-align: center;
  color: var(--text-black);
}

.support-heading p {
  font-size: 14px;
  font-weight: 300;
  line-height: 26px;
  text-align: center;
}

.support-contents {
  display: grid;
  grid-template-columns: repeat(3, 274px);
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.support-contnet {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 344px;
  border: 1px solid #e4e4e7;
  box-shadow: 0px 4px 20px 0px #0000000d;
  border-radius: 8px;
  padding: 24px;
  position: relative;
}

.support-contnet > * {
  margin: 14px 0px;
}

.support-contnet > *:first-child {
  margin: unset;
}

.support-contnet > *:last-child {
  position: absolute;
  bottom: 28px;
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  line-height: 17.42px;
  letter-spacing: -0.03em;
  text-align: left;
  color: var(--primary-color);
}

.support-contnet h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  color: var(--gray-600);
}

.support-contnet p {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  text-align: left;
  color: var(--gray-600);
}

.support-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.support-footer h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 29.05px;
  letter-spacing: -0.03em;
  text-align: center;
  color: #454545;
}

.support-footer p {
  font-size: 15px;
  font-weight: 300;
  line-height: 29.05px;
  letter-spacing: -0.03em;
  text-align: center;
  color: #454545;
}

.btn-link {
  background-color: var(--action-bg);
  width: fit-content;
  padding: 10px 16px;
  gap: 10px;
  border-radius: 8px;
  border: 0;
  color: var(--primary-color) !important;
  font-weight: 400 !important;
}

.no-scroll {
  overflow: hidden;
}

.just-main {
  min-height: var(--height-screen);
  background-color: var(--bg-white);
  width: var(--contianer-width);
  margin: 25px auto;
  padding: 25px 70px;
  color: var(--text-black);
}

.just-main h1 {
  font-size: 26px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  margin-bottom: 24px;
}

.just-main small {
  font-size: 13px;
  font-weight: 300;
  line-height: 24px;
  text-align: left;
}

.just-main h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  margin: 24px 0;
}

.just-main h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  margin: 14px 0;
}

.just-main p {
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  text-align: left;
}

.just-main ul li {
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  text-align: left;
}

.just-main .internal {
  margin-left: 34px;
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-1 * var(--marquee-element-width) * var(--marquee-elements))
    );
  }
}

@keyframes teamscroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * var(--team-elements)));
  }
}

/* General styling for the custom select dropdown */
.custom-select-wrapper {
  position: relative;
  width: 107px;
}

.custom-select {
  position: relative;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 5px;
  cursor: pointer;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  padding: 5px;
}

.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  font-size: 12px;
  display: none;
  z-index: 10;
}

.custom-option {
  display: flex;
  align-items: center;
  padding: 5px;
  font-size: 12px;
  cursor: pointer;
}

.custom-option img {
  margin-right: 10px;
  width: 20px;
  height: 15px;
}

.custom-option:hover {
  background-color: #f2f2f2;
}

.custom-select.open .custom-options {
  display: block;
}
