@charset "UTF-8";
.clipped {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.columns {
  display: flex;
  margin-left: -20px;
  margin-right: -20px;
  flex-wrap: wrap;
}

.column {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
@media (min-width: 641px) {
  .column {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .column {
    width: 100%;
  }
}
@media (min-width: 1441px) {
  .column-three-quarter {
    width: 75%;
  }
}
@media (max-width: 1440px) {
  .column-three-quarter {
    width: 100%;
  }
}

.body {
  margin: 0;
}

.layout {
  display: flex;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.layout__navigation {
  flex-shrink: 0;
  width: 270px;
}
@media (max-width: 1440px) {
  .layout__navigation {
    position: fixed;
    top: 50px;
    left: -270px;
    bottom: 0;
    z-index: 2;
  }
  .layout__navigation:before {
    position: fixed;
    top: 50px;
    left: 270px;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
  }
}
@media (max-width: 1440px) {
  .layout__navigation.is-active {
    left: 0;
  }
}
@media (max-width: 1440px) {
  .layout__navigation.is-active:before {
    content: "";
  }
}

.layout__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .layout__body {
    padding-top: 50px;
  }
}

.navigation {
  min-height: 100%;
  overflow: hidden;
  background-color: #202221;
}

.navigation__logo {
  margin: 100px auto;
}
@media (min-width: 1441px) {
  .navigation__logo {
    display: block;
  }
}
@media (max-width: 1440px) {
  .navigation__logo {
    display: none;
  }
}

.navigation__list {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.navigation__item.is-hidden {
  display: none;
}

.navigation__link {
  display: block;
  padding: 15px 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s;
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .navigation__link:hover {
    background-color: #0296c4;
  }
}
.navigation__item.is-active .navigation__link {
  background-color: #0296c4;
}

.navigation__sub-link {
  display: block;
  padding: 15px 20px 15px 60px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #aeaeae;
  text-decoration: none;
  background-color: #474747;
  transition: all 0.2s;
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .navigation__sub-link:hover {
    color: #ffffff;
    background-color: #595959;
  }
}
.navigation__item.is-active .navigation__sub-link {
  color: #ffffff;
  background-color: #595959;
}

@media (max-width: 1440px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #494949;
    z-index: 2;
  }
}

.header__banner {
  padding: 10px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  background-color: #0296c4;
}
@media (max-width: 1440px) {
  .header__banner {
    display: none;
  }
}

.header__toggle {
  position: absolute;
  top: 50%;
  left: 20px;
  padding: 0;
  border: none;
  transform: translateY(-50%);
  font-size: 24px;
  color: #ffffff;
  background: none;
  transition: color 0.2s;
  cursor: pointer;
}
@media (min-width: 1441px) {
  .header__toggle {
    display: none;
  }
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .header__toggle:hover {
    color: #dddddd;
  }
}
.header__toggle.is-active .header__hamburger {
  display: none;
}
.header__toggle.is-active .header__close {
  display: block !important;
}

.header__close {
  display: none !important;
}

.header__logo {
  position: absolute;
  top: 50%;
  left: 54px;
  transform: translateY(-50%);
  transition: opacity 0.2s;
}
@media (min-width: 1441px) {
  .header__logo {
    display: none;
  }
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .header__logo:hover {
    opacity: 0.8;
  }
}

.header__image {
  display: block;
}

.header__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 0;
}
.header__heading.educators-login {
  position: relative;
}
.header__heading.educators-login .header-login__background {
  z-index: -1;
  position: absolute;
  height: 300px;
  width: 100%;
}
.header__heading.educators-login .header-login__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .header__heading.educators-login .header-login__background {
    display: none;
  }
}
@media (min-width: 1441px) {
  .header__heading {
    height: 300px;
  }
}
@media (max-width: 1440px) {
  .header__heading {
    height: 50px;
  }
}
.header__heading--editorial {
  align-items: flex-start;
  width: 75%;
  height: auto !important;
}
@media (max-width: 1440px) {
  .header__heading--editorial {
    width: 100%;
  }
}
@media (min-width: 1441px) {
  .header__heading--editorial-main {
    height: 80px;
  }
}
.header__heading--editorial-main .header__title {
  display: none;
}
@media (max-width: 1440px) {
  .header__heading--editorial-main .header__title {
    display: block;
  }
}

.header__title {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 1441px) {
  .header__title {
    font-size: 46px;
    letter-spacing: 18px;
    color: #202221;
  }
}
@media (max-width: 1440px) {
  .header__title {
    font-size: 14px;
    color: #ffffff;
  }
}
.header__title--editorial {
  font-family: "Open Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #000000;
  text-align: left;
  margin-top: 40px;
}
@media (max-width: 640px) {
  .header__title--editorial {
    font-size: 24px;
    margin-top: 20px;
  }
}

.header__date {
  margin: 10px 0 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #9a9999;
}
@media (max-width: 640px) {
  .header__date {
    font-size: 12px;
  }
}

.header__image--editorial {
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 640px) {
  .header__image--editorial {
    margin-top: 20px;
  }
}

.header__back {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #0296c4;
  text-transform: uppercase;
  text-decoration: none;
}
.header__back:hover {
  color: #016f92;
}

.header__subtitle {
  margin-top: 20px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
}
@media (max-width: 1440px) {
  .header__subtitle {
    display: none;
  }
}

.login {
  position: relative;
  overflow: hidden;
  background-color: #0296c4;
  padding: 40px 0px;
}
@media (max-width: 640px) {
  .login {
    padding-bottom: 85px;
  }
}

.login-options {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  z-index: 1;
  gap: 5px;
}
.login-options .login-button, .login-options .login-link-button {
  padding: 8px 16px;
  border-radius: 30px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  box-sizing: border-box;
  color: #ffffff;
  transition: 0.3s all ease-in-out;
  text-decoration: none;
  background-color: #337496;
  border: 1px solid #337496;
}
.login-options .login-button.active, .login-options .login-button:hover, .login-options .login-link-button.active, .login-options .login-link-button:hover {
  background-color: #0296c4;
  border: 1px solid #ffffff;
}
@media screen and (max-width: 600px) {
  .login-options .login-button, .login-options .login-link-button {
    padding: 10px 12px;
  }
}

.forgot, .password, .error {
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}
@media (max-width: 1440px) {
  .forgot, .password, .error {
    padding-top: 60px;
  }
}
@media (max-width: 640px) {
  .forgot, .password, .error {
    padding-bottom: 85px;
  }
}

.forgot .tablet-title, .password .tablet-title, .register .tablet-title, .error .tablet-title {
  display: none;
}
@media (max-width: 1440px) {
  .forgot, .password, .register, .error {
    padding-top: 60px;
  }
  .forgot .tablet-title, .password .tablet-title, .register .tablet-title, .error .tablet-title {
    display: block;
  }
}

.login__foreground {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.login__foreground p, .login__helper p {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  color: #FFF;
  text-align: center;
  margin: 5px 0px;
}
.login__foreground p a, .login__helper p a {
  color: #fff;
}

.login__heading {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
  margin-top: 0px;
  position: relative;
  z-index: 1;
}

.login__input {
  width: 260px;
  padding: 9px 10px !important;
}
.login__login .login__input, .login__forgot .login__input {
  width: 100%;
}
.login__input {
  margin-top: 20px;
  margin-right: 10px;
}
.login__login .login__input, .login__forgot .login__input {
  margin-right: 0;
}
.login__input {
  padding: 5px 10px;
  border: 1px solid #0296c4;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #4a4a4a;
}

.login__message {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: #000000;
}
.login__message ul {
  list-style: none;
  padding: 0;
}
.login__message.red {
  color: #E91C1F;
}

.login__button {
  margin-top: 20px;
  padding: 8px 40px;
  border: 1px solid #ffffff;
  border-radius: 2px;
  font-family: "OpenSans", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  font-size: 16px;
  color: #ffffff;
  background-color: #0296c4;
  transition: background-color 0.2s;
  cursor: pointer;
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .login__button:hover {
    background-color: #016f92;
  }
}

.login__background {
  position: absolute;
  pointer-events: none;
  top: 50%;
  left: 50%;
  width: 1270px;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.1;
  min-width: 100%;
}

.educators-login__background {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 1;
  min-width: 100%;
  bottom: 0;
  height: 100%;
}
.educators-login__background img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  width: 100%;
}

.login__helper {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 15px;
  position: absolute;
  bottom: 0;
  width: calc(100% - 30px);
  z-index: 1;
}

.loginLogin .login__helper p:first-child {
  display: block;
}
.loginLogin .login__helper p:last-child {
  display: none;
}
.loginNumber .login__helper p:first-child {
  display: none;
}
.loginNumber .login__helper p:last-child {
  display: block;
}

#loginForgot, #loginBack {
  float: right;
}

@media (max-width: 640px) {
  .loginNumber span,
  .loginLogin span,
  .loginForgot span {
    display: block;
  }
}
.login__slider {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  transition: height 0.3s;
  padding: 20px 20px;
}

.login__media {
  opacity: 0;
  display: none;
}
.login__media.active {
  display: flex;
  animation: fadeIn 0.6s ease-in-out 0s 1 forwards normal;
}

.login__ads {
  opacity: 0;
  display: none;
}
.login__ads.active {
  display: flex;
  animation: fadeIn 0.6s ease-in-out 0s 1 forwards normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.login__number,
.login__login,
.login__forgot {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  overflow: hidden;
  transition: all 0.6s;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.loginForgot .login__number,
.loginForgot .login__login {
  opacity: 1;
  visibility: hidden;
  pointer-events: none;
}

@media (min-width: 501px) {
  .ads-login > div {
    display: flex;
  }
}
.ads-login input {
  width: 100%;
}

.register-thankyou {
  max-width: 600px;
}

.register__form, .forgot__form, .password__form, .error__form {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 0 120px;
  font-family: "Open Sans", sans-serif;
  color: #4a4a4a;
  padding-left: 20px;
  padding-right: 20px;
}
.register__form p, .forgot__form p, .password__form p, .error__form p {
  text-align: center;
}
.register__form a, .register__form h2, .forgot__form a, .forgot__form h2, .password__form a, .password__form h2, .error__form a, .error__form h2 {
  color: #4a4a4a;
  text-align: center;
}

.forgot-login, .password-login {
  text-align: center;
}
.forgot-login input[type=submit], .password-login input[type=submit] {
  width: auto;
}

.register-login, .forgot-login, .password-login {
  max-width: 556px;
}
.register-login label, .forgot-login label, .password-login label {
  display: block;
  margin: 0 0 10px;
}
.register-login input, .register-login select, .forgot-login input, .forgot-login select, .password-login input, .password-login select {
  width: 100%;
  margin: 0 0 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
}

.form-col {
  width: calc(100% - 30px);
  padding-left: 15px;
  padding-right: 15px;
}
.form-col.subscribe-checkbox {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.form-col.subscribe-checkbox input[type=checkbox] {
  width: auto;
  margin-bottom: 0px;
  margin-top: 5px;
}
.form-col.subscribe-checkbox label {
  margin-bottom: 0px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.contact__form h3 {
  font-family: "Open Sans", sans-serif;
}

.age__group {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 650px) {
  .age__group {
    flex-direction: column;
  }
}

.checkbox__options {
  max-width: calc(50% - 20px);
  width: 100%;
}

.form-col-50 {
  width: calc(50% - 30px);
}
@media (max-width: 500px) {
  .form-col-50 {
    width: calc(100% - 30px);
  }
}
.form-col-50 {
  padding-left: 15px;
  padding-right: 15px;
}

.error-icon {
  width: 100%;
  text-align: center;
}
.error-icon svg {
  width: 100px;
  height: 100px;
}

.error__form {
  flex-direction: column;
}

.g-recaptcha {
  margin: 20px 0;
}
@media (max-width: 500px) {
  .g-recaptcha {
    transform: scale(0.8);
    transform-origin: 0 0;
  }
}

.hero {
  display: block;
  max-width: 100%;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.hero-swiper__slide {
  overflow: hidden;
}

.hero-swiper__hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .hero-swiper__hero {
    height: 530px;
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media (max-width: 1024px) {
  .hero-swiper__hero {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .hero-swiper__hero {
    justify-content: center;
    height: 660px;
  }
}
@media (max-width: 640px) {
  .hero-swiper__hero {
    justify-content: center;
    height: 490px;
  }
}

.hero-swiper__wrapper {
  display: flex;
  overflow: hidden;
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .hero-swiper__wrapper {
    justify-content: space-between;
  }
}
@media (min-width: 1025px) {
  .hero-swiper__wrapper {
    width: 100%;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .hero-swiper__wrapper {
    flex-direction: column;
  }
}

.hero-swiper__copy {
  flex-shrink: 0;
}
@media (min-width: 1441px) {
  .hero-swiper__copy {
    max-width: 360px;
  }
}
@media (max-width: 1440px) {
  .hero-swiper__copy {
    max-width: 300px;
  }
}
@media (min-width: 1025px) {
  .hero-swiper__copy {
    margin-right: 70px;
  }
}

.hero-swiper__byline {
  display: flex;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
}
@media (min-width: 1025px) {
  .hero-swiper__byline {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .hero-swiper__byline {
    font-size: 14px;
  }
}
.hero-swiper__byline:before {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  margin-right: 10px;
  background-color: #ffffff;
}
@media (min-width: 1441px) {
  .hero-swiper__byline:before {
    width: 50px;
  }
}
@media (max-width: 1440px) {
  .hero-swiper__byline:before {
    width: 20px;
  }
}

.hero-swiper__heading {
  margin-bottom: 0;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  color: #ffffff;
}
@media (min-width: 1441px) {
  .hero-swiper__heading {
    margin-top: 30px;
    font-size: 50px;
  }
}
@media (max-width: 1440px) {
  .hero-swiper__heading {
    font-size: 30px;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .hero-swiper__heading {
    margin-top: 20px;
  }
}
@media (max-width: 1024px) {
  .hero-swiper__heading {
    margin-top: 10px;
  }
}

.hero-swiper__description {
  display: block;
  margin-top: 10px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #ffffff;
}
@media (min-width: 1025px) {
  .hero-swiper__description {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .hero-swiper__description {
    font-size: 14px;
  }
}

.hero-swiper__call-to-action {
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: #000000;
  background-color: #ffffff;
  transition: background-color 0.2s;
}
@media (min-width: 1025px) {
  .hero-swiper__call-to-action {
    margin-top: 30px;
    padding: 10px 20px;
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .hero-swiper__call-to-action {
    margin-top: 20px;
    padding: 5px 10px;
  }
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .hero-swiper__call-to-action:hover {
    background-color: #0296c4;
  }
}

.hero-swiper__artwork {
  overflow: hidden;
}
@media (max-width: 1440px) {
  .hero-swiper__artwork {
    margin-top: 25px;
  }
}
@media (max-width: 640px) {
  .hero-swiper__artwork {
    max-width: 450px;
  }
}

.hero-swiper__image {
  display: block;
  max-width: 100%;
}

.hero-swiper__background {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 100%;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1;
}

.hero-swiper__pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.hero-swiper__bullet {
  width: 20px;
  height: 20px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #d2d2d2;
  transition: background-color 0.2s;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .hero-swiper__bullet {
    width: 10px;
    height: 10px;
  }
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .hero-swiper__bullet:hover {
    background-color: #0296c4;
  }
}
.hero-swiper__bullet.is-active {
  background-color: #0296c4;
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .container {
    margin-top: 60px;
  }
}
@media (min-width: 1025px) {
  .container {
    margin-bottom: 60px;
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .container {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 640px) {
  .container {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1441px) {
  .container:nth-child(n+2) {
    margin-top: 60px;
  }
}

.wysiwyg h2 {
  margin-bottom: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #454545;
}
.wysiwyg h2:first-child {
  margin-top: 0;
}
.wysiwyg h2:nth-child(n+2) {
  margin-top: 30px;
}
.wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg h6 {
  font-family: "Open Sans", sans-serif;
}
.wysiwyg p {
  margin-bottom: 0;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  color: #454545;
}
.wysiwyg p:first-child {
  margin-top: 0;
}
.wysiwyg p:nth-child(n+2) {
  margin-top: 15px;
}
.wysiwyg ul {
  margin-top: 0;
  margin-bottom: 0;
}
.wysiwyg ul:first-child {
  margin-top: 0;
}
.wysiwyg ul:nth-child(n+2) {
  margin-top: 15px;
}
.wysiwyg li {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  color: #454545;
}
.wysiwyg li:first-child {
  margin-top: 0;
}
.wysiwyg li:nth-child(n+2) {
  margin-top: 15px;
}
.wysiwyg a {
  text-decoration: none;
  color: #0296c4;
  transition: color 0.2s;
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .wysiwyg a:hover {
    color: #000000;
  }
}
@media (max-width: 1440px) {
  .wysiwyg.wysiwyg--highlight p:first-child {
    font-size: 34px;
    font-weight: 600;
  }
}
.wysiwyg img {
  width: 100% !important;
  height: auto !important;
}
.wysiwyg img.Floated {
  max-width: 200px;
  margin-right: 100%;
}

.banners {
  display: flex;
  margin: 0 -10px;
  padding-left: 0;
  list-style: none;
}
@media (max-width: 640px) {
  .banners {
    display: block;
  }
}

.banners__item {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 640px) {
  .banners__item:nth-child(n+2) {
    margin-top: 20px;
  }
}

.banners__link {
  display: block;
  transition: opacity 0.2s;
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .banners__link:hover {
    opacity: 0.9;
  }
}

.banner__image {
  display: block;
  width: 100%;
}

.modal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  z-index: 1;
}
.modal.is-active {
  display: flex;
}

.modal__container {
  flex-grow: 1;
  max-width: 1024px;
}

.modal__wrapper {
  position: relative;
  height: 0;
  padding-bottom: 56%;
}

.modal__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal__iframe {
  width: 100%;
  height: 100%;
}

.modal--login .modal__container {
  border-radius: 5px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
  border: solid 1px #cccccc;
  background-color: #ffffff;
}
@media (min-width: 1025px) {
  .modal--login .modal__container {
    max-width: 1024px;
    height: 768px;
  }
}
@media (max-width: 1024px) {
  .modal--login .modal__container {
    max-width: 650px;
    height: 768px;
  }
}
@media (max-width: 640px) {
  .modal--login .modal__container {
    max-width: 280px;
    height: 420px;
  }
}
.modal--login .modal__container .wysiwyg {
  margin: 40px 40px;
  overflow-y: scroll;
  max-height: 550px;
}
@media (max-width: 640px) {
  .modal--login .modal__container .wysiwyg {
    margin: 15px 15px;
    max-height: 300px;
  }
  .modal--login .modal__container .wysiwyg p {
    font-size: 12px;
  }
  .modal--login .modal__container .wysiwyg ul li {
    font-size: 12px;
    margin-left: 0px;
  }
  .modal--login .modal__container .wysiwyg h2 {
    font-size: 16px;
    margin-top: 15px;
  }
}
.modal--login .modal__container hr {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .modal--login .modal__container hr {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.modal--login .modal__buttons {
  display: flex;
  align-content: space-between;
  justify-content: center;
}
.modal--login .modal__buttons a {
  width: 25%;
}

.accordion {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.accordion__item:nth-child(n+2) {
  margin-top: 20px;
}
.accordion__item.is-active .accordion__description {
  display: block;
}
.accordion__item.is-active .accordion__expand {
  display: none !important;
}
.accordion__item.is-active .accordion__contract {
  display: block !important;
}

.accordion__button {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 44px;
  border: 1px solid #0296c4;
  padding: 0;
  border-radius: 0;
  background: none;
  transition: border-color 0.2s;
  cursor: pointer;
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .accordion__button:hover {
    border-color: #016f92;
  }
  .accordion__button:hover .accordion__icon {
    background-color: #016f92;
  }
  .accordion__button:hover .accordion__heading {
    color: #000000;
  }
}

.accordion__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 42px;
  color: #ffffff;
  background-color: #0296c4;
  transition: background-color 0.2s;
}

.accordion__contract {
  display: none !important;
}

.accordion__heading {
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding: 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  text-align: left;
  color: #0296c4;
  transition: color 0.2s;
}

.accordion__description {
  display: none;
  padding: 20px;
  border: 1px solid #0296c4;
  border-top: none;
}

@media (min-width: 1025px) {
  .search {
    display: flex;
  }
}

@media (min-width: 1025px) {
  .search__filters {
    flex-shrink: 0;
    width: 200px;
    padding-right: 60px;
  }
}

.search__refine {
  width: 100%;
  padding: 10px;
  border: none;
  box-sizing: border-box;
  border-radius: 2px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  background-color: #0296c4;
  transition: background-color 0.2s;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .search__refine {
    display: none;
  }
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .search__refine:hover {
    background-color: #016f92;
  }
}
.search__refine.is-active .search__expand {
  display: none !important;
}
.search__refine.is-active .search__contract {
  display: inline !important;
}

.search__contract {
  display: none !important;
}

@media (max-width: 1024px) {
  .search__container {
    display: none;
  }
}
@media (max-width: 1024px) {
  .search__container.is-active {
    display: block;
  }
}

.search__call-to-action {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
  display: inline-block;
}
@media (max-width: 1024px) {
  .search__call-to-action {
    display: none;
  }
}

.search__clear {
  display: block;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  border: none;
  text-decoration: underline;
  color: #0296c4;
  background: none;
  cursor: pointer;
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .search__clear:hover {
    color: #000000;
  }
}

.search__heading {
  width: 100%;
  border-top: none;
  border-right: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  text-align: left;
  color: #0296c4;
  transition: color 0.2s;
}
@media (min-width: 1025px) {
  .search__heading {
    margin-top: 30px;
    padding: 5px 10px;
    border-left: 2px solid #0296c4;
    border-bottom: none;
    background-color: #f8f8f8;
  }
}
@media (max-width: 1024px) {
  .search__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-left: none;
    border-bottom: 1px solid #0296c4;
    background: none;
    cursor: pointer;
  }
}
.search__heading:first-child {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .search__heading:hover {
    color: #000000;
  }
}
@media (hover: none) {
  .search__heading {
    color: #0296c4;
  }
}
.search__heading.is-active .search__open {
  display: none !important;
}
.search__heading.is-active .search__close {
  display: inline !important;
}

@media (min-width: 1025px) {
  .search__toggle {
    display: none;
  }
}

.search__close {
  display: none !important;
}

.search__wrapper {
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .search__wrapper {
    display: none;
    padding-bottom: 20px;
  }
}
.search__wrapper.is-active {
  display: block;
}

.search__group {
  display: flex;
  height: 34px;
  margin-top: 15px;
  align-items: stretch;
}

.search__input {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
  padding-left: 10px;
  border: 1px solid #0296c4;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #4a4a4a;
}
.search__input::-moz-placeholder {
  color: #4a4a4a;
}
.search__input::placeholder {
  color: #4a4a4a;
}

.search__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  font-size: 12px;
  color: #ffffff;
  background-color: #0296c4;
}

.search__select {
  width: 100%;
  height: 34px;
  margin-top: 15px;
  padding-left: 10px;
  border: 1px solid #0296c4;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #4a4a4a;
  background-image: url("../img/select-arrow.svg");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 34px 34px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.search__select::-ms-expand {
  display: none;
}

.search__list {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.search__item {
  display: flex;
  margin-top: 10px;
  align-items: center;
}
.search__item.is-active .search__checkbox {
  border-color: #0296c4;
}
.search__item.is-active .search__label {
  color: #0296c4;
}

.search__checkbox {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin: 0;
  border: 1px solid #4a4a4a;
  text-align: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.search__checkbox:checked:after {
  content: "✓";
  font-size: 10px;
  line-height: 1;
  color: #0296c4;
}

.search__label {
  flex-grow: 1;
  margin-left: 10px;
  font-family: "OpenSans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #4a4a4a;
}

.search__results {
  flex-grow: 1;
  flex-basis: 0;
}
@media (max-width: 1024px) {
  .search__results {
    margin-top: 20px;
  }
}

.files {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.files.is-hidden {
  display: none;
}

.files__item:nth-child(n+2) {
  margin-top: 20px;
}

.files__link {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid #0296c4;
  color: #9f9f9f;
  text-decoration: none;
  transition: color 0.2s;
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .files__link:hover {
    color: #000000;
  }
}

.files__title {
  font-family: "Open Sans", sans-serif;
}

.files__description {
  margin-left: auto;
  padding-left: 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  white-space: nowrap;
}

.magazines {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}
@media (min-width: 1025px) {
  .magazines {
    margin: -30px -10px -10px;
  }
}
@media (max-width: 1024px) {
  .magazines {
    margin: -10px;
  }
}
.magazines.is-hidden {
  display: none;
}

.magazines__item {
  padding: 10px;
  box-sizing: border-box;
}
@media (min-width: 1025px) {
  .magazines__item {
    width: 25%;
  }
}
@media (max-width: 1024px) {
  .magazines__item {
    width: 33.33%;
  }
}
@media (max-width: 640px) {
  .magazines__item {
    width: 50%;
  }
}

.magazines__container {
  transition: background-color 0.2s;
}
@media (min-width: 1025px) {
  .magazines__container {
    padding: 20px;
  }
}
@media (min-width: 1025px) {
  .magazines__container:hover {
    background-color: #ecf9ff;
  }
}

.magazines__image {
  display: block;
  width: 100%;
}

.magazines__name {
  display: block;
  margin-top: 10px;
  font-family: "OpenSans", sans-serif;
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  color: #565656;
}

.magazines__link {
  display: block;
  max-width: 100px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px;
  border-radius: 2px;
  font-family: "OpenSans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: #0296c4;
  transition: background-color 0.2s;
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .magazines__link:hover {
    background-color: #016f92;
  }
}

.titles {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 0;
  list-style: none;
}
@media (min-width: 1025px) {
  .titles {
    margin-top: -30px;
  }
}
@media (max-width: 1024px) {
  .titles {
    margin-top: -10px;
  }
}
.titles.is-hidden {
  display: none;
}

.titles__item {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 25%;
  padding: 10px;
  box-sizing: border-box;
}
@media (min-width: 1441px) {
  .titles__item {
    width: 25%;
  }
}
@media (min-width: 641px) and (max-width: 1440px) {
  .titles__item {
    width: 33%;
  }
}
@media (max-width: 640px) {
  .titles__item {
    width: 100%;
  }
}
.titles__item.is-hidden {
  display: none;
}

.titles__container {
  flex-grow: 1;
  padding: 20px;
  transition: background-color 0.2s;
}
@media (min-width: 1025px) {
  .titles__container:hover {
    background-color: #ecf9ff;
  }
}

.titles__cover {
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}

.titles__tag {
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
}

.titles__image {
  display: block;
  width: 100%;
}

.titles__name {
  display: block;
  margin-top: 15px;
  font-family: "OpenSans", sans-serif;
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  color: #565656;
}

.titles__author {
  display: block;
  margin-top: 5px;
  font-family: "OpenSans", sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  text-align: center;
  color: #9a9999;
}

.titles__download {
  display: block;
  width: 100%;
  max-width: 140px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px;
  border: none;
  border-radius: 2px;
  font-family: "OpenSans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  color: #ffffff;
  background-color: #0296c4;
  transition: background-color 0.2s;
  cursor: pointer;
}
.titles__download.is-disabled {
  cursor: default;
  background-color: #cccccc;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.titles__download.is-disabled:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  border-radius: 50%;
  border: 2px solid #fff;
  border-color: #ffffff transparent #ffffff transparent;
  vertical-align: bottom;
  animation: loading 1s linear infinite;
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .titles__download.is-disabled:hover {
    background-color: #cccccc;
  }
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .titles__download:hover {
    background-color: #016f92;
  }
}

.titles__select {
  display: block;
  width: 100%;
  max-width: 140px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px;
  border: 1px solid #0296c4;
  border-radius: 2px;
  font-family: "OpenSans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  color: #0296c4;
  background-color: #ffffff;
  transition: color 0.2s;
  cursor: pointer;
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .titles__select:hover {
    color: #000000;
  }
}

.editorial {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 0;
  list-style: none;
}
@media (min-width: 1025px) {
  .editorial {
    margin-top: -30px;
  }
}
@media (max-width: 1024px) {
  .editorial {
    margin-top: -10px;
  }
}
.editorial.is-hidden {
  display: none;
}

.editorial__item {
  position: relative;
  display: flex;
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
}
@media (min-width: 1441px) {
  .editorial__item {
    width: 50%;
  }
}
@media (min-width: 641px) and (max-width: 1440px) {
  .editorial__item {
    padding: 30px;
    width: 50%;
  }
}
@media (max-width: 640px) {
  .editorial__item {
    width: 100%;
    padding: 20px 10px;
  }
}
.editorial__item.is-hidden {
  display: none;
}

.editorial__container {
  flex-grow: 1;
  padding: 20px;
  transition: background-color 0.2s;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .editorial__container {
    padding: 0;
  }
}
@media (min-width: 1025px) {
  .editorial__container:hover {
    background-color: #ecf9ff;
  }
}

.editorial__cover {
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 1024px) {
  .editorial__cover {
    margin: 0;
  }
}

.editorial__tag {
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
}

.editorial__image {
  display: block;
  width: 100%;
}

.editorial_content {
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (max-width: 1024px) {
  .editorial_content {
    margin: 0;
  }
}

.editorial__date {
  display: block;
  margin: 15px 0 0;
  font-family: "OpenSans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #9a9999;
  text-transform: uppercase;
}

.editorial__name {
  display: block;
  margin: 5px 0;
  font-family: "OpenSans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #202221;
  text-transform: uppercase;
}

.editorial__shortdescription {
  display: block;
  margin: 5px 0 15px;
  font-family: "OpenSans", sans-serif;
  font-size: 12px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #565656;
}

.editorial__author {
  display: block;
  margin-top: 5px;
  font-family: "OpenSans", sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  text-align: center;
  color: #9a9999;
}

.editorial_buttons {
  display: flex;
  margin-left: 20px;
  margin-right: 20px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .editorial_buttons {
    margin: 0;
  }
}

.editorial__download {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  border: none;
  border-radius: 2px;
  font-family: "OpenSans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  color: #ffffff;
  background-color: #0296c4;
  transition: background-color 0.2s;
  cursor: pointer;
  text-decoration: none;
  margin-right: 10px;
}
.editorial__download--header {
  margin-top: 30px;
  max-width: 140px;
}
@media (max-width: 640px) {
  .editorial__download--header {
    margin-top: 20px;
    max-width: 100%;
    margin-right: 0;
    padding: 10px 0px;
  }
}
.editorial__download.is-disabled {
  cursor: default;
  background-color: #cccccc;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.editorial__download.is-disabled:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  border-radius: 50%;
  border: 2px solid #fff;
  border-color: #ffffff transparent #ffffff transparent;
  vertical-align: bottom;
  animation: loading 1s linear infinite;
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .editorial__download.is-disabled:hover {
    background-color: #cccccc;
  }
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .editorial__download:hover {
    background-color: #016f92;
  }
}

.editorial__select {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  border: 1px solid #0296c4;
  border-radius: 2px;
  font-family: "OpenSans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  color: #0296c4;
  background-color: #ffffff;
  transition: color 0.2s;
  cursor: pointer;
  text-decoration: none;
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .editorial__select:hover {
    color: #000000;
  }
}

.assets {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: rgba(32, 34, 33, 0.96);
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.2s 0s, visibility 0s 0.2s, z-index 0s 0.2s;
}
@media (max-width: 1024px) {
  .assets {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}
.assets.is-active {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transition: opacity 0.2s 0s, visibility 0s 0s, z-index 0s 0s;
}

.assets__heading {
  font-family: "OpenSans", sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #ffffff;
}

.assets__list {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
}

.assets__item {
  display: flex;
  align-items: stretch;
  margin-top: 5px;
}

.assets__checkbox {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid #ffffff;
  text-align: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.assets__checkbox:checked:after {
  content: "✓";
  line-height: 1;
  color: #ffffff;
}

.assets__label {
  display: flex;
  flex-grow: 1;
  align-items: center;
  margin-left: 10px;
  font-family: "OpenSans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #ffffff;
}

.assets__download {
  display: block;
  width: 100%;
  max-width: 140px;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 8px;
  border: none;
  border-radius: 2px;
  font-family: "OpenSans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  color: #ffffff;
  background-color: #0296c4;
  transition: background-color 0.2s;
  cursor: pointer;
}
.assets__download.is-disabled {
  cursor: default;
  background-color: #cccccc;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.assets__download.is-disabled:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  border-radius: 50%;
  border: 2px solid #fff;
  border-color: #ffffff transparent #ffffff transparent;
  vertical-align: bottom;
  animation: loading 1s linear infinite;
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .assets__download.is-disabled:hover {
    background-color: #cccccc;
  }
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .assets__download:hover {
    background-color: #016f92;
  }
}

.media-links {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}
@media (min-width: 1025px) {
  .media-links {
    margin: -30px -10px -10px;
  }
}
@media (max-width: 1024px) {
  .media-links {
    margin: -10px;
  }
}
.media-links.is-hidden {
  display: none;
}

.media-links__item {
  padding: 10px;
  box-sizing: border-box;
}
@media (min-width: 641px) {
  .media-links__item {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .media-links__item {
    width: 100%;
  }
}

.media-links__container {
  transition: background-color 0.2s;
}
@media (min-width: 641px) {
  .media-links__container {
    padding: 20px;
  }
}
@media (min-width: 641px) {
  .media-links__container:hover {
    background-color: #ecf9ff;
  }
}

.media-links__wrapper {
  position: relative;
  display: block;
}

.media-links__image {
  display: block;
  width: 100%;
}

.media-links__date {
  display: block;
  margin-top: 10px;
  font-family: "OpenSans", sans-serif;
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  text-align: center;
  color: #9a9999;
}

.media-links__title {
  display: block;
  margin-top: 10px;
  font-family: "OpenSans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  color: #565656;
}

.media-links__description {
  display: block;
  margin-top: 10px;
  font-family: "OpenSans", sans-serif;
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  color: #9a9999;
}

.media-links__link {
  display: block;
  max-width: 100px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px;
  border-radius: 2px;
  font-family: "OpenSans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: #0296c4;
  transition: background-color 0.2s;
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .media-links__link:hover {
    background-color: #016f92;
  }
}

.play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 33.33%;
  padding-bottom: 33.33%;
  transform: translateX(-50%) translateY(-50%);
}

.play__icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-sizing: border-box;
  opacity: 0.8;
}
.play__icon:after {
  content: "";
  border-top: 50% solid transparent;
  border-bottom: 50% solid transparent;
  border-left: 50% solid #ffffff;
}

.alert {
  font-family: "Open Sans", sans-serif;
  color: #454545;
}
.alert.is-hidden {
  display: none;
}

@media (min-width: 641px) {
  .contact {
    margin-top: -20px;
  }
}

.contact__message {
  margin-top: 20px;
  margin-bottom: 0;
  border: 1px solid #0296c4;
  padding: 10px 20px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  background-color: #03bdf6;
}

.contact__label {
  display: block;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #4a4a4a;
}

.contact__input {
  width: 100%;
  padding: 5px 10px;
  border: 1px solid #0296c4;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #4a4a4a;
}

.contact__textarea {
  width: 100%;
  padding: 5px 10px;
  border: 1px solid #0296c4;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #4a4a4a;
}

.contact__button {
  margin-top: 20px;
  padding: 8px 20px;
  border: none;
  border-radius: 2px;
  font-family: "OpenSans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  background-color: #0296c4;
  transition: background-color 0.2s;
  cursor: pointer;
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .contact__button:hover {
    background-color: #016f92;
  }
}

.footer {
  display: flex;
  flex-direction: row;
  margin-top: auto;
  padding: 10px;
  background-color: #e1e1e1;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 600px) {
  .footer {
    flex-direction: column;
    gap: 0px;
  }
}

.footer__content {
  display: flex;
  flex-direction: row;
  font-family: "Open Sans", sans-serif;
  align-items: center;
  width: 100%;
}

.footer__heading {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #202221;
}

.footer__list {
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.footer__item {
  margin-left: 20px;
}

.footer__link {
  color: #202221;
  transition: color 0.2s;
}
@media not all and (hover: none), (-ms-high-contrast: none) {
  .footer__link:hover {
    color: #0296c4;
  }
}

.g-recaptcha {
  display: none;
}

.recaptcha_notice {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #202221;
  width: 100%;
}
.recaptcha_notice a {
  color: #0296c4;
}