:root {
  --body-font: "Poppins", sans-serif;
  --secondary-color: #272044;
}
body {
  font-family: var(--body-font);
}

header {
  background-image:
    linear-gradient(rgba(0.1, 0.2, 0, 0.4), rgba(0, 0, 0, 0.5)),
    url("../images/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: white;
  padding: 200px 0;
}

header h1 {
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  margin: 30px 0;
}

header h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

header h3 {
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 5px;
  margin: 0;
}

header a {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: var(--secondary-color);
  padding: 16px 32px;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  text-transform: uppercase;
}
.grid-main-2-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.img-responsive {
  width: 100%;
  height: 100%;
  display: block;
}

img {
  overflow-clip-margin: content-box;
  overflow: clip;
}

main h2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 5px;
  color: #272044;
  opacity: 0.3;
  text-transform: uppercase;
}

main h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  color: #272044;
  margin: 0;
}
main p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #272044;
  opacity: 0.7;
  text-align: justify;
}

section {
  padding: 50px 70px;
  margin: 0 auto;
  max-width: 100%;
}

main .primary {
  background: white;
}
main .secondary {
  background: #f8f8f8;
}

.grid {
  display: grid;
  grid-gap: 50px;
}
.grid-3-columns {
  grid-template-columns: 1fr 1fr 1fr;
}
.card {
  background: white;
  margin: 30px 0;
}

.embed {
  width: 100%;
  height: 100%;
}
main .secondary h2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 5px;
  color: #272044;
  opacity: 0.3;
  text-transform: uppercase;
  text-align: center;
}

main .secondary h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  color: #272044;
  margin: 0;
  text-align: center;
}
.card-body {
  padding: 30px;
}

.grid-2-columns {
  grid-template-columns: 1fr 1fr;
  grid-gap: 0;
}

main .secondary h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #272044;
  margin: 0;
}

main .secondary p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #272044;
  opacity: 0.7;
}

main .secondary h5 {
  font-weight: 700;
  font-size: 13px;
  margin: 0;
  line-height: 1;
  color: #272044;
}

.card-footer {
  padding: 0 30px 30px;
}

main button {
  padding: 16px;
  background: #5e27e7;
  border: none;
}

.btn {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  line-height: 14px;
  font-weight: 700;
}

footer {
  background-image:
    linear-gradient(rgba(20, 25, 58, 0.6), rgba(20, 25, 58, 0.5)),
    url("../images/footer-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.grid-footer {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  gap: 50px;
}

footer h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}
footer ul {
  padding: 0;
}

footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer a {
  color: white;
  opacity: 0.7;
}

@media (max-width: 900px) {
  header {
    padding: 70px 0;
  }

  header h1 {
    font-size: 40px;
  }

  header h2 {
    font-size: 20px;
  }

  header h3 {
    font-size: 12px;
    letter-spacing: 3px;
  }

  header a {
    font-size: 12px;
    padding: 12px 24px;
  }
  .grid-footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .grid-main-2-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  main h3 {
    font-size: 20px;
  }

  main h2 {
    font-size: 12px;
    letter-spacing: 3px;
  }

  main p {
    font-size: 14px;
  }

  .grid-3-columns {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .card img {
    display: none;
  }
  .grid-2-columns {
    grid-template-columns: 1fr;
  }
}
