.seo-block .block-holder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}
.seo-block .block-holder .side {
  width: 48%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  height: auto;
}
.seo-block .block-holder .left-side {
  position: relative;
  z-index: 1;
  padding: 30px;
  border-radius: 8px;
  overflow: hidden;
}
.seo-block .block-holder .left-side:before {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.seo-block .block-holder .right-side {
  border: 1px solid var(--stroke-thirdly);
  border-radius: 8px;
  padding: 30px;
}
.seo-block .block-title {
  color: var(--second);
  z-index: 3;
  text-align: left;
}
.seo-block .block-desc {
  max-height: 500px;
  overflow-y: auto;
  width: 100%;
  padding-right: 15px;
}

@media (max-width: 769px) {
  .seo-block .block-holder {
    flex-direction: column;
  }
  .seo-block .block-holder .side {
    width: 100%;
  }
}
@media (max-width: 498px) {
  .seo-block .block-holder .right-side {
    padding: 20px;
  }
}

/*# sourceMappingURL=block.css.map */
