.page .section {
  margin-bottom: 40px;
}

.view-sm {
  display: none;
}

.view-xl {
  display: none;
}

.solutions-landing .banner {
  position: relative;
  height: 200px;
  color:white;
}

.solutions-landing .banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding-top: 0;
  background-image: url(./assets/images/banner-sm.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  overflow: hidden;
}

.solutions-landing .banner__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-black);
}

.solutions-landing .banner__content {
  position: absolute;
  top: 35%;
  left: 0;
  width: 50%;
  padding-left: 34px;
  transform: translateY(-50%);
  z-index: 2;
}

.section-flexibleTerms {
  padding: 83px 55px;
}

.section-flexibleTerms__items {
  display: grid;
  grid-template-columns: 1fr;
}

.section-flexibleTerms__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-flexibleTerms__title {
  font-size: 24px;
  font-weight: 700;
}

.section-flexibleTerms__descr {
  font-size: 17px;
}

.sols__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-content: space-between;
}

.sols__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  font-size: 17px;
}

.sol__icon {
  margin-bottom: 0;
}

.sol__title {
  font-size: 24px;
  font-weight: 700;
}

.sol__text {
  font-size: 17px;
}

.sol__subtitle {
  font-weight: 700;
}

.sol__list {
  margin: 0;
}

.page button.button-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 5px 0 5px;
  color: #736f73;
  background-color: transparent;
  border:none;
}

.page button.button-arrow .icon {
  width:20px;
  height:20px;
  transform: rotate(90deg);
  transition: transform ease 0.5s;
}

.page button.button-arrow._active .icon{
  transform: rotate(270deg);
}

.page button.button-arrow:hover {
  background-color: #ebebeb;
}

.page button.button-arrow:hover .icon {
  color: red;
}

.sol__list.hidden-list {
  display: flex;
  flex-direction: column;
  gap:20px;
  max-height: 0;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  transition: max-height 1s ease-in-out;
  overflow: hidden;
}

.sol__list.hidden-list p {
  margin-bottom: 0;
}

.hidden-list > li:first-child,
.hidden-list > p:first-child {
  margin-top:20px;
}

.hidden-list > li:last-child,
.hidden-list > p:last-child {
  margin-bottom:20px;
}

.sol__order {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: baseline;
  gap:20px;
  margin-top: auto;
}

.sol-order__value {
  font-size: 24px;
  font-weight: 500;
}

.page .sol-order__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  min-height: 45px;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  background-color: transparent;
}

.page .sol-order__btn:hover {
  color: var(--color-background-content);
  background-color: var(--color-primary);
}

.offer-list {
  display: grid;
  grid-template-columns: 1fr;
  gap:20px;
  padding-left: 0;
  list-style: none;
}

.offer-list__item {
  display: flex;
  flex-direction: column;
  gap:20px;
  margin-bottom: 0;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(60, 60, 60, 0.15);
  list-style-type: none;
}

.offer__icon {
  display: block;
  width: 57px;
  height: 57px;
  margin-bottom: 22px;
  background-position: 0 0;
  background-repeat: no-repeat;
}

.offer-list__item .offer__icon_automation {
  background-image: url(./assets/images/icons/automation.svg);
}

.offer-list__item .offer__icon_relevance {
  background-image: url(./assets/images/icons/relevance.svg);
}

.offer-list__item .offer__icon_economy {
  background-image: url(./assets/images/icons/economy.svg);
}

.offer__title {
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 24px;
  font-weight: 700;
}

#one-form-name {
  margin: 0;
}

@media (min-width: 576px) {
  .view-xs-only {
    display: none;
  }

  .view-sm {
    display: inherit;
  }

  .solutions-landing .banner {
    position: relative;
    height: 340px;
  }

  .solutions-landing .banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    padding-top: 0;
  }

  .solutions-landing .banner__content {
    top: 20%;
  }
  .solutions-landing .banner__title {
    color: white;
  }
}

@media (min-width: 768px) {
  .solutions-landing .banner__title {
    font-size: 25px;
  }

  .offer-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .sols__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-flexibleTerms__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

@media (min-width: 992px) {
  .solutions-landing .banner__title {
    font-size: 32px;
  }

  p.feedback__text_closed ~ .btn-about {
    bottom: 0;
  }

  .offer-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .sol__icon {
    margin-bottom: 40px;
  }

  .sol__order {
    flex-direction: row;
    align-items: flex-end;
    gap: 0;
  }
}

@media (min-width: 1200px) {
  .view-xl {
    display: inherit;
  }

  .solutions-landing .banner {
    position: relative;
    height: 270px;
  }

  .solutions-landing .banner__bg {
    background-image: url(./assets/images/banner-lg.jpg);
    background-position-x: -110px;
  }

  .solutions-landing .banner__content {
    top:50%;
    padding-left: 70px;
  }

  .feedback__text_closed {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (min-width: 1366px) {
  .solutions-landing .banner__content {
    padding-left: 140px;
  }

  .solutions-landing .banner__content p {
    width: 350px;
  }

  .solutions-landing .banner__bg {
    background-image: url(./assets/images/banner-xl.jpg);
    background-position-x: 10%;
  }
}