.mc-hero {
  background-color: #33383D;
  position: relative;
}
.mc-hero::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 1200px) {
  .mc-hero::after {
    display: none;
  }
}
.mc-hero__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-size: 100%;
  background-position: left center;
  background-repeat: no-repeat;
  min-height: 500px;
}
@media screen and (min-width: 768px) {
  .mc-hero__inner {
    background-size: auto 125%;
  }
}
.mc-hero__title {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 88px;
  font-size: clamp(2rem, 15vw, 88px);
  font-weight: 400;
  display: inline-block;
  max-width: 570px;
  line-height: 1.2;
  text-align: right;
}

.mc-nav {
  background-color: #F2F2F2;
  padding: 1rem 0;
  position: sticky;
  top: calc(var(--banner-height) + var(--bar-height));
  z-index: 500;
}
@media screen and (min-width: 1280px) {
  .mc-nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1280px) {
  .mc-nav__actions {
    display: flex;
    align-items: center;
  }
}
.mc-nav__actions--forms a {
  margin: 0.5rem 1.25rem 0.35rem 0;
}
.mc-nav__actions--social ul.et_social_icons_container {
  display: flex !important;
  align-items: center;
}
.mc-nav__actions--social ul.et_social_icons_container li[class^=et_social_] {
  float: none !important;
}
.mc-nav__actions--social i[class^=et_social_] {
  background-color: transparent !important;
}
.mc-nav__actions--social .et_social_icon::before,
.mc-nav__actions--social .et_social_icon::after {
  font-size: 1.5rem;
}
.mc-nav__actions--social .et_social_twitter a i {
  color: #00abf0;
}
.mc-nav__actions--social .et_social_facebook a i {
  color: #3a579a;
}
.mc-nav__actions--social .et_social_youtube a i {
  color: #a8240f;
}
.mc-nav__actions--social .et_social_linkedin a i {
  color: #127bb6;
}
.mc-nav__actions--social .et_social_flickr a i {
  color: #0063DC;
}
.mc-nav__actions--social .et_social_instagram a i {
  color: #CD486A;
}
.mc-nav__actions a.et_social_follow {
  transform: translateY(7px);
}
.mc-nav__actions .et_social_network_label {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.mc-about {
  padding: 4rem 0;
}
@media screen and (min-width: 1280px) {
  .mc-about__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem;
  }
}
.mc-about__body {
  margin-bottom: 2rem;
}
@media screen and (min-width: 1280px) {
  .mc-about__body {
    margin-bottom: 0;
  }
}
.mc-about__media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mc-about__media img {
  position: relative;
  z-index: 1;
}
.mc-about__play {
  position: relative;
}
.mc-about__play::before, .mc-about__play::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.mc-about__play::before {
  background: white;
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
.mc-about__play::after {
  width: 26px;
  height: 31px;
  background-image: url(../assets/img/icon_play.svg);
  background-size: 100%;
}

.mc-grid {
  margin: 2rem auto 6rem;
}
.mc-grid__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (min-width: 1280px) {
  .mc-grid__inner:first-child {
    padding-bottom: 3rem;
    border-bottom: 1px solid #8FBAE0;
    margin-bottom: 3rem;
  }
}
.mc-grid__cell {
  flex-basis: 100%;
  padding-bottom: 2rem;
  border-bottom: 1px solid #8FBAE0;
  margin-bottom: 2rem;
}
.mc-grid__inner:last-child .mc-grid__cell:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 1280px) {
  .mc-grid__cell {
    flex-basis: 50%;
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
  }
  .mc-grid__cell:nth-child(odd) {
    padding-right: 3rem;
  }
  .mc-grid__cell:nth-child(even) {
    padding-left: 3rem;
    border-left: 1px solid #8FBAE0;
  }
}
.mc-grid__heading {
  font-size: 40px;
  margin-bottom: 1.25rem;
}
.mc-grid__items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.mc-grid__cta {
  margin-top: 2rem;
  text-align: center;
}
.mc-grid__item {
  flex-basis: 100%;
  margin-bottom: 2rem;
}
@media screen and (min-width: 720px) {
  .mc-grid__item {
    flex-basis: calc(50% - 1.5rem);
    min-height: 500px;
  }
}
@media screen and (min-width: 1280px) {
  .mc-grid__item {
    margin-bottom: 0;
  }
}
.mc-grid__item a {
  color: black;
  display: inline;
}
.mc-grid__item a .mc-grid__title {
  color: black;
  text-decoration: none;
}
.mc-grid__item a:hover .mc-grid__title {
  text-decoration: underline;
  color: black;
}
.mc-grid__media {
  display: block;
  width: 100%;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 227px;
  border: 1px solid #E3E3E3;
}
@media screen and (min-width: 1200px) {
  .mc-grid__media {
    height: 160px;
  }
}
.mc-grid__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mc-grid__title {
  display: block;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
}
.mc-grid__date {
  display: block;
  margin: 0.65rem 0;
}
.mc-grid__excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.mc-cta {
  background-color: #E9ECED;
  padding: 4rem 0;
}
.mc-cta__inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
@media screen and (min-width: 1280px) {
  .mc-cta__inner {
    flex-wrap: nowrap;
  }
}
.mc-cta__item {
  text-align: center;
  margin: 2rem 0;
  max-width: 404px;
}
@media screen and (min-width: 1280px) {
  .mc-cta__item {
    margin: 0 2rem;
  }
}
.mc-cta__link {
  color: black;
}
.mc-cta__link:hover {
  text-decoration: underline;
}
.mc-cta__title {
  display: block;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1280px) and (max-width: 1485px) {
  .mc-cta__title {
    min-height: 46px;
  }
  .mc-cta__item:not(:last-child) .mc-cta__title {
    padding-top: 0.85rem;
  }
}

