/* Image Section */
.img-section {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: var(--banner-lg-height, 650px);
  margin-bottom: var(--block-space);
}

.content > .img-section:first-child {
  margin-top: calc(-1 * var(--content-top-space));
  margin-bottom: var(--content-top-space);
}

.img-section__media {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.img-section__media img,
.img-section__media .video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-section__media .video:before {
  display: none;
}

.img-section_type_banner {
  height: auto !important;
}

.img-section_type_banner .img-section__media {
  position: static;
  height: auto;
}

.img-section_type_banner .img-section__media img {
  height: auto;
}

.img-section__overlay {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.img-section__main {
  height: 100%;
  position: relative;
}

.img-section__main > .container {
  height: 100%;
}

.img-section__inner {
  display: flex;
  align-items: flex-end;
  padding: var(--banner-lg-padding, 80px) 0;
  position: relative;
  height: 100%;
}

.img-section__content {
  max-width: 39em;
  font-weight: 500;
}

.img-section__content .h1 {
  font-weight: 500;
  margin: 0 0 16px;
}

.img-section__content p:last-child {
  margin-bottom: 0;
}

.img-section__content a:not([class]) {
  color: var(--accent-color);
}

@media (min-width: 1200px) {
  .img-section__content {
    font-size: 20px;
    line-height: 28px;
  }

  .img-section__content .h1 {
    font-size: 70px;
    line-height: 80px;
  }

  .img-section__btn {
    margin-top: 16px;
  }
}
/* ! Image Section */
