@charset "UTF-8";
.hero-images {
  display: flex;
  margin: auto -20px 0 -20px;
}

.hero-img-wrapper {
  padding: 0 20px;
  flex-basis: 50%;
  flex-grow: 1;
  margin-top: 7px;
}

.hero-img-overlay-wrapper {
  position: relative;
}
.hero-img-overlay-wrapper .image-info-img {
  right: 10px;
}
.hero-img-overlay-wrapper:hover .hero-img-overlay {
  opacity: 1;
}

.hero-img-overlay {
  position: absolute;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  transition: opacity 0.3s;
  color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 2;
  font-family: Merriweather;
}

.hero-img {
  max-width: 100%;
  display: block;
}
.pull-md-4 .hero-img {
  margin-left: auto;
}

.hero-intro-right {
  width: 50%;
  padding-left: 20px;
  padding-right: 20px;
}

.hero-intro-img {
  max-width: 100%;
}

.hero-header {
  display: flex;
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (max-width: 800px) {
  .hero-header {
    flex-direction: column;
  }
}
.hero-header .content-image-wrapper {
  padding-left: 20px;
  padding-right: 20px;
}
.hero-header .content-image {
  width: 100%;
  margin-bottom: 0;
}

.hero-intro-left {
  width: 50%;
  flex-shrink: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 800px) {
  .hero-intro-left {
    width: 100%;
  }
}

.hero-intro-images {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
}

.hero-header .responsive-video-wrapper {
  max-width: 100%;
}
.hero-header .responsive-video {
  min-height: 100%;
}
.hero-header .responsive-video--big {
  padding-bottom: 56.25%;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.--regular-images .hero-slide-img {
  flex-basis: 50%;
  width: calc(100% - 40px);
  left: 20px;
  right: 20px;
}

.subject-author {
  display: flex;
  justify-content: space-between;
}

.hero-slide {
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
  flex-shrink: 0;
  transition: -webkit-transform 0.9s;
  transition: transform 0.9s;
  transition: transform 0.9s, -webkit-transform 0.9s;
}
.--regular-images .hero-slide {
  flex-basis: 50%;
  padding-bottom: 0;
}

.hero-carousel .hero-slide {
  padding-bottom: 0;
}

[data-action=stop], [data-action=start] {
  display: none;
}

[data-controls=prev], [data-controls=next] {
  position: absolute;
  top: 50%;
  width: 30px;
  margin-top: -70px;
  height: 30px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
          appearance: none;
  background-position: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
}

[data-controls=prev] {
  left: 25px;
  background-image: url("https://res.cloudinary.com/hjyy3bihk/image/upload/v1555531704/static/right.svg");
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: transparent;
}

[data-controls=next] {
  right: 25px;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: url("https://res.cloudinary.com/hjyy3bihk/image/upload/v1555531704/static/right.svg");
  color: transparent;
}

.hero-slideshow {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  position: relative;
}
.hero-slideshow.--regular-images {
  margin-left: -20px;
  margin-right: -20px;
}

.hero-slideshow-navigation {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
  display: block;
  display: flex;
}

.hero-slideshow-page {
  width: 10px;
  cursor: pointer;
  height: 10px;
  background-color: #bfbfbf;
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}
.hero-slideshow-page.--active {
  background-color: #fce600;
}

.quote-author {
  font-size: 12px;
  text-align: center;
  color: #4c4c4c;
  margin-top: 40px;
}

.quote-slider {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
}

.quote {
  text-align: center;
  padding-right: 75px;
  padding-left: 75px;
  width: 100%;
  flex-shrink: 0;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 800px) {
  .quote {
    padding-left: 45px;
    padding-right: 45px;
  }
}

.quote-text {
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 600;
  color: #1e1e1e;
}
.quote-text:before {
  content: "“";
  color: #bfbfbf;
}
.quote-text:after {
  content: "“";
  color: #bfbfbf;
}

.prev-quote,
.next-quote {
  position: absolute;
  top: 50%;
  width: 30px;
  margin-top: -30px;
  height: 30px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
          appearance: none;
  background-position: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
}

.prev-quote {
  left: 0;
  background-image: url("https://res.cloudinary.com/hjyy3bihk/image/upload/v1555531704/static/right.svg");
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.next-quote {
  right: 0;
  background-image: url("https://res.cloudinary.com/hjyy3bihk/image/upload/v1555531704/static/right.svg");
}

.hero-author {
  display: flex;
}
@media screen and (max-width: 600px) {
  .hero-author {
    flex-direction: column;
  }
}

.hero-author-img {
  margin-right: 25px;
}
@media screen and (max-width: 600px) {
  .hero-author-img {
    margin-right: 0;
    margin-bottom: 25px;
  }
}

.hero-author-description {
  font-size: 12px;
}

.hero-more-related {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: center;
}

.hero-content .btn--action, .hero-content .btn--waiting-list {
  font-family: "Source Sans Pro", sans-serif;
}
.hero-content li > * {
  display: inline;
}
.hero-content a {
  text-decoration: none;
}
.hero-content strong {
  font-weight: bold;
}
.hero-content em {
  font-style: italic;
}
.hero-content ol {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 20px;
  font-family: Merriweather;
}
.hero-content p {
  margin-bottom: 20px;
}
.hero-content ul:not(.course-list) {
  padding-left: 20px;
  margin-bottom: 20px;
  font-family: Merriweather;
}
.hero-content ul:not(.course-list):first-child {
  margin-top: 3px;
}
.hero-content ul:not(.course-list) li {
  margin-bottom: 20px;
}
.hero-content ul:not(.course-list) li:last-child {
  margin-bottom: 0;
}
.hero-content ul:not(.course-list) li:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fce600;
  display: inline-block;
  border-radius: 50%;
  margin-left: -20px;
  margin-right: 13px;
}
.hero-content .course-list .course-details {
  padding-left: 0;
}
.hero-content .course-list .course-details li:before {
  content: "";
  width: 0;
  height: 0;
  background-color: #fff;
  display: inline-block;
  border-radius: 50%;
  margin-left: 0;
  margin-right: 0;
}
.hero-content + .hero-content {
  margin-top: 40px;
}

.hero-page-iframe {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}

.hero-header-full .hero-intro-left {
  width: 100%;
}
/*# sourceMappingURL=hero-page.css.map */
