@font-face {
  font-family: "Morion";
  src: url("/assets/woff/Morion\ Regular.woff");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  color: #434649;
  background-color: #f5f5f5;
}

main {
  max-width: 1440px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Morion", serif;
  color: #080a0b;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #353535;
}

/* Call to action buttons stylings and hover effects */
.call-to-action {
  position: relative;
  display: flex;
  padding: 0.725rem 1.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 2rem;
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
  overflow: hidden;
  z-index: 1;
  transition: 0.4s all ease-in-out 0s;
}

.call-to-action span {
  font-size: 0.6rem;
}

.primary-cta {
  background: #0079c1;
  color: #ffffff;
  border: 1px solid #01639c;
}

.secondary-cta {
  color: #737373;
  border: 1px solid #b6b7b8;
}

.primary-cta::after,
.secondary-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: scale(0, 1);
  transition: 0.3s ease all;
  transform-origin: top right;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.primary-cta::after {
  background-color: #00436a;
}

.secondary-cta::after {
  background-color: #e8e8e8;
  border: none;
}

.primary-cta:hover::after,
.secondary-cta:hover::after {
  transform: scale(1, 1);
  transform-origin: top left;
  height: 100%;
}

/* navigation bar styling */
nav {
  max-width: 1560px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  left: 0;
  height: 5rem;
  width: 100%;
  padding: 0 2rem;
  background: #f5f5f5cc;
  backdrop-filter: blur(2px);
  z-index: 100 !important;
  border-bottom: 1px solid #e8e8e8;
}

.nav-container {
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-container .logo {
  height: 3rem;
}

.nav-container .logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.nav-links .nav-links-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links .nav-links-container li a {
  font-weight: 500;
  font-size: 14px;
}

.nav-links .close-hamburger-menu {
  display: none;
}

.hamburger-menu {
  display: none;
}

/* media query for the navigation bar */
@media screen and (max-width: 992px) {
  nav {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .nav-links .nav-links-container {
    gap: 0.5rem;
  }
}

@media screen and (max-width: 660px) {
  .hamburger-menu {
    display: flex;
  }

  .hamburger-menu span {
    font-size: 1.6rem;
  }

  .nav-links .close-hamburger-menu {
    display: flex;
  }

  .close-hamburger-menu {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem;
  }

  .close-hamburger-menu span {
    font-size: 2rem;
  }

  .nav-links {
    position: fixed;
    top: 0px;
    left: -660px;
    background: rgba(255, 255, 255);
    width: 100%;
    height: 100dvh;
    transition: 0.4s ease;
  }

  .nav-links .nav-links-container {
    flex-direction: column;
    gap: 3rem;
    padding: 2rem 1rem;
  }

  .nav-links .nav-links-container li {
    display: flex;
    width: 100%;
  }

  .nav-links .nav-links-container li a {
    padding: 0.625rem 1.25rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

/* highlights stylings */
.spiral {
  position: absolute;
  height: 4rem;
  width: 4rem;
}

.spiral img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* sections styling*/
.sections {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}

.section-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.section-copy h2 {
  font-size: 2.5rem;
  font-style: normal;
  line-height: 140%;
}

.section-copy .sign-up-cta-text {
  font-size: 2.5rem;
}

.section-copy p {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

/* section media queries */
@media screen and (max-width: 600px) {
  .section-copy {
    width: 100%;
    gap: 0.5rem;
  }

  .section-copy h2 {
    font-size: 1.5rem;
  }

  .section-copy p {
    width: 100%;
    font-size: 1rem;
  }
}

/* Hero section styling */
.hero-section {
  padding: 5rem 0px 0px;
  width: 100%;
  gap: 3.5rem;
}

.hero-section-container {
  position: relative;
  display: flex;
  width: 600px;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-section-container .sparkle {
  position: absolute;
  top: 50%;
  left: 100%;
  height: 5rem;
  width: 5rem;
}

.hero-section-container .sparkle img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.hero-section-container .hero-section-copy {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-section-container .hero-section-copy h1 {
  font-family: Morion;
  font-size: 4rem;
  font-style: normal;
  font-weight: bold;
  line-height: 125%;
}

.hero-section-container .hero-section-copy h1 span {
  position: relative;
  color: #0079c1;
}

.hero-section-container .hero-section-copy h1 span img {
  position: absolute;
  top: -20%;
  left: 0%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-section-container .hero-section-copy p {
  width: 424px;
  font-size: 1.25rem;
  font-style: normal;
  line-height: 150%;
}

.hero-section-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.hero-section-cta .hero-primary-cta {
  background: #0079c1;
}

/* Hero section media query */
@media screen and (max-width: 768px) {
  .hero-section-container {
    width: 100%;
  }

  .hero-section-container .hero-section-copy {
    width: 100%;
  }

  .hero-section-container .sparkle {
    top: 30%;
    left: 80%;
    height: 3rem;
    width: 3rem;
  }

  .hero-section-container .hero-section-copy h1 span img {
    height: 3rem;
    width: 3rem;
  }
}

@media screen and (max-width: 630px) {
  .hero-section-container .hero-section-copy h1 {
    font-size: 3rem;
    line-height: 125%;
  }

  .hero-section-container .hero-section-copy h1 span img {
    height: 2.5rem;
    width: 2.5rem;
  }
}

@media screen and (max-width: 440px) {
  .hero-section {
    padding: 3rem 0rem 0rem;
    gap: 3rem;
  }

  .hero-section-container {
    gap: 1.5rem;
    padding: 0 1rem;
    position: relative;
  }

  .hero-section-container .sparkle {
    top: 18%;
    left: 90%;
    height: 2rem;
    width: 2rem;
  }

  .hero-section-container .hero-section-copy {
    gap: 0.75rem;
  }

  .hero-section-container .hero-section-copy h1 span img {
    height: 2rem;
    width: 2rem;
  }

  .hero-section-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-section-cta a {
    width: 15rem;
  }

  .hero-section-container .hero-section-copy p {
    width: 100%;
    font-size: 1rem;
    line-height: 150%;
  }

  .hero-section-container .hero-section-copy h1 {
    font-size: 2rem;
    line-height: 125%; /* 116.667% */
  }
}

@media screen and (max-width: 320px) {
  .hero-section-cta a {
    width: 100%;
  }
}

/* Hero section brands carousel */
.hero-section-brands {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: -1 !important;
}

.hero-section-brands p {
  font-size: 1rem;
}

.hero-section-brands .spiral {
  left: 32%;
  top: -20%;
  transform: translate(-20%, 0);
}

.scroller {
  max-width: 1024px;
}

.scroller-inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.scroller .brand-list-container li {
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroller .brand-list-container li img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.small-brand-svg {
  font-size: 2rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller-inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 50s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 1rem));
  }
}

/* media queries for the scroller */
@media screen and (max-width: 1024px) {
  .hero-section-brands {
    width: 100%;
  }

  .hero-section-brands .spiral {
    left: 25%;
    top: -20%;
  }
}

@media screen and (max-width: 768px) {
  .hero-section-brands .spiral {
    left: 15%;
    top: -20%;
  }
}

@media screen and (max-width: 600px) {
  .hero-section-brands {
    gap: 0.75rem;
  }

  .hero-section-brands .spiral {
    left: 3%;
    top: -20%;
    height: 3rem;
  }

  .scroller-inner {
    gap: 1rem;
    padding-block: 0rem;
  }

  @keyframes scroll {
    to {
      transform: translate(calc(-50% - 0.5rem));
    }
  }
}

@media screen and (max-width: 375px) {
  .hero-section-brands {
    gap: 0.5rem;
  }

  .hero-section-brands .spiral {
    left: 5%;
    top: -25%;
    height: 2.5rem;
    width: 3rem;
    rotate: 45deg;
  }
}

/* value prop section stylings */
.value-prop-section {
  gap: 3rem;
  padding: 5rem 0;
}

.value-prop-cards-container {
  max-width: 850px;
  display: flex;
  gap: 1.5rem;
}

.value-prop-cards-container .value-prop-card {
  display: flex;
  padding: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  flex: 1 0 0;
  border-radius: 1rem;
  background: #ffffffe6;
  backdrop-filter: blur(2px);
  text-align: left;
  box-shadow:
    0 0 1px 0 rgba(0, 0, 0, 0.25),
    0 4px 8px 0 rgba(0, 0, 0, 0.05),
    0 16px 32px 0 rgba(0, 0, 0, 0.05);
}

.value-prop-card .card-icon {
  width: 8rem;
  height: 8rem;
}

.value-prop-card .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-prop-card .card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-prop-card .card-copy h3 {
  font-size: 21px;
  line-height: 150%;
  text-align: center;
}

.value-prop-card .card-copy ul {
  list-style: disc;
  padding-left: 0.8rem;
}

.value-prop-card .card-copy ul li {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #626466;
  margin-bottom: 0.5rem;
}

.cta-highlight {
  position: relative;
}

.cta-highlight .spiral {
  top: 100%;
  left: 25%;
}

/* media queries for the value prop section */
@media screen and (max-width: 1024px) {
  .value-prop-cards-container {
    gap: 1.125rem;
  }
}

@media screen and (max-width: 768px) {
  .value-prop-cards-container {
    gap: 1rem;
  }
}

@media screen and (max-width: 600px) {
  .value-prop-section {
    gap: 1.5rem;
  }

  .value-prop-cards-container {
    flex-direction: column;
    max-width: 350px;
    gap: 2rem;
  }

  .value-prop-cards-container .value-prop-card {
    gap: 0.5rem;
  }

  .value-prop-card .card-copy {
    gap: 0.5rem;
    width: 100%;
  }

  .value-prop-card .card-copy ul {
    padding-left: 1rem;
  }

  .value-prop-card .card-copy ul li {
    font-size: 1rem;
  }
}

/* metrics section stylings */
.metrics-section {
  max-width: 904px;
  margin: 5rem auto 0;
  gap: 3rem;
}

.metrics-section h2 {
  font-size: 1.5rem;
  line-height: 140%;
}

.metrics-section .metrics-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.metrics-container .metrics {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}

.metrics-container .metrics h1 {
  font-size: 4.5rem;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 1.44px;
}

.metrics-container .metrics p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 125%;
}

/* media queries for the metrics section */
@media screen and (max-width: 768px) {
  .metrics-section .metrics-container {
    gap: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .metrics-section {
    gap: 1.5rem;
  }

  .metrics-section .metrics-container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .metrics-container .metrics {
    gap: 0.5rem;
  }
}

/* how it works section stylings */
.how-it-works-section {
  gap: 3rem;
  padding-top: 5rem;
  margin: 0 auto 5rem;
  max-width: 904px;
}

.how-it-works-container {
  position: relative;
  height: 60vh;
  width: 100%;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      180deg,
      rgba(245, 245, 245, 0.3) 0%,
      rgba(245, 245, 245, 1) 100%
    ),
    url("/assets/photo/dashboard.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.how-it-works-container .video-play-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 1rem;
}

.video-play-button .play-btn {
  position: relative;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  transition: 0.5s;
}

.how-it-works-container .play-btn i {
  font-size: 5rem;
  color: #006eb0;
}

.how-it-works-container .play-btn::before {
  content: "";
  position: absolute;
  border: 5px solid #8ac1e2;
  border-radius: 50%;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  animation: bloom1 1.5s linear infinite;
  opacity: 0;
  z-index: 1;
}

.how-it-works-container .play-btn::after {
  content: "";
  position: absolute;
  border: 5px solid #8ac1e2;
  border-radius: 50%;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  animation: bloom2 1.5s linear infinite;
  opacity: 0;
  z-index: 1;
  animation-delay: 0.4s;
}

@keyframes bloom1 {
  0% {
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
  }
}

@keyframes bloom2 {
  0% {
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
  }
}

.how-it-works-video {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.85);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
  transition: 0.5s;
  overflow: hidden;
}

.how-it-works-video .video-player {
  aspect-ratio: 16/9;
  max-width: 904px;
  width: 100%;
  position: relative;
}

.how-it-works-video.active {
  visibility: visible;
  opacity: 1;
}

.close-video {
  color: #f5f5f5;
  padding: 1rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  background: rgb(206, 203, 203, 0.5);
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-video i {
  font-size: 1rem;
}

.cta-highlight-works {
  position: relative;
}

.cta-highlight-works .spiral {
  left: -30%;
  top: -80%;
}

/* media queries for the ehow it works section */
@media screen and (max-width: 600px) {
  .how-it-works-section {
    gap: 1.5rem;
  }

  .how-it-works-video .video-player {
    width: 90%;
  }

  .close-video {
    right: 1rem;
    height: 2.5rem;
    width: 2.5rem;
  }

  .cta-highlight-works .spiral {
    left: -30%;
    top: 60%;
    rotate: -45deg;
    transform: translate(40%, 40%);
  }
}

/* testimonials stylings */
.testimonials-section {
  gap: calc(3rem - 1.25rem);
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-section .testimonials-content {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.testimonials-content .testimonial-container {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.testimonial-container .testimonial-image {
  height: 7.5rem;
  width: 7.5rem;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}

.testimonial-copy-container {
  padding: 0 4rem;
}

.testimonial-copy-container p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 140%;
  margin-bottom: 1rem;
}

.testimonial-copy-container p.testimonial-quotes {
  font-size: 1.25rem;
}

.testimonial-copy-container .testimonial-titles h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.testimonial-copy-container .testimonial-titles p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 125%;
}

/* swiper css */
.swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.5);
}

.swiper-pagination-bullet-active {
  background-color: #353535;
}

.nav-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transition: 0.2s;
  background: rgba(0, 0, 0, 0.3);
}

.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.nav-btn::after,
.nav-btn::before {
  font-size: 1rem;
  color: white;
}

/* testimonials media queries */
@media screen and (max-width: 768px) {
  .testimonial-copy-container {
    padding: 0 2rem;
  }

  .nav-btn {
    display: none;
  }
}

@media screen and (max-width: 462px) {
  .testimonials-section {
    width: 100%;
    gap: 1.5rem;
  }

  .testimonials-content .testimonial-container {
    padding: 0 1rem 1.5rem;
  }

  .testimonial-copy-container {
    padding: 0;
  }
}

/* sign up section stylings */
.create-account-cta-section {
  gap: 3rem;
  padding: 5rem 0;
}

.create-account-cta-section .sign-up-section-copy {
  max-width: 700px;
}

.sign-up-section-copy {
  position: relative;
}

.highlight-text img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sign-up-cta-text span {
  position: relative;
  color: #0079c1;
}

.sign-up-cta-text span img {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 10rem;
  width: 10rem;
  object-fit: cover;
}

/* media queries for sign up section */
@media screen and (max-width: 600px) {
  .create-account-cta-section {
    gap: 1.5rem;
  }
}

@media screen and (max-width: 320px) {
  .sign-up-section-copy .sign-up-cta-text {
    font-size: 2rem;
  }
}

/* footer stylings */
footer {
  background: #e6f2f9;
  max-width: 1560px;
  margin: 0 auto;
  padding-top: 4rem;
}

.upper-footer {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  justify-content: space-between;
  padding: 0 4rem 0;
}

.footer-logo,
.footer-about,
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 0 0;
}

.footer-logo {
  height: 3.5rem;
  display: flex;
  align-items: start;
  justify-content: start;
}

.footer-logo img {
  height: 100%;
  object-fit: contain;
}

.upper-footer p {
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
}

.footer-contacts p {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.footer-contacts p i {
  font-size: 1.25rem;
}

.footer-about .social-media-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.25rem;
}

.lower-footer {
  background: #003351;
  margin-top: 64px;
  text-align: center;
  padding: 0.4rem;
}

.lower-footer span {
  font-size: 14px;
  font-weight: 500;
  color: #e6f2f9;
}

/* media queries for the footer */
@media screen and (max-width: 1024px) {
  footer {
    padding-top: 2rem;
  }

  .upper-footer {
    gap: 1rem;
  }

  .upper-footer p {
    font-size: 0.875rem;
  }

  .lower-footer {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .upper-footer {
    gap: 2rem;
  }

  .footer-logo img {
    height: 3rem;
  }

  .upper-footer {
    flex-direction: column;
  }
}

/* media queries for the entire landing page */
@media screen and (max-width: 1560px) {
  .upper-footer {
    padding: 0 2rem;
  }
}

@media screen and (max-width: 992px) {
  .nav-container,
  .value-prop-cards-container,
  .metrics-section,
  .upper-footer {
    padding: 0 2.25rem;
  }
}

@media screen and (max-width: 768px) {
  .nav-container,
  .value-prop-cards-container,
  .metrics-section,
  .upper-footer {
    padding: 0 1.5rem;
  }
}

@media screen and (max-width: 600px) {
  .nav-container,
  .upper-footer,
  .metrics-section,
  .section-copy {
    padding: 0 1rem;
  }
}
