.banner {
  position: relative;
}
.banner-cover {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 500px;
}
.banner-cover img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .banner-cover {
    height: 300px;
  }
  .banner-cover img {
    display: none;
  }
}
.banner-body {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 75px;
  color: #FFF;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .banner-body {
    padding: 0 15px;
    gap: 20px;
  }
}
.banner-body.center {
  text-align: center;
}
.banner-body .title {
  font-size: 50px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .banner-body .title {
    font-size: 32px;
  }
}
.banner-body .text {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .banner-body .text {
    font-size: 16px;
  }
}

/*# sourceMappingURL=banner.css.map */
