body {
  background-color: #201C1C;
  color: #FAFAFA;
  font-family: "Raleway";
  overflow-x: hidden;
}

.wrapper-content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  gap: 90px;
}
@media (max-width: 767px) {
  .wrapper-content {
    gap: 60px;
  }
}
@media (max-width: 424px) {
  .wrapper-content {
    gap: 40px;
  }
}

main {
  overflow: hidden;
  flex: 1 0 auto;
}

.title-h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
  letter-spacing: 0.96px;
}
@media (max-width: 424px) {
  .title-h2 {
    font-size: 36px;
  }
}

.title-h1 {
  color: #FAFAFA;
  text-shadow: 0px 0px 15px rgba(255, 57, 57, 0.31);
  font-size: 96px;
  font-weight: 600;
  line-height: 100%; /* 96px */
  letter-spacing: 1.92px;
}
@media (max-width: 1023px) {
  .title-h1 {
    font-size: 72px;
    margin-top: -40px;
  }
}
@media (max-width: 767px) {
  .title-h1 {
    font-size: 64px;
  }
}
@media (max-width: 424px) {
  .title-h1 {
    font-size: 48px;
  }
}

.title-h3 {
  color: #FAFAFA;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%; /* 24px */
  letter-spacing: 0.48px;
}

.subtitle {
  color: #FAFAFA;
  font-size: 64px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 1.28px;
}
@media (max-width: 1023px) {
  .subtitle {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .subtitle {
    font-size: 36px;
  }
}
@media (max-width: 424px) {
  .subtitle {
    font-size: 24px;
  }
}

.button {
  color: #FF3939;
  text-shadow: 0px 0px 15px rgba(255, 57, 57, 0.31);
  font-size: 32px;
  font-weight: 500;
  line-height: 100%; /* 32px */
  letter-spacing: 0.64px;
}
@media (max-width: 424px) {
  .button {
    font-size: 28px;
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 1439px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 1023px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.bg-deco {
  position: absolute;
  z-index: -10;
  border-radius: 8px;
  background: rgba(255, 57, 57, 0.31);
  box-shadow: 0px 0px 30px 0px rgba(255, 57, 57, 0.31);
}

.text {
  text-align: justify;
  font-family: Raleway;
  font-size: 20px;
  text-shadow: 0px 0px 15px rgba(255, 57, 57, 0.31);
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 30px */
}
@media (max-width: 424px) {
  .text {
    font-size: 16px;
  }
}

.red-text {
  text-shadow: 0px 0px 15px rgba(255, 57, 57, 0.31);
  color: #FF3939;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}
.image-wrapper__image {
  position: relative;
  z-index: 2;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.image-wrapper::after {
  content: "";
  z-index: 1;
  background-image: url("../images/static/spinner.svg");
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}