.section-chess__heading {
  margin: 50px 0;
}
.section-chess__rows {
  position: relative;
}
.section-chess__rows::before {
  content: "";
  height: calc((var(--sections) - 1) / var(--sections) * 100%);
  width: 100%;
  background: #EFF0F1;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}

.chess-row {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 320px 1fr;
  align-items: start;
  margin-bottom: 100px;
}
.chess-row__background-wrapper {
  grid-area: 1/1/2/4;
  position: relative;
  width: 100%;
  height: 100%;
}
.chess-row__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chess-row__content {
  grid-area: 1/2/2/3;
  position: relative;
  padding: 10px 15px 20px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  translate: 0 50px;
}
.chess-row__content::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 60%;
  height: 75%;
  opacity: 0.06;
  background-image: var(--background-icon);
  background-repeat: no-repeat;
  background-size: auto 110%;
}
.chess-row__content h1,
.chess-row__content h2,
.chess-row__content h3,
.chess-row__content h4,
.chess-row__content h5,
.chess-row__content h6 {
  margin-bottom: 0.5em;
  font-family: "Barlow";
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}
.chess-row__content p:not(:last-child) {
  margin-bottom: 1em;
}
.chess-row__icon {
  max-width: 60px;
  max-height: 60px;
  margin-bottom: 10px;
}
.chess-row--odd .chess-row__content {
  background: #03974A;
}
.chess-row--odd .chess-row__content::before {
  right: 0;
}
.chess-row--even .chess-row__content {
  background: #EF8F00;
}
.chess-row--even .chess-row__content::before {
  left: 0;
}

@media (min-width: 360px) {
  .chess-row {
    margin-bottom: 100px;
  }
  .chess-row__background-wrapper {
    grid-area: 1/1/2/6;
  }
  .chess-row__content {
    padding: 10px 15px 20px;
  }
  .chess-row__content h1,
  .chess-row__content h2,
  .chess-row__content h3,
  .chess-row__content h4,
  .chess-row__content h5,
  .chess-row__content h6 {
    font-size: 26px;
  }
  .chess-row--odd .chess-row__content {
    grid-area: 1/2/2/4;
    margin-right: 20px;
  }
  .chess-row--even .chess-row__content {
    grid-area: 1/1/2/3;
    margin-left: 20px;
  }
}
@media (min-width: 768px) {
  .section-chess__heading {
    margin: 75px 0;
  }
  .chess-row {
    grid-template-columns: 1fr 50px 620px 50px 1fr;
    margin-bottom: 100px;
  }
  .chess-row__content {
    min-height: 500px;
    padding: 40px 60px 60px;
    font-size: 16px;
    line-height: 1.5;
  }
  .chess-row__content h1,
  .chess-row__content h2,
  .chess-row__content h3,
  .chess-row__content h4,
  .chess-row__content h5,
  .chess-row__content h6 {
    margin-bottom: 1em;
    font-size: 36px;
  }
  .chess-row__icon {
    max-width: 90px;
    max-height: 90px;
    margin-bottom: 35px;
  }
  .chess-row--odd .chess-row__background-wrapper {
    grid-area: 1/1/2/4;
  }
  .chess-row--odd .chess-row__content {
    grid-area: 1/3/2/5;
    margin: 0;
  }
  .chess-row--even .chess-row__background-wrapper {
    grid-area: 1/3/2/6;
  }
  .chess-row--even .chess-row__content {
    grid-area: 1/2/2/4;
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .section-chess__heading {
    margin: 100px 0;
  }
  .chess-row {
    grid-template-columns: 1fr 70px 400px 200px 400px 70px 1fr;
    margin-bottom: 200px;
  }
  .chess-row__content {
    min-height: 600px;
    padding: 80px;
    translate: 0 80px;
  }
  .chess-row__content h1,
  .chess-row__content h2,
  .chess-row__content h3,
  .chess-row__content h4,
  .chess-row__content h5,
  .chess-row__content h6 {
    font-size: 44px;
  }
  .chess-row--odd .chess-row__background-wrapper {
    grid-area: 1/1/2/6;
  }
  .chess-row--odd .chess-row__content {
    grid-area: 1/4/2/7;
  }
  .chess-row--even .chess-row__background-wrapper {
    grid-area: 1/3/2/8;
  }
  .chess-row--even .chess-row__content {
    grid-area: 1/2/2/5;
  }
}
@media (min-width: 1680px) {
  .chess-row {
    grid-template-columns: 1fr 140px 680px 680px 140px 1fr;
    margin-bottom: 240px;
  }
  .chess-row__content {
    min-height: 700px;
    padding: 55px 140px 80px;
  }
  .chess-row__content h1,
  .chess-row__content h2,
  .chess-row__content h3,
  .chess-row__content h4,
  .chess-row__content h5,
  .chess-row__content h6 {
    font-size: 52px;
  }
  .chess-row--odd .chess-row__background-wrapper {
    grid-area: 1/1/2/5;
  }
  .chess-row--odd .chess-row__content {
    grid-area: 1/4/2/6;
  }
  .chess-row--even .chess-row__background-wrapper {
    grid-area: 1/3/2/8;
  }
  .chess-row--even .chess-row__content {
    grid-area: 1/2/2/4;
  }
}

/*# sourceMappingURL=section-chess.css.map */
