#video-section {
  padding-bottom: 10px;
}
@media only screen and (min-width: 992px) {
  #video-section {
    padding-bottom: 0px;
  }
}

.insights-video {
  width: 100%;
  padding: 30px 0;
}
.insights-video video {
  position: relative;
  width: 100%;
}

.insight-title {
  font-weight: bold;
  font-size: 33px;
  margin: 20px 0;
  padding: 20px 0;
  line-height: 40px;
}

.insight-desc {
  margin-bottom: 40px;
}

a.return-button {
  text-decoration: underline;
  color: #000;
  font-size: 16px;
  margin-right: 7px;
  margin-bottom: 25px;
  width: inherit;
}
a.return-button:hover {
  text-decoration: underline;
}

.date {
  margin-top: 30px;
}

.speaker {
  display: flex;
  margin: 10px 0px;
}
.speaker.hasModal {
  cursor: pointer;
}

.speaker__image {
  max-width: 180px;
  width: 180px;
  min-width: 180px;
  max-height: 180px;
  height: 180px;
  min-height: 180px;
  padding-right: 20px;
  position: relative;
}
.speaker__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.speaker__content {
  display: flex;
  flex-direction: column;
}
.speaker__content .speaker__name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.speaker__modal {
  display: none;
}

.speaker__modal__top {
  display: flex;
  margin-bottom: 20px;
}

.overlay-modal {
  position: fixed;
  z-index: 10000;
  display: none;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
}

.overlay-modal-content {
  display: block;
  background: #fff;
  max-width: 1050px;
  max-height: 550px;
  overflow: scroll;
  flex: 1;
  padding: 30px;
  font-size: 16px !important;
  position: relative;
  transition: 1s;
  opacity: 0;
}
.overlay-modal-content .speaker__modal__content {
  display: block;
}
@media (max-width: 767px) {
  .overlay-modal-content {
    max-height: 100vh;
    padding: 20px;
  }
}

.overlay-modal-content.show {
  opacity: 1;
  transition: 1s;
}

.overlay-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 20px;
  color: #000;
}/*# sourceMappingURL=template.css.map */