body {
  font-family: "Poppins", sans-serif;
  background: #211d39;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-gap: 64px;
}
.grid-2-columns {
  grid-template-columns: 1fr 1fr;
  padding: 0 auto;
}
.grid-3-columns {
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0 auto;
}

.grid-3-columns-first-narrow {
  grid-template-columns: 1fr 2fr 2fr;
  padding: 16px 8px;

  margin-bottom: 1px;
}

.card {
  background: white;
  overflow: hidden;
  margin: 30px 0;
}

.card-header.grid {
  grid-gap: 0;
  padding: 0;
}

.card-body {
  padding: 30px;
}

.card-footer {
  padding: 0;
  background-color: #ffffff;
}

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

.img-responsive-one {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 30px;
}

a.custom-btn {
  background-color: #ffffff;
  color: #000000;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;

  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease;
}

.btn {
  background: #462cb2;
  color: white;
  display: block;
  background-color: #462cb3;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px;
  margin: 50px 30px;
  text-decoration: none;
}

.text-center {
  text-align: center;
}

.embed {
  width: 100%;
  aspect-ratio: 1/1;
}

.instagram-media iframe {
  height: auto;
  min-width: 0;
}

.instagram-embed {
  margin: 30px 0;
}

section {
  max-width: 100%;
  margin: 0 auto;
  padding: 100px;
  text-transform: uppercase;
  padding: 16px;
  text-decoration: none;
}

section.secondary {
  text-align: center;
  background-color: #f8f8f8;
  padding: 60px 80px;
}

section.secondary-one {
  text-align: justify;
  background-color: #ffffff;
  padding: 85px 100px;
}

section.secondary-two {
  text-align: center;
  background-color: #ffffff;
  padding: 85px 100px;
  margin-top: 30px;
}

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

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

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

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

header a {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: #272044;
  padding: 16px 32px;
  margin-top: 32px;
  display: inline-block;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  background: none;
}

main {
  background-color: white;
}

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

main h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  margin: 0;
}

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

main h5 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: #272044;
}

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

footer {
  color: white;
  background-image: linear-gradient(
      rgba(39, 32, 68, 0.9),
      rgba(39, 32, 68, 0.9)
    ),
    url("../img/lisbon-footer.png");

  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 80px;
}

footer h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 16px;
}
footer p {
  font-weight: 400px;
  font-size: 16px;
  opacity: 0.7;
  line-height: 24px;
}

footer ul {
  padding: 0;
}

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

footer a {
  color: white;
  opacity: 0.7;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .secondary-one {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "text";
  }

  @media (min-width: 1024px) {
    .secondary-two {
      grid-columns: 1fr;
    }
  }

  @media (max-width: 960px) {
    header {
      padding: 60px 0;
    }
  }
  h3 {
    font-size: 32px;
  }
  header h1 {
    font-size: 48px;
  }

  header h2 {
    font-size: 24px;
  }

  header h3 {
    font-size: 18px;
  }

  .grid-3-columns,
  .grid-2-columns {
    grid-template-columns: 1fr;
  }

  .card-header img {
    display: none;
  }
  .embed {
    aspect-ratio: 16/7;
  }
  .instagram-embed {
    margin: 50px auto;
    width: 100%;
  }
  section {
    padding: 30px 20px;
  }

  section.secondary-two {
    grid-template-columns: 1fr;
    padding: 30px 40px;
  }

  footer {
    padding: 60px 20px;
  }
  section.grid-3-columns-first-narrow {
    grid-template-columns: 1fr;
  }
}
