.content-section {
  /* general */
  --font-family: "Futura PT", sans-serif;
  --block-paddings: 30px 0;
  --block-bg: #ccfaaf;
  --block-text-offset-top: 50px;
  --block-btns-gap: 15px;

  /* title */
  --title-color: #003594;
  --title-offset-bottom: 30px;
  --title-size: 60px;
  --title-weight: 500;

  /* descr */
  --descr-color: #000;
  --descr-offset-bottom: 30px;
  --descr-size: 20px;
  --descr-weight: 400;
  --descr-max-width: 400px;

  position: relative;
  font-family: var(--font-family);
  padding: var(--block-paddings);
  box-sizing: border-box;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-section__text {
  grid-column: 6 span;
  padding-top: var(--block-text-offset-top);
}

.content-section__image {
  grid-column: 6 span;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-section__title {
  margin: 0 0 var(--title-offset-bottom);
  font-weight: var(--title-weight);
  font-size: var(--title-size);
  line-height: 1.2em;
  color: var(--title-color);
}

.content-section__descr {
  margin: 0 0 var(--descr-offset-bottom);
  max-width: var(--descr-max-width);
  font-weight: var(--descr-weight);
  font-size: var(--descr-size);
  line-height: 1.2em;
  color: var(--descr-color);
}

.content-section__btns {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--block-btns-gap);
}

.content-section--v-center {
  align-items: center;
}

.content-section--v-center .content-section__text {
  padding-top: 0 !important;
}

.content-section--before-products .content-section__text {
  grid-column: 7 / 6 span;
}

.content-section--before-products .content-section__image {
  position: absolute;
  right: auto;
  left: -5%;
  top: -23%;
}

.content-section--reverse .content-section__text {
  order: -1;
}

.content-section--before-products.content-section--reverse .content-section__image {
  position: absolute;
  left: auto;
  right: -5%;
  top: -23%;
}

.content-section--before-products.content-section--reverse .content-section__text {
  grid-column: 6 span;
}

@media (max-width: 1200px) {
  .content-section--before-products .content-section__image {
    left: -1%;
    top: -5%;
  }

  .content-section__image img {
    width: 480px !important;
  }
}

@media (max-width: 1024px) {
  .content-section__image {
    position: static !important;
    grid-column: 4 span !important;
  }

  .content-section__text {
    grid-column: 4 span !important;
  }

  .content-section__image img {
    width: 380px !important;
    max-width: 100% !important;
  }

  .content-section {
    --title-offset-bottom: 20px;
    --title-size: 40px;
  }
}

@media (max-width: 768px) {
  .content-section__image {
    position: static !important;
    grid-column: 4 span !important;
  }

  .content-section__text {
    grid-column: 4 span !important;
    margin-top: 30px;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .content-section .content-section__text * {
    text-align: center;
  }

  .content-section__btns {
    justify-content: center;
  }

  .content-section--before-products .content-section__image img {
    width: 380px;
  }

  .content-section--reverse .content-section__text {
    order: 0;
  }
}
