.services {
  display: flex;
  width: 100%;
  flex-direction: row;
  min-height: 100vh; 
}

.services .left-block{
  width: 50%;
  height: 100vh;
}

.services .right-block {
	width: 50%;
	min-height: 100%;
}

.services .left-block{
	position: relative;
	overflow: hidden;
}

.services .left-block .services__item,
.services .left-block .services__item-bg{
	position: absolute; 
	top: 0px; 
	left: 0px;
	
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.services .left-block .services__item-bg{
	z-index: -1;
}

.services .left-block .services__item-bg,
.services .right-block .services-right__image-block{
	will-change: clip-path, transform, border-radius;
}


.services .left-block .services__item:not([data-index="0"]){
	opacity: 0;
}

.services .background-sections {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.services .background-sections > * {
  position: relative;
  z-index: 2;
}

.services .button-group{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 3rem 3.125rem 3rem;
}

.services .button-group .button-services{
  border: 0.0625rem solid white;
  color: white;
}

.services .left-block .services_title{
    color: var(--light);
    font-size: 5.5rem;
    font-weight: 400;
    margin-top: 10rem;
    margin-left: 3.125rem;
}

.services .right-block .services-right {
  width: 100%;
  min-height: 140vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services .right-block .services-right + .services-right{
	margin-top: 6.25rem;
}

.services .right-block .services-right__image-block{
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.services .right-block .layout-1 .services-right__image--top,
.services .right-block .layout-2 .services-right__image--top {
  display: flex;
}

.services .right-block .layout-1 .services-right__image--top .services-right__image-block {
  width: 15.125rem;
  height: 17.125rem;
  position: absolute;
  margin-left: 7.625rem;
  margin-top: -5.1875rem;
}

.services .right-block .layout-2 .services-right__image--top .services-right__image-block {
  width: 11.46875rem;
  height: 15.125rem;
  margin-left: 4.6875rem;
  margin-top: -1.5rem;
}

.services .right-block .layout-3 .services-right__image--top .services-right__image-block {
  width: 15.125rem;
  height: 11.3125rem;
  margin-left: 7.0625rem;
  margin-top: -5.75rem;
}

.services .right-block .services-right__content {
  max-width: 31.125rem;
  margin: 0 auto;
  text-align: center;
}

.services .right-block .services-right__text {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 160%;
  color: var(--dark);
}

.services .right-block .layout-1 .services-right__image--bottom,
.services .right-block .layout-2 .services-right__image--bottom {
  display: flex;
  justify-content: flex-end;
}

.services .right-block .layout-1 .services-right__image--bottom .services-right__image-block {
  width: 13.1875rem;
  height: 13.75rem;
  position: absolute;
  margin-right: 3rem;
  margin-top: -9.875rem;
}

.services .right-block .layout-2 .services-right__image--bottom .services-right__image-block {
  height: 11.3125rem;
  width: 15.125rem;
  margin-bottom: 7.375rem;
}

.services .right-block .layout-3 .services-right__image--bottom .services-right__image-block {
  width: 13.1875rem;
  height: 11.3125rem;
  position: absolute;
  margin-left: 17.1875rem;
  margin-top: -5.6875rem;
}

.services .right-block .services-right:last-of-type{
	padding-bottom: 15.625rem;
}

.services__item {
    pointer-events: none; 
}

.services__item.is-active {
    pointer-events: auto;
}
@media (max-width: 767px) {
  .services{
    flex-direction: column;
  }
  .services .left-block{
    max-height: 16.875rem !important;
    width: auto;
    z-index: 10;
    margin-bottom: 2rem;
  }
  .services .right-block{
    width: 100%;
    position: relative;
  }

  .services .right-block .layout-1 .services-right__image--top .services-right__image-block {
    width: 7.5rem;
    height: 9.6875rem;
    margin-left: 2.5rem;
    margin-top: -1.1875rem;
  }

  .services .right-block .layout-1 .services-right__image--bottom .services-right__image-block {
    width: 6rem;
    height: 7.75rem;
  margin-top: -7.875rem;
  }

  .services .right-block .layout-2 .services-right__image--top .services-right__image-block {
    width: 7.5rem;
    height: 9.6875rem;
    margin-left: 2.5rem;
  }

  .services .right-block .layout-2 .services-right__image--bottom .services-right__image-block {
    width: 7.5rem;
    height: 9.6875rem;
  }

  .services .right-block .layout-3 .services-right__image--top .services-right__image-block {
    width: 7.5rem;
    height: 9.6875rem;
    margin-left: 2.5rem;
  }

  .services .right-block .layout-3 .services-right__image--bottom .services-right__image-block {
    width: 7.5rem;
    height: 9.6875rem;
    margin-left: 9.1875rem;
  }

	.services .button-group{
    margin: 0;
		justify-content: flex-end;
  }
	
  .services .button-group .button-services {
    margin: 1.12rem 2.125rem;
  }

  .services .button-group .button.button--right {
    display: none;
  }

  .services .left-block .services_title {
    font-size: 2.375rem;
    margin-top: 0;
    margin-left: 0;
	padding-top: 1rem;
  }
  .services .right-block .services-right__text {
    font-size: 1.0625rem;
  }
	
	.services .right-block .services-right__content{
		padding-right: 1rem;
		padding-left: 1rem;
	}
}