.bg-dark {
  background-color: #0b2f35 !important;
}

#banner {
  background-image: url("/assets/img/banner/sobre-web.webp");
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
}
#banner h1 {
  color: #fff;
  background-color: #3055f6;
  font-family: "UnitRoundedWeb";
  font-weight: 800;
  font-style: italic;
  font-size: 4rem;
  line-height: 0.9;
  margin-bottom: 15px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 150px 0 10px;
}
@media (max-width: 991.98px) {
  #banner h1 {
    font-size: 2.5rem;
  }
}
#banner p {
  color: #fff;
}
#banner p span {
  color: #89f3e4;
  font-weight: 600;
}
#banner .icon {
  position: absolute;
  top: -5px;
  right: 11%;
  width: 120px;
  height: 300px;
  background-image: url("/assets/img/pin-white.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 991.98px) {
  #banner .icon {
    display: none;
  }
}

.video {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: #888;
  background-position: center;
  background-size: cover;
  border-radius: 30px;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}
.video.paused::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 8rem;
  font-weight: 800;
  transition: 0.3s ease-in-out;
  content: "\f144";
  font-family: "Font Awesome 5 Pro";
  background-color: rgba(0, 0, 0, 0.5);
  color: #89f3e4;
}
.video.paused:hover::after {
  font-size: 9rem;
}