.mc-library {
  margin: 7rem auto 5rem;
}
.mc-library__headline {
  font-size: 56px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .mc-library__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem 1.5rem;
  }
}
@media screen and (min-width: 1140px) {
  .mc-library__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .mc-library__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 4rem 1.5rem;
  }
}
.mc-library__item {
  display: block;
  color: black;
  margin-bottom: 4rem;
}
.mc-library__item:hover {
  text-decoration: underline;
}
@media screen and (min-width: 1280px) {
  .mc-library__item {
    margin-bottom: 0;
  }
}
.mc-library__title {
  display: block;
  margin-top: 1rem;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (min-width: 1280px) {
  .mc-library__title {
    margin-top: 1.5rem;
  }
}
.mc-library__pic {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px;
}
.mc-library__pic img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

body.modal-gated .banner__wrap,
body.modal-gated .md-hero,
body.modal-gated .md-header,
body.modal-gated .md-group__wrap,
body.modal-gated .footer__wrap {
  filter: blur(5px);
}
body.modal-gated .modal__inner {
  box-shadow: 0 0 10px black;
}

.md-hero {
  background-color: #697883;
  padding: 6rem 0;
}
@media screen and (min-width: 1200px) {
  .md-hero__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.md-hero__back {
  color: white;
  font-size: 22px;
  display: block;
  margin-bottom: 1.5rem;
}
.md-hero__back:hover {
  text-decoration: underline;
}
@media screen and (min-width: 1200px) {
  .md-hero__back {
    margin-bottom: 0;
  }
}
.md-hero__title {
  color: white;
  font-size: 58px;
  font-weight: 400;
}

.md-header {
  padding: 1rem 0;
}
.md-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.md-header__inner:first-child {
  justify-content: flex-end;
}
.md-header__title {
  font-size: 48px;
  font-weight: 500;
}
.md-header__btn.btn .btn__arrow {
  transform: rotate(90deg) translateX(-50%);
}
.md-header__btn.btn:focus .btn__arrow, .md-header__btn.btn:hover .btn__arrow {
  transform: rotate(90deg) translateX(-25%) scale(1.2);
}

.md-filter {
  display: flex;
  align-items: center;
}
.md-filter__label {
  font-size: 20px;
}
.md-filter__select {
  padding: 0.75rem 0.5rem;
  display: block;
  min-width: 250px;
  margin: 0 1.5rem;
  font-size: 18px;
}

.md-group {
  margin-bottom: 5rem;
}
.md-group__wrap {
  margin-top: 3rem;
}
.md-group__headline {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .md-group__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem 2rem;
  }
}
@media screen and (min-width: 1140px) {
  .md-group__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1400px) {
  .md-group__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.md-group__media {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 221px;
}
.md-group__media--light {
  background-color: rgba(105, 120, 131, 0.2);
}
.md-group__media--dark {
  background-color: #697883;
}
.md-group__media img {
  object-fit: contain;
  display: block;
  width: 90%;
  height: 90%;
}
.md-group__body {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  grid-gap: 1rem;
  margin-top: 1.25rem;
}
.md-group__body::after {
  content: "";
  display: table;
  clear: both;
}
.md-group__title {
  display: inline-block;
  margin-right: auto;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  word-break: break-word;
}
.md-group__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.md-group__checkbox {
  position: relative;
  cursor: pointer;
}
.md-group__checkbox:hover span {
  background-color: rgba(0, 0, 0, 0.05);
}
.md-group__checkbox input {
  margin: 0;
  position: absolute;
  top: 6px;
  left: 0;
  width: 26px;
  height: 26px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.md-group__checkbox input:checked + span::after {
  opacity: 1;
}
.md-group__checkbox span {
  display: block;
  width: 26px;
  height: 26px;
  position: relative;
  top: 5px;
  margin-right: 0.5rem;
  pointer-events: none;
  border-radius: 50%;
  border: 1px solid #828282;
  transition: all ease 125ms;
  overflow: hidden;
  pointer-events: none;
}
.md-group__checkbox span::after {
  content: "";
  pointer-events: none;
  display: block;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../assets/img/icon_check.svg);
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity ease 125ms;
  opacity: 0;
}
.md-group__btn {
  cursor: pointer;
  color: #005F9B;
  background: transparent;
  border: unset;
  display: inline-flex;
  align-items: baseline;
  font-size: 16px;
  line-height: 0;
  white-space: nowrap;
  font-weight: 500;
}
.md-group__btn img {
  margin-left: 0.25rem;
}
.md-group__btn > * {
  pointer-events: none;
}