.cf-caption1 {
  font-style: normal;
  font-size: 56px;
  line-height: 56px;
  letter-spacing: -2px;
  color: #040505;
  font-family: ExtraBold;
}

@media screen and (max-width: 760px) {
  .cf-caption1 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -1px;
  }
}
.cf-caption2 {
  font-style: normal;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -1.5px;
  color: #040505;
  margin-bottom: 40px;
  font-family: ExtraBold;
}

@media screen and (max-width: 760px) {
  .cf-caption2 {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -1px;
    margin-bottom: 24px;
  }
}
.rocket-block {
  width: 100%;
  padding: 40px 0;
  background: #F1F3FF;
  border-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rocket-block img {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
}

.rocket-block>div {
  max-width: 622px;
  text-align: center
}

.rocket-block-title {
  font-size: 26px;
  line-height: 32px;
  font-family: ExtraBold;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.rocket-block-description {
  font-size: 16px;
  line-height: 20px;
  color: #808080;
  margin-bottom: 32px;
}

.rocket-block .button_arrow {
  font-family: Bold;
}


@media screen and (max-width: 760px) {
  .rocket-block {
    padding: 28px 20px;
    width: 100vw;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
  }

  .rocket-block img {
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
  }

  .rocket-block-title {
    margin-bottom: 16px;
  }
}
.reviews-wrapper {
  display: flex;
  width: fit-content;
  margin-bottom: 220px;
}

.reviews {
  display: inline-flex;
}

.review-body__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.review-header__customer-info {
  margin-bottom: 14px;
  display: flex;
}

.review-header__customer-info img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

.customer-info__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.2px;
}

.customer-info__city {
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: -0.2px;
  color: #999999;
}

.review-header__date {
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: -0.2px;
  color: #999999;
}

.review-body__body {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* количество строк */
  -webkit-box-orient: vertical;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 12px;
}

.review-body__link {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #0006FF;
  transition: .4s;
}

.review-body__link:hover {
  cursor: pointer;
  color: #000066;
}

.reviews:hover {
  animation-play-state: paused !important;
}

.reviews-block {
  width: 384px;
  padding: 16px 24px 32px 24px;
  border: 2px solid #F0F0F0;
  border-radius: 6px;
  margin-right: 24px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.reviews-modal-wraper {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.reviews-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  width: 500px;
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  box-sizing: border-box;
}

.reviews-modal-wraper.active .reviews-modal {
  padding: 16px 24px 32px 24px;
  border: 2px solid #F0F0F0;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.reviews-modal-wraper.active .review-body__body {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.reviews-modal-close {
  font-size: 50px;
  font-family: ExtraBold;
  cursor: pointer;
}

.reviews-modal-close:hover,
.reviews-modal-close:focus {
  color: black;
  text-decoration: none;
}

.reviews-modal-wraper.active {
  display: block;
}

.reviews-modal-wraper.active .review-body__link {
  display: none;
}

.reviews-modal-close {
  position: absolute;
  cursor: pointer;
  right: 24px;
  width: 22px;
  height: 22px;
}

.reviews-modal-close:before,
.reviews-modal-close:after {
  position: absolute;
  content: '';
  top: 10px;
  left: 1;
  height: 3px;
  width: 22px;
  background-color: #040505;
}

.reviews-modal-close:before {
  transform: rotate(45deg);
}

.reviews-modal-close:after {
  transform: rotate(-45deg);
}

@media screen and (max-width: 760px) {
  .reviews-wrapper {
    margin-bottom: 120px;
  }

  .reviews-block {
    width: 335px;
    margin-right: 12px;
  }

  .review-body__title,
  .customer-info__name {
    font-family: Bold;
  }

  .reviews-modal {
    width: 98%;
  }

  .reviews-modal-close {
    right: 24px;
    top: 20px;
  }
}

@keyframes ticker-animation {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}
.paragraph {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #040505;
}

.case-studies-header {
  margin-top: 144px;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.case-studies-header h1 {
  max-width: 1000px;
  margin-bottom: 64px;
  text-align: center;
}

.case-studies-header-description {
  max-width: 675px;
  text-align: center;
}

.case-studies-cards {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 120px;
}

.case-cards-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
}

.case-cards-item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #F5F5F5;
  margin-bottom: 16px;
}

.case-cards-item-description {
  text-align: center;
}

.client-stories-title {
  text-align: center;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -1.5px;
  font-family: ExtraBold;
  margin-bottom: 64px;
}

.client-stories-cards {
  display: grid;
  grid-template-columns: repeat(3, 384px);
  justify-content: center;
  grid-gap: 24px;
  width: 100%;
  margin: 0 auto;
}

.stories-cards-item {
  display: flex;
  flex-direction: column;
  width: 384px;
  height: 548px;
  border: 1px solid #F0F0F0;
  border-radius: 12px;
  padding: 0 32px;
}

.stories-cards-item-logo {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stories-cards-item-logo img {
  max-height: 70px;
}

.stories-card-specification {
  margin-bottom: 24px;
}

.stories-card-specification:first-child {
  margin-bottom: 32px;
}

.stories-card-type {
  font-size: 16px;
  line-height: 20px;
  color: #999999;
  margin-bottom: 8px;
}

.stories-card-type-name {
  font-family: Bold;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
}

.stories-cards-item .link_arrow {
  margin-top: auto;
  margin-bottom: 34px;
}

.case-studies-stories {
  margin-bottom: 120px;
}

.what-clients-say {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
}

.what-clients-say-title {
  margin-bottom: 24px;
  text-align: center;
}

.what-clients-say-description {
  max-width: 675px;
  text-align: center;
}

.reviews-wrapper {
  margin-bottom: 120px;
}

.rocket-block {
  margin-bottom: 120px;
}

.share-your-experience {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}

.share-your-experience>h2 {
  display: none;
}

.experience-left-side {
  max-width: 682px;
  display: flex;
  flex-direction: column;
}

.experience-left-side h2 {
  margin-bottom: 24px;
}

.experience-left-side .link_arrow {
  margin-top: auto;
}

.experience-left-side-description {
  margin-bottom: 32px;
}

@media screen and (max-width: 1250px) {
  .case-studies-cards {
    margin-bottom: 64px;
    flex-direction: column;
    align-items: center;
  }

  .case-cards-item:not(:last-child) {
    margin-bottom: 64px;
  }

  .client-stories-cards {
    grid-template-columns: repeat(2, 384px);
    width: 700px;
  }

  .share-your-experience {
    flex-direction: column-reverse;
    align-items: center;
  }

  .share-your-experience img {
    margin-bottom: 24px;
  }

  .experience-left-side>h2 {
    display: none;
  }

  .share-your-experience>h2 {
    display: block;
    text-align: center;
    margin-bottom: 24px;
  }

  .experience-left-side-title {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 760px) {
  .case-studies-header {
    margin-top: 48px;
    margin-bottom: 80px;
  }

  .case-studies-header h1 {
    margin-bottom: 24px;
    text-align: left;
  }

  .case-studies-header-description {
    text-align: left;
  }

  .case-cards-item,
  .stories-cards-item {
    width: 100%;
  }

  .stories-cards-item {
    height: auto;
  }

  .stories-cards-item .link_arrow {
    margin-top: 26px;
  }

  .client-stories-title {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -1.5px;
    margin-bottom: 32px;
  }

  .client-stories-cards {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }

  .case-studies-stories {
    margin-bottom: 64px;
  }

  .what-clients-say {
    margin-bottom: 48px;
  }

  .what-clients-say-title {
    margin-bottom: 48px;
  }

  .reviews-wrapper {
    margin-bottom: 64px;
  }

  .rocket-block {
    margin-bottom: 64px;
  }

  .share-your-experience {
    margin-bottom: 64px;
  }

  .share-your-experience img {
    width: 335px;
  }
}
