#tiles {
  color: var(--color-primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#tiles .image img {
  width: 100%;
  height: auto;
}
#tiles .text .description {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 599px) {
  #tiles .image {
    margin: 0 -16px;
  }
}
@media (min-width: 600px) and (max-width: 1023px) {
  #tiles .image {
    margin: 0 -24px;
  }
}
@media screen and (max-width: 1023px) {
  #tiles .text {
    padding: 30px 0 80px 0;
  }
}
@media screen and (min-width: 1024px) {
  #tiles:before {
    content: ' ';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: calc(50dvw - 958px);
    height: 200px;
    clip-path: polygon(0 100%, 100% 0, 0 0);
    background: var(--color-primary);
  }
  #tiles:after {
    content: ' ';
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: var(--color-primary);
  }
  #tiles .tile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  #tiles .tile .image {
    font-size: 0;
  }
  #tiles .tile .text {
    padding: 17px 111px;
  }
  #tiles .tile_right .image {
    order: 2;
  }
  #tiles .tile_right .text {
    order: 1;
  }
}
