.banner {
  position: relative;
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner .container {
  position: relative;
  z-index: 2;
}
.banner .container .row {
  min-height: inherit;
  align-items: center;
}
.banner__image-col {
  min-height: 400px;
}
.banner__content {
  padding: 60px 30px;
  color: #ffffff;
}
.banner__heading {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}
.banner__subtitle {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.4;
}
.banner.text-center .banner__content {
  text-align: center;
}
.banner.p-top {
  padding-top: 80px;
}
.banner.p-bottom {
  padding-bottom: 80px;
}
.banner.m-top {
  margin-top: 80px;
}
.banner.m-bottom {
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .banner {
    background-size: 60%;
  }
}
@media (max-width: 768px) {
  .banner {
    min-height: 400px;
    background-size: cover;
    background-position: center;
  }
  .banner__image-col {
    display: none;
  }
  .banner__heading {
    font-size: 36px;
  }
  .banner__subtitle {
    font-size: 18px;
  }
  .banner__content {
    padding: 40px 20px;
  }
}
@media (max-width: 480px) {
  .banner {
    min-height: 300px;
  }
  .banner__heading {
    font-size: 28px;
  }
  .banner__subtitle {
    font-size: 16px;
  }
  .banner__content {
    padding: 30px 15px;
  }
}
