.Testimonials {
  max-width: 1765px;
  margin: 0 auto 128px;
}

.Testimonials h2 {
  font-size: 39px;
  line-height: 53px;
  text-align: center;
  margin-bottom: 76px;
}

.Testimonials .Testimonials-list {
  display: flex;
}

@media (max-width: 1600px) {
  .Testimonials .Testimonials-list {
    margin: 0 80px 128px;
  }
}

@media (max-width: 1200px) {
  .Testimonials .Testimonials-list {
    margin: 0 0px 76px;
  }
}

.Testimonials .Testimonials-list .slick-arrow {
  z-index: 1;
}

.Testimonials .Testimonials-item {
  display: flex;
  align-items: flex-start;
}

.Testimonials .Testimonials-item:nth-child(even) {
  margin-top: 63px;
}

.Testimonials .Testimonials-item_badge {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  margin-right: 15px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.Testimonials .Testimonials-item_wrap {
  border: 1px solid;
  border-radius: 20px;
  overflow: hidden;
  width: 349px;
}

.Testimonials .Testimonial-item_stars {
  display: flex;
  justify-content: center;
  padding: 13px 0;
}

.Testimonials .Testimonials-item_content {
  padding: 23px 40px 10px;
}

.Testimonials .Testimonials-item_content p {
  font-size: 25px;
  line-height: 32px;
  margin: 22px 0;
}

.Testimonials .Testimonials-item_content small {
  font-size: 18px;
  line-height: 26px;
}

@media (max-width: 768px) {
  .Testimonials {
    margin: 0 20px 76px;
  }

  .Testimonials h2 {
    margin-bottom: 40px;
  }

  .Testimonials .Testimonials-item {
    margin: 0 10px !important;
  }

  .Testimonials .Testimonials-list .slick-prev {
    left: -15px;
  }

  .Testimonials .Testimonials-list .slick-next {
    right: -15px;
  }
}

.TextWithImage {
  max-width: 1960px;
  padding: 0 20px;
  margin: 0 auto;
}

.TextWithImage .TextWithImage-inner {
  display: flex;
  gap: 8px;
}

.TextWithImage img {
  width: 50%;
  object-fit: cover;
  border-radius: 20px;
}

.TextWithImage .TextWithImage-content {
  width: 50%;
  padding: 85px 100px;
  background-color: #ebf8e4;
  border-radius: 20px;
}

.TextWithImage .TextWithImage-content h2 {
  font-size: 59px;
  line-height: 1.2;
  margin: 0;
}

.TextWithImage .TextWithImage-content p {
  font-size: 22px;
  line-height: 30px;
  margin: 17px 0 57px;
}

.TextWithImage .TextWithImage-content p a {
  text-decoration: underline;
}

.TextWithImage .TextWithImage-content .TextWithImage-iconList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 37px;
  margin: 0 -8px;
}

.TextWithImage .TextWithImage-content .TextWithImage-iconList .svg_icon {
  width: 25%;
  padding: 0 8px;
}

.TextWithImage .TextWithImage-content .TextWithImage-iconList .svg_icon svg {
  width: 100%;
}

.TextWithImage .TextWithImage-buttons {
  margin-top: 57px;
  display: flex;
  gap: 27px;
}

.TextWithImage .TextWithImage-buttons a {
  font-size: 19px;
  font-weight: bold;
  padding: 13px 31px;
  border-radius: 5px;
}

.TextWithImage .TextWithImage-buttons a:first-child {
  background-color: black;
  color: white;
}

.TextWithImage .TextWithImage-buttons a:last-child {
  border: 1px solid;
  color: black;
}

.TextWithImage .TextWithImage-badge {
  background-color: #81c72f;
  border-radius: 20px;
  text-align: center;
  padding: 64px 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.TextWithImage .TextWithImage-badge h2 {
  font-weight: bold;
  font-size: 49px;
  line-height: 1.2;
  margin: 0 auto 39px;
  position: relative;
  max-width: max-content;
  padding: 0 14px;
}

.TextWithImage .TextWithImage-badge h2 span {
  display: block;
  font-weight: normal;
  font-size: 39px;
  line-height: 53px;
}

.TextWithImage .TextWithImage-badge h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  position: absolute;
  left: 0;
  bottom: -10px;
  background-image: url("./title-line-white.png");
  background-repeat: repeat-x;
  background-size: cover;
}

