/* CSS Document */
.home-banner {
  position: relative;
  height: 100vh;
}
.home-banner .bnn {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.home-banner .bnn:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 100%;
  background: url(../img/bnn-home-charleston-skyline.svg) no-repeat bottom;
  background-size: contain;
}
.home-banner .bnn img {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}
.home-banner .container {
  padding-top: 194px;
  height: 100%;
  position: relative;
  display: flex;
  gap: 60px;
  justify-content: start;
  align-items: self-start;
  opacity: 0;
}
.home-banner.ready .container {
  opacity: 1;
  animation: fadeInUp .6s both;
}
.home-banner .charlie,
.home-banner .charlie img {
  height: 100%;
  padding-bottom: 14px;
}
.home-banner .text {}
.home-banner .text h1 {
  font-family: "Roshelyn Typeface", serif;
  font-size: 83px;
  font-weight: 700;
  line-height: 1em;
  text-shadow: 0px 4px 0px var(--light-gray, #F5F5F5);
  margin: 11px 0;
}
.home-banner .text h1 span {
  display: block;
  font-size: 60px
}
.home-banner .text p {
  max-width: 474px;
  color: var(--dark-blue, #002F6C);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3em;
  letter-spacing: 0.6px;
  margin: 0 0 15px;
  padding: 15px 0 0;
  border-top: solid 3px #fff;
}
.home-banner .text li {
  margin-bottom: 15px;
}
.home-banner a {
  color: #002F6C;
}
.home-banner a:hover {
  color: #FF8DA1;
}

@media (max-width: 991px) {
  .home-banner {
    max-height: 593px;
  }
  .home-banner .text h1 {
    font-size: 43px;
  }
  .home-banner .text h1 span {
    display: block;
    font-size: 31px
  }
  .home-banner .text p {
    font-size: 14px;
  }
  .home-banner .text .btn-layout {
    padding: 11px 15px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .home-banner {}
  .home-banner .container {
    gap: 0;
    padding-top: 140px;
  }
  .home-banner .charlie,
  .home-banner .charlie img {
    height: 200px;
    padding-bottom: 0;
    margin-left: 2vw;
  }
}
@media (max-width: 768px) {
  .home-banner {}
  .home-banner .container {
    flex-direction: column;
    gap: 10px;
    align-items: anchor-center;
  }
  .home-banner .charlie,
  .home-banner .charlie img {
    height: 150px;
    padding-bottom: 0;
    margin-right: 0;
    margin-left:0
  }
} 