.runda_about {
  position: relative;
  overflow: hidden;
  padding: var(--component-gap) 0 calc(var(--text-gap-lg) * 2);
  background: var(--bg-primary);
}

.runda_about_svg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22.4%;
  aspect-ratio: 430/1007;
  transform: translate(30%, 8%);
}

.runda_about .container {
  position: relative;
}

.runda_about_bgText {
  color: rgba(174, 166, 143, 0.14);
  font-family: var(--font-family-ovo);
  font-size: 180px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  position: absolute;
  top: calc(var(--component-gap) - 50px);
  left: 0;
  z-index: 1;
}

.runda_about_video {
  width: 61.5%;
  height: fit-content;
  aspect-ratio: 80/45;
  position: absolute;
  right: 0;
  top: calc(0px - (var(--component-gap) / 2 + 20px));
  z-index: 2;
}

.runda_about_video a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.runda_about_video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.runda_about_video_play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.runda_about_content {
  width: 95.4%;
  padding: var(--text-gap) var(--text-gap-lg);
  background: #F8F5EF;
}

.runda_about_content_box {
  width: 40.4%;
  padding-right: 20px;
  padding-bottom: var(--text-gap-lg);
  border-bottom: 1px solid #E5E5E5;
}

.runda_about_content_box .runda-title {
  margin-bottom: 20px;
}

.runda_about_content_text {
  padding-top: var(--text-gap-sm);
}

.runda_about_content_text p {
  min-height: 10px;
}

@media screen and (max-width: 992px) {
  .runda_about_video {
    position: relative;
    width: 100%;
    top: 0;
  }

  .runda_about_content_box {
    width: 100%;
    padding-right: 0;
  }

  .runda_about_content {
    width: 100%;
  }
    .runda_about_bgText{
      font-size: 120px;
      top: 36%;
    }
}
@media screen and (max-width: 768px) {
  .runda_about_bgText{
    top: 28%;
  }
}
@media screen and (max-width: 576px) {
  .runda_about_bgText{
    font-size: 90px;
    top: 24%;
  }
}
@media screen and (max-width: 480px) {
  .runda_about_bgText{
    font-size: 80px;
    top: 16%;
  }
}