/* GENERAL */
/* VARIABLES */
/* TYPOGRAPHY */
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
/* COLORS */
/* FUNCTIONS */
/* BREAKPOINTS */
/* MIXINS */
.top-banner {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .top-banner {
    margin-bottom: 15px;
  }
}
.top-banner img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-content {
  margin-bottom: 25px;
  float: left;
  width: 100%;
}
.top-content p {
  font-size: 18px;
  font-weight: 300;
  color: #000;
  line-height: 28px;
}
.top-content p br {
  display: none;
}

.about-video-div {
  margin: 15px 0px;
}
.about-video-div .video-thumbnail {
  display: block;
  text-decoration: none;
  position: relative;
  color: #ffffff;
  margin-bottom: 0px;
}
.about-video-div .video-thumbnail:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  z-index: 1;
}
.about-video-div .video-thumbnail img {
  border-radius: 8px;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 767px) {
  .about-video-div .video-thumbnail img {
    height: 220px;
  }
}
.about-video-div .video-thumbnail .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.3s ease;
}
.about-video-div .video-thumbnail .play-button span {
  background-color: rgba(237, 234, 234, 0.8705882353);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #005f5f;
  font-size: 26px;
}
.about-video-div .video-thumbnail .play-button span i {
  line-height: 25px;
}
.about-video-div .video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}
/*# sourceMappingURL=about.css.map */
