.services-page {
  padding: 50px 0;
  background: url('../img/services-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.services-page__inner {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.services-page__top {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  color: #656565;
}

.breadcrumbs__item {
  transition: color 300ms ease-out;
}

.breadcrumbs__item:hover {
  color: var(--yellow-primary);
}

.services-page__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  color: #303030;
  padding-left: 40px;
  border-left: 3px solid var(--yellow-primary);
}

.services-page__caption {
  font-size: 16px;
  line-height: 1.4;
  color: #656565;
  width: 900px;
}

@media screen and (max-width: 1024px) {
  .services-page {
    padding: 50px 20px;
  }

  .services-page__inner {
    gap: 50px;
  }
}

@media screen and (max-width: 768px) {
  .services-page__inner {
    gap: 40px;
  }

  .services-page__caption {
    width: 100%;
  }

  .services-page__title {
    font-size: 24px;
    padding-left: 20px;
  }

  .services-page__caption {
    font-size: 14px;
  }

  .services-page {
    padding: 20px 15px;
  }

  .services-page__top {
    gap: 30px;
  }
}