.homeWhy {
  background: linear-gradient(180deg, #010913 0%, #010913 100%);
  position: relative;
  margin: 40px 0;
  padding: 40px 0;
}
.homeWhy__background {
  top: 100px;
  bottom: 300px;
  left: 50%;
  width: 100vw;
  transform: translateX(-50vw);
  position: absolute;
  height: auto;
}
.homeWhy__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homeWhy__container {
  z-index: 1;
  position: relative;
}
.homeWhy__top {
  padding-bottom: 30px;
  border-bottom: 1px solid #3C3C3C;
}
.homeWhy__title {
  margin-bottom: 20px;
}
.homeWhy__text {
  margin-bottom: 20px;
}
.homeWhy__middle {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.homeWhy__number {
  color: #FFF;
  font-family: Manrope;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 0.8;
  /* 83.333% */
}
.homeWhy__bottom {
  margin-top: 60px;
}
.homeWhy__sliderBar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.homeWhy__decor {
  display: none;
}

.testimonialCard {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonialCard__image-wrapper {
  width: 100%;
  max-width: 300px;
  height: auto;
}
.testimonialCard__image-wrapper img {
  width: 100%;
  display: block;
  height: auto;
  border-radius: 16px;
}
.testimonialCard__stars {
  display: flex;
  flex-direction: row;
  gap: 4px;
}
.testimonialCard__rating {
  display: flex;
  gap: 18px;
  align-items: center;
}
.testimonialCard__content {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
}
.testimonialCard__author {
  margin-top: 30px;
}
.testimonialCard__title {
  margin-top: 30px;
}
.testimonialCard__text {
  margin-top: 16px;
}

@media (min-width: 500px) {
  .homeWhy__middle {
    padding-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 700px) {
  .homeWhy {
    padding-bottom: 100px;
  }
  .homeWhy__top {
    padding-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: flex-end;
    gap: 24px;
  }
  .homeWhy__title {
    grid-column: 1/6;
    margin-bottom: 0;
  }
  .homeWhy__text {
    grid-column: 6/10;
    margin-bottom: 0;
  }
  .homeWhy__button {
    grid-column: 10/13;
    height: fit-content;
  }
  .homeWhy .themeNavigation {
    margin-left: auto;
    margin-right: 0;
    margin-top: 0;
  }
  .testimonialCard {
    display: grid;
    grid-template-columns: 200px 1fr;
  }
}
@media (min-width: 1200px) {
  .homeWhy__middle {
    padding-top: 70px;
    padding-bottom: 130px;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .homeWhy__top {
    padding-bottom: 50px;
  }
  .homeWhy__title {
    grid-column: 1/4;
  }
  .homeWhy__text {
    grid-column: 7/11;
    text-align: right;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .homeWhy__button {
    grid-column: 11/13;
    width: 100%;
  }
  .homeWhy__number {
    color: #FFF;
    font-family: Manrope;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
  }
  .homeWhy__bottom {
    margin-top: 0;
    padding-top: 0;
  }
  .homeWhy__sliderBar {
    margin-bottom: 60px;
  }
  .homeWhy__container {
    position: relative;
  }
  .homeWhy__decor {
    width: 185px;
    height: 185px;
    display: block;
    position: absolute;
    bottom: -50px;
    left: -35px;
    z-index: 0;
    filter: blur(30px);
  }
  .homeWhy__decor svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .testimonialCard {
    grid-template-columns: auto 1fr;
  }
  .testimonialCard__image-wrapper {
    width: auto;
    height: 100%;
  }
}
@media (min-width: 1500px) {
  .homeWhy {
    padding-top: 100px;
    padding-bottom: 160px;
  }
  .homeWhy__top {
    padding-bottom: 50px;
  }
}