.research-hero {
  position: relative;
  padding-top: 40px;
  padding-bottom: 80px;
}

.research-hero__container {
  display: flex;
  align-items: flex-start;
}

.research-hero__heading {
  font-size: 48px;
  line-height: 1.2;
  font-family: var(--font-playfair);
  margin-bottom: 16px;
  color: var(--white);
  font-weight: 500;
}

.section__text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--white);
  font-weight: 400;
  max-width: 550px;
}

.research-hero__bg {
  position: absolute;
  top: -53px;
  left: 0;
  width: 100%;
  height: calc(100% + 53px);
  object-fit: cover;
  z-index: -1;
}

@media (max-width: 768px) {
  .research-hero {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .research-hero__heading {
    font-size: 44px;
  }

}