/* Starter */
.display-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 68px;
  margin-bottom: 38px;
}

button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

details ul li {
  font-size: 14px;
}

nav ul:nth-child(2) > li {
  padding-left: 0;
}

/* Main section */
.gradient-background {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  border-radius: 0.5rem;
  justify-self: center;
  background-color: #64cbff;
  opacity: 1;
  background: linear-gradient(135deg, #38b6ff55 25%, transparent 25%) -35px 0/
      70px 70px,
    linear-gradient(225deg, #38b6ff 25%, transparent 25%) -35px 0/ 70px 70px,
    linear-gradient(315deg, #38b6ff55 25%, transparent 25%) 0px 0/ 70px 70px,
    linear-gradient(45deg, #38b6ff 25%, #64cbff 25%) 0px 0/ 70px 70px;
}

.main-section {
  padding: 60px 0px;
  text-align: center;
}

.main-section a {
  color: black;
  text-decoration-color: black;
}

.main-section a:hover {
  color: white;
  text-decoration-color: white;
}

.main-section .main-testimony-button {
  color: #fff;
  text-decoration: none;
}

.moto {
  max-width: 950px;
}

.moto > * {
  text-wrap: balance;
  color: white;
}

.main-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 80px;
}

/* Importances */
.importances {
  text-align: center;
  margin: 180px auto;
}

.importances .container hgroup p {
  margin-bottom: 135px;
}

.importances .container hgroup h1 span {
  background: linear-gradient(to right, #38b6ff, #4b97d6, #4b8cd6, #7ea1ff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.importances .grid {
  text-align: start;
  grid-template-columns: 1fr 1fr;
}

.importances .grid article {
  padding: 40px;
}

.importances .grid article svg {
  margin-bottom: calc(1rem * 0.75);
}

/* Why us */
.why-us {
  margin: 180px auto;
  text-align: center;
}

.why-us .container h1 span {
  background: linear-gradient(to right, #38b6ff, #4b97d6, #4b8cd6, #7ea1ff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.why-us .container .grid {
  text-align: start;
  grid-template-columns: 1fr 1fr 1fr;
}

.why-us .container hgroup p {
  margin-bottom: 135px;
}

.why-us .container img {
  object-fit: cover;
  height: 325px;
  border-radius: 5.25px 5.25px 0px 0px;
}

.why-us .grid article {
  padding: 0;
}

.why-us .grid article div {
  padding: 40px;
}

/* Contact us  */
.contact-us {
  margin: 180px auto;
  text-align: center;
}

.contact-us .container h1 span {
  background: linear-gradient(
    to right,
    #38b6ff,
    #4b97d6,
    #4b8cd6,
    rgb(126, 161, 255)
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.contact-us .container {
  max-width: 1000px;
}

.contact-us .grid {
  text-align: start;
  grid-template-columns: 1fr;
}

.contact-us .grid article {
  padding: 40px;
}

.contact-us .grid article button {
  width: 1fr;
}

/* FAQ */
.faq {
  margin-top: 240px;
  margin-bottom: 240px;
}
.faq h1 {
  text-align: center;
}

.faq .questions {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

.faq .questions details p {
  font-size: 18px;
}

/* Modal */
.modal-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25d366;
}

@media screen and (max-width: 450px) {
  h1 {
    font-size: 45px;
  }

  .faq .questions details p {
    font-size: 14px;
  }

  .contact-us .grid article,
  .importances .grid article,
  .why-us .grid article div {
    padding: 16px;
  }
}

@media screen and (max-width: 768px) {
  .moto {
    max-width: 500px;
  }

  .importances .grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 1024px) {
  .moto {
    max-width: 500px;
  }
  .why-us .container .grid {
    grid-template-columns: 1fr;
  }

  .main-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .main-buttons > button {
    flex: 1;
  }

  .why-us .container img {
    height: auto;
  }
}

@media screen and (max-width: 425px) {
  .moto {
    max-width: 425px;
  }
}

@media screen and (max-width: 575px) {
  .gradient-background {
    border-radius: 0;
  }
}
