.services-section {
  padding: 60px 0;
}

.services-section .h2 {
  padding: 0 40px 40px;
  text-align: center;
  font-weight: 700;
}

 .prosem-service-section .prosem-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 30px 30px;
 }

 .prosem-service__image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 10px 30px 50px 20px rgba(0, 0, 0, 0.2);
 }

 .prosem-service__list-wrapper {
  width: 100%;
 }

.prosem-service-section .subtitle {
  text-align: center;
  font-size: 24px;
  color: #12131D;
  font-weight: 400;
  padding: 40px 0 16px;
 }

 .prosem-service-section .prosem-service__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 6px;
  }

  .prosem-service-section .service__item {
    background-color: #1b2b5a;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    height: 100px;
    display: flex;
    align-items: center;
    color: var(--prosem-light-color);
    width: 100%;
    position: relative;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: background-color 0.2s ease-in;
  }

  .prosem-service-section .service__item::before {
    background-color: #1b2b5a;
    background: linear-gradient(180deg, #1b2b5a 0%, #12142d 100%);
    content: "";
    width: calc(100%);
    height: calc(100%);
    opacity: 1;
    transition: opacity 0.2s linear;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 16px;
  }

  .prosem-service-section .service__item-anchor {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0 25px;
    z-index: 1;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
  }

  .prosem-service-section .service__item-anchor:active {
    background-color: transparent;
  }

  .prosem-service-section .service__item .service-image {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: 30px;
  }

  .prosem-service-section .service__item .arrow-icon {
    flex-shrink: 0;
    flex-grow: 0;
    max-height: 36px;
    max-width: 36px;
    color: inherit;
    -webkit-filter: invert(100%); /* Safari 6.0 - 9.0 */
    filter: invert(100%);
  }

  .prosem-service-section .service__item .service-title {
    flex-shrink: 1;
    flex-grow: 1;
    font-weight: 700;
    font-size: 24px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: calc(100% - 172px);
  }

  .prosem-service-section .service__item:hover {
    color: #1b2b5a;
    border: 3px solid #1b2b5a;
    background-color: white;
  }

  .prosem-service-section .service__item:hover::before {
    opacity: 0;
  }

  .prosem-service-section .service__item:hover .arrow-icon {
    -webkit-filter: none; /* Safari 6.0 - 9.0 */
    filter: none;
  }

  .prosem-service-section .service__item:hover .service-image {
    -webkit-filter: invert(100%) saturate(0%) brightness(0%); /* Safari 6.0 - 9.0 */
    filter: invert(100%) saturate(0%) brightness(0%);
  }

  @media screen and (min-width: 880px) {
    .prosem-service-section .prosem-service__list {
      grid-template-columns: repeat(2, 1fr);
      max-height: calc(3*106px);
      min-height: 106px;
      overflow: hidden;
    }
  }

  @media (min-width: 1200px) {
    .services-section .h2 {
      padding: 60px 60px 0px;
      font-weight: 400;
    }
  }

  @media screen and (min-width: 1400px) {
    .prosem-service-section {
      padding: 90px 0;
    }

    .prosem-service-section .prosem-section__inner {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      align-items: flex-start;
      gap: 60px;
      max-width: 1320px;
      margin: auto;
      padding: 60px 0;
    }

     .prosem-service__image {
      width: 600px;
    }

    .prosem-service-section .subtitle {
      font-weight: 700;
      padding: 0 0 25px;
    }
  }