.header {
  margin-top: 40px;
  text-align: center;
}

.banner__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 150px;
}
.banner__container h1 {
  font-size: 56px;
  line-height: 60px;
  font-weight: 600;
  color: #E4E4E7;
}
.banner__container p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  color: #CDCDCD;
  margin: 16px 0 32px;
}
@media screen and (max-width: 768px) {
  .banner__container h1 {
    font-size: 36px;
    line-height: 45px;
  }
  .banner__container p {
    font-size: 14px;
    line-height: 22px;
  }
}
.banner__social-media-box {
  display: flex;
  align-items: center;
  gap: 16px;
}
.banner__social-media-box span {
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  color: #E4E4E7;
}
@media screen and (max-width: 768px) {
  .banner__social-media-box {
    flex-direction: column;
    gap: 8px;
  }
}
.banner__social-media {
  display: flex;
  gap: 8px;
}

.information h3 {
  font-size: 22px;
  line-height: 27px;
  font-weight: 400;
  color: #E4E4E7;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .information h3 {
    font-size: 20px;
    line-height: 25px;
  }
}
.information__cards {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .information__cards {
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
  }
}
.information__card {
  border-width: 1px;
  border-style: solid;
  border-color: #212540;
  border-radius: 8px;
  padding: 24px;
}
.information__card p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  color: #CDCDCD;
}
.information__card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.information__card__header h4 {
  font-size: 19px;
  line-height: 25px;
  font-weight: 400;
  color: #E4E4E7;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .information__card p {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }
  .information__card__header {
    justify-content: center;
  }
  .information__card__header h4 {
    font-size: 18px;
    line-height: 22px;
  }
}

.footer {
  margin: 32px 0 80px;
}
.footer p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  color: #E4E4E7;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
.footer p a {
  font-weight: 500;
  color: #E4E4E7;
  text-decoration: underline;
  display: inline-flex;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 32px 0 56px;
    margin-bottom: 0;
  }
  .footer p {
    justify-content: center;
  }
}

* {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
}

body {
  background: radial-gradient(circle 100vh at 50% 30%, #060f51 0%, #09090B 100%);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  body {
    background: linear-gradient(to bottom, #060f51 30%, #09090B 70%);
    height: auto;
  }
}

.information__container,
.footer__container {
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .information__container,
  .footer__container {
    max-width: calc(100% - 32px);
    padding: 0 16px;
  }
}

.banner__container {
  max-width: 822px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .banner__container {
    max-width: 100%;
    margin: 102px 0 112px;
  }
}
@media screen and (max-width: 768px) {
  .banner__container {
    max-width: calc(100% - 32px);
    padding: 0 16px;
  }
}/*# sourceMappingURL=styles.css.map */