body {
  font-family: "Inter", serif;
}

header {
  padding: 40px 20px;
}
@media (min-width: 1200px) {
  header {
    padding: 65px 75px;
  }
}
header img {
  width: 95px;
}
@media (min-width: 1200px) {
  header img {
    width: 165px;
  }
}

.snackbar {
  position: fixed;
  bottom: 40px;
  width: 300px;
  height: 55px;
  background-color: rgba(26, 26, 112, 0.6);
  left: 50%;
  transform: translateX(-50%);
  padding: 0 20px;
  border-radius: 18px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.snackbar.show {
  opacity: 1;
  visibility: visible;
  bottom: 50px;
}
.snackbar .cross {
  display: none;
}
.snackbar.error {
  background-color: rgba(153, 0, 0, 0.6);
}
.snackbar.error .tick {
  display: none;
}
.snackbar.error .cross {
  display: block;
}
@media (min-width: 1200px) {
  .snackbar {
    width: 400px;
    height: 80px;
    padding: 0 32px;
    border-radius: 20px;
    font-size: 24px;
  }
}
.snackbar svg {
  width: 24px;
  height: auto;
}
.snackbar svg path {
  fill: #fff;
}
@media (min-width: 1200px) {
  .snackbar svg {
    width: 36px;
  }
}

.button-loader {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  border-top: 2px solid #1A1A70;
  animation: rotate 1s infinite;
  display: none;
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.hero-section {
  background-color: #2929FF;
  padding: 0 20px;
  color: #fff;
  padding-bottom: 150px;
}
.hero-section .blur-circle {
  position: absolute;
  background: #6D6DFF;
  filter: blur(73px);
  border-radius: 50%;
  height: 150px;
  width: 150px;
}
@media (min-width: 1200px) {
  .hero-section .blur-circle {
    filter: blur(105px);
  }
}
.hero-section .blur-circle.top-right {
  top: 70px;
  right: 40px;
}
@media (min-width: 1200px) {
  .hero-section .blur-circle.top-right {
    height: 360px;
    width: 360px;
    top: 100px;
    right: 170px;
  }
}
.hero-section .blur-circle.bottom-left {
  left: 50px;
  bottom: 70px;
}
@media (min-width: 1200px) {
  .hero-section .blur-circle.bottom-left {
    height: 250px;
    width: 250px;
    bottom: 50px;
    left: 55px;
  }
}
.hero-section .text-container {
  max-width: 850px;
  margin-top: 100px;
  margin-bottom: 150px;
}
.hero-section .text-container .title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
@media (min-width: 1200px) {
  .hero-section .text-container .title {
    font-size: 80px;
    line-height: 96.82px;
    letter-spacing: 1.6px;
  }
}
.hero-section .text-container .description {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .hero-section .text-container .description {
    margin-top: 20px;
    font-size: 32px;
  }
}
.hero-section .text-container .subtitle {
  font-size: 16px;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .hero-section .text-container .subtitle {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
.hero-section .text-container .input-container {
  max-width: 280px;
}
@media (min-width: 1200px) {
  .hero-section .text-container .input-container {
    border: 1px solid #fff;
    border-radius: 56px;
    overflow: hidden;
    height: 70px;
    max-width: 550px;
  }
}
.hero-section .text-container .input-container input {
  height: 48px;
  color: #fff;
  border-radius: 48px;
  background-color: transparent;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 0 20px;
}
@media (min-width: 1200px) {
  .hero-section .text-container .input-container input {
    height: 100%;
    font-size: 20px;
    border: none;
    border-radius: none;
  }
}
.hero-section .text-container .input-container input:focus {
  outline: none;
}
.hero-section .text-container .input-container input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.hero-section .text-container .input-container input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.hero-section .text-container .input-container button {
  width: 100%;
  border: none;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(255, 254, 254, 0) -87.5%, rgba(0, 0, 0, 0.5) 100%);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border: 1px solid #fff;
  height: 48px;
  border-radius: 48px;
  margin-top: 15px;
}
.hero-section .text-container .input-container button:focus {
  outline: none;
}
@media (min-width: 1200px) {
  .hero-section .text-container .input-container button {
    font-size: 20px;
    height: 100%;
    max-width: 200px;
    border-radius: inherit;
    margin-top: 0;
  }
}
.hero-section .caret-down {
  width: 24px;
  height: auto;
}
@media (min-width: 1200px) {
  .hero-section .caret-down {
    width: 43px;
  }
}

.amount-section {
  padding: 48px 20px;
}
@media (min-width: 1200px) {
  .amount-section {
    padding: 90px 20px;
  }
}
.amount-section .arrow-svg {
  width: auto;
  height: 49px;
}
@media (min-width: 1200px) {
  .amount-section .arrow-svg {
    height: 121px;
  }
}
.amount-section .label {
  font-size: 20px;
  color: #1A1A70;
}
@media (min-width: 1200px) {
  .amount-section .label {
    font-size: 32px;
  }
}
.amount-section .amount {
  font-size: 64px;
  font-weight: 700;
  color: #2929FF;
  margin-left: 10px;
}
@media (min-width: 1200px) {
  .amount-section .amount {
    font-size: 140px;
  }
}

.marquee-section {
  background-color: #1A1A70;
  color: #fff;
  font-size: 14px;
}
@media (min-width: 1200px) {
  .marquee-section {
    font-size: 24px;
  }
}
.marquee-section .js-marquee-wrapper {
  display: flex;
  gap: 60px;
}
@media (min-width: 1200px) {
  .marquee-section .js-marquee-wrapper {
    gap: 130px;
  }
}
.marquee-section .marquee-items {
  height: 64px;
}
@media (min-width: 1200px) {
  .marquee-section .marquee-items {
    height: 85px;
  }
}
.marquee-section .marquee-items .js-marquee {
  display: flex;
  margin: 0;
  white-space: nowrap;
  gap: 60px;
}
@media (min-width: 1200px) {
  .marquee-section .marquee-items .js-marquee {
    gap: 130px;
  }
}

.svg-section {
  padding: 28px 28px 60px 28px;
  gap: 24px;
}
@media (min-width: 1200px) {
  .svg-section {
    padding: 20px 120px;
    gap: 100px;
  }
}
.svg-section img {
  width: 100%;
  height: auto;
  max-width: 600px;
}
.svg-section svg {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}
.svg-section .text-container {
  max-width: 745px;
}
.svg-section .text-container .title {
  font-size: 18px;
  font-weight: 700;
  color: #2929FF;
}
@media (min-width: 1200px) {
  .svg-section .text-container .title {
    font-size: 36px;
  }
}
.svg-section .text-container .description {
  color: #1A1A70;
  font-size: 18px;
  margin-top: 16px;
}
@media (min-width: 1200px) {
  .svg-section .text-container .description {
    margin-top: 0;
    font-size: 36px;
  }
}

.accordion-section {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 64px 32px;
  -moz-column-gap: 56px;
       column-gap: 56px;
  row-gap: 18px;
  background-color: #2929FF;
}
@media (min-width: 1200px) {
  .accordion-section {
    padding: 120px;
    row-gap: 32px;
  }
}
@media (min-width: 1200px) {
  .accordion-section {
    grid-template-columns: repeat(2, 1fr);
  }
}
.accordion-section .title {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .accordion-section .title {
    font-size: 40px;
  }
}
.accordion-section .accordion-container {
  background-color: #fff;
  border-radius: 20px;
}
@media (min-width: 1200px) {
  .accordion-section .accordion-container {
    border-radius: 28px;
  }
}
.accordion-section .accordion-container .accordion-title {
  font-weight: 700;
  color: #1A1A70;
  height: 82px;
  font-size: 18px;
  padding: 0 40px;
}
@media (min-width: 1200px) {
  .accordion-section .accordion-container .accordion-title {
    height: 150px;
    font-size: 32px;
    padding: 0 80px;
  }
}
.accordion-section .accordion-container .accordion-content {
  display: none;
  border-top: 1px solid #1A1A70;
  font-size: 14px;
  padding: 20px;
}
@media (min-width: 1200px) {
  .accordion-section .accordion-container .accordion-content {
    font-size: 20px;
    padding: 40px;
  }
}
.accordion-section .accordion-container .caret-down {
  transition: all 0.3s;
  transform-origin: center;
  height: auto;
  width: 15px;
}
@media (min-width: 1200px) {
  .accordion-section .accordion-container .caret-down {
    width: 31px;
  }
}
.accordion-section .accordion-container .caret-down.rotate {
  transform: rotate(-180deg);
}

.our-products-section {
  padding: 64px 0;
  background: linear-gradient(transparent 270px, #2929FF 270px);
}
@media (min-width: 768px) {
  .our-products-section {
    padding: 64px 24px;
    background: linear-gradient(transparent 270px, #2929FF 270px);
  }
}
@media (min-width: 1200px) {
  .our-products-section {
    padding: 130px 100px;
    background: linear-gradient(transparent 580px, #2929FF 580px);
  }
}
.our-products-section .title {
  font-size: 20px;
  font-weight: 700;
  color: #1A1A70;
  margin-bottom: 80px;
}
@media (min-width: 1200px) {
  .our-products-section .title {
    font-size: 40px;
    padding-top: 130px;
  }
}
.our-products-section .our-product-row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 18px;
  width: 255px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .our-products-section .our-product-row {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .our-products-section .our-product-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    width: 100%;
  }
}
.our-products-section .our-product-row .product-card {
  background-color: #F4F4FF;
  border-radius: 28px;
  padding: 60px 24px 32px 24px;
  color: #1A1A70;
}
@media (min-width: 1200px) {
  .our-products-section .our-product-row .product-card {
    padding: 100px 30px 50px 30px;
  }
}
.our-products-section .our-product-row .product-card .icon {
  height: 55px;
  width: auto;
}
@media (min-width: 1200px) {
  .our-products-section .our-product-row .product-card .icon {
    height: 100px;
  }
}
.our-products-section .our-product-row .product-card .card-title {
  font-size: 16px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 18px;
}
@media (min-width: 1200px) {
  .our-products-section .our-product-row .product-card .card-title {
    margin-top: 68px;
    font-size: 32px;
    margin-bottom: 32px;
  }
}
.our-products-section .our-product-row .product-card .description {
  font-size: 14px;
}
@media (min-width: 1200px) {
  .our-products-section .our-product-row .product-card .description {
    font-size: 24px;
  }
}

footer {
  gap: 180px;
  padding: 64px 20px;
  background-color: #F4F4FF;
}
@media (min-width: 1200px) {
  footer {
    padding: 100px 20px;
  }
}
footer .divider {
  width: 3px;
  background-color: #2929FF;
  height: 170px;
}
footer .links {
  font-size: 14px;
  font-weight: 700;
  margin-top: 36px;
  color: #2929FF;
}
footer .links .link {
  color: #2929FF;
  text-decoration: none;
}
footer .links .link:hover {
  color: #2929FF;
  text-decoration: none;
}
@media (min-width: 1200px) {
  footer .links {
    font-size: 16px;
  }
}
footer .sign-up-title {
  margin-bottom: 36px;
  color: #2929FF;
}
@media (min-width: 1200px) {
  footer .sign-up-title {
    font-size: 24px;
  }
}
footer .input-container {
  width: 100%;
  width: 280px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  footer .input-container {
    border: 1px solid #2929FF;
    border-radius: 56px;
    overflow: hidden;
    height: 70px;
    width: 550px;
    margin: unset;
  }
}
footer .input-container input {
  height: 48px;
  color: #2929FF;
  border-radius: 48px;
  background-color: transparent;
  border: 1px solid #2929FF;
  font-size: 14px;
  font-weight: 700;
  padding: 0 20px;
  font-weight: 700;
}
@media (min-width: 1200px) {
  footer .input-container input {
    height: 100%;
    font-size: 20px;
    background-color: transparent;
    border: none;
  }
}
footer .input-container input:focus {
  outline: none;
}
footer .input-container input::-moz-placeholder {
  color: rgba(41, 41, 255, 0.8);
}
footer .input-container input::placeholder {
  color: rgba(41, 41, 255, 0.8);
}
footer .input-container button {
  width: 100%;
  border: none;
  cursor: pointer;
  border-radius: inherit;
  background: #2929FF;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border: 1px solid #2929FF;
  height: 48px;
  border-radius: 48px;
  margin-top: 15px;
}
@media (min-width: 1200px) {
  footer .input-container button {
    height: 100%;
    font-size: 20px;
    background: transparent;
    margin-top: 0;
    color: #2929FF;
  }
}
footer .input-container button:focus {
  outline: none;
}
footer .input-container button .button-loader {
  border: 2px solid rgba(26, 26, 112, 0.3);
  border-top: 2px solid #1A1A70;
}
@media (min-width: 1200px) {
  footer .input-container button {
    max-width: 200px;
  }
}
footer .social-links-container {
  gap: 12px;
  margin-top: 28px;
}
@media (min-width: 1200px) {
  footer .social-links-container {
    padding-right: 30px;
  }
}
footer .social-links-container svg {
  width: 24px;
  height: auto;
}
@media (min-width: 1200px) {
  footer .social-links-container svg {
    width: 36px;
  }
}

.details-page header {
  padding: 40px 20px;
}
@media (min-width: 1200px) {
  .details-page header {
    padding: 65px 95px;
  }
}
.details-page .details-header-section {
  background-color: #2929FF;
}
.details-page .details-container {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .details-page .details-container {
    margin-bottom: 80px;
  }
}
.details-page .title {
  font-size: 28px;
  font-weight: 700;
  color: #1A1A70;
  padding: 40px 20px;
}
@media (min-width: 1200px) {
  .details-page .title {
    padding: 80px 20px;
    font-size: 48px;
  }
}
.details-page p {
  font-size: 14px;
  color: #1A1A70;
}
.details-page p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .details-page p {
    font-size: 18px;
  }
}
.details-page p b {
  text-transform: capitalize;
  font-size: 18px;
}
@media (min-width: 1200px) {
  .details-page p b {
    font-size: 24px;
  }
}
.details-page ul li,
.details-page ol li {
  font-size: 14px;
  color: #1A1A70;
  margin-bottom: 1rem;
}
.details-page ul li:last-child,
.details-page ol li:last-child {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .details-page ul li,
  .details-page ol li {
    font-size: 18px;
  }
}/*# sourceMappingURL=index.css.map */