* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;

  background-image: url('../img/bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
}

.main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.top-section {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  align-items: center;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand__logo {
  display: inline-block;
  width: 88px;
  height: 138px;
}

.brand__name {
  font-size: 22px;
  line-height: 27px;
  font-weight: 600;
  color: #f38e1c;
  margin-top: 4px;
}

.brand__caption {
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  margin-top: 2px;
}

.content {
  width: 1020px;
  max-width: 90%;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 20px;
}

.content__text {
  font-size: 22px;
  line-height: 33px;
  font-weight: 500;
  text-align: center;
}

.cards-section {
  margin-top: 40px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  padding: 30px 20px;
  background: rgba(97, 97, 97, 0.4);
  width: 285px;
  min-height: 290px;
  max-width: 285px;
  border-radius: 12px;
}

.card__header {
  height: 65px;
  max-height: 70px;
}

.card__header h3 {
  color: #f38e1c;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 600;
  text-align: center;
}

.card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.card__date {
  font-weight: 300;
  font-size: 15px;
  color: #989898;
}

.card__list,
.card__text {
  margin-top: 24px;
  font-size: 17px;
  line-height: 27px;
  font-weight: 300;
}

.card__list {
  list-style-type: disc;
}

.card__text {
  text-align: center;
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}

.card__cta {
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  text-decoration: none;
}

.card__cta-link {
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
}

.card__cta-center {
  margin-top: 60px;
}

.footer-section {
  margin-top: 50px;
}

.contact__heading {
  font-size: 22px;
  line-height: 33px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}

.contact__media {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.contact__text {
  font-size: 18px;
  line-height: 27px;
  font-weight: 300;
  text-align: center;
}

.separator {
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.01) 10%,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(255, 255, 255, 0.8) 40%,
    rgba(255, 255, 255, 0.8) 65%,
    rgba(255, 255, 255, 0.1) 85%,
    rgba(255, 255, 255, 0.01) 100%
  );
  width: 90%;
  height: 1px;
}

.separator-2 {
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.01) 5%,
    rgba(255, 255, 255, 0.1) 10%,
    rgba(255, 255, 255, 0.8) 30%,
    rgba(255, 255, 255, 0.8) 85%,
    rgba(255, 255, 255, 0.1) 95%,
    rgba(255, 255, 255, 0.01) 100%
  );
  width: 100%;
  height: 1px;
}

.separator-3 {
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.01) 10%,
    rgba(255, 255, 255, 0.1) 15%,
    rgba(255, 255, 255, 0.8) 35%,
    rgba(255, 255, 255, 0.8) 75%,
    rgba(255, 255, 255, 0.1) 90%,
    rgba(255, 255, 255, 0.01) 100%
  );
  width: 70%;
  height: 1px;
  margin: 0 auto;
}
