.content {
  min-width: 350px;
}

.content__title {
  height: 75vh;
  min-height: 600px;
  text-align: center;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.title__text {
  color: #fff;
}

.title__text--color {
  color: #d3ffb5;
}

.content__services {
  background: radial-gradient(circle, #ffffff 22%, #e7e7e7 58%);
  display: flex;
  gap: 50px;
  flex-direction: column;
  padding: 20px;
}

.services__subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 15vh;
  min-height: 120px;
  text-align: center;
  color: #094149;
}

.subtitle__name {
  padding-bottom: 20px;
  font-size: 36px;
}

.subtitle__text {
  font-size: 26px;
  min-width: 300px;
}

.services__list {
  width: 100%;
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding-bottom: 12vh;
}

.list__container {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  padding: 20px;
}

.container__img {
  flex: 1;
  max-width: 38vw;
  width: 100%;
  min-width: 300px;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  border-radius: 16px;
  border: 5px solid #fff;
  box-shadow: 5px 5px 15px #b6b6b6;
}

.container__info {
  min-width: 300px;
  flex: 1;
  max-width: 38vw;
  min-height: auto;
  text-align: justify;
}

.info__title {
  font-size: 32px;
  padding-bottom: 16px;
  color: #094149;
}

.info__text {
  font-size: 16px;
  color: #094149;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1440px) {
  .content__title {
    font-size: 24px;
  }

  .subtitle__name {
    font-size: 30px;
  }

  .subtitle__text {
    font-size: 20px;
  }

  .info__title {
    font-size: 30px;
  }

  .info__text {
    font-size: 14px;
  }
}

@media (max-width: 1248px) {
  .info__title {
    font-size: 24px;
  }

  .info__text {
    font-size: 12px;
  }
}

@media (min-width: 1025px) {
  .list__container:nth-child(even) .info__title {
    text-align: end;
  }

  .list__container:nth-child(even) .container__img {
    order: 1;
  }
}

@media (max-width: 1024px) {
  .list__container {
    flex-direction: column;
    height: auto;
  }

  .content__title {
    font-size: 16px;
  }

  .subtitle__text {
    font-size: 22px;
    width: 80vw;
  }

  .container__img {
    height: auto;
    max-width: 80vw;
  }

  .container__info {
    height: auto;
    max-width: 80vw;
  }

  .subtitle__name,
  .info__title {
    font-size: 30px;
  }

  .info__text {
    font-size: 18px;
  }
}

@media (max-width: 920px) {
  .info__title {
    font-size: 30px;
  }

  .info__text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .services__list,
  .list__container {
    gap: 40px;
  }

  .info__title {
    font-size: 26px;
  }

  .info__text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container__img {
    min-height: 20vh;
    width: 80vw;
  }

  .list__container {
    gap: 20px;
  }

  .info__title {
    font-size: 18px;
  }

  .info__text {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .content__title {
    height: 65vh;
    min-height: 250px;
  }
  .container__img {
    min-height: 200px;
  }
}
