.container {
  padding: var(--container-pd);
}

.main {
  font-size: 1.2rem;
}

.main__title {
  padding: 8rem 0 1rem 0;
  margin: 0 auto;
  text-align: center;

  font-size: 3rem;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/assets/main-block-img.jpg") no-repeat top center/cover;
  background-blend-mode: darken;
  background-size: cover;
}

.main__title h1 {
  font-size: 3.5rem;
}

.main__banner {
  text-align: center;
  margin: 0 auto;
  padding-top: 14vh;
  height: fit-content;
  width: 60vw;
}

.main__banner-title {
  font-size: 5rem;
}

.main__banner-text {
  font-size: 1.2rem;
}

.main__text {
  background: white;
}

.intro {
  display: flex;
  flex-direction: row;

  margin-top: 2rem;
}

.intro__text p {
  font-size: 1.2rem;
}

.list-style {
  list-style: none;
  padding: 0 0 0 0.5rem;
  margin-left: 1rem;
  font-size: 1.3rem;

  width: fit-content;

  border-left: 2px solid var(--light-orange);
}

.list-item {
  margin-bottom: 1.5rem;
}

.list-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.intro__image-img {
  max-width: 33vw;
  height: 100%;

  object-fit: cover;
}

.content__image {
  position: relative;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, white 80%),
    url("/assets/main-block-img.jpg") no-repeat top center;
  background-size: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.content__wrapper {
  display: flex;
  flex-direction: column;

  margin-bottom: 1rem;
}

.content__wrapper:last-child {
  margin-bottom: 0;
}

.content__title h2 {
  width: 20vw;
}

.content__text {
  padding-inline: 2rem;
  font-size: 1.2rem;
}

.content__list {
  border: none;
  width: fit-content;
}

.content__text span {
  color: var(--light-orange);
}

.content__list-item h4,
.content__list-item h3 {
  background-color: var(--pale-orange);
  padding: 0.5rem;
  color: white;
  margin: 0;
}

.content__ending {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.content__ending h2 {
  margin: 3rem 0 0 0;
}

.content__ending {
  font-size: 1.7rem;
}

.main__signup {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5)),
    url("/assets/signup-banner.jpg") no-repeat top center/cover,
    linear-gradient(to top, var(--primary-color) 0%, transparent 80%);

  color: var(--primary-color);
  color: white;

  font-size: 1.5rem;
}

.main__signup-title {
  padding-top: 2rem;
}

.core-section__list {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  /* align-items: center; */
}

.title__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-size: 1.5rem;
}

.title__wrapper .list-style {
  border: none;
}

.feedback-item h4 {
  border-bottom: 2px solid var(--light-orange);
  width: fit-content;
}

.feedback-item p {
  font-size: 1.2rem;
  background-color: var(--secondary-color);
  padding: 1.2rem;
  width: 45vw;
  border-radius: 10px;
}

.mirror-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/assets/mirror-banner.jpg") no-repeat center center/cover;
  background-blend-mode: darken;
  background-size: 100%;
}

.slots-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/assets/slots-banner.jpg") no-repeat center center/cover;
  background-blend-mode: darken;
  background-size: 100%;
}

.payment-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/assets/payment-banner.jpg") no-repeat center center/cover;
  background-blend-mode: darken;
  background-size: 100%;
}

.feedback-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/assets/feedback-banner.jpg") no-repeat center center/cover;
  background-blend-mode: darken;
  background-size: 100%;
}

.styled-list {
  counter-reset: slot-counter;
  list-style: none;
  padding-left: 0;
  margin: 0;

  max-width: 37.5rem;
}

.styled-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #222;
  font-weight: 500;
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  padding: 0.8rem 1rem 0.8rem 3rem;
}

.styled-list li::before {
  counter-increment: slot-counter;
  content: counter(slot-counter) "";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  background: var(--light-orange);
  padding: 0.4rem 0.4rem;
  border-radius: 4px;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Segoe UI", sans-serif;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.styled-table thead {
  background-color: var(--light-orange);
  color: white;
}

.styled-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.styled-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--light-orange);
}

.ending-list {
  border: none;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 1300px) {
  h2 {
    font-size: 1.2rem;
  }

  .content__ending h2 {
    font-size: 1.5rem;
  }

  .content__ending p {
    font-size: 1rem;
  }
}

@media (max-width: 890px) {
  .main__banner-title {
    font-size: 3rem;
  }

  .content__text {
    padding-top: 0;
  }

  .intro__image {
    display: none;
  }
  .content__wrapper {
    flex-direction: column;
    align-items: center;
  }

  .content__title h2 {
    width: 100%;
    text-align: center;
  }

  .content__list {
    width: fit-content;
  }
}

@media (max-width: 600px) {
  .main__banner-title {
    font-size: 2rem;
  }

  .main__title h1 {
    font-size: 2rem;
  }

  .content__text {
    padding-inline: 0.5rem;
    font-size: 1.2rem;
  }

  .core-section__list {
    display: flex;
    flex-direction: column;
  }

  .main__signup-title h1 {
    font-size: 1.7rem;
    padding-top: 0.5rem;
  }

  .styled-table {
    font-size: 1rem;
  }

  .styled-table thead th {
    padding: 6px 8px;
  }

  .styled-table tbody td {
    padding: 6px 8px;
  }
}

@media (max-width: 450px) {
  .styled-table {
    font-size: 0.75rem;
  }

  .styled-table thead th {
    padding: 3px 4px;
  }

  .styled-table tbody td {
    padding: 3px 4px;
  }
}

@media (max-width: 425px) {
  .container {
    padding: 1rem;
  }
  .main__signup-title h1 {
    font-size: 1.5rem;
    padding-top: 3rem;
  }

  .intro {
    margin-top: 5.5rem;
  }
}
