@import url("https://fonts.cdnfonts.com/css/poppins");

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: white;
}

:root {
  --titleColor: #131022;
  --bodyColor: #585c7b;
  --radialBg: radial-gradient(116.18% 118% at 50% 100%, rgba(99, 102, 241, 0.1) 0%, rgba(218, 70, 239, 0.05) 41.83%, rgba(241, 244, 253, 0.07) 82.52%);
  --primaryBg: white;
  --secondaryBg: #f3f6ff;
  --blue: #046ee4;
  --iconContainerColor: rgba(99, 102, 241, 0.08);
  --boxShadowS: 0px 4.4px 12px -1px rgba(19, 16, 34, 0.06), 0px 2px 6.4px -1px rgba(19, 16, 34, 0.03);
  --boxShadow: 0px 4.4px 12px -1px rgba(19, 16, 34, 0.36), 0px 2px 6.4px -1px rgba(19, 16, 34, 0.13);
  --progressColor: #0070ec;
  --bodyBackground: white;
  --varDarkBackground: #131022;
}

/* @media (prefers-color-scheme: dark) {
  :root {
    --titleColor: white;
    --bodyColor: #bcb8c0;
    --radialBg: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(30,20,45,1) 49%, rgba(26,24,53,1) 100%);
    --primaryBg: #131022;
    --secondaryBg: #141022;
    --blue: #046ee4;
    --iconContainerColor: #212035;
    --boxShadowS: 0px 4.4px 12px -1px rgba(19, 16, 34, 0.06), 0px 2px 6.4px -1px rgba(19, 16, 34, 0.03);
    --boxShadow: 0px 4.4px 12px -1px rgba(19, 16, 34, 0.36), 0px 2px 6.4px -1px rgba(19, 16, 34, 0.13);
    --progressColor: #0070ec;
    --bodyBackground: #131022;
  }
} */

section {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 80px;
  width: 100%;
}

body {
  background: var(--bodyBackground);
}

.d4 {
  font-weight: 600;
  font-size: 32px;
  line-height: 125%;
  color: var(--titleColor);
}

.bodyL {
  font-weight: 400;
  font-size: 18px;
  line-height: 155%;
  color: var(--bodyColor);
}

.bodyM {
  font-weight: 400;
  font-size: 16px;
  line-height: 155%;
  color: var(--bodyColor);
}

h5 {
  color: var(--titleColor);
  font-size: 20px;
  font-weight: 700;
}

.bodyS {
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  color: var(--bodyColor);
  text-decoration: none;
}

.navBarContainer {
  width: 100%;
  background: white;
  position: relative;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
}

.navBar {
  margin: auto;
  width: 100%;
  padding: 10px;
}

.logoContainer {
  width: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logoTitle {
  color: var(--titleColor);
  font-weight: 500;
  font-size: 20px;
  padding-left: 10px;
}

a {
  text-decoration: none;
}

h1 {
  color: var(--titleColor);
  font-weight: bold;
  font-size: 40px;
  line-height: 130%;
}

h2 {
  font-weight: bold;
  font-size: 32px;
  line-height: 130%;
}

h4 {
  font-size: 24px;
  font-weight: bold;
  line-height: 140%;
}

.navigationTitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 160%;
}

#simple {
  background: var(--secondaryBg);
}

.button {
  background: var(--blue);
  padding: 11px 50px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: opacity ease 0.3s all;
}

.tryButton {
  background: var(--blue);
  padding: 35px 0px;
  width: 100vw;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: opacity ease 0.3s all;
  font-size: 18px;
  font-weight: 600;
}

.tryButton:hover {
  opacity: 0.7;
}

.button:hover {
  opacity: 0.7;
}

.mainHeaderContainer {
  min-height: calc(100vh);
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: var(--radialBg);
  flex-wrap: wrap;
  gap: 25px;
}

.mainTextContainer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 526px;
  max-width: 90%;
  padding: 50px 50px 20px;
}

.downloadButtonContainer {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

.downloadButton {
  background: black;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 140px;
  transition: all ease 0.1s;
}

.downloadButton:hover {
  cursor: pointer;
}

.learnMoreContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-top: 50px;
}

.downButtonContainer {
  display: flex;
  width: 44px;
  height: 44px;
  border-radius: 44px;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: var(--boxShadowS);
}

.mainImageContainer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 25px 50px;
}

.presentationVideoContainer {
  position: relative;
  z-index: 1;
}

.playBtn {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.playBtn > svg {
  box-shadow: var(--boxShadow);
  border-radius: 50%;
}

@keyframes playBtnAnimation {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.playBtn > a > svg {
  animation: playBtnAnimation infinite 2s;
}

.appImg {
  position: relative;
  z-index: 3;
  width: 300px;
  border: 10px solid black;
  border-radius: 41px;
  box-shadow: var(--boxShadow);
}

.secondHeader {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1124px;
  padding: 80px 0px;
}

.featuresContainer {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.secondHeaderTextContainer {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.feature {
  width: 90%;
  display: flex;
  gap: 24px;
  margin-bottom: 50px;
}

.iconContainer {
  min-height: 60px;
  max-height: 60px;
  min-width: 60px;
  max-width: 60px;
  background: var(--iconContainerColor);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.featurePresentation {
  display: flex;
  flex-direction: column;
}

h4 {
  color: var(--titleColor);
}

@media screen and (min-width: 900px) {
  .d4 {
    font-size: 54px;
    line-height: 72.8px;
  }

  .mainTextContainer {
    padding: 50px 50px;
  }

  .secondHeader {
    flex-direction: row;
    justify-content: center;
    max-width: 1124px;
    width: 90%;
    gap: 25px;
  }

  .secondHeaderTextContainer {
    max-width: 500px;
    padding: 50px 50px;
  }

  .cta {
    display: none;
  }
}
