/* html {
  font-size: 16px;
} */

body {
  margin: 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

section {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;

  /* fallback height */
  min-height: 100vh;

  /* new small viewport height for modern browsers */
  min-height: 100svh;
}

article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header-logo-container {
  display: flex;
  padding: 10px 20px 0 20px;
  justify-content: start;
}

.container-parent {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.page-info h1 {
  color: #8d31ff;
  font-size: 48px;
  font-weight: 600;
  font-family: "Exo", sans-serif;
  margin: 10px 0 0 0;
}

.page-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.page-info h3 {
  font-size: 24px;
  font-weight: 400;
  color: #2e2e2e;
  margin: 0 0 20px 0;
}

.page-info p {
  margin: 10px 5px 30px 5px;
  max-width: 950px;
  font-size: 20px;
  padding: 0 2%;
  color: #2e2e2e;
}

.main-container {
  max-width: 789px;
  width: 100%;
}

/* .video-container {
  position: relative;
  padding-bottom: calc(var(--aspect-ratio, 0.5625) * 100%);
  height: 0;
  width: 100%;
} */

.video-border-radius {
  border-radius: 35px 0;
}

.video-container {
  background-color: black;
}

.video-container video {
  width: 100%;
  height: 100%;
}

.video-test {
  /* width: 100%;
  height: 100%; */
  /* background-color: black; */
}

.content-background {
  position: relative;
  border-radius: 40px 0px;
  background: linear-gradient(
    90deg,
    #8d31ff 0%,
    #8836fc 13%,
    #7b45f5 28.01%,
    #665fe9 46.01%,
    #4983d9 64.01%,
    #24b0c5 84.01%,
    #00ddb1 100.01%
  );
  /* margin: 10px 10px; */
  padding: 11px 11px;
  margin-bottom: 2rem;
}

.background-dots-effect {
  position: absolute;
  top: -50px;
  left: -80px;
  z-index: -1;
}

.video-controls {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.video-overlay img {
  max-width: 150px;
  max-height: 150px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-overlay img:hover {
  cursor: pointer;
}

/* .play-video:hover {
  cursor: pointer;
} */

.page-footer {
  font-size: 12px;
  color: #7c88ab85;
}

.page-footer p {
  margin: 12px 0;
}

.page-footer a:link,
.page-footer a:active,
.page-footer a:visited {
  color: #7c88ab85;
}

.button {
  border: none;
  height: 47px;
  width: 245px;
  border-radius: 21px;
  color: white;
  font-weight: 500;
  margin: 0 auto;
  vertical-align: middle;
  position: relative;
  font-size: 16px;
}

.button:hover {
  cursor: pointer;
}

.button-purple {
  background-color: #6f2cef;
}

.button-purple:hover {
  background-color: #5d22cc;
}

.button-purple:disabled {
  background-color: #d9d9d9;
}

.button-cyan {
  background-color: #00ddb1;
}

.button-cyan:hover {
  background-color: #00c79f;
}

.button-cyan:disabled {
  background-color: #d9d9d9;
}

.sign-up-text {
  color: #7c88ab;
  font-size: 14px;
  font-weight: 400;
}

@media (width < 788px) {
  .content-background {
    padding: 11px 0;
  }
}

.br1050 {
  display: none;
}

.br790 {
  display: none;
}

.br480 {
  display: none;
}

/*  Main media queries */
@media (width <= 1050px) {
  .container-parent {
    justify-content: center;
  }

  .br1050 {
    display: block;
  }
}

@media (width < 768px) {
  .page-info h1 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .page-info h3 {
    font-size: 20px;
  }

  .page-info p {
    font-size: 18px;
  }

  .background-dots-effect {
    top: -108px;
    left: 11px;
  }
}

@media (width <= 480px) {
  .br480 {
    display: block;
  }

  .page-info h1 {
    font-size: 26px;
  }

  .page-info h3 {
    font-size: 16px;
  }

  .page-info p {
    font-size: 16px;
  }

  .sign-up-text {
    font-size: 13px;
  }

  .header-logo-container {
    justify-content: center;
  }

  .background-dots-effect {
    top: -108px;
    left: -88px;
  }
}

@media (width <= 330px) {
  .page-info h1 {
    font-size: 24px;
  }

  .sign-up-text {
    font-size: 12px;
  }

  .page-footer {
    font-size: 10px;
  }

  .background-dots-effect {
    top: -57px;
    left: -40px;
  }
}
/* End of main media queries */

/* Additional media queries */
@media (width <= 790px) {
  .br790 {
    display: block;
  }
}
/* End additional media queries */
