.section__servicesall {
  margin-top: 58px;
}
.section__mbr {
}
.section__servicesall__container {
}
.section__servicesall__body {
  display: flex;
  flex-direction: column;
}
.section__servicesall .breadcrumbs {
  color: var(--color-black);
}
.section__servicesall__head {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-end;
}
.section__servicesall__title {
  font-family: var(--font-varela);
  font-size: 160px;
  line-height: 0.8;
  color: var(--color-lightgray);
}
.section__servicesall__subtitle {
  max-width: 420px;
}
.subtitle__mbr {
}
.section__servicesall__inner {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.section__servicesall__category {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--color-main-30);
}
.section__servicesall__items {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.section__servicesall__item {
  border-bottom: 1px solid var(--color-black);
  padding: 24px 36px;
  display: flex;
  gap: 24px;
  align-items: center;
  min-height: 146px;
  overflow: hidden;
  position: relative;
}
.section__servicesall__img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  transition: transform .7s ease;
  display: block;
  z-index: 1;
  transform: translateX(-100%);
}
.section__servicesall__img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 93%);
  pointer-events: none;
  z-index: 1;
}
.section__servicesall__img img {
  width: 420px;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section__servicesall__item__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 0;
  transition: all .7s ease;
}
.section__servicesall__link {
  color: var(--color-lightdark);
  font-size: var(--font-size-16);
  line-height: 1.4;
  display: flex;
  gap: 8px;
  align-items: center;
}
.section__servicesall__link .icon {
  width: 14px;
  height: 8px;
  color: var(--color-lightdark);
}
.section__servicesall__link .icon use {
  transition: all 0.3s ease;
}
.icon {
}
.section__servicesall__text {
  margin-left: auto;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-black-60);
  transition: all 0.3s ease;
  max-width: 400px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section__servicesall__info {
  display: contents;
}
@media (any-hover: hover) {
  .section__servicesall__item:hover .section__servicesall__img {
    transform: translateX(0);
  }
  .section__servicesall__item:hover .section__servicesall__item__title {
    margin-left: 420px;
  }
  .section__servicesall__item:hover .section__servicesall__text {
    color: var(--color-black);
  }
  .section__servicesall__item:hover .section__servicesall__link,
  .section__servicesall__item:hover .section__servicesall__link .icon {
    color: var(--color-black);
  }
}
@media (max-width: 1280px) {
  .section__servicesall__head {
    margin-top: 24px;
  }
  .section__servicesall__title {
    font-size: 120px;
  }
  .section__servicesall__subtitle {
    max-width: 320px;
  }
  .section__servicesall__inner {
    margin-top: 48px;
    gap: 16px;
  }
  .section__servicesall__category {
    font-size: 15px;
  }
  .section__servicesall__item {
    padding: 20px 36px;
  }
  .section__servicesall__img img {
    width: 320px;
  }
  .section__servicesall__link {
    font-size: var(--font-size-15);
  }
  .section__servicesall__text {
    font-size: 15px;
    max-width: 300px;
  }
  @media (any-hover: hover) {
    .section__servicesall__item:hover .section__servicesall__item__title {
      margin-left: 320px;
    }
  }
}
@media (max-width: 992px) {
  .section__servicesall {
    margin-top: 56px;
  }
  .section__servicesall__head {
    margin-top: 20px;
  }
  .section__servicesall__title {
    font-size: 90px;
  }
  .section__servicesall__subtitle {
    max-width: 180px;
    font-size: 18px;
  }
  .section__servicesall__inner {
    margin-top: 36px;
  }
  .section__servicesall__category {
    font-size: 14px;
  }
  .section__servicesall__item {
    padding: 20px 36px;
    position: relative;
    min-height: 146px;
    justify-content: flex-end;
  }

  .section__servicesall__img {
    transform: translateX(0);
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    max-width: calc(58.621% - 8px);
  }

  .section__servicesall__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .section__servicesall__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: calc(39.815% - 8px);
  }
  .section__servicesall__link {
    font-size: var(--font-size-12);
  }
  .section__servicesall__text {
    font-size: 14px;
    max-width: none;
  }
}
@media (max-width: 560px) {
  .section__servicesall {
    margin-top: 50px;
  }
  .section__servicesall__head {
    margin-top: 36px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .section__servicesall__title {
    font-size: 80px;
  }
  .section__servicesall__subtitle {
    max-width: none;
    font-size: 17px;
  }
  .section__servicesall__items {
    gap: 24px;
  }
  .section__servicesall__item {
    padding: 0;
    padding-bottom: 36px;
    position: relative;
    min-height: auto;
    flex-direction: column;
    gap: 16px;
  }
  .section__servicesall__item__title {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .section__servicesall__text {
    text-align: center;
  }
  .section__servicesall__img {
    position: relative;
    max-width: 400px;
    max-height: 170px;
  }
  .section__servicesall__img::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 1) 100%);
  }
  .section__servicesall__img img {
    max-height: 170px;
  }
  .section__servicesall__info {
    gap: 8px;
    max-width: none;
  }
}
