/**
 * Header / Banner CSS
 */

.banner {
  min-height: 740px;
}

.banner .inner {
  padding: 60px 0 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1020px;
  margin: 0 auto;
}
.banner .logo {
  padding: 30px;
}
.banner .logo a {
  display: inline-block;
  width: auto;
}
.banner img {
  max-width: 120px;
}

.banner h1 {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  margin-top: 80px;
  text-align: center;
  position: relative;
  padding-bottom: 60px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
}

/* .banner h1::after {
  content: url(./images/title-stars.png);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
} */

/* Responsive Styles */
@media (max-width: 1400px) {
  .banner {
    min-height: 650px;
  }
  .banner h1 {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .banner h1 {
    font-size: 40px;
  }
  .banner {
    min-height: 60vh;
  }
}

@media (max-width: 575px) {
  .banner {
    min-height: 700px;
  }
  .banner h1 {
    font-size: 35px;
  }
}
