/* services */

.services-banner {
    padding-left: 5%;
    padding-top: 33px;
    padding-bottom: 15px;
    flex-direction: column;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    width: 100%;
    display: flex;
    height: 189px;
    gap: 15px;
    position: relative;
    border-radius: 4px;
    margin-bottom: 20px;
}

.services-banner h1, .services-banner h2, .services-text {
    color: white;
    width: 65%;
}

.services-cut-img {
    position: absolute;
    bottom: 0;
    right: 65px;
    max-width: 300px;
}

@media (max-width: 868px) {
  .services-cut-img {
   right: 0px;
   width: 250px;
  }
}

@media (max-width: 768px) {
  .services-cut-img {
   display: none;
  }
  .services-banner {
    height: auto;
  }
}


/* end  */