.new-case {
  background-color: rgba(243, 245, 249, 1);
  padding-bottom: 60px;
}

.topic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 60px;
  margin: 0 auto;
  max-width: 1160px;
}

.topic__container {}

.topic__title {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 71px;
  color: #131313;
  margin: 0;
}

.topic__title_span {
  font-family: 'Roboto', Arial, sans-serif;
  color: #F29D38;
}

.topic__subtitle {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  margin: 25px 0 0;
}

.topic__img {
  width: 100%;
  max-width: 307px;
  height: auto;
  object-fit: contain;
}

.progress {
  margin: 80px auto 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 43px;
  justify-content: center;
  max-width: 1160px;
  font-family: 'Roboto', Arial, sans-serif;
}

.progress__item {
  position: relative;
}

.progress__item-container {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 58px 41px;
  box-shadow: 3px 3px 36px rgba(99, 114, 153, 0.08);
}

.progress__item-title {
  font-style: normal;
  font-weight: 600;
  font-size: 60px;
  line-height: 74px;
  color: #4098F4;
  margin: 0;
  display: block;
  top: -37px;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  white-space: nowrap;
}

.progress__item-description {
  font-weight: normal;
  font-size: 25px;
  line-height: 36px;
  color: #404056;
  margin: 0;
  text-align: center;
}

.case {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFFFFF;
  border-radius: 10px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 70px;
  box-shadow: 3px 3px 36px rgba(99, 114, 153, 0.08);
  box-sizing: border-box;
}

.case__prolog {
  display: flex;
  align-items: center;
}

.case__prolog-avatar {
  width: 182px;
  height: 182px;
  border-radius: 50%;
  object-fit: contain;
  margin-right: 67px;
}

.case__prolog-container {}

.case__title {
  font-weight: bold;
  font-size: 18px;
  line-height: 23px;
  color: #131313;
  margin: 0 0 19px;
}

.case__title-span {
  font-weight: normal;
}

.case__text {
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: #404056;
  margin: 0;
}

.case__text-span {
  font-weight: bold;
}

.case__subtitle {
  font-weight: bold;
  font-size: 23px;
  line-height: 26px;
  color: #4098F4;
  margin: 0 0 30px;
  text-transform: uppercase;
}

.case__list {
  padding: 0 0 0 20px;
  margin: 0 0 0 10px;
}

.case__list-title {
  margin-bottom: 12px;
}

.case__list-item {
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
  color: #404056;
  margin: 0 0 8px;
}

.case__list-item::marker {
  color: #FF910F;
}

.case__list-item:last-of-type {
  margin: 0;
}

.case__bth {
  color: #FFFFFF !important;
  font-weight: 500;
  font-size: 23px;
  line-height: 26px;
  background: #F29D38;
  border: 1px solid #F29D38;
  border-radius: 10px;
  padding: 21px 0;
  box-shadow: 0 10px 20px #11111114;
  text-decoration: none;
  width: 55%;
  display: block;
  text-align: center;
  margin: 75px auto;
}

.case__bth:hover {
  cursor: pointer;
  color: #F29D38 !important;
  background: #FFFFFF;
}

.margin-botton-30 {
  margin: 0 0 30px;
}

.margin-botton-60 {
  margin: 0 0 60px;
}

.margin-botton-55 {
  margin: 0 0 55px;
}

.case-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 30px;
  align-items: center;
}

.case-grid__item-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
}

.logo {
  margin-top: 90px;
}

.logo__line {
  width: 80%;
  height: 2px;
  background: #F29D38;
  margin: 0 auto;
}

.logo__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 254px));
  gap: 152px;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
}

.logo__img {
  width: 100%;
  height: auto;
  max-height: 130px;
  object-fit: contain;
}

@media screen and (max-width: 1100px) {
  .progress__item-title {
      font-size: 46px;
      line-height: 56px;
      top: -28px;
    white-space: nowrap;
  }
  .progress__item-description {
      font-size: 20px;
      line-height: 30px;
  }
  .progress__item-container {
      padding: 37px;
  }
}

@media screen and (max-width: 950px) {
  .new-case {
      padding-bottom: 40px;
  }
  .progress {
      grid-template-columns: repeat(1, minmax(0, 310px));
  }
  .topic {
      flex-direction: column;
      align-items: flex-start;
      padding-top: 40px;
  }
  .topic__title {
      font-size: 34px;
      line-height: 36px;
  }
  .topic__subtitle {
      font-size: 16px;
      line-height: 19px;
      margin: 15px 0 20px;
  }
  .topic__img {
      max-width: 132px;
  }
  .logo {
      margin-top: 30px;
  }
  .logo__container {
      margin: 40px auto;
      grid-template-columns: 117px 88px;
      gap: 35px;
  }
  .logo__line {
      max-width: 200px;
  }
}

@media screen and (max-width: 750px) {
  .case {
      padding: 16px 13px;
  }
  .case__text {
      font-size: 16px;
      line-height: 26px;
  }
  .case__prolog {
      flex-direction: column;
  }
  .case__prolog-avatar {
      width: 120px;
      height: 120px;
      margin: 0 0 10px;
  }
  .case__subtitle {
      margin-bottom: 20px;
  }
  .margin-botton-35 {
      margin: 0 0 35px;
  }
  .case__bth {
      width: 100%;
  }
  .case-grid {
      display: flex;
      flex-direction: column-reverse;
  }
  .case__list-item {
      font-size: 16px;
      line-height: 26px;
  }
  .topic__title {
      font-size: 36px;
      line-height: 44px;
  }
  .topic__title_span {
      font-size: 28px;
      line-height: 34px;
  }
  .topic__img {
      margin-top: 30px;
  }
  .progress {
      margin: 76px auto 60px;
  }
  .case__bth {
      font-size: 18px;
      margin: 10px auto 60px;
  }
}

@media screen and (max-width: 480px) {
  .case {
      max-width: 310px;
  }
  .case__title {
      font-size: 17px;
      line-height: 26px;
  }
  .topic {
      max-width: 310px;
  }
  .case__list-title {
      margin-right: 50px;
  }
  .case__text {
      font-size: 18px;
      line-height: 30px;
  }
  .case__subtitle {
      font-size: 20px;
      line-height: 28px;
  }
}