.TextWithImage .TextWithImage-badge p {
  font-size: 22px;
  line-height: 30px;
}

.TextWithImage .TextWithImage-badge p a {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .TextWithImage .TextWithImage-inner {
    flex-direction: column;
  }

  .TextWithImage .TextWithImage-inner img {
    width: 100%;
  }

  .TextWithImage .TextWithImage-inner .TextWithImage-content {
    width: 100%;
    padding: 40px 20px;
  }

  .TextWithImage .TextWithImage-inner .TextWithImage-content h2 {
    font-size: 32px;
  }

  .TextWithImage .TextWithImage-inner .TextWithImage-content p {
    font-size: 18px;
  }

  .TextWithImage .TextWithImage-inner .TextWithImage-content svg {
    width: 100%;
  }

  .TextWithImage .TextWithImage-inner .TextWithImage-content .TextWithImage-iconList {
    column-gap: 15px;
    row-gap: 5px;
    justify-content: center;
  }

  .TextWithImage .TextWithImage-inner .TextWithImage-content .svg_icon {
    width: calc(100% / 3 - 15px);
  }

  .TextWithImage .TextWithImage-inner .TextWithImage-buttons a {
    padding: 13px 21px;
    font-size: 16px;
    text-align: center;
  }

  .TextWithImage .TextWithImage-badge h2 {
    font-size: 32px;
    line-height: 40px;
    padding-bottom: 20px;
  }

  .TextWithImage .TextWithImage-badge h2 span {
    font-size: 16px;
    line-height: 24px;
  }

  .TextWithImage .TextWithImage-badge p {
    margin: 0 20px;
  }
}

.newsletter-section {
  display: flex;
  flex-wrap: nowrap;
}

.newsletter-section .newsletter-section-social {
  border-left-width: 0 !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding: 0 30px 0 48px !important;
  flex: 1;
  margin-left: -17px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .newsletter-section .newsletter-section-social {
    margin-left: 0 !important;
    margin-top: -17px !important;
    border-left: 1px solid #fff !important;
    padding: 46px 0 20px !important;
    border-top-width: 0 !important;
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 20px !important;
  }
}

.newsletter-section .newsletter-section-social h3 {
  color: white;
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.newsletter-section .newsletter-section-social h3 a {
  display: block;
}

.newsletter-section .newsletter-section-social h3 a:hover {
  color: white;
}

.newsletter-section .newsletter-section-social ul li:not(:last-child) {
  margin-right: 8px;
}

.newsletter-section .grid {
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 53px 60px;
  margin: 0;
}

@media (max-width: 768px) {
  .newsletter-section .grid {
    padding: 25px 30px;
  }
}

.newsletter-section .newsletter-section_inner {
  display: flex;
  gap: 30px;
}

.newsletter-section .newsletter-section_inner .section-block__header {
  max-width: 501px;
  margin-top: 0;
  padding-top: 0;
}

.newsletter-section .newsletter-section_inner .section-block__title {
  font-size: 38px;
  line-height: 53px;
  font-weight: bold;
  color: white;
  text-transform: none;
  margin-bottom: 10px;
  text-align: left;
}

@media (max-width: 480px) {
  .newsletter-section .newsletter-section_inner .section-block__title {
    font-size: 32px;
  }
}

.newsletter-section .newsletter-section_inner .section-block__subtext p {
  font-size: 22px;
  line-height: 30px;
  text-align: left;
}

@media (max-width: 768px) {
  .newsletter-section .newsletter-section_inner {
    flex-direction: column;
  }
}

.newsletter-section .form-vertical {
  display: flex;
  align-items: center;
}

.newsletter-section .form-vertical .contact-form {
  width: 464px;
}

.newsletter-section .form-vertical .contact-form .input-group {
  padding: 17px 20px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.newsletter-section .form-vertical .contact-form .input-group .input-group__field {
  border: none;
  outline: none;
}

.newsletter-section .form-vertical .contact-form .input-group .input-group__field::placeholder {
  color: #626262;
}

.newsletter-section .form-vertical .contact-form .input-group button {
  background-color: #81c72f;
  border-radius: 10px;
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .newsletter-section {
    flex-direction: column;
  }
}