.services-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin: 50px 0;
    padding-left: 60px;
    box-sizing: border-box;
}

    .services-text-holder {
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}
 .e-con-inner {
            margin: 0 !important;
        }

        .e-con {
            --container-max-width: 100% !important;
        }

.services-left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
}

.services-left h1 { font-size: 36px; margin-bottom: 20px; }
.services-left p  { font-size: 18px; margin-bottom: 20px; }

.services-button {
    padding: 8px 16px;
    font-size: 16px;
    background: #F57840;
    color: #fff;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    width: 20%;
}

.services-right{
    flex: 0 0 50%;
    display:flex;
    justify-content:center;
    
}

.services-images{
    position:relative;
    width:100%;
    max-width:400px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.services-images img {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,.2);
    transition: all .5s ease;
    cursor: pointer;
}

/* верхние 3 видимы */
.services-images img.spos1 { z-index: 8; opacity: 1; }
.services-images img.spos2 { z-index: 7; opacity: .6; bottom: -25px; right: 25px; }
.services-images img.spos3 { z-index: 6; opacity: .4; bottom: -50px; right: 50px; }

/* остальные скрыты, но участвуют в цикле */
.services-images img.spos4,
.services-images img.spos5,
.services-images img.spos6,
.services-images img.spos7,
.services-images img.spos8 {
    opacity: 0;
    z-index: 1;
}

@media (max-width:1024px) {
    .services-container { flex-direction: column; padding: 0 20px; }
    .services-left, .services-right { width: 100%; flex: unset; }
    .services-images { margin-top: 300px;}
}

@media (max-width:600px) {
    .services-left h1 { font-size: 22px; }
    .services-left p  { font-size: 14px; }
    .services-button { width: 60%; }
    .services-images { margin-top: 300px;  margin-left: 50px !important;
    max-width: 400px; /* чуть меньше — ближе к планшетам */}
}
/* === 480px — маленькие телефоны === */
@media (max-width: 480px) {
  .services-left h1 {
    font-size: 20px;
  }

  .services-left p {
    font-size: 13px;
  }

  .services-button {
    width: 60%;
    font-size: 13px;
  }
 .services-right {
  margin-top: 220px !important;
 }
  .services-images {
    margin-left: 100px !important;
    margin-top: 0 !important;
    max-width: 400px; /* чуть меньше — ближе к планшетам */
     /* вместо 70vh — нормальная высота */
  }

  .services-images img.pos2 {
    left: calc(50% - 10%);
    bottom: -30px;
  }

  .services-images img.pos3 {
    left: calc(50% - 20%);
    bottom: -60px;
  }
}
/* === 380px — маленькие телефоны === */
@media (max-width: 380px) {
.services-left h1 {
    font-size: 20px;
  }

  .services-left p {
    font-size: 13px;
  }

  .services-button {
    width: 60%;
    font-size: 13px;
  }
 .services-right {
  margin-top: 150px !important;
 }
  .services-images {
    margin-left: 80px !important;
    margin-top: 0 !important;
    max-width: 400px; /* чуть меньше — ближе к планшетам */
     /* вместо 70vh — нормальная высота */
  }

  .services-images img.pos2 {
    left: calc(50% - 10%);
    bottom: -30px;
  }

  .services-images img.pos3 {
    left: calc(50% - 20%);
    bottom: -60px;
  }
}
