.story {
  background-color: rgba(153, 205, 50, 0.6);
  padding-top: 17rem;
  padding-bottom: 17rem;
}

.story-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.story-content {
  display: flex;
  flex-direction: column;

  max-width: 58rem;
}

.story-heading {
  font-family: "Georgia", sans-serif;
  font-weight: 700;
  font-size: 5rem;
  line-height: 157%;
  color: #000;
}

.story-heading + * {
  margin-bottom: 3rem;
}

.story-text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 157%;
  color: #000;
}

.story-text + * {
  margin-bottom: 5rem;
}

.story-video-wrapper {
}

.story-video {
  position: relative;
}

.story-video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.story-video-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.2);

  border-radius: 18px;
}

.story-video-obj {
  border-radius: 18px;
  max-width: 100%;
  height: auto;

  vertical-align: top;
}

/*---------------------media---------------------*/

@media (max-width: 1440px) {
  .story {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .story-heading {
    font-size: 4rem;
    line-height: 140%;
  }
}

@media (max-width: 760px) {
  .story {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .story-heading {
    font-size: 3rem;
    line-height: 120%;
  }
}

@media (max-width: 630px) {
  .story {
    padding-top: 3rem;
    padding-bottom: 1rem;
  }

  .story-heading {
    font-size: 2.5rem;
    line-height: 100%;
  }

  .story-row {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }

  .story-heading {
    margin-bottom: 2rem;
    font-size: 3rem;
  }
}
