.services-block-inner {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
  max-width: var(--wp--style--global--wide-size) !important;
}

.services-block{
  .images-grid{
    width: calc(100% - 59.74% - 18px);
    align-self: stretch;
    position: relative;
    display: flex;
    flex-direction: column;
      .image-wrap{
        width: 100%;
        min-height: 193px;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        margin-bottom:21px;
          img{
            position: absolute;
            height: 100%;
            width: 100%;
            object-fit: cover;
            top: 0;
            left: 0;
          }
      }
  }
  .services-grid{
    box-sizing: border-box;
    width: 59.74%;
    background: var(--wp--preset--color--secondary);
    padding: 30px 60px;
    display: flex;
    align-items: center;
    flex-direction: column;
      .img-mobile{
        display: none;
      }
      .item{
        display: flex;
        box-sizing: border-box;
        position: relative;
        width: 100%;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        padding: 11px 0;
        &:not(:first-of-type){
          &:after{
            content:'';
            width:100%;
            display:block;
            position: absolute;
            top:-10px;
            border-top:solid 1px var(--wp--preset--color--tertiary);
          }
        }
        .why-link{
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 1;
        }
        .arrow-container{
          display: flex;
          justify-content: center;
          align-items: center;
          width: 46px;
          height: 46px;
          border-radius: 50%;
          border: 1px solid var(--wp--preset--color--white);
          position: absolute;
          top: 0;
          right: 0;
          transition: all ease-in-out 0.3s;
        }
        &:hover{
          .arrow-container{
            right: -6px;
            transition: all ease-in-out 0.3s;
          }
        }
      }
      *{
        color:var(--wp--preset--color--white);
      }
      .text-container{
        align-self: stretch;
      }
      h3{
        font-size: 32px;
        margin-bottom:20px;
        position: relative;
        padding-right:60px;
          b{
            color:var(--wp--preset--color--tertiary);
          }
      }
  }
}

@media (max-width: 767px){
  .services-block{
    .images-grid{
      display: none;
    }
    .services-grid{
      width: 100%;
      padding: 0 20px;
      border-radius: 10px;
      overflow: hidden;
      .item{
        min-height: auto !important;
        padding:30px 0 0;
          &:after{
            display:none !important;
          }
          .icon-container{
            width:100%;
            margin-bottom:22px;
            border-radius: 10px;
            overflow: hidden;
            aspect-ratio: 1/0.5;
            position: relative;
          }
          .img-mobile{
            display: block;
            position: absolute;
            height: 100%;
            width: 100%;
            object-fit: cover;
            top: 0;
            left: 0;
          }
          .arrow-container{
            width: 31px;
            height: 31px;
            svg{
              width:20px !important;
              height:23px !important;
            }
          }
      }
    }
  }
}