.for-whom {
  background-image: url("/assets/images/for-whom/bg.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.for-whom__container {
  max-width: 972px;
  margin: 0 auto;
  text-align: center;
}

.for-whom__subtitle {
  font-family: "Astrados", sans-serif;
  color: #d6001c;
  font-weight: 400;
  font-size: 128px;
  line-height: 100%;
  position: relative;
  bottom: -69px;
}

.for-whom__title {
  font-family: "Akrobat", sans-serif;
  font-weight: 600;
  font-size: 72px;
  line-height: 100%;
  text-transform: uppercase;

  background: #000000;
  background: linear-gradient(
    135deg,
    rgb(0, 0, 0) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgb(0, 0, 0) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0;
}

.for-whom__text {
  margin-top: 23px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0;
  color: #afafaf;
}

.for-whom__list {
  width: 100%;
  overflow: visible;
  position: relative;
  display: flex;
  margin-top: 74px;
}

.for-whom__item {
  width: 340px;
  overflow: visible;
}

.for-whom__item-img-group-container {
  position: relative;
  height: 200px;
  overflow: visible;
}

.for-whom__item-img-group {
  position: absolute;
  left: 20%;
  overflow: visible;
  width: 100%;
}

.for-whom__item-img-group::before {
  content: "";
  position: absolute;
  left: 28%;
  transform: translateX(50%);
  top: 100px;
  display: block;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  opacity: 0.3;
  box-shadow: 0 0 150px 130px #d6001c;
}

.for-whom__item-img-first {
  width: 200px;
  height: 200px;
  position: absolute;
  z-index: 20;
  background-image: url("/assets/images/for-whom/first.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.for-whom__item-img-second {
  width: 189px;
  height: 189px;
  position: absolute;
  z-index: 20;
  background-image: url("/assets/images/for-whom/second.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  left: 5.5px;
  top: 5.5px;
}

.for-whom__item-img-third {
  width: 180px;
  height: 180px;
  position: absolute;
  z-index: 20;
  background-image: url("/assets/images/for-whom/second.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  left: 10px;
  top: 10px;
}

.for-whom__item-img-main-1 {
  width: 173px;
  height: 246px;
  position: relative;
  z-index: 50;
  background-image: url("/assets/images/for-whom/img-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 46px;
  left: 13px;
}

.for-whom__item-img-main-2 {
  width: 267px;
  height: 246px;
  position: relative;
  z-index: 50;
  background-image: url("/assets/images/for-whom/img-2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 46px;
  left: -10px;
}

.for-whom__item-img-main-3 {
  width: 191px;
  height: 246px;
  position: relative;
  z-index: 50;
  background-image: url("/assets/images/for-whom/img-3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 46px;
  left: 5px;
}

.for-whom__item-content {
  position: relative;
}

.for-whom__item-title {
  margin-top: 30px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  color: #ffffff;
}

.for-whom__item-description {
  margin-top: 20px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
  color: #afafaf;
}

.for-whom__item-description > .white {
  color: #ffffff;
}

.for-whom__item-description > .gray {
  color: #afafaf;
}

.for-whom__quotes {
  position: relative;
  margin: 0 auto;
  max-width: 860px;
  background-color: #d6001c;
  padding: 30px;
  display: flex;
  gap: 22px;
  border-radius: 16px;
  margin-top: 58px;
}

.for-whom__quotes-text {
  text-align: left;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0;
  color: #fff;
}

@media (max-width: 1024px) {
  .for-whom {
    background-position: bottom;
  }

  .for-whom__container {
    max-width: none;
    margin: 0 20px;
    width: calc(100% - 40px);
  }

  .for-whom__header {
    margin: 0 30px;
  }

  .for-whom__list {
    margin: 0 auto;
    justify-content: space-between;
    margin-top: 74px;
  }

  .for-whom__item {
    width: 280px;
  }

  .for-whom__item-img-group-container {
    height: 160px;
  }

  .for-whom__item-img-first {
    width: 160px;
    height: 160px;
  }

  .for-whom__item-img-second {
    width: 151px;
    height: 151px;
  }

  .for-whom__item-img-third {
    width: 144px;
    height: 144px;
  }

  .for-whom__item-img-main-1 {
    width: 138px;
    height: 197px;
  }

  .for-whom__item-img-main-2 {
    width: 214px;
    height: 197px;
  }

  .for-whom__item-img-main-3 {
    width: 153px;
    height: 197px;
  }

  .for-whom__quotes {
    box-sizing: border-box;
    width: 100%;
    margin-top: 40px;
  }

  .for-whom__quotes-text {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .for-whom__item-title {
    font-size: 20px;
  }

  .for-whom__item-description {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .for-whom {
    background-position: center;
  }

  .for-whom__subtitle {
    font-size: 64px;
    bottom: -35px;
  }

  .for-whom__title {
    font-size: 40px;
    background: linear-gradient(
      135deg,
      rgb(0, 0, 0) 0%,
      rgb(0, 0, 0) 5%,
      rgba(255, 255, 255, 1) 50%,
      rgb(0, 0, 0) 95%,
      rgb(0, 0, 0) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .for-whom__text {
    font-size: 14px;
  }

  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }

  .for-whom__header {
    max-width: 500px;
    margin: 0 auto;
  }

  .for-whom__list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
  }

  .for-whom__item {
    width: 340px;
    position: relative;
    left: 20px;
  }

  .for-whom__item-content {
    left: -20px;
  }

  .for-whom__item-img-group {
    left: 15%;
  }

  .for-whom__item-img-group-container {
    height: 200px;
  }

  .for-whom__item-img-first {
    width: 200px;
    height: 200px;
  }

  .for-whom__item-img-second {
    width: 189px;
    height: 189px;
  }

  .for-whom__item-img-third {
    width: 180px;
    height: 180px;
  }

  .for-whom__item-img-main-1 {
    width: 173px;
    height: 246px;
  }

  .for-whom__item-img-main-2 {
    width: 267px;
    height: 246px;
  }

  .for-whom__item-img-main-3 {
    width: 191px;
    height: 246px;
  }

  .for-whom__item-title {
    font-size: 24px;
  }

  .for-whom__item-description {
    font-size: 16px;
  }

  .for-whom__quotes {
    padding: 20px 35px 24px 20px;
    align-items: start;
  }

  .for-whom__quotes-text {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .for-whom__header {
    max-width: 300px;
    margin: 0 auto;
  }
}
