*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.page {
  position: relative;
  font-family: Inter, sans-serif;

  background-color: #000000;
}

.header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  max-width: 1400px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
}

.social__image {
  transition: 0.3s;
}

.social:hover .social__image {
  filter: invert();
}

.title {
  color: #ffffff;
  font-size: clamp(32px, 8vw, 64px);
  text-align: center;
}

.section__wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  padding: 55px 25px 55px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.section__wrapper-flex {
  max-width: 1040px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
}

.section__wrapper-five {
  padding: 50px 25px 125px 25px;
}

.section__title {
  font-size: clamp(32px, 8vw, 48px);
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
}

.section__title-center {
  text-align: center;
}

.section__text {
  color: #ffffff;
  font-size: clamp(20px, 5vw, 26px);
}

.section__text-gray {
  color: #737373;
  text-align: center;
}

.section__text-center {
  text-align: center;
}

.section__banner {
  max-width: 1200px;
  width: 100%;
}

.button {
  margin-top: 35px;
  transition: transform 0.2s linear;
}

.button:hover {
  transform: translateY(-5px);
}

.button__image {
  box-shadow: 0 0 50px 20px #ffb30061;
  border-radius: 100px;
}

.section-one {
  height: 100vh;
  background: url(./assets/s1.png) no-repeat center/cover;
}
.section-two {
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(./assets/s2.png) no-repeat center/cover;
}

.section-three {
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(./assets/s3.png) no-repeat center/cover;
}

.section-four {
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(./assets/s4.png) no-repeat center/cover;
}

.section-five {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(./assets/s5.png) no-repeat top/cover;
}

.cards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 0 1 420px;
  background-color: #191919;
  border-radius: 58px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 35px;
  max-height: 533px;
  height: 100vh;
  transition: transform 0.2s linear;
}

.card:hover {
  transform: translateY(-2px);
}

.card-shrink {
  flex: 0 1 315px;
  max-height: 450px;
}

.card__title {
  font-size: clamp(24px, 5vw, 32px);
  color: #ffffff;
  padding: 0 25px;
  text-transform: uppercase;
}

.card__text {
  font-size: clamp(20px, 5vw, 24px);
  color: #969696;
  padding: 0 25px 50px 25px;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 25px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.footer__text {
  text-align: center;
  color: #c7c7c7;
}

@media (max-width: 864px) {
  .section-one {
    background:
      linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
      url(./assets/s1.png) no-repeat 72% 100% / cover;
  }

  .section-five {
    background:
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(./assets/s5.png) no-repeat right 100% / cover;
  }
}

@media (max-width: 486px) {
  .section__wrapper-one {
    padding: 150px 25px 55px 25px;
  }
  .card {
    max-height: unset;
    height: auto;
  }

  .card-shrink {
    max-height: unset;
  }
}
