@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lora", Arial, Helvetica, sans-serif;
}

body {
  position: relative;
}

header nav {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  header nav {
    flex-direction: column;
    padding: 10px 0px;
  }
}
@media (min-width: 1025px) {
  header nav {
    padding: 10px 100px;
    justify-content: space-between;
  }
}
header nav .links {
  margin-top: 15px;
}
@media (min-width: 1025px) {
  header nav .links {
    margin-right: 100px;
  }
}
header nav .links a {
  color: #4f46e5;
  text-decoration: none;
  font-size: 20px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}
header nav .links a:hover {
  color: #7973ea;
  border-bottom: 2px dashed #4f46e5;
  transform: translateY(-5px);
}
header nav .links a:nth-child(n+2) {
  margin-left: 20px;
}

main {
  display: flex;
  flex-direction: column;
}
main .overview {
  padding: 100px 15px 30px;
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  main .overview h1 {
    font-size: 25px;
  }
}
@media (min-width: 1025px) {
  main .overview h1 {
    font-size: 3rem;
  }
}
main .overview p {
  margin-top: 15px;
  text-align: center;
}
main .overview a {
  margin-top: 20px;
  border: 0;
  border-radius: 5px;
  background-color: #4f46e5;
  color: white;
  padding: 15px;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 1024px) {
  main .overview a {
    font-size: 25px;
  }
}
@media (min-width: 1025px) {
  main .overview a {
    width: 400px;
    text-align: center;
  }
}
main .overview form {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  main .overview form {
    width: 80%;
  }
}
@media (min-width: 1025px) {
  main .overview form {
    width: 30%;
  }
}
main .overview form input {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 15px;
}
main .overview form button {
  margin-top: 10px;
  border: 0;
  border-radius: 5px;
  background-color: #4f46e5;
  color: white;
  padding: 15px;
  cursor: pointer;
}
main .key-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 15px 30px;
}
main .key-features .feature-cards {
  margin-top: 30px;
  display: flex;
}
@media (max-width: 1024px) {
  main .key-features .feature-cards {
    flex-direction: column;
  }
}
main .key-features .feature-cards .feature-card {
  background-color: #efefef;
  width: 100%;
  padding: 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  main .key-features .feature-cards .feature-card:nth-child(n+2) {
    margin-top: 15px;
  }
}
@media (min-width: 1025px) {
  main .key-features .feature-cards .feature-card:nth-child(n+2) {
    margin-left: 15px;
  }
}
main .key-features .feature-cards .feature-card p {
  word-break: break-all;
}
main .key-features .feature-cards .feature-card img {
  width: 32px;
  height: 32px;
}
main .key-features .feature-cards .feature-card .feature-title {
  margin-top: 10px;
  font-size: 1.17em;
  font-weight: bold;
}
main .key-features .feature-cards .feature-card .feature-description {
  margin-top: 10px;
  text-align: center;
}
main .key-features .feature-cards .feature-card .coming-soon {
  position: absolute;
  top: 10px;
  right: 5px;
  background-color: #4f46e5;
  color: white;
  border-radius: 8px;
  padding: 3px 5px;
}
main .see-it-in-action {
  padding: 50px 15px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .see-it-in-action .screenshots {
  margin-top: 20px;
  display: flex;
}
@media (max-width: 1024px) {
  main .see-it-in-action .screenshots {
    flex-direction: column;
  }
}
main .see-it-in-action .screenshots .screenshot {
  width: 400px;
}
@media (max-width: 1024px) {
  main .see-it-in-action .screenshots .screenshot:nth-child(n+2) {
    margin-top: 15px;
  }
}
@media (min-width: 1024px) {
  main .see-it-in-action .screenshots .screenshot:nth-child(n+2) {
    margin-left: 50px;
  }
}
main .see-it-in-action .screenshots .screenshot img {
  width: 400px;
}
main .see-it-in-action .screenshots .screenshot h1 {
  margin-top: 5px;
}
main .see-it-in-action .screenshots .screenshot p {
  margin-top: 10px;
}
main .about-us {
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 15px 30px;
}
main .about-us p {
  margin-top: 40px;
  text-align: center;
  max-width: 800px;
  line-height: 1.5;
}
main .alpha-reviews {
  padding: 50px 15px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .alpha-reviews h1 {
  text-align: center;
}
main .alpha-reviews .review-cards {
  margin-top: 25px;
  display: flex;
}
@media (max-width: 1024px) {
  main .alpha-reviews .review-cards {
    flex-direction: column;
  }
}
main .alpha-reviews .review-cards .review-card {
  background-color: #efefef;
  width: 350px;
  padding: 40px 20px;
  border-radius: 5px;
  text-align: center;
  position: relative;
}
@media (max-width: 1024px) {
  main .alpha-reviews .review-cards .review-card:nth-child(n+2) {
    margin-top: 15px;
  }
}
@media (min-width: 1025px) {
  main .alpha-reviews .review-cards .review-card {
    margin-left: 15px;
  }
}
main .alpha-reviews .review-cards .review-card p:nth-child(2) {
  font-weight: bold;
  margin-top: 5px;
}
main .alpha-reviews .review-cards .review-card p:nth-child(3) {
  position: absolute;
  top: 10px;
  right: 5px;
  background-color: #4f46e5;
  color: white;
  border-radius: 8px;
  padding: 3px 5px;
}
main .faq {
  background-color: #efefef;
  padding: 50px 15px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .faq h1 {
  text-align: center;
}
main .faq .faq-block {
  margin-top: 15px;
  background-color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 8px;
}
main .faq .faq-block:nth-child(n+2) {
  margin-top: 30px;
}
@media (min-width: 1025px) {
  main .faq .faq-block {
    width: 800px;
  }
}
main .faq .faq-block p:nth-child(1) {
  text-align: start;
}
main .faq .faq-block p:nth-child(2) {
  margin-top: 10px;
}
main .faq .faq-block p:nth-child(3) {
  position: absolute;
  top: 10px;
  right: 5px;
  background-color: #4f46e5;
  color: white;
  border-radius: 8px;
  padding: 3px 5px;
}
main .be-the-first-to-know {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 15px 30px;
  background-color: #4f46e5;
}
main .be-the-first-to-know h1 {
  color: white;
  font-weight: bold;
}
main .be-the-first-to-know p {
  margin-top: 5px;
  color: white;
  text-align: center;
  word-wrap: break-word;
}
main .be-the-first-to-know form {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  main .be-the-first-to-know form {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  main .be-the-first-to-know form {
    width: 500px;
  }
}
main .be-the-first-to-know form input {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 15px;
}
main .be-the-first-to-know form button {
  margin-top: 10px;
  border: 0;
  border-radius: 5px;
  background-color: #1e13eb;
  color: white;
  padding: 15px;
  cursor: pointer;
}

footer {
  background-color: #1f2937;
  display: flex;
  padding: 60px 15px;
  justify-content: space-between;
}
footer p {
  color: white;
}
footer .links {
  display: flex;
}
@media (max-width: 1024px) {
  footer .links {
    flex-direction: column;
  }
}
footer .links a {
  text-decoration: none;
  color: white;
}
@media (max-width: 1024px) {
  footer .links a:nth-child(n+2) {
    margin-top: 10px;
  }
}
@media (min-width: 1025px) {
  footer .links a:nth-child(n+2) {
    margin-left: 10px;
  }
}

.cookies-request {
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: none;
}
@media (max-width: 1024px) {
  .cookies-request {
    width: 300px;
    background-color: white;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 10px 10px 11px -12px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 10px 10px 11px -12px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 11px -12px rgba(0, 0, 0, 0.75);
    border: 1px solid #ccc;
    flex-direction: column;
    align-items: center;
  }
  .cookies-request .request-info {
    display: flex;
    flex-direction: column;
  }
  .cookies-request .request-info .request-header {
    color: black;
    font-weight: bold;
  }
  .cookies-request .request-info .request-text {
    margin-top: 10px;
    font-size: 14px;
  }
  .cookies-request .request-buttons {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
  }
  .cookies-request .request-buttons button {
    width: 160px;
    padding: 8px;
    border-radius: 5px;
    border: 0;
    background-color: #16A34A;
    color: white;
    font-weight: bold;
    cursor: pointer;
  }
  .cookies-request .request-buttons button:hover {
    background-color: #15803D;
  }
  .cookies-request .request-buttons button:nth-child(2) {
    margin-top: 10px;
  }
}
@media (min-width: 1025px) {
  .cookies-request {
    width: 700px;
    background-color: white;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 10px 10px 11px -12px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 10px 10px 11px -12px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 11px -12px rgba(0, 0, 0, 0.75);
    border: 1px solid #ccc;
    align-items: center;
  }
  .cookies-request .request-info {
    display: flex;
    flex-direction: column;
  }
  .cookies-request .request-info .request-header {
    color: black;
    font-weight: bold;
  }
  .cookies-request .request-info .request-text {
    margin-top: 10px;
    font-size: 14px;
  }
  .cookies-request .request-buttons {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
  }
  .cookies-request .request-buttons button {
    width: 160px;
    padding: 8px;
    border-radius: 5px;
    border: 0;
    background-color: #4f46e5;
    color: white;
    font-weight: bold;
    cursor: pointer;
  }
  .cookies-request .request-buttons button:hover {
    background-color: #1e13eb;
  }
  .cookies-request .request-buttons button:nth-child(2) {
    margin-top: 10px;
  }
}/*# sourceMappingURL=index.css.map */