@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}

.iti {
  position: relative;
  display: inline-block; }
  .iti * {
    box-sizing: border-box;
    -moz-box-sizing: border-box; }
  .iti__hide {
    display: none; }
  .iti__v-hide {
    visibility: hidden; }
  .iti input, .iti input[type=text], .iti input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0; }
  .iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px; }
  .iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 6px 0 8px; }
  .iti__arrow {
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555; }
    .iti__arrow--up {
      border-top: none;
      border-bottom: 4px solid #555; }
  .iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 1px solid #CCC;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; }
    .iti__country-list--dropup {
      bottom: 100%;
      margin-bottom: -1px; }
    @media (max-width: 500px) {
      .iti__country-list {
        white-space: normal; } }
  .iti__flag-box {
    display: inline-block;
    width: 20px; }
  .iti__divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #CCC; }
  .iti__country {
    padding: 5px 10px;
    outline: none; }
  .iti__dial-code {
    color: #999; }
  .iti__country.iti__highlight {
    background-color: rgba(0, 0, 0, 0.05); }
  .iti__flag-box, .iti__country-name, .iti__dial-code {
    vertical-align: middle; }
  .iti__flag-box, .iti__country-name {
    margin-right: 6px; }
  .iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0; }
  .iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 0; }
  .iti--allow-dropdown .iti__flag-container:hover {
    cursor: pointer; }
    .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
      background-color: rgba(0, 0, 0, 0.05); }
  .iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
  .iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
    cursor: default; }
    .iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
    .iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
      background-color: transparent; }
  .iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.05); }
  .iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px; }
  .iti--container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px; }
    .iti--container:hover {
      cursor: pointer; }

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed; }

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%; }

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em; }

.iti__flag {
  width: 20px; }
  .iti__flag.iti__be {
    width: 18px; }
  .iti__flag.iti__ch {
    width: 15px; }
  .iti__flag.iti__mc {
    width: 19px; }
  .iti__flag.iti__ne {
    width: 18px; }
  .iti__flag.iti__np {
    width: 13px; }
  .iti__flag.iti__va {
    width: 15px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-size: 5652px 15px; } }
  .iti__flag.iti__ac {
    height: 10px;
    background-position: 0px 0px; }
  .iti__flag.iti__ad {
    height: 14px;
    background-position: -22px 0px; }
  .iti__flag.iti__ae {
    height: 10px;
    background-position: -44px 0px; }
  .iti__flag.iti__af {
    height: 14px;
    background-position: -66px 0px; }
  .iti__flag.iti__ag {
    height: 14px;
    background-position: -88px 0px; }
  .iti__flag.iti__ai {
    height: 10px;
    background-position: -110px 0px; }
  .iti__flag.iti__al {
    height: 15px;
    background-position: -132px 0px; }
  .iti__flag.iti__am {
    height: 10px;
    background-position: -154px 0px; }
  .iti__flag.iti__ao {
    height: 14px;
    background-position: -176px 0px; }
  .iti__flag.iti__aq {
    height: 14px;
    background-position: -198px 0px; }
  .iti__flag.iti__ar {
    height: 13px;
    background-position: -220px 0px; }
  .iti__flag.iti__as {
    height: 10px;
    background-position: -242px 0px; }
  .iti__flag.iti__at {
    height: 14px;
    background-position: -264px 0px; }
  .iti__flag.iti__au {
    height: 10px;
    background-position: -286px 0px; }
  .iti__flag.iti__aw {
    height: 14px;
    background-position: -308px 0px; }
  .iti__flag.iti__ax {
    height: 13px;
    background-position: -330px 0px; }
  .iti__flag.iti__az {
    height: 10px;
    background-position: -352px 0px; }
  .iti__flag.iti__ba {
    height: 10px;
    background-position: -374px 0px; }
  .iti__flag.iti__bb {
    height: 14px;
    background-position: -396px 0px; }
  .iti__flag.iti__bd {
    height: 12px;
    background-position: -418px 0px; }
  .iti__flag.iti__be {
    height: 15px;
    background-position: -440px 0px; }
  .iti__flag.iti__bf {
    height: 14px;
    background-position: -460px 0px; }
  .iti__flag.iti__bg {
    height: 12px;
    background-position: -482px 0px; }
  .iti__flag.iti__bh {
    height: 12px;
    background-position: -504px 0px; }
  .iti__flag.iti__bi {
    height: 12px;
    background-position: -526px 0px; }
  .iti__flag.iti__bj {
    height: 14px;
    background-position: -548px 0px; }
  .iti__flag.iti__bl {
    height: 14px;
    background-position: -570px 0px; }
  .iti__flag.iti__bm {
    height: 10px;
    background-position: -592px 0px; }
  .iti__flag.iti__bn {
    height: 10px;
    background-position: -614px 0px; }
  .iti__flag.iti__bo {
    height: 14px;
    background-position: -636px 0px; }
  .iti__flag.iti__bq {
    height: 14px;
    background-position: -658px 0px; }
  .iti__flag.iti__br {
    height: 14px;
    background-position: -680px 0px; }
  .iti__flag.iti__bs {
    height: 10px;
    background-position: -702px 0px; }
  .iti__flag.iti__bt {
    height: 14px;
    background-position: -724px 0px; }
  .iti__flag.iti__bv {
    height: 15px;
    background-position: -746px 0px; }
  .iti__flag.iti__bw {
    height: 14px;
    background-position: -768px 0px; }
  .iti__flag.iti__by {
    height: 10px;
    background-position: -790px 0px; }
  .iti__flag.iti__bz {
    height: 14px;
    background-position: -812px 0px; }
  .iti__flag.iti__ca {
    height: 10px;
    background-position: -834px 0px; }
  .iti__flag.iti__cc {
    height: 10px;
    background-position: -856px 0px; }
  .iti__flag.iti__cd {
    height: 15px;
    background-position: -878px 0px; }
  .iti__flag.iti__cf {
    height: 14px;
    background-position: -900px 0px; }
  .iti__flag.iti__cg {
    height: 14px;
    background-position: -922px 0px; }
  .iti__flag.iti__ch {
    height: 15px;
    background-position: -944px 0px; }
  .iti__flag.iti__ci {
    height: 14px;
    background-position: -961px 0px; }
  .iti__flag.iti__ck {
    height: 10px;
    background-position: -983px 0px; }
  .iti__flag.iti__cl {
    height: 14px;
    background-position: -1005px 0px; }
  .iti__flag.iti__cm {
    height: 14px;
    background-position: -1027px 0px; }
  .iti__flag.iti__cn {
    height: 14px;
    background-position: -1049px 0px; }
  .iti__flag.iti__co {
    height: 14px;
    background-position: -1071px 0px; }
  .iti__flag.iti__cp {
    height: 14px;
    background-position: -1093px 0px; }
  .iti__flag.iti__cr {
    height: 12px;
    background-position: -1115px 0px; }
  .iti__flag.iti__cu {
    height: 10px;
    background-position: -1137px 0px; }
  .iti__flag.iti__cv {
    height: 12px;
    background-position: -1159px 0px; }
  .iti__flag.iti__cw {
    height: 14px;
    background-position: -1181px 0px; }
  .iti__flag.iti__cx {
    height: 10px;
    background-position: -1203px 0px; }
  .iti__flag.iti__cy {
    height: 14px;
    background-position: -1225px 0px; }
  .iti__flag.iti__cz {
    height: 14px;
    background-position: -1247px 0px; }
  .iti__flag.iti__de {
    height: 12px;
    background-position: -1269px 0px; }
  .iti__flag.iti__dg {
    height: 10px;
    background-position: -1291px 0px; }
  .iti__flag.iti__dj {
    height: 14px;
    background-position: -1313px 0px; }
  .iti__flag.iti__dk {
    height: 15px;
    background-position: -1335px 0px; }
  .iti__flag.iti__dm {
    height: 10px;
    background-position: -1357px 0px; }
  .iti__flag.iti__do {
    height: 14px;
    background-position: -1379px 0px; }
  .iti__flag.iti__dz {
    height: 14px;
    background-position: -1401px 0px; }
  .iti__flag.iti__ea {
    height: 14px;
    background-position: -1423px 0px; }
  .iti__flag.iti__ec {
    height: 14px;
    background-position: -1445px 0px; }
  .iti__flag.iti__ee {
    height: 13px;
    background-position: -1467px 0px; }
  .iti__flag.iti__eg {
    height: 14px;
    background-position: -1489px 0px; }
  .iti__flag.iti__eh {
    height: 10px;
    background-position: -1511px 0px; }
  .iti__flag.iti__er {
    height: 10px;
    background-position: -1533px 0px; }
  .iti__flag.iti__es {
    height: 14px;
    background-position: -1555px 0px; }
  .iti__flag.iti__et {
    height: 10px;
    background-position: -1577px 0px; }
  .iti__flag.iti__eu {
    height: 14px;
    background-position: -1599px 0px; }
  .iti__flag.iti__fi {
    height: 12px;
    background-position: -1621px 0px; }
  .iti__flag.iti__fj {
    height: 10px;
    background-position: -1643px 0px; }
  .iti__flag.iti__fk {
    height: 10px;
    background-position: -1665px 0px; }
  .iti__flag.iti__fm {
    height: 11px;
    background-position: -1687px 0px; }
  .iti__flag.iti__fo {
    height: 15px;
    background-position: -1709px 0px; }
  .iti__flag.iti__fr {
    height: 14px;
    background-position: -1731px 0px; }
  .iti__flag.iti__ga {
    height: 15px;
    background-position: -1753px 0px; }
  .iti__flag.iti__gb {
    height: 10px;
    background-position: -1775px 0px; }
  .iti__flag.iti__gd {
    height: 12px;
    background-position: -1797px 0px; }
  .iti__flag.iti__ge {
    height: 14px;
    background-position: -1819px 0px; }
  .iti__flag.iti__gf {
    height: 14px;
    background-position: -1841px 0px; }
  .iti__flag.iti__gg {
    height: 14px;
    background-position: -1863px 0px; }
  .iti__flag.iti__gh {
    height: 14px;
    background-position: -1885px 0px; }
  .iti__flag.iti__gi {
    height: 10px;
    background-position: -1907px 0px; }
  .iti__flag.iti__gl {
    height: 14px;
    background-position: -1929px 0px; }
  .iti__flag.iti__gm {
    height: 14px;
    background-position: -1951px 0px; }
  .iti__flag.iti__gn {
    height: 14px;
    background-position: -1973px 0px; }
  .iti__flag.iti__gp {
    height: 14px;
    background-position: -1995px 0px; }
  .iti__flag.iti__gq {
    height: 14px;
    background-position: -2017px 0px; }
  .iti__flag.iti__gr {
    height: 14px;
    background-position: -2039px 0px; }
  .iti__flag.iti__gs {
    height: 10px;
    background-position: -2061px 0px; }
  .iti__flag.iti__gt {
    height: 13px;
    background-position: -2083px 0px; }
  .iti__flag.iti__gu {
    height: 11px;
    background-position: -2105px 0px; }
  .iti__flag.iti__gw {
    height: 10px;
    background-position: -2127px 0px; }
  .iti__flag.iti__gy {
    height: 12px;
    background-position: -2149px 0px; }
  .iti__flag.iti__hk {
    height: 14px;
    background-position: -2171px 0px; }
  .iti__flag.iti__hm {
    height: 10px;
    background-position: -2193px 0px; }
  .iti__flag.iti__hn {
    height: 10px;
    background-position: -2215px 0px; }
  .iti__flag.iti__hr {
    height: 10px;
    background-position: -2237px 0px; }
  .iti__flag.iti__ht {
    height: 12px;
    background-position: -2259px 0px; }
  .iti__flag.iti__hu {
    height: 10px;
    background-position: -2281px 0px; }
  .iti__flag.iti__ic {
    height: 14px;
    background-position: -2303px 0px; }
  .iti__flag.iti__id {
    height: 14px;
    background-position: -2325px 0px; }
  .iti__flag.iti__ie {
    height: 10px;
    background-position: -2347px 0px; }
  .iti__flag.iti__il {
    height: 15px;
    background-position: -2369px 0px; }
  .iti__flag.iti__im {
    height: 10px;
    background-position: -2391px 0px; }
  .iti__flag.iti__in {
    height: 14px;
    background-position: -2413px 0px; }
  .iti__flag.iti__io {
    height: 10px;
    background-position: -2435px 0px; }
  .iti__flag.iti__iq {
    height: 14px;
    background-position: -2457px 0px; }
  .iti__flag.iti__ir {
    height: 12px;
    background-position: -2479px 0px; }
  .iti__flag.iti__is {
    height: 15px;
    background-position: -2501px 0px; }
  .iti__flag.iti__it {
    height: 14px;
    background-position: -2523px 0px; }
  .iti__flag.iti__je {
    height: 12px;
    background-position: -2545px 0px; }
  .iti__flag.iti__jm {
    height: 10px;
    background-position: -2567px 0px; }
  .iti__flag.iti__jo {
    height: 10px;
    background-position: -2589px 0px; }
  .iti__flag.iti__jp {
    height: 14px;
    background-position: -2611px 0px; }
  .iti__flag.iti__ke {
    height: 14px;
    background-position: -2633px 0px; }
  .iti__flag.iti__kg {
    height: 12px;
    background-position: -2655px 0px; }
  .iti__flag.iti__kh {
    height: 13px;
    background-position: -2677px 0px; }
  .iti__flag.iti__ki {
    height: 10px;
    background-position: -2699px 0px; }
  .iti__flag.iti__km {
    height: 12px;
    background-position: -2721px 0px; }
  .iti__flag.iti__kn {
    height: 14px;
    background-position: -2743px 0px; }
  .iti__flag.iti__kp {
    height: 10px;
    background-position: -2765px 0px; }
  .iti__flag.iti__kr {
    height: 14px;
    background-position: -2787px 0px; }
  .iti__flag.iti__kw {
    height: 10px;
    background-position: -2809px 0px; }
  .iti__flag.iti__ky {
    height: 10px;
    background-position: -2831px 0px; }
  .iti__flag.iti__kz {
    height: 10px;
    background-position: -2853px 0px; }
  .iti__flag.iti__la {
    height: 14px;
    background-position: -2875px 0px; }
  .iti__flag.iti__lb {
    height: 14px;
    background-position: -2897px 0px; }
  .iti__flag.iti__lc {
    height: 10px;
    background-position: -2919px 0px; }
  .iti__flag.iti__li {
    height: 12px;
    background-position: -2941px 0px; }
  .iti__flag.iti__lk {
    height: 10px;
    background-position: -2963px 0px; }
  .iti__flag.iti__lr {
    height: 11px;
    background-position: -2985px 0px; }
  .iti__flag.iti__ls {
    height: 14px;
    background-position: -3007px 0px; }
  .iti__flag.iti__lt {
    height: 12px;
    background-position: -3029px 0px; }
  .iti__flag.iti__lu {
    height: 12px;
    background-position: -3051px 0px; }
  .iti__flag.iti__lv {
    height: 10px;
    background-position: -3073px 0px; }
  .iti__flag.iti__ly {
    height: 10px;
    background-position: -3095px 0px; }
  .iti__flag.iti__ma {
    height: 14px;
    background-position: -3117px 0px; }
  .iti__flag.iti__mc {
    height: 15px;
    background-position: -3139px 0px; }
  .iti__flag.iti__md {
    height: 10px;
    background-position: -3160px 0px; }
  .iti__flag.iti__me {
    height: 10px;
    background-position: -3182px 0px; }
  .iti__flag.iti__mf {
    height: 14px;
    background-position: -3204px 0px; }
  .iti__flag.iti__mg {
    height: 14px;
    background-position: -3226px 0px; }
  .iti__flag.iti__mh {
    height: 11px;
    background-position: -3248px 0px; }
  .iti__flag.iti__mk {
    height: 10px;
    background-position: -3270px 0px; }
  .iti__flag.iti__ml {
    height: 14px;
    background-position: -3292px 0px; }
  .iti__flag.iti__mm {
    height: 14px;
    background-position: -3314px 0px; }
  .iti__flag.iti__mn {
    height: 10px;
    background-position: -3336px 0px; }
  .iti__flag.iti__mo {
    height: 14px;
    background-position: -3358px 0px; }
  .iti__flag.iti__mp {
    height: 10px;
    background-position: -3380px 0px; }
  .iti__flag.iti__mq {
    height: 14px;
    background-position: -3402px 0px; }
  .iti__flag.iti__mr {
    height: 14px;
    background-position: -3424px 0px; }
  .iti__flag.iti__ms {
    height: 10px;
    background-position: -3446px 0px; }
  .iti__flag.iti__mt {
    height: 14px;
    background-position: -3468px 0px; }
  .iti__flag.iti__mu {
    height: 14px;
    background-position: -3490px 0px; }
  .iti__flag.iti__mv {
    height: 14px;
    background-position: -3512px 0px; }
  .iti__flag.iti__mw {
    height: 14px;
    background-position: -3534px 0px; }
  .iti__flag.iti__mx {
    height: 12px;
    background-position: -3556px 0px; }
  .iti__flag.iti__my {
    height: 10px;
    background-position: -3578px 0px; }
  .iti__flag.iti__mz {
    height: 14px;
    background-position: -3600px 0px; }
  .iti__flag.iti__na {
    height: 14px;
    background-position: -3622px 0px; }
  .iti__flag.iti__nc {
    height: 10px;
    background-position: -3644px 0px; }
  .iti__flag.iti__ne {
    height: 15px;
    background-position: -3666px 0px; }
  .iti__flag.iti__nf {
    height: 10px;
    background-position: -3686px 0px; }
  .iti__flag.iti__ng {
    height: 10px;
    background-position: -3708px 0px; }
  .iti__flag.iti__ni {
    height: 12px;
    background-position: -3730px 0px; }
  .iti__flag.iti__nl {
    height: 14px;
    background-position: -3752px 0px; }
  .iti__flag.iti__no {
    height: 15px;
    background-position: -3774px 0px; }
  .iti__flag.iti__np {
    height: 15px;
    background-position: -3796px 0px; }
  .iti__flag.iti__nr {
    height: 10px;
    background-position: -3811px 0px; }
  .iti__flag.iti__nu {
    height: 10px;
    background-position: -3833px 0px; }
  .iti__flag.iti__nz {
    height: 10px;
    background-position: -3855px 0px; }
  .iti__flag.iti__om {
    height: 10px;
    background-position: -3877px 0px; }
  .iti__flag.iti__pa {
    height: 14px;
    background-position: -3899px 0px; }
  .iti__flag.iti__pe {
    height: 14px;
    background-position: -3921px 0px; }
  .iti__flag.iti__pf {
    height: 14px;
    background-position: -3943px 0px; }
  .iti__flag.iti__pg {
    height: 15px;
    background-position: -3965px 0px; }
  .iti__flag.iti__ph {
    height: 10px;
    background-position: -3987px 0px; }
  .iti__flag.iti__pk {
    height: 14px;
    background-position: -4009px 0px; }
  .iti__flag.iti__pl {
    height: 13px;
    background-position: -4031px 0px; }
  .iti__flag.iti__pm {
    height: 14px;
    background-position: -4053px 0px; }
  .iti__flag.iti__pn {
    height: 10px;
    background-position: -4075px 0px; }
  .iti__flag.iti__pr {
    height: 14px;
    background-position: -4097px 0px; }
  .iti__flag.iti__ps {
    height: 10px;
    background-position: -4119px 0px; }
  .iti__flag.iti__pt {
    height: 14px;
    background-position: -4141px 0px; }
  .iti__flag.iti__pw {
    height: 13px;
    background-position: -4163px 0px; }
  .iti__flag.iti__py {
    height: 11px;
    background-position: -4185px 0px; }
  .iti__flag.iti__qa {
    height: 8px;
    background-position: -4207px 0px; }
  .iti__flag.iti__re {
    height: 14px;
    background-position: -4229px 0px; }
  .iti__flag.iti__ro {
    height: 14px;
    background-position: -4251px 0px; }
  .iti__flag.iti__rs {
    height: 14px;
    background-position: -4273px 0px; }
  .iti__flag.iti__ru {
    height: 14px;
    background-position: -4295px 0px; }
  .iti__flag.iti__rw {
    height: 14px;
    background-position: -4317px 0px; }
  .iti__flag.iti__sa {
    height: 14px;
    background-position: -4339px 0px; }
  .iti__flag.iti__sb {
    height: 10px;
    background-position: -4361px 0px; }
  .iti__flag.iti__sc {
    height: 10px;
    background-position: -4383px 0px; }
  .iti__flag.iti__sd {
    height: 10px;
    background-position: -4405px 0px; }
  .iti__flag.iti__se {
    height: 13px;
    background-position: -4427px 0px; }
  .iti__flag.iti__sg {
    height: 14px;
    background-position: -4449px 0px; }
  .iti__flag.iti__sh {
    height: 10px;
    background-position: -4471px 0px; }
  .iti__flag.iti__si {
    height: 10px;
    background-position: -4493px 0px; }
  .iti__flag.iti__sj {
    height: 15px;
    background-position: -4515px 0px; }
  .iti__flag.iti__sk {
    height: 14px;
    background-position: -4537px 0px; }
  .iti__flag.iti__sl {
    height: 14px;
    background-position: -4559px 0px; }
  .iti__flag.iti__sm {
    height: 15px;
    background-position: -4581px 0px; }
  .iti__flag.iti__sn {
    height: 14px;
    background-position: -4603px 0px; }
  .iti__flag.iti__so {
    height: 14px;
    background-position: -4625px 0px; }
  .iti__flag.iti__sr {
    height: 14px;
    background-position: -4647px 0px; }
  .iti__flag.iti__ss {
    height: 10px;
    background-position: -4669px 0px; }
  .iti__flag.iti__st {
    height: 10px;
    background-position: -4691px 0px; }
  .iti__flag.iti__sv {
    height: 12px;
    background-position: -4713px 0px; }
  .iti__flag.iti__sx {
    height: 14px;
    background-position: -4735px 0px; }
  .iti__flag.iti__sy {
    height: 14px;
    background-position: -4757px 0px; }
  .iti__flag.iti__sz {
    height: 14px;
    background-position: -4779px 0px; }
  .iti__flag.iti__ta {
    height: 10px;
    background-position: -4801px 0px; }
  .iti__flag.iti__tc {
    height: 10px;
    background-position: -4823px 0px; }
  .iti__flag.iti__td {
    height: 14px;
    background-position: -4845px 0px; }
  .iti__flag.iti__tf {
    height: 14px;
    background-position: -4867px 0px; }
  .iti__flag.iti__tg {
    height: 13px;
    background-position: -4889px 0px; }
  .iti__flag.iti__th {
    height: 14px;
    background-position: -4911px 0px; }
  .iti__flag.iti__tj {
    height: 10px;
    background-position: -4933px 0px; }
  .iti__flag.iti__tk {
    height: 10px;
    background-position: -4955px 0px; }
  .iti__flag.iti__tl {
    height: 10px;
    background-position: -4977px 0px; }
  .iti__flag.iti__tm {
    height: 14px;
    background-position: -4999px 0px; }
  .iti__flag.iti__tn {
    height: 14px;
    background-position: -5021px 0px; }
  .iti__flag.iti__to {
    height: 10px;
    background-position: -5043px 0px; }
  .iti__flag.iti__tr {
    height: 14px;
    background-position: -5065px 0px; }
  .iti__flag.iti__tt {
    height: 12px;
    background-position: -5087px 0px; }
  .iti__flag.iti__tv {
    height: 10px;
    background-position: -5109px 0px; }
  .iti__flag.iti__tw {
    height: 14px;
    background-position: -5131px 0px; }
  .iti__flag.iti__tz {
    height: 14px;
    background-position: -5153px 0px; }
  .iti__flag.iti__ua {
    height: 14px;
    background-position: -5175px 0px; }
  .iti__flag.iti__ug {
    height: 14px;
    background-position: -5197px 0px; }
  .iti__flag.iti__um {
    height: 11px;
    background-position: -5219px 0px; }
  .iti__flag.iti__un {
    height: 14px;
    background-position: -5241px 0px; }
  .iti__flag.iti__us {
    height: 11px;
    background-position: -5263px 0px; }
  .iti__flag.iti__uy {
    height: 14px;
    background-position: -5285px 0px; }
  .iti__flag.iti__uz {
    height: 10px;
    background-position: -5307px 0px; }
  .iti__flag.iti__va {
    height: 15px;
    background-position: -5329px 0px; }
  .iti__flag.iti__vc {
    height: 14px;
    background-position: -5346px 0px; }
  .iti__flag.iti__ve {
    height: 14px;
    background-position: -5368px 0px; }
  .iti__flag.iti__vg {
    height: 10px;
    background-position: -5390px 0px; }
  .iti__flag.iti__vi {
    height: 14px;
    background-position: -5412px 0px; }
  .iti__flag.iti__vn {
    height: 14px;
    background-position: -5434px 0px; }
  .iti__flag.iti__vu {
    height: 12px;
    background-position: -5456px 0px; }
  .iti__flag.iti__wf {
    height: 14px;
    background-position: -5478px 0px; }
  .iti__flag.iti__ws {
    height: 10px;
    background-position: -5500px 0px; }
  .iti__flag.iti__xk {
    height: 15px;
    background-position: -5522px 0px; }
  .iti__flag.iti__ye {
    height: 14px;
    background-position: -5544px 0px; }
  .iti__flag.iti__yt {
    height: 14px;
    background-position: -5566px 0px; }
  .iti__flag.iti__za {
    height: 14px;
    background-position: -5588px 0px; }
  .iti__flag.iti__zm {
    height: 14px;
    background-position: -5610px 0px; }
  .iti__flag.iti__zw {
    height: 10px;
    background-position: -5632px 0px; }

.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("../img/flags.png");
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-image: url("../img/flags@2x.png"); } }

.iti__flag.iti__np {
  background-color: transparent; }

@charset "UTF-8";
.vjs-modal-dialog .vjs-modal-dialog-content, .video-js .vjs-modal-dialog, .vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  text-align: center;
}

@font-face {
  font-family: VideoJS;
  src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABDkAAsAAAAAG6gAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV3hY21hcAAAAYQAAADaAAADPv749/pnbHlmAAACYAAAC3AAABHQZg6OcWhlYWQAAA3QAAAAKwAAADYZw251aGhlYQAADfwAAAAdAAAAJA+RCLFobXR4AAAOHAAAABMAAACM744AAGxvY2EAAA4wAAAASAAAAEhF6kqubWF4cAAADngAAAAfAAAAIAE0AIFuYW1lAAAOmAAAASUAAAIK1cf1oHBvc3QAAA/AAAABJAAAAdPExYuNeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGS7wTiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGJHcRdyA4RZgQRADK3CxEAAHic7dFZbsMgAEXRS0ycyZnnOeG7y+qC8pU1dHusIOXxuoxaOlwZYWQB0Aea4quIEN4E9LzKbKjzDeM6H/mua6Lmc/p8yhg0lvdYx15ZG8uOLQOGjMp3EzqmzJizYMmKNRu27Nhz4MiJMxeu3Ljz4Ekqm7T8P52G8PP3lnTOVk++Z6iN6QZzNN1F7ptuN7eGOjDUoaGODHVsuvU8MdTO9Hd5aqgzQ50b6sJQl4a6MtS1oW4MdWuoO0PdG+rBUI+GejLUs6FeDPVqqDdDvRvqw1CfhpqM9At0iFLaAAB4nJ1YDXBTVRZ+5/22TUlJ8we0pHlJm7RJf5O8F2j6EymlSPkpxaL8U2xpa3DKj0CBhc2IW4eWKSokIoLsuMqssM64f+jA4HSdWXXXscBq67IOs3FXZ1ZYWVyRFdo899yXtIBQZ90k7717zz3v3HPPOfd854YCCj9cL9dL0RQFOqCbGJnrHb5EayiKIWN8iA/hWBblo6hUWm8TtCDwE80WMJus/irwyxOdxeB0MDb14VNJHnXYoLLSl6FfCUYO9nYPTA8Epg9090LprfbBbZ2hY0UlJUXHQp3/vtWkS6EBv8+rPMq5u9692f/dNxJNiqwC1xPE9TCUgCsSdQWgE3XQD25lkG4CN2xmTcOXWBOyser6RN6KnGbKSbmQ3+d0OI1m2W8QzLLkI2sykrWAgJJEtA8vGGW/2Q+CmT3n8zS9wZwu2DCvtuZKZN3xkrLh36yCZuUomQSqGpY8t/25VfHVhw8z4ebGBtfLb0ya9PCaDc+8dGTvk2dsh6z7WzvowlXKUSWo9MJ15a3KrEP2loOr2Ojhw6iW6hf2BDdEccQvZGpaAy7YovSwq8kr7HGllxpd71rkS6G0Sf11sl9OvMK1+jwPPODxjUwkOim9CU3ix1wNjXDfmJSEn618Bs6lpWwUpU+8PCqLMY650zjq8VhCIP17NEKTx3eaLL+s5Pi6yJWaWjTHLR1jYzPSV9VF/6Ojdb/1kO3Mk3uhHC0x6gc1BjlKQ+nQFxTYdaJkZ7ySVxLBbhR1dsboNXp1tCYKW2LRaEzpYcIx2BKNxaL0ZaUnSqfFoiNhHKR/GkX6PWUSAaJelQaqZL1EpoHNsajSEyPSoJ9IjhIxTdjHLmwZvhRDOiFTY/YeQnvrVZmiTQtGncECXtFTBZLOVwwMRgoXHAkXzMzPn1nAJJ8jYSbMDaqN2waGLzNhih/bZynUBMpIWSg7VYi7DRx2m8ALkIdRCJwI6ArJx2EI8kaDWeTQKeAFk9fjl/1AvwktjQ1P7NjyMGQyfd4vjipX6M/i52D7Cq80kqlcxEcGXRr/FEcgs0u5uGgB4VWuMFfpdn2Re6Hi3PqzmxWKsz6+ae2Pn9hXXw/fqM859UiGC0oKYYILJBqJrsn1Z1E5qOs9rQCiUQRREjm8yJcbHF5cUJufX1vAHlefw0XgUoboS3ETfQlTxBC4SOtuE8VPRJTBSCQSjZCpk7Gqzu+masaZ2y7Zjehho4F3g82BNDkAHpORG4+OCS+f6JTPmtRn/PH1kch6d04sp7AQb25aQ/pqUyXeQ8vrebG8OYQdXOQ+585u0sdW9rqalzRURiJ+9F4MweRFrKUjl1GUYhH1A27WOHw5cTFSFPMo9EeUIGnQTZHIaJ7AHLaOKsOODaNF9jkBjYG2QEsQ2xjMUAx2bBEbeTBWMHwskBjngq56S/yfgkBnWBa4K9sqKtq2t1UI8S9He5XuBRbawAdatrQEAi30Aks2+LM8WeCbalVZkWNylvJ+dqJnzVb+OHlSoKW8nPCP7Rd+CcZ2DdWAGqJ2CBFOphgywFFCFBNtfAbGtNPBCwxvygHeYMZMY9ZboBqwq/pVrsbgN5tkv152ODlbMfiqwGMBgxa4Exz3QhovRIUp6acqZmQzRq0ypDXS2TPLT02YIkQETnOE445oOGxOmXAqUJNNG7XgupMjPq2ua9asrj5yY/yuKteO1Kx0YNJTufrirLe1mZnat7OL6rnUdCWenpW6I8mAnbsY8KWs1PuSovCW9A/Z25PQ24a7cNOqgmTkLmBMgh4THgc4b9k2IVv1/g/F5nGljwPLfOgHAzJzh45V/4+WenTzmMtR5Z7us2Tys909UHqrPY7KbckoxRvRHhmVc3cJGE97uml0R1S0jdULVl7EvZtDFVBF35N9cEdjpgmAiOlFZ+Dtoh93+D3zzHr8RRNZQhnCNMNbcegOvpEwZoL+06cJQ07h+th3fZ/7PVbVC6ngTAV/KoLFuO6+2KFcU651gEb5ugPSIb1D+Xp8V4+k3sEIGnw5mYe4If4k1lFYr6SCzmM2EQ8iWtmwjnBI9kTwe1TlfAmXh7H02by9fW2gsjKwtv0aaURKil4OdV7rDL1MXIFNrhdxohcZXYTnq47WisrKitaObbf5+yvkLi5J6lCNZZ+B6GC38VNBZBDidSS/+mSvh6s+srgC8pyKMvDtt+de3c9fU76ZPfuM8ud4Kv0fyP/LqfepMT/3oZxSqpZaTa1DaQYLY8TFsHYbWYsPoRhRWfL5eSSQbhUGgGC3YLbVMk6PitTFNGpAsNrC6D1VNBKgBHMejaiuRWEWGgsSDBTJjqWIl8kJLlsaLJ2tXDr6xGfT85bM2Q06a46x2HTgvdnV8z5YDy/27J4zt6x2VtkzjoYpkq36kaBr4eQSg7tyiVweWubXZugtadl58ydapfbORfKsDTuZ0OBgx4cfdjCf5tbWNITnL120fdOi1RV1C3uKGzNdwYLcMvZ3BxoPyTOCD1XvXTp7U10gWCVmTV9b3r2z0SkGWovb2hp9I89O8a2smlyaO8muMU+dRmtzp60IzAoFpjLr1n388boLyf0dRvxhsHZ0qbWqDkwqvvpkj4l0fY6EIXRi5sQSrAvsVYwXRy4qJ2EVtD1AN7a0HWth9ymvL1xc3WTUKK/TAHA/bXDVtVWfOMfuGxGZv4Ln/jVr9jc3j1yMv0tndmyt9Vq88Y9gH1wtLX3KWjot5++jWHgAoZZkQ14wGQ20Fli71UmKJAy4xKMSTGbVdybW7FDDAut9XpD5AzWrYO7zQ8qffqF8+Ynd/clrHcdyxGy3a/3+mfNnzC/cBsveTjnTvXf1o6vzOlZw7WtqtdmPK/Errz/6NNtD72zmNOZfbmYdTGHfoofqI79Oc+R2n1lrnL6pOm0Up7kwxhTW12Amm7WYkXR2qYrF2AmgmbAsxZjwy1xpg/m1Je2vrp8v/nz2xpmlBg4E9hrMU341wVpTOh/OfmGvAnra8q6uctr60ZQHV3Q+WMQJykMj8ZsWn2QBOmmHMB+m5pDIpTFonYigiaKAhGEiAHF7EliVnQkjoLVIMPtJpBKHYd3A8GYH9jJzrWwmHx5Qjp7vDAX0suGRym1vtm/9W1/HyR8vczfMs6Sk8DSv855/5dlX9oQq52hT8syyp2rx5Id17IAyAM3wIjQPMOHzytEB64q6D5zT91yNbnx3V/nqnd017S9Y0605k3izoXLpsxde2n38yoOV9s1LcjwzNjbdX6asnBVaBj/6/DwKwPkpcqbDG7BnsXoSqWnUAmottYF6jMSdVyYZh3zVXCjwTiwwHH6sGuRiEHQGzuRX6whZkp123oy1BWE2mEfJ/tvIRtM4ZM5bDXiMsPMaAKOTyc5uL57rqyyc5y5JE5pm1i2S2iUX0CcaQ6lC6Zog7JqSqZmYlosl2K6pwNA84zRnQW6SaALYZQGW5lhCtU/W34N6o+bKfZ8cf3/Cl/+iTX3wBzpOY4mRkeNf3rptycGSshQWgGbYt5jFc2e0+DglIrwl6DVWQ7BuwaJ3Xk1J4VL5urnLl/Wf+gHU/hZoZdKNym6lG+I34FaNeZKcSpJIo2IeCVvpdsDGfKvzJnAwmeD37Ow65ZWwSowpgwX5T69s/rB55dP5BcpgDKFV8p7q2sn/1uc93bVzT/w6UrCqDTWvfCq/oCD/qZXNoUj8BL5Kp6GU017frfNXkAtiiyf/SOCEeLqnd8R/Ql9GlCRfctS6k5chvIBuQ1zCCjoCHL2DHNHIXxMJ3kQeO8lbsUXONeSfA5EjcG6/E+KdhN4bP04vBhdi883+BFBzQbxFbvZzQeY9LNBZc0FNfn5NwfDn6rCTnTw6R8o+gfpf5hCom33cRuiTlss3KHmZjD+BPN+5gXuA2ziS/Q73mLxUkpbKN/eqwz5uK0X9F3h2d1V4nGNgZGBgAOJd776+iue3+crAzc4AAje5Bfcg0xz9YHEOBiYQBQA8FQlFAHicY2BkYGBnAAGOPgaG//85+hkYGVCBMgBGGwNYAAAAeJxjYGBgYB8EmKOPgQEAQ04BfgAAAAAAAA4AaAB+AMwA4AECAUIBbAGYAcICGAJYArQC4AMwA7AD3gQwBJYE3AUkBWYFigYgBmYGtAbqB1gIEghYCG4IhAi2COh4nGNgZGBgUGYoZWBnAAEmIOYCQgaG/2A+AwAYCQG2AHicXZBNaoNAGIZfE5PQCKFQ2lUps2oXBfOzzAESyDKBQJdGR2NQR3QSSE/QE/QEPUUPUHqsvsrXjTMw83zPvPMNCuAWP3DQDAejdm1GjzwS7pMmwi75XngAD4/CQ/oX4TFe4Qt7uMMbOzjuDc0EmXCP/C7cJ38Iu+RP4QEe8CU8pP8WHmOPX2EPz87TPo202ey2OjlnQSXV/6arOjWFmvszMWtd6CqwOlKHq6ovycLaWMWVydXKFFZnmVFlZU46tP7R2nI5ncbi/dDkfDtFBA2DDXbYkhKc+V0Bqs5Zt9JM1HQGBRTm/EezTmZNKtpcAMs9Yu6AK9caF76zoLWIWcfMGOSkVduvSWechqZsz040Ib2PY3urxBJTzriT95lipz+TN1fmAAAAeJxtkMl2wjAMRfOAhABlKm2h80C3+ajgCKKDY6cegP59TYBzukAL+z1Zsq8ctaJTTKPrsUQLbXQQI0EXKXroY4AbDDHCGBNMcYsZ7nCPB8yxwCOe8IwXvOIN7/jAJ76wxHfUqWX+OzgumWAjJMV17i0Ndlr6irLKO+qftdT7i6y4uFSUvCknay+lFYZIZaQcmfH/xIFdYn98bqhra1aKTM/6lWMnyaYirx1rFUQZFBkb2zJUtoXeJCeg0WnLtHeSFc3OtrnozNwqi0TkSpBMDB1nSde5oJXW23hTS2/T0LilglXX7dmFVxLnq5U0vYATHFk3zX3BOisoQHNDFDeZnqKDy9hRNawN7Vh727hFzcJ5c8TILrKZfH7tIPxAFP0BpLeJPA==) format("woff");
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play, .video-js .vjs-play-control .vjs-icon-placeholder, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play:before, .video-js .vjs-play-control .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "\f101";
}

.vjs-icon-play-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play-circle:before {
  content: "\f102";
}

.vjs-icon-pause, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-pause:before, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before {
  content: "\f103";
}

.vjs-icon-volume-mute, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-mute:before, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {
  content: "\f104";
}

.vjs-icon-volume-low, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-low:before, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before {
  content: "\f105";
}

.vjs-icon-volume-mid, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-mid:before, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before {
  content: "\f106";
}

.vjs-icon-volume-high, .video-js .vjs-mute-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-high:before, .video-js .vjs-mute-control .vjs-icon-placeholder:before {
  content: "\f107";
}

.vjs-icon-fullscreen-enter, .video-js .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-fullscreen-enter:before, .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f108";
}

.vjs-icon-fullscreen-exit, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-fullscreen-exit:before, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f109";
}

.vjs-icon-square {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-square:before {
  content: "\f10a";
}

.vjs-icon-spinner {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-spinner:before {
  content: "\f10b";
}

.vjs-icon-subtitles, .video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-subtitles-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-subtitles:before, .video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before {
  content: "\f10c";
}

.vjs-icon-captions, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-captions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-captions:before, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-captions-button .vjs-icon-placeholder:before {
  content: "\f10d";
}

.vjs-icon-chapters, .video-js .vjs-chapters-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-chapters:before, .video-js .vjs-chapters-button .vjs-icon-placeholder:before {
  content: "\f10e";
}

.vjs-icon-share {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-share:before {
  content: "\f10f";
}

.vjs-icon-cog {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-cog:before {
  content: "\f110";
}

.vjs-icon-circle, .vjs-seek-to-live-control .vjs-icon-placeholder, .video-js .vjs-volume-level, .video-js .vjs-play-progress {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-circle:before, .vjs-seek-to-live-control .vjs-icon-placeholder:before, .video-js .vjs-volume-level:before, .video-js .vjs-play-progress:before {
  content: "\f111";
}

.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-circle-outline:before {
  content: "\f112";
}

.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-circle-inner-circle:before {
  content: "\f113";
}

.vjs-icon-hd {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-hd:before {
  content: "\f114";
}

.vjs-icon-cancel, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-cancel:before, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before {
  content: "\f115";
}

.vjs-icon-replay, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-replay:before, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before {
  content: "\f116";
}

.vjs-icon-facebook {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-facebook:before {
  content: "\f117";
}

.vjs-icon-gplus {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-gplus:before {
  content: "\f118";
}

.vjs-icon-linkedin {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-linkedin:before {
  content: "\f119";
}

.vjs-icon-twitter {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-twitter:before {
  content: "\f11a";
}

.vjs-icon-tumblr {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-tumblr:before {
  content: "\f11b";
}

.vjs-icon-pinterest {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-pinterest:before {
  content: "\f11c";
}

.vjs-icon-audio-description, .video-js .vjs-descriptions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-audio-description:before, .video-js .vjs-descriptions-button .vjs-icon-placeholder:before {
  content: "\f11d";
}

.vjs-icon-audio, .video-js .vjs-audio-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-audio:before, .video-js .vjs-audio-button .vjs-icon-placeholder:before {
  content: "\f11e";
}

.vjs-icon-next-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-next-item:before {
  content: "\f11f";
}

.vjs-icon-previous-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-previous-item:before {
  content: "\f120";
}

.vjs-icon-picture-in-picture-enter, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-picture-in-picture-enter:before, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f121";
}

.vjs-icon-picture-in-picture-exit, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-picture-in-picture-exit:before, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f122";
}

.video-js {
  display: block;
  vertical-align: top;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  position: relative;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  word-break: initial;
}
.video-js:-moz-full-screen {
  position: absolute;
}
.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}

.video-js[tabindex="-1"] {
  outline: none;
}

.video-js *,
.video-js *:before,
.video-js *:after {
  box-sizing: inherit;
}

.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3,
.video-js.vjs-9-16,
.video-js.vjs-1-1 {
  width: 100%;
  max-width: 100%;
  height: 0;
}

.video-js.vjs-16-9 {
  padding-top: 56.25%;
}

.video-js.vjs-4-3 {
  padding-top: 75%;
}

.video-js.vjs-9-16 {
  padding-top: 177.7777777778%;
}

.video-js.vjs-1-1 {
  padding-top: 100%;
}

.video-js.vjs-fill {
  width: 100%;
  height: 100%;
}

.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%;
}

.vjs-full-window .video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.video-js.vjs-fullscreen:not(.vjs-ios-native-fs) {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
}

.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}

.vjs-hidden {
  display: none !important;
}

.vjs-disabled {
  opacity: 0.5;
  cursor: default;
}

.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px;
}

.vjs-lock-showing {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.vjs-no-js {
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0px auto;
}

.vjs-no-js a,
.vjs-no-js a:visited {
  color: #66A8CC;
}

.video-js .vjs-big-play-button {
  font-size: 3em;
  line-height: 1.5em;
  height: 1.63332em;
  width: 3em;
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  border: 0.06666em solid #fff;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  border-radius: 0.3em;
  transition: all 0.4s;
}
.vjs-big-play-centered .vjs-big-play-button {
  top: 50%;
  left: 50%;
  margin-top: -0.81666em;
  margin-left: -1.5em;
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
  border-color: #fff;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
  transition: all 0s;
}

.vjs-controls-disabled .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button,
.vjs-error .vjs-big-play-button {
  display: none;
}

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
  display: block;
}

.video-js button {
  background: none;
  border: none;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
  text-decoration: none;
  transition: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.vjs-control .vjs-button {
  width: 100%;
  height: 100%;
}

.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: 0.5em;
  z-index: 2;
}
.video-js .vjs-modal-dialog {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
  overflow: auto;
}

.video-js .vjs-modal-dialog > * {
  box-sizing: border-box;
}

.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1;
}

.vjs-menu-button {
  cursor: pointer;
}

.vjs-menu-button.vjs-disabled {
  cursor: default;
}

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
  display: none;
}

.vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: auto;
}

.vjs-menu .vjs-menu-content > * {
  box-sizing: border-box;
}

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
  display: none;
}

.vjs-menu li {
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}

.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover,
.js-focus-visible .vjs-menu li.vjs-menu-item:hover {
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}

.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover,
.js-focus-visible .vjs-menu li.vjs-selected:hover {
  background-color: #fff;
  color: #2B333F;
}

.video-js .vjs-menu *:not(.vjs-selected):focus:not(:focus-visible),
.js-focus-visible .vjs-menu *:not(.vjs-selected):focus:not(.focus-visible) {
  background: none;
}

.vjs-menu li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}

.vjs-menu-button-popup .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  width: 10em;
  left: -3em;
  height: 0em;
  margin-bottom: 1.5em;
  border-top-color: rgba(43, 51, 63, 0.7);
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  max-height: 15em;
}

.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 5em;
}

.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 10em;
}

.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 14em;
}

.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 25em;
}

.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu,
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
  display: block;
}

.video-js .vjs-menu-button-inline {
  transition: all 0.4s;
  overflow: hidden;
}

.video-js .vjs-menu-button-inline:before {
  width: 2.222222222em;
}

.video-js .vjs-menu-button-inline:hover,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline.vjs-slider-active,
.video-js.vjs-no-flex .vjs-menu-button-inline {
  width: 12em;
}

.vjs-menu-button-inline .vjs-menu {
  opacity: 0;
  height: 100%;
  width: auto;
  position: absolute;
  left: 4em;
  top: 0;
  padding: 0;
  margin: 0;
  transition: all 0.4s;
}

.vjs-menu-button-inline:hover .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  display: block;
  opacity: 1;
}

.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
  display: block;
  opacity: 1;
  position: relative;
  width: auto;
}

.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  width: auto;
}

.vjs-menu-button-inline .vjs-menu-content {
  width: auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.video-js .vjs-control-bar {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}

.vjs-has-started .vjs-control-bar {
  display: flex;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.1s, opacity 0.1s;
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  visibility: visible;
  opacity: 0;
  pointer-events: none;
  transition: visibility 1s, opacity 1s;
}

.vjs-controls-disabled .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar,
.vjs-error .vjs-control-bar {
  display: none !important;
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
}

.vjs-has-started.vjs-no-flex .vjs-control-bar {
  display: table;
}

.video-js .vjs-control {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 4em;
  flex: none;
}

.vjs-button > .vjs-icon-placeholder:before {
  font-size: 1.8em;
  line-height: 1.67;
}

.vjs-button > .vjs-icon-placeholder {
  display: block;
}

.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before,
.video-js .vjs-control:focus {
  text-shadow: 0em 0em 1em white;
}

.video-js .vjs-control-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.vjs-no-flex .vjs-control {
  display: table-cell;
  vertical-align: middle;
}

.video-js .vjs-custom-control-spacer {
  display: none;
}

.video-js .vjs-progress-control {
  cursor: pointer;
  flex: auto;
  display: flex;
  align-items: center;
  min-width: 4em;
  touch-action: none;
}

.video-js .vjs-progress-control.disabled {
  cursor: default;
}

.vjs-live .vjs-progress-control {
  display: none;
}

.vjs-liveui .vjs-progress-control {
  display: flex;
  align-items: center;
}

.vjs-no-flex .vjs-progress-control {
  width: auto;
}

.video-js .vjs-progress-holder {
  flex: auto;
  transition: all 0.2s;
  height: 0.3em;
}

.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 0 10px;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder {
  font-size: 1.6666666667em;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
  font-size: 1em;
}

.video-js .vjs-progress-holder .vjs-play-progress,
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 0;
}

.video-js .vjs-play-progress {
  background-color: #fff;
}
.video-js .vjs-play-progress:before {
  font-size: 0.9em;
  position: absolute;
  right: -0.5em;
  top: -0.3333333333em;
  z-index: 1;
}

.video-js .vjs-load-progress {
  background: rgba(115, 133, 159, 0.5);
}

.video-js .vjs-load-progress div {
  background: rgba(115, 133, 159, 0.75);
}

.video-js .vjs-time-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
  display: none;
}

.video-js .vjs-progress-control:hover .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip {
  display: block;
  font-size: 0.6em;
  visibility: visible;
}

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
  font-size: 1em;
}

.video-js .vjs-progress-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  z-index: 1;
}

.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  z-index: 0;
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  display: none;
}

.vjs-mouse-display .vjs-time-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.video-js .vjs-slider {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 0.45em 0 0.45em;
  /* iOS Safari */
  -webkit-touch-callout: none;
  /* Safari */
  -webkit-user-select: none;
  /* Konqueror HTML */
  /* Firefox */
  -moz-user-select: none;
  /* Internet Explorer/Edge */
  -ms-user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
  user-select: none;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}

.video-js .vjs-slider.disabled {
  cursor: default;
}

.video-js .vjs-slider:focus {
  text-shadow: 0em 0em 1em white;
  box-shadow: 0 0 1em #fff;
}

.video-js .vjs-mute-control {
  cursor: pointer;
  flex: none;
}
.video-js .vjs-volume-control {
  cursor: pointer;
  margin-right: 1em;
  display: flex;
}

.video-js .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
}

.video-js .vjs-volume-panel .vjs-volume-control {
  visibility: visible;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin-left: -1px;
}

.video-js .vjs-volume-panel {
  transition: width 1s;
}
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control, .video-js .vjs-volume-panel:active .vjs-volume-control, .video-js .vjs-volume-panel:focus .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control:active, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active {
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;
}
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  margin-right: 0;
}
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical {
  left: -3.5em;
  transition: left 0s;
}
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
  width: 10em;
  transition: width 0.1s;
}
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
  width: 4em;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  height: 8em;
  width: 3em;
  left: -3000em;
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;
}

.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: none;
}

.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  position: absolute;
  bottom: 3em;
  left: 0.5em;
}

.video-js .vjs-volume-panel {
  display: flex;
}

.video-js .vjs-volume-bar {
  margin: 1.35em 0.45em;
}

.vjs-volume-bar.vjs-slider-horizontal {
  width: 5em;
  height: 0.3em;
}

.vjs-volume-bar.vjs-slider-vertical {
  width: 0.3em;
  height: 5em;
  margin: 1.35em auto;
}

.video-js .vjs-volume-level {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
}
.video-js .vjs-volume-level:before {
  position: absolute;
  font-size: 0.9em;
  z-index: 1;
}

.vjs-slider-vertical .vjs-volume-level {
  width: 0.3em;
}
.vjs-slider-vertical .vjs-volume-level:before {
  top: -0.5em;
  left: -0.3em;
  z-index: 1;
}

.vjs-slider-horizontal .vjs-volume-level {
  height: 0.3em;
}
.vjs-slider-horizontal .vjs-volume-level:before {
  top: -0.3em;
  right: -0.5em;
}

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
  width: 4em;
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%;
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%;
}

.video-js .vjs-volume-vertical {
  width: 3em;
  height: 8em;
  bottom: 8em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}

.video-js .vjs-volume-horizontal .vjs-menu {
  left: -2em;
}

.video-js .vjs-volume-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-volume-control:hover .vjs-volume-tooltip,
.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
  display: block;
  font-size: 1em;
  visibility: visible;
}

.video-js .vjs-volume-vertical:hover .vjs-volume-tooltip,
.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
  left: 1em;
  top: -12px;
}

.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip {
  font-size: 1em;
}

.video-js .vjs-volume-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  z-index: 1;
}

.video-js .vjs-volume-horizontal .vjs-mouse-display {
  width: 1px;
  height: 100%;
}

.vjs-no-flex .vjs-volume-control .vjs-mouse-display {
  z-index: 0;
}

.video-js .vjs-volume-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-volume-control .vjs-mouse-display {
  display: none;
}

.vjs-mouse-display .vjs-volume-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.vjs-poster {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-color: #000000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}

.vjs-has-started .vjs-poster {
  display: none;
}

.vjs-audio.vjs-has-started .vjs-poster {
  display: block;
}

.vjs-using-native-controls .vjs-poster {
  display: none;
}

.video-js .vjs-live-control {
  display: flex;
  align-items: flex-start;
  flex: auto;
  font-size: 1em;
  line-height: 3em;
}

.vjs-no-flex .vjs-live-control {
  display: table-cell;
  width: auto;
  text-align: left;
}

.video-js:not(.vjs-live) .vjs-live-control,
.video-js.vjs-liveui .vjs-live-control {
  display: none;
}

.video-js .vjs-seek-to-live-control {
  align-items: center;
  cursor: pointer;
  flex: none;
  display: inline-flex;
  height: 100%;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 1em;
  line-height: 3em;
  width: auto;
  min-width: 4em;
}

.vjs-no-flex .vjs-seek-to-live-control {
  display: table-cell;
  width: auto;
  text-align: left;
}

.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
  display: none;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
  cursor: auto;
}

.vjs-seek-to-live-control .vjs-icon-placeholder {
  margin-right: 0.5em;
  color: #888;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
  color: red;
}

.video-js .vjs-time-control {
  flex: none;
  font-size: 1em;
  line-height: 3em;
  min-width: 2em;
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-live .vjs-time-control {
  display: none;
}

.video-js .vjs-current-time,
.vjs-no-flex .vjs-current-time {
  display: none;
}

.video-js .vjs-duration,
.vjs-no-flex .vjs-duration {
  display: none;
}

.vjs-time-divider {
  display: none;
  line-height: 3em;
}

.vjs-live .vjs-time-divider {
  display: none;
}

.video-js .vjs-play-control {
  cursor: pointer;
}

.video-js .vjs-play-control .vjs-icon-placeholder {
  flex: none;
}

.vjs-text-track-display {
  position: absolute;
  bottom: 3em;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}

.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}

.video-js .vjs-text-track {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em;
}

.vjs-subtitles {
  color: #fff;
}

.vjs-captions {
  color: #fc6;
}

.vjs-tt-cue {
  display: block;
}

video::-webkit-media-text-track-display {
  transform: translateY(-3em);
}

.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
  transform: translateY(-1.5em);
}

.video-js .vjs-picture-in-picture-control {
  cursor: pointer;
  flex: none;
}
.video-js .vjs-fullscreen-control {
  cursor: pointer;
  flex: none;
}
.vjs-playback-rate > .vjs-menu-button,
.vjs-playback-rate .vjs-playback-rate-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-playback-rate .vjs-playback-rate-value {
  pointer-events: none;
  font-size: 1.5em;
  line-height: 2;
  text-align: center;
}

.vjs-playback-rate .vjs-menu {
  width: 4em;
  left: 0em;
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center;
}

.vjs-error .vjs-error-display:before {
  color: #fff;
  content: "X";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4em;
  left: 0;
  line-height: 1;
  margin-top: -0.5em;
  position: absolute;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center;
  top: 50%;
  vertical-align: middle;
  width: 100%;
}

.vjs-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.85;
  text-align: left;
  border: 6px solid rgba(43, 51, 63, 0.7);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  visibility: hidden;
}

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
  display: block;
  -webkit-animation: vjs-spinner-show 0s linear 0.3s forwards;
          animation: vjs-spinner-show 0s linear 0.3s forwards;
}

.vjs-loading-spinner:before,
.vjs-loading-spinner:after {
  content: "";
  position: absolute;
  margin: -6px;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after {
  -webkit-animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
  border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
  border-top-color: white;
  -webkit-animation-delay: 0.44s;
  animation-delay: 0.44s;
}

@keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}
@-webkit-keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}
@keyframes vjs-spinner-spin {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes vjs-spinner-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f;
  }
  20% {
    border-top-color: #73859f;
  }
  35% {
    border-top-color: white;
  }
  60% {
    border-top-color: #73859f;
  }
  100% {
    border-top-color: #73859f;
  }
}
@-webkit-keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f;
  }
  20% {
    border-top-color: #73859f;
  }
  35% {
    border-top-color: white;
  }
  60% {
    border-top-color: #73859f;
  }
  100% {
    border-top-color: #73859f;
  }
}
.vjs-chapters-button .vjs-menu ul {
  width: 24em;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: "";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: " ";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-layout-small .vjs-current-time,
.video-js.vjs-layout-small .vjs-time-divider,
.video-js.vjs-layout-small .vjs-duration,
.video-js.vjs-layout-small .vjs-remaining-time,
.video-js.vjs-layout-small .vjs-playback-rate,
.video-js.vjs-layout-small .vjs-volume-control, .video-js.vjs-layout-x-small .vjs-current-time,
.video-js.vjs-layout-x-small .vjs-time-divider,
.video-js.vjs-layout-x-small .vjs-duration,
.video-js.vjs-layout-x-small .vjs-remaining-time,
.video-js.vjs-layout-x-small .vjs-playback-rate,
.video-js.vjs-layout-x-small .vjs-volume-control, .video-js.vjs-layout-tiny .vjs-current-time,
.video-js.vjs-layout-tiny .vjs-time-divider,
.video-js.vjs-layout-tiny .vjs-duration,
.video-js.vjs-layout-tiny .vjs-remaining-time,
.video-js.vjs-layout-tiny .vjs-playback-rate,
.video-js.vjs-layout-tiny .vjs-volume-control {
  display: none;
}
.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover {
  width: auto;
  width: initial;
}
.video-js.vjs-layout-x-small .vjs-progress-control, .video-js.vjs-layout-tiny .vjs-progress-control {
  display: none;
}
.video-js.vjs-layout-x-small .vjs-custom-control-spacer {
  flex: auto;
  display: block;
}
.video-js.vjs-layout-x-small.vjs-no-flex .vjs-custom-control-spacer {
  width: auto;
}

.vjs-modal-dialog.vjs-text-track-settings {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.75);
  color: #fff;
  height: 70%;
}

.vjs-text-track-settings .vjs-modal-dialog-content {
  display: table;
}

.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-font,
.vjs-text-track-settings .vjs-track-settings-controls {
  display: table-cell;
}

.vjs-text-track-settings .vjs-track-settings-controls {
  text-align: right;
  vertical-align: bottom;
}

@supports (display: grid) {
  .vjs-text-track-settings .vjs-modal-dialog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding: 20px 24px 0px 24px;
  }

  .vjs-track-settings-controls .vjs-default-button {
    margin-bottom: 20px;
  }

  .vjs-text-track-settings .vjs-track-settings-controls {
    grid-column: 1/-1;
  }

  .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
.vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content,
.vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content {
    grid-template-columns: 1fr;
  }
}
.vjs-track-setting > select {
  margin-right: 1em;
  margin-bottom: 0.5em;
}

.vjs-text-track-settings fieldset {
  margin: 5px;
  padding: 3px;
  border: none;
}

.vjs-text-track-settings fieldset span {
  display: inline-block;
}

.vjs-text-track-settings fieldset span > select {
  max-width: 7.3em;
}

.vjs-text-track-settings legend {
  color: #fff;
  margin: 0 0 5px 0;
}

.vjs-text-track-settings .vjs-label {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  display: block;
  margin: 0 0 5px 0;
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.vjs-track-settings-controls button:focus,
.vjs-track-settings-controls button:active {
  outline-style: solid;
  outline-width: medium;
  background-image: linear-gradient(0deg, #fff 88%, #73859f 100%);
}

.vjs-track-settings-controls button:hover {
  color: rgba(43, 51, 63, 0.75);
}

.vjs-track-settings-controls button {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff 88%, #73859f 100%);
  color: #2B333F;
  cursor: pointer;
  border-radius: 2px;
}

.vjs-track-settings-controls .vjs-default-button {
  margin-right: 1em;
}

@media print {
  .video-js > *:not(.vjs-tech):not(.vjs-poster) {
    visibility: hidden;
  }
}
.vjs-resize-manager {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1000;
}

.js-focus-visible .video-js *:focus:not(.focus-visible) {
  outline: none;
}

.video-js *:focus:not(:focus-visible) {
  outline: none;
}

@charset "UTF-8";
.l-grid-flex {
  display: -moz-flex;
  display: flex;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.lightbox-lite-open {
  overflow: hidden;
}

.lightbox-lite {
  position: fixed;
  top: -500%;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  overflow: hidden;
  z-index: -10;
  transition: 0s 0.5s width, 0s 0.5s height, 0s 0.5s z-index, 0s 0.5s top, 0.5s opacity;
}
.lightbox-lite.lightbox-lite-box-open {
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 1;
  top: 0 !important;
  transition: 0s width, 0s height, 0s z-index, 0s top, 0.5s opacity;
}
.lightbox-lite.lightbox-lite-box-open > .lightbox-lite__box {
  top: 50%;
  left: 50%;
  transition: 0s left, top 0.5s;
}
.lightbox-lite.is-loading .lightbox-lite-content-placeholder:after, .lightbox-lite.has-feedback .lightbox-lite-content-placeholder:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8) no-repeat center center;
}
.lightbox-lite.is-loading .lightbox-lite__box, .lightbox-lite.has-feedback .lightbox-lite__box {
  overflow: hidden;
}
.lightbox-lite.is-loading > .lightbox-lite__box:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: url("/images/loading-pretty.gif") no-repeat center center;
  background-size: 100px 100px;
}

.lightbox-lite__box {
  max-height: 90%;
  min-height: 40%;
  margin: auto;
  position: fixed;
  background: #ffffff;
  top: 100%;
  left: -200%;
  height: auto;
  width: 90%;
  padding: 55px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 4;
  -webkit-font-smoothing: antialiased;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translate(-50%, -50%);
  /* IE 10, Fx 16+, Op 12.1+ */
  transition: 0s 0.5s left, top 0.5s;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
  color: #000000;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3;
}
.lightbox-lite__box.lightbox-lite__box-trans {
  background: transparent;
  padding: 0 108px;
  max-height: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .lightbox-lite__box.lightbox-lite__box-trans {
    padding: 40px 0px;
    width: 105%;
  }
}
@media (max-width: 768px) {
  .lightbox-lite__box {
    padding: 40px 0px;
    width: 105%;
  }
}

.lightbox-lite__box--m {
  width: 70%;
  padding: 40px 90px;
}
@media (max-width: 1240px) {
  .lightbox-lite__box--m {
    padding: 30px 50px;
    width: 75%;
  }
}
@media (max-width: 768px) {
  .lightbox-lite__box--m {
    padding: 30px 20px;
    width: 95%;
  }
}

.lightbox-lite__box--s {
  width: 45%;
  padding: 55px 110px;
  max-width: 700px;
}
@media (max-width: 1040px) {
  .lightbox-lite__box--s {
    width: 50%;
    padding: 40px 50px;
    max-width: none;
  }
}
@media (max-width: 650px) {
  .lightbox-lite__box--s {
    padding: 45px 20px;
    width: 95%;
  }
}

.lightbox-lite__box__loading {
  padding-bottom: 35%;
  background: url("/images/loading-pretty.gif") no-repeat center center #fff;
  background-size: 90px 90px;
}

.lightbox-lite__box-inner {
  height: 100%;
  position: relative;
}

.lightbox-lite-content-placeholder {
  height: 100%;
}

.lightbox-lite__feedback {
  position: absolute;
  top: 25%;
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  text-align: center;
  z-index: -1;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.2;
  display: none;
}
.has-feedback .lightbox-lite__feedback {
  z-index: 2;
  width: 100%;
  height: auto;
  opacity: 1;
  display: block;
}

.lightbox-lite-close {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 3;
  font-size: 16px;
  line-height: 16px;
  color: #D30013;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
  padding: 15px;
  transition: 0.3s all;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translate3d(0, 0, 0);
  /* IE 10, Fx 16+, Op 12.1+ */
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform-origin: 50% 50%;
}
.no-touchevents .lightbox-lite-close:hover, .no-touchevents .lightbox-lite-close:active {
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: rotate(-180deg);
  /* IE 10, Fx 16+, Op 12.1+ */
}
.lightbox-lite-close.circled {
  font-size: 14px;
  padding: 10px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  top: -50px;
  right: 0px;
}
@media screen and (max-width: 800px) {
  .lightbox-lite-close.circled {
    right: 10px;
  }
}

.animated {
  -vendor-animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.intl-tel-input.allow-dropdown .selected-flag,
.intl-tel-input.separate-dial-code .selected-flag {
  width: 36px;
  outline: none;
}

.intl-tel-input .selected-flag {
  height: 28px;
  padding: 0;
}

.intl-tel-input.allow-dropdown input,
.intl-tel-input.allow-dropdown input[type=text],
.intl-tel-input.allow-dropdown input[type=tel],
.intl-tel-input.separate-dial-code input,
.intl-tel-input.separate-dial-code input[type=text],
.intl-tel-input.separate-dial-code input[type=tel] {
  padding-left: 40px;
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel], .iti--separate-dial-code input,
.iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
  padding-left: 90px !important;
}

.iti {
  display: block;
}

.video-js.video-content-card {
  min-width: 100%;
  min-height: 100%;
  max-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  max-width: 100%;
}

html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  overflow-y: visible;
  /* [3] */
  height: 100%;
  min-height: 100%;
  /* [4] */
  -moz-osx-font-smoothing: grayscale;
  /* [5] */
  -webkit-font-smoothing: antialiased;
  /* [5] */
}

* {
  /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */
  /* Firefox 1 - 28 */
  box-sizing: border-box;
  /* Safari 5.1+, Chrome 10+, Firefox 29+, Opera 7+, IE 8+, Android 4.0+, iOS any */
}

body {
  margin: 0;
  height: 100%;
  /* 4 */
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

blockquote,
figure {
  margin: 0;
}

a {
  background-color: transparent;
}

textarea {
  overflow: auto;
  /* Remove default vertical scrollbar in IE 8/9/10/11. */
  -webkit-appearance: none;
  /* Remove -webkit default styling  */
}

button,
input[type=submit] {
  border: 0;
  -webkit-appearance: none;
  /* Remove -webkit default styling  */
}

address {
  font-style: normal;
}

.group:after {
  content: "";
  display: table;
  clear: both;
}

.l-align-center {
  text-align: center !important;
}

.stackcta1 {
  top: 120px !important;
}

.stackcta2 {
  top: 200px !important;
}

.l-align-right {
  text-align: right !important;
}

.l-align-left {
  text-align: left !important;
}

.l-margin-left-auto {
  margin-left: auto !important;
}

.l-margin-right-auto {
  margin-right: auto !important;
}

.l-rel {
  position: relative;
}

.l-left {
  float: left !important;
}

.l-right {
  float: right !important;
}

.l-center {
  position: absolute;
  left: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateX(-50%);
  /* IE 10, Fx 16+, Op 12.1+ */
}

.l-middle {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translate(-50%, -50%);
  /* IE 10, Fx 16+, Op 12.1+ */
}

.l-v-center {
  position: absolute;
  top: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(-50%);
  /* IE 10, Fx 16+, Op 12.1+ */
}

.l-center-block {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.is-hidden {
  display: none;
}

.is-visually-hidden {
  position: absolute;
  top: -5000px;
  left: -5000px;
}

.l-v-center-table {
  display: table;
  height: 100%;
  width: 100%;
}

.l-v-center-cell {
  display: table-cell;
  vertical-align: middle;
}

.l-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.l-full-height {
  height: 100%;
}

.l-fixed-height--l {
  overflow: auto;
  max-height: 500px;
}
@media screen and (max-width: 1100px) {
  .l-fixed-height--l {
    max-height: none;
  }
}

.l-v-align-middle {
  vertical-align: middle;
}

.l-center-block-m {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.l-center-block-s {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media screen and (max-width: 500px) {
  .l-center-block-s {
    width: 100%;
  }
}

@media screen and (max-width: 550px) {
  .l-static--phablet {
    position: static;
  }
}

.l-overflow-hidden {
  overflow: hidden;
}

.l-grid-0 {
  margin-left: -0px !important;
  padding: 0;
  list-style: none;
}
.l-grid-0:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid-0 > [class^=l-grid__item-], .l-grid-0 > [class*=" l-grid__item-"] {
  padding-left: 0px !important;
  padding-bottom: 0px;
}

.l-grid-5 {
  margin-left: -5px !important;
  padding: 0;
  list-style: none;
}
.l-grid-5:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid-5 > [class^=l-grid__item-], .l-grid-5 > [class*=" l-grid__item-"] {
  padding-left: 5px !important;
  padding-bottom: 5px;
}

.l-grid-10 {
  margin-left: -10px !important;
  padding: 0;
  list-style: none;
}
.l-grid-10:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid-10 > [class^=l-grid__item-], .l-grid-10 > [class*=" l-grid__item-"] {
  padding-left: 10px !important;
  padding-bottom: 10px;
}

.l-grid-15 {
  margin-left: -15px !important;
  padding: 0;
  list-style: none;
}
.l-grid-15:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid-15 > [class^=l-grid__item-], .l-grid-15 > [class*=" l-grid__item-"] {
  padding-left: 15px !important;
  padding-bottom: 15px;
}

.l-grid-20 {
  margin-left: -20px !important;
  padding: 0;
  list-style: none;
}
.l-grid-20:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid-20 > [class^=l-grid__item-], .l-grid-20 > [class*=" l-grid__item-"] {
  padding-left: 20px !important;
  padding-bottom: 20px;
}

.l-grid-24 {
  margin-left: -24px !important;
  padding: 0;
  list-style: none;
}
.l-grid-24:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid-24 > [class^=l-grid__item-], .l-grid-24 > [class*=" l-grid__item-"] {
  padding-left: 24px !important;
  padding-bottom: 24px;
}

.l-grid-30 {
  margin-left: -30px !important;
  padding: 0;
  list-style: none;
}
.l-grid-30:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid-30 > [class^=l-grid__item-], .l-grid-30 > [class*=" l-grid__item-"] {
  padding-left: 30px !important;
  padding-bottom: 30px;
}

.l-grid-50 {
  margin-left: -50px !important;
  padding: 0;
  list-style: none;
}
.l-grid-50:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid-50 > [class^=l-grid__item-], .l-grid-50 > [class*=" l-grid__item-"] {
  padding-left: 50px !important;
  padding-bottom: 50px;
}

.l-grid__item-10 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 10%;
}

.l-grid__item-15 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 15%;
}

.l-grid__item-20 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 20%;
}

.l-grid__item-24 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 24%;
}

.l-grid__item-25 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 25%;
}

.l-grid__item-30 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 30%;
}

.l-grid__item-33 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 33.3333%;
}

.l-grid__item-35 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 35%;
}

.l-grid__item-40 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 40%;
}

.l-grid__item-45 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 45%;
}

.l-grid__item-50 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 50%;
}

.l-grid__item-55 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 55%;
}

.l-grid__item-60 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 60%;
}

.l-grid__item-65 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 65%;
}

.l-grid__item-70 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 70%;
}

.l-grid__item-75 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 75%;
}

.l-grid__item-85 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 85%;
}

.l-grid__item-90 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 90%;
}

.l-grid__item-100 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-10 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 10%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-15 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 15%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-20 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 20%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-24 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 24%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-25 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 25%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-30 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 30%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-33 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 33.3333%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-35 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 35%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-40 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 40%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-45 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 45%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-50 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 50%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-55 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 55%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-60 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 60%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-65 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 65%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-70 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 70%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-75 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 75%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-85 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 85%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-90 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 90%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid__item-tablet-landscape-100 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-10 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 10%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-15 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 15%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-20 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 20%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-24 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 24%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-25 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 25%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-30 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 30%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-33 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 33.3333%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-35 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 35%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-40 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 40%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-45 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 45%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-50 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 50%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-55 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 55%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-60 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 60%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-65 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 65%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-70 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 70%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-75 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 75%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-85 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 85%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-90 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 90%;
  }
}

@media screen and (max-width: 900px) {
  .l-grid__item-tablet-large-100 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-10 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 10%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-15 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 15%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-20 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 20%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-24 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 24%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-25 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 25%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-30 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 30%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-33 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 33.3333%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-35 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 35%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-40 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 40%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-45 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 45%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-50 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 50%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-55 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 55%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-60 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 60%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-65 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 65%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-70 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 70%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-75 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 75%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-85 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 85%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-90 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 90%;
  }
}

@media screen and (max-width: 800px) {
  .l-grid__item-tablet-100 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 100%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-10 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 10%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-15 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 15%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-20 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 20%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-24 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 24%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-25 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 25%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-30 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 30%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-33 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 33.3333%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-35 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 35%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-40 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 40%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-45 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 45%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-50 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 50%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-55 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 55%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-60 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 60%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-65 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 65%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-70 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 70%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-75 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 75%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-85 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 85%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-90 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 90%;
  }
}

@media screen and (max-width: 550px) {
  .l-grid__item-phablet-100 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-10 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 10%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-15 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 15%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-20 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 20%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-24 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 24%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-25 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 25%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-30 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 30%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-33 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 33.3333%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-35 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 35%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-40 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 40%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-45 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 45%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-50 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 50%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-55 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 55%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-60 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 60%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-65 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 65%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-70 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 70%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-75 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 75%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-85 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 85%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-90 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 90%;
  }
}

@media screen and (max-width: 400px) {
  .l-grid__item-phone-100 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 100%;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid-tablet-landscape-0 {
    margin-left: -0px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tablet-landscape-0:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tablet-landscape-0 > [class^=l-grid__item-], .l-grid-tablet-landscape-0 > [class*=" l-grid__item-"] {
    padding-left: 0px !important;
    padding-bottom: 0px;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid-tablet-landscape-5 {
    margin-left: -5px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tablet-landscape-5:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tablet-landscape-5 > [class^=l-grid__item-], .l-grid-tablet-landscape-5 > [class*=" l-grid__item-"] {
    padding-left: 5px !important;
    padding-bottom: 5px;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid-tablet-landscape-10 {
    margin-left: -10px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tablet-landscape-10:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tablet-landscape-10 > [class^=l-grid__item-], .l-grid-tablet-landscape-10 > [class*=" l-grid__item-"] {
    padding-left: 10px !important;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid-tablet-landscape-15 {
    margin-left: -15px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tablet-landscape-15:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tablet-landscape-15 > [class^=l-grid__item-], .l-grid-tablet-landscape-15 > [class*=" l-grid__item-"] {
    padding-left: 15px !important;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid-tablet-landscape-20 {
    margin-left: -20px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tablet-landscape-20:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tablet-landscape-20 > [class^=l-grid__item-], .l-grid-tablet-landscape-20 > [class*=" l-grid__item-"] {
    padding-left: 20px !important;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid-tablet-landscape-24 {
    margin-left: -24px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tablet-landscape-24:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tablet-landscape-24 > [class^=l-grid__item-], .l-grid-tablet-landscape-24 > [class*=" l-grid__item-"] {
    padding-left: 24px !important;
    padding-bottom: 24px;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid-tablet-landscape-30 {
    margin-left: -30px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tablet-landscape-30:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tablet-landscape-30 > [class^=l-grid__item-], .l-grid-tablet-landscape-30 > [class*=" l-grid__item-"] {
    padding-left: 30px !important;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 1100px) {
  .l-grid-tablet-landscape-50 {
    margin-left: -50px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tablet-landscape-50:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tablet-landscape-50 > [class^=l-grid__item-], .l-grid-tablet-landscape-50 > [class*=" l-grid__item-"] {
    padding-left: 50px !important;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 900px) {
  .l-grid-tablet-large-0 {
    margin-left: -0px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tablet-large-0:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tablet-large-0 > [class^=l-grid__item-], .l-grid-tablet-large-0 > [class*=" l-grid__item-"] {
    padding-left: 0px !important;
    padding-bottom: 0px;
  }
}

@media screen and (max-width: 900px) {
  .l-grid-tablet-large-5 {
    margin-left: -5px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tablet-large-5:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tablet-large-5 > [class^=l-grid__item-], .l-grid-tablet-large-5 > [class*=" l-grid__item-"] {
    padding-left: 5px !important;
    padding-bottom: 5px;
  }
}

@media screen and (max-width: 900px) {
  .l-grid-tablet-large-10 {
    margin-left: -10px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tablet-large-10:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tablet-large-10 > [class^=l-grid__item-], .l-grid-tablet-large-10 > [class*=" l-grid__item-"] {
    padding-left: 10px !important;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 900px) {
  .l-grid-tablet-large-15 {
    margin-left: -15px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tablet-large-15:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tablet-large-15 > [class^=l-grid__item-], .l-grid-tablet-large-15 > [class*=" l-grid__item-"] {
    padding-left: 15px !important;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 900px) {
  .l-grid-tablet-large-20 {
    margin-left: -20px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tablet-large-20:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tablet-large-20 > [class^=l-grid__item-], .l-grid-tablet-large-20 > [class*=" l-grid__item-"] {
    padding-left: 20px !important;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 900px) {
  .l-grid-tablet-large-24 {
    margin-left: -24px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tablet-large-24:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tablet-large-24 > [class^=l-grid__item-], .l-grid-tablet-large-24 > [class*=" l-grid__item-"] {
    padding-left: 24px !important;
    padding-bottom: 24px;
  }
}

@media screen and (max-width: 900px) {
  .l-grid-tablet-large-30 {
    margin-left: -30px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tablet-large-30:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tablet-large-30 > [class^=l-grid__item-], .l-grid-tablet-large-30 > [class*=" l-grid__item-"] {
    padding-left: 30px !important;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 900px) {
  .l-grid-tablet-large-50 {
    margin-left: -50px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tablet-large-50:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tablet-large-50 > [class^=l-grid__item-], .l-grid-tablet-large-50 > [class*=" l-grid__item-"] {
    padding-left: 50px !important;
    padding-bottom: 50px;
  }
}

.l-grid-tablet-0 {
  margin-left: -0px !important;
  padding: 0;
  list-style: none;
}
.l-grid-tablet-0:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid-tablet-0 > [class^=l-grid__item-], .l-grid-tablet-0 > [class*=" l-grid__item-"] {
  padding-left: 0px !important;
  padding-bottom: 0px;
}

.l-grid-tablet-5 {
  margin-left: -5px !important;
  padding: 0;
  list-style: none;
}
.l-grid-tablet-5:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid-tablet-5 > [class^=l-grid__item-], .l-grid-tablet-5 > [class*=" l-grid__item-"] {
  padding-left: 5px !important;
  padding-bottom: 5px;
}

.l-grid-tablet-10 {
  margin-left: -10px !important;
  padding: 0;
  list-style: none;
}
.l-grid-tablet-10:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid-tablet-10 > [class^=l-grid__item-], .l-grid-tablet-10 > [class*=" l-grid__item-"] {
  padding-left: 10px !important;
  padding-bottom: 10px;
}

.l-grid-tablet-15 {
  margin-left: -15px !important;
  padding: 0;
  list-style: none;
}
.l-grid-tablet-15:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid-tablet-15 > [class^=l-grid__item-], .l-grid-tablet-15 > [class*=" l-grid__item-"] {
  padding-left: 15px !important;
  padding-bottom: 15px;
}

.l-grid-tablet-20 {
  margin-left: -20px !important;
  padding: 0;
  list-style: none;
}
.l-grid-tablet-20:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid-tablet-20 > [class^=l-grid__item-], .l-grid-tablet-20 > [class*=" l-grid__item-"] {
  padding-left: 20px !important;
  padding-bottom: 20px;
}

.l-grid-tablet-24 {
  margin-left: -24px !important;
  padding: 0;
  list-style: none;
}
.l-grid-tablet-24:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid-tablet-24 > [class^=l-grid__item-], .l-grid-tablet-24 > [class*=" l-grid__item-"] {
  padding-left: 24px !important;
  padding-bottom: 24px;
}

.l-grid-tablet-30 {
  margin-left: -30px !important;
  padding: 0;
  list-style: none;
}
.l-grid-tablet-30:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid-tablet-30 > [class^=l-grid__item-], .l-grid-tablet-30 > [class*=" l-grid__item-"] {
  padding-left: 30px !important;
  padding-bottom: 30px;
}

.l-grid-tablet-50 {
  margin-left: -50px !important;
  padding: 0;
  list-style: none;
}
.l-grid-tablet-50:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid-tablet-50 > [class^=l-grid__item-], .l-grid-tablet-50 > [class*=" l-grid__item-"] {
  padding-left: 50px !important;
  padding-bottom: 50px;
}

@media screen and (max-width: 800px) {
  .l-grid-tab-0 {
    margin-left: -0px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tab-0:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tab-0 > [class^=l-grid__item-], .l-grid-tab-0 > [class*=" l-grid__item-"] {
    padding-left: 0px !important;
    padding-bottom: 0px;
  }
}

@media screen and (max-width: 800px) {
  .l-grid-tab-5 {
    margin-left: -5px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tab-5:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tab-5 > [class^=l-grid__item-], .l-grid-tab-5 > [class*=" l-grid__item-"] {
    padding-left: 5px !important;
    padding-bottom: 5px;
  }
}

@media screen and (max-width: 800px) {
  .l-grid-tab-10 {
    margin-left: -10px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tab-10:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tab-10 > [class^=l-grid__item-], .l-grid-tab-10 > [class*=" l-grid__item-"] {
    padding-left: 10px !important;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 800px) {
  .l-grid-tab-15 {
    margin-left: -15px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tab-15:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tab-15 > [class^=l-grid__item-], .l-grid-tab-15 > [class*=" l-grid__item-"] {
    padding-left: 15px !important;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 800px) {
  .l-grid-tab-20 {
    margin-left: -20px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tab-20:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tab-20 > [class^=l-grid__item-], .l-grid-tab-20 > [class*=" l-grid__item-"] {
    padding-left: 20px !important;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 800px) {
  .l-grid-tab-24 {
    margin-left: -24px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tab-24:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tab-24 > [class^=l-grid__item-], .l-grid-tab-24 > [class*=" l-grid__item-"] {
    padding-left: 24px !important;
    padding-bottom: 24px;
  }
}

@media screen and (max-width: 800px) {
  .l-grid-tab-30 {
    margin-left: -30px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tab-30:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tab-30 > [class^=l-grid__item-], .l-grid-tab-30 > [class*=" l-grid__item-"] {
    padding-left: 30px !important;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 800px) {
  .l-grid-tab-50 {
    margin-left: -50px !important;
    padding: 0;
    list-style: none;
  }
  .l-grid-tab-50:after {
    content: "";
    display: table;
    clear: both;
  }
  .l-grid-tab-50 > [class^=l-grid__item-], .l-grid-tab-50 > [class*=" l-grid__item-"] {
    padding-left: 50px !important;
    padding-bottom: 50px;
  }
}

.l-grid-flex {
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.l-grid-flex--centered {
  -moz-justify-content: center;
  justify-content: center;
}

.flex-center-content {
  display: flex;
  align-items: center;
}

.l-inset {
  padding: 30px 15px;
}

.l-inset-m {
  padding: 24px;
}
@media screen and (max-width: 800px) {
  .l-inset-m {
    padding: 15px;
  }
}

.l-inset-xms {
  padding: 15px;
}

.l-inset-l-h {
  padding-left: 50px;
  padding-right: 50px;
}

.l-inset-xxxl-top {
  padding-top: 72px;
}

.l-inset-xl-top {
  padding-top: 60px;
}

.l-inset-xl-left {
  padding-left: 60px;
}

.l-inset-xl-right {
  padding-right: 60px;
}

.l-inset-l-top {
  padding-top: 50px;
}

.l-inset-m-top {
  padding-top: 40px;
}

.l-inset-xs-top {
  padding-top: 20px;
}

.l-inset-xxs-top {
  padding-top: 10px;
}

.l-inset-none-top {
  padding-top: 0 !important;
}

.l-margin-top {
  margin-top: 25px !important;
}

.l-margin-top-mobile {
  margin-top: -20px !important;
}

.l-inset-none-btm {
  padding-bottom: 0 !important;
}

.l-inset-xxl-btm {
  padding-bottom: 70px !important;
}

.l-inset-xxxl-btm {
  padding-bottom: 72px;
}

.l-inset-m-btm {
  padding-bottom: 40px;
}

.l-inset-xs-btm {
  padding-bottom: 20px;
}

.l-inset-l-left {
  padding-left: 50px;
}

.l-inset-l-right {
  padding-right: 50px;
}

.l-inset-xxs-left {
  padding-left: 10px;
}

.l-no-inset {
  padding: 0 !important;
}

.l-no-inset-left {
  padding-left: 0 !important;
}

.l-no-inset-right {
  padding-right: 0 !important;
}

.l-no-inset-bottom {
  padding-bottom: 0 !important;
}

.l-inset-top--header {
  margin-top: 56px;
}
@media screen and (max-width: 800px) {
  .l-inset-top--header {
    margin-top: 30px;
  }
}

@media screen and (max-width: 800px) {
  .l-no-inset__tablet {
    padding: 0 !important;
  }
}

.l-no-margin {
  margin: 0 !important;
}

.l-offset-xxxl-top {
  margin-top: 90px !important;
}
@media screen and (max-width: 550px) {
  .l-offset-xxxl-top {
    margin-top: 30px !important;
  }
}

.l-offset-l-top {
  margin-top: 50px !important;
}
@media screen and (max-width: 550px) {
  .l-offset-l-top {
    margin-top: 30px !important;
  }
}

.l-offset-xm-top {
  margin-top: 56px !important;
}

.l-offset-m-top {
  margin-top: 40px !important;
}

.l-offset-sm-top {
  margin-top: 32px;
}

.l-offset-s-top {
  margin-top: 30px;
}

.l-offset-xs-top {
  margin-top: 24px !important;
}

.l-offset-xms-top-intro {
  margin-top: 16px;
}

.l-offset-xms-top {
  margin-top: 15px;
}

.l-offset-xxs-top {
  margin-top: 10px;
}

.l-offset-xxxs-top {
  margin-top: 5px;
}

.l-offset-xxl-btm {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 550px) {
  .l-offset-xxl-btm {
    margin-bottom: 40px !important;
  }
}

.l-offset-xl-btm {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 550px) {
  .l-offset-xl-btm {
    margin-bottom: 40px !important;
  }
}

.l-offset-l-btm {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 550px) {
  .l-offset-l-btm {
    margin-bottom: 30px !important;
  }
}

.l-offset-xm-btm {
  margin-bottom: 56px;
}
@media screen and (max-width: 550px) {
  .l-offset-xm-btm {
    margin-bottom: 24px !important;
  }
}

.l-offset-m-btm {
  margin-bottom: 40px;
}
@media screen and (max-width: 550px) {
  .l-offset-m-btm {
    margin-bottom: 20px !important;
  }
}

.l-offset-sm-btm {
  margin-bottom: 32px;
}

.l-offset-s-btm {
  margin-bottom: 30px !important;
}

.l-offset-xs-btm {
  margin-bottom: 24px !important;
}
@media screen and (max-width: 550px) {
  .l-offset-xs-btm {
    margin-bottom: 16px !important;
  }
}

.l-offset-xms-btm {
  margin-bottom: 15px;
}

.l-offset-xxs-btm {
  margin-bottom: 10px;
}

.l-offset-xxxs-btm {
  margin-bottom: 5px;
}

.l-offset-l-left {
  margin-left: 50px;
}

.l-offset-m-left {
  margin-left: 40px;
}

.l-offset-xs-left {
  margin-left: 20px;
}

.l-offset-xms-left {
  margin-left: 15px;
}

.l-offset-xxs-left {
  margin-left: 10px;
}

.l-offset-xxxs-left {
  margin-left: 5px !important;
}

.l-offset-xl-right {
  margin-right: 60px;
}

.l-offset-xs-right {
  margin-right: 20px !important;
}

.l-offset-xms-right {
  margin-right: 15px;
}

.l-offset-xxs-right {
  margin-right: 10px !important;
}

.l-offset-xxxs-right {
  margin-right: 5px !important;
}

@media screen and (max-width: 800px) {
  .l-no-offset-left__tablet {
    margin-left: 0 !important;
  }
}

.l-no-offset-btm {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 800px) {
  .l-no-offset-btm__tablet {
    margin-bottom: 0 !important;
  }
}

@media screen and (max-width: 1600px) {
  .l-offset-xxs-top--desktop {
    margin-top: 10px;
  }
}

@media screen and (max-width: 1600px) {
  .l-offset-l-top--desktop {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 1600px) {
  .l-offset-l-btm--desktop {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 1600px) {
  .l-offset-s-btm--desktop {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 1600px) {
  .l-offset-xxs-btm--desktop {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 1366px) {
  .l-offset-xxs-top--desktop-normal {
    margin-top: 10px;
  }
}

@media screen and (max-width: 1366px) {
  .l-offset-l-top--desktop-normal {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 1366px) {
  .l-offset-l-btm--desktop-normal {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 1366px) {
  .l-offset-s-btm--desktop-normal {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 1366px) {
  .l-offset-xxs-btm--desktop-normal {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 1279px) {
  .l-offset-xxs-top--desktop-small {
    margin-top: 10px;
  }
}

@media screen and (max-width: 1279px) {
  .l-offset-l-top--desktop-small {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 1279px) {
  .l-offset-l-btm--desktop-small {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 1279px) {
  .l-offset-s-btm--desktop-small {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 1279px) {
  .l-offset-xxs-btm--desktop-small {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 1100px) {
  .l-offset-xxs-top--tablet-landscape {
    margin-top: 10px;
  }
}

@media screen and (max-width: 1100px) {
  .l-offset-l-top--tablet-landscape {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 1100px) {
  .l-offset-l-btm--tablet-landscape {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 1100px) {
  .l-offset-s-btm--tablet-landscape {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 1100px) {
  .l-offset-xxs-btm--tablet-landscape {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 900px) {
  .l-offset-xxs-top--tablet-large {
    margin-top: 10px;
  }
}

@media screen and (max-width: 900px) {
  .l-offset-l-top--tablet-large {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 900px) {
  .l-offset-l-btm--tablet-large {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 900px) {
  .l-offset-s-btm--tablet-large {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 900px) {
  .l-offset-xxs-btm--tablet-large {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 800px) {
  .l-offset-xxs-top--tablet {
    margin-top: 10px;
  }
}

@media screen and (max-width: 800px) {
  .l-offset-l-top--tablet {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 800px) {
  .l-offset-l-btm--tablet {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 800px) {
  .l-offset-s-btm--tablet {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 800px) {
  .l-offset-xxs-btm--tablet {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 550px) {
  .l-offset-xxs-top--phablet {
    margin-top: 10px;
  }
}

@media screen and (max-width: 550px) {
  .l-offset-l-top--phablet {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 550px) {
  .l-offset-l-btm--phablet {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 550px) {
  .l-offset-s-btm--phablet {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 550px) {
  .l-offset-xxs-btm--phablet {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 500px) {
  .l-offset-xxs-top--phone-large {
    margin-top: 10px;
  }
}

@media screen and (max-width: 500px) {
  .l-offset-l-top--phone-large {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 500px) {
  .l-offset-l-btm--phone-large {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 500px) {
  .l-offset-s-btm--phone-large {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 500px) {
  .l-offset-xxs-btm--phone-large {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 400px) {
  .l-offset-xxs-top--phone {
    margin-top: 10px;
  }
}

@media screen and (max-width: 400px) {
  .l-offset-l-top--phone {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 400px) {
  .l-offset-l-btm--phone {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 400px) {
  .l-offset-s-btm--phone {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 400px) {
  .l-offset-xxs-btm--phone {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 340px) {
  .l-offset-xxs-top--phone-small {
    margin-top: 10px;
  }
}

@media screen and (max-width: 340px) {
  .l-offset-l-top--phone-small {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 340px) {
  .l-offset-l-btm--phone-small {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 340px) {
  .l-offset-s-btm--phone-small {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 340px) {
  .l-offset-xxs-btm--phone-small {
    margin-bottom: 10px !important;
  }
}

.container {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding-left: 120px !important;
  padding-right: 120px !important;
}
@media screen and (max-width: 1600px) {
  .container {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
@media screen and (max-width: 1100px) {
  .container {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media screen and (max-width: 800px) {
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media screen and (max-width: 500px) {
  .container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

.container--l {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 120px !important;
  padding-right: 120px !important;
}
@media screen and (max-width: 1600px) {
  .container--l {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
@media screen and (max-width: 1100px) {
  .container--l {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media screen and (max-width: 800px) {
  .container--l {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media screen and (max-width: 500px) {
  .container--l {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

.container--l--loose {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}

.container--m {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 120px !important;
  padding-right: 120px !important;
}
@media screen and (max-width: 1600px) {
  .container--m {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
@media screen and (max-width: 1100px) {
  .container--m {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media screen and (max-width: 800px) {
  .container--m {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media screen and (max-width: 500px) {
  .container--m {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

.container--s, .title-big-container {
  width: 100%;
  max-width: 1032px;
  margin-left: auto;
  margin-right: auto;
  clear: both;
}
@media screen and (max-width: 1100px) {
  .container--s, .title-big-container {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
@media screen and (max-width: 1100px) {
  .container--s, .title-big-container {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media screen and (max-width: 500px) {
  .container--s, .title-big-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.scroll-spy-body .container--s, .scroll-spy-body .title-big-container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 120px !important;
  padding-right: 120px !important;
}
@media screen and (max-width: 1600px) {
  .scroll-spy-body .container--s, .scroll-spy-body .title-big-container {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
@media screen and (max-width: 1100px) {
  .scroll-spy-body .container--s, .scroll-spy-body .title-big-container {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media screen and (max-width: 800px) {
  .scroll-spy-body .container--s, .scroll-spy-body .title-big-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media screen and (max-width: 500px) {
  .scroll-spy-body .container--s, .scroll-spy-body .title-big-container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

.content-container-narrow {
  width: 100%;
  max-width: 66%;
  float: left;
}
.scroll-spy-body .content-container-narrow {
  max-width: 100%;
}
@media screen and (max-width: 800px) {
  .content-container-narrow {
    max-width: 100%;
  }
}
.content-container-narrow .lead {
  font-size: 24px;
  line-height: 38px;
}
@media screen and (max-width: 800px) {
  .content-container-narrow .lead {
    font-size: 19px;
    line-height: 32px;
  }
}

.block-copy .lead {
  font-size: 24px;
  line-height: 38px;
}
@media screen and (max-width: 800px) {
  .block-copy .lead {
    font-size: 19px;
    line-height: 32px;
  }
}

.content-container-narrow-l {
  width: 100%;
  max-width: 75%;
  float: left;
}
@media screen and (max-width: 800px) {
  .content-container-narrow-l {
    max-width: 100%;
  }
}

@media screen and (min-width: 1366px) {
  .l-desk-normal {
    display: none;
  }
}

@media screen and (max-width: 1100px) {
  .l-desktop {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .l-tablet-landscape {
    display: none;
  }
}

@media screen and (max-width: 1100px) {
  .l-tablet-landscape-none {
    display: none !important;
  }
}

@media screen and (min-width: 901px) {
  .l-tablet-large {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  .l-tablet-large-none {
    display: none !important;
  }
}

@media screen and (max-width: 1100px) {
  .l-icon-none-quick {
    display: none !important;
  }
}

@media screen and (min-width: 771px) {
  .l-tablet {
    display: none;
  }
}

@media screen and (min-width: 801px) {
  .l-tablet-qr {
    display: none !important;
  }
}

@media screen and (max-width: 800px) {
  .l-tablet-none {
    display: none !important;
  }
}

@media screen and (min-width: 551px) {
  .l-phablet {
    display: none;
  }
}

@media screen and (max-width: 550px) {
  .l-phablet-none {
    display: none;
  }
}

@media screen and (min-width: 401px) {
  .l-phone {
    display: none;
  }
}

@media screen and (max-width: 400px) {
  .l-phone-none {
    display: none;
  }
}

.media-size-tracker {
  display: none !important;
  max-width: 1600px;
}
@media screen and (max-width: 1279px) {
  .media-size-tracker {
    max-width: 1220px;
  }
}
@media screen and (max-width: 1100px) {
  .media-size-tracker {
    max-width: 1003px;
  }
}
@media screen and (max-width: 800px) {
  .media-size-tracker {
    max-width: 780px;
  }
}
@media screen and (max-width: 550px) {
  .media-size-tracker {
    max-width: 530px;
  }
}
@media screen and (max-width: 500px) {
  .media-size-tracker {
    max-width: 480px;
  }
}
@media screen and (max-width: 400px) {
  .media-size-tracker {
    max-width: 380px;
  }
}

@media screen and (max-width: 800px) {
  .u-full-width-sm {
    width: 100%;
  }
}

.is-hidden {
  display: none !important;
}

@media (min-width: 800px) {
  .is-hidden-desktop {
    display: none !important;
  }
}

@media screen and (max-width: 800px) {
  .is-hidden-tablet {
    display: none !important;
  }
}

.is-hidden-desktop__menu {
  display: none !important;
}
@media screen and (max-width: 1100px) {
  .is-hidden-desktop__menu {
    display: block !important;
  }
}

.is-visible-hidden {
  visibility: hidden !important;
  opacity: 0;
}

.is-visually-hidden {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  z-index: -1;
  position: absolute;
  left: -9999px;
}

.l-border-right {
  border-right: 1px solid #3C3737;
}

.l-full-width {
  width: 100%;
}

.u-no-scroll {
  overflow: hidden;
}

.l-body-content-forced {
  color: #3C3737 !important;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif !important;
  font-size: 1em !important;
  line-height: 1.5 !important;
}
.l-body-content-forced span, .l-body-content-forced p {
  color: #3C3737 !important;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif !important;
  font-size: 1em !important;
  line-height: 1.5 !important;
}

@font-face {
  font-family: "libreBaskerville";
  src: url("/fonts/librebaskerville/librebaskerville-regular-webfont.eot");
  src: url("/fonts/librebaskerville/librebaskerville-regular-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/librebaskerville/librebaskerville-regular-webfont.woff2") format("woff2"), url("/fonts/librebaskerville/librebaskerville-regular-webfont.woff") format("woff"), url("/fonts/librebaskerville/librebaskerville-regular-webfont.ttf") format("truetype"), url("/fonts/librebaskerville/librebaskerville-regular-webfont.svg#libre_baskervilleregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "libreBaskerville";
  src: url("/fonts/librebaskerville/librebaskerville-bold-webfont.eot");
  src: url("/fonts/librebaskerville/librebaskerville-bold-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/librebaskerville/librebaskerville-bold-webfont.woff2") format("woff2"), url("/fonts/librebaskerville/librebaskerville-bold-webfont.woff") format("woff"), url("/fonts/librebaskerville/librebaskerville-bold-webfont.ttf") format("truetype"), url("/fonts/librebaskerville/librebaskerville-bold-webfont.svg#libre_baskervillebold") format("svg");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "libreBaskerville";
  src: url("/fonts/librebaskerville/librebaskerville-italic-webfont.eot");
  src: url("/fonts/librebaskerville/librebaskerville-italic-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/librebaskerville/librebaskerville-italic-webfont.woff2") format("woff2"), url("/fonts/librebaskerville/librebaskerville-italic-webfont.woff") format("woff"), url("/fonts/librebaskerville/librebaskerville-italic-webfont.ttf") format("truetype"), url("/fonts/librebaskerville/librebaskerville-italic-webfont.svg#libre_baskervilleitalic") format("svg");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Zawgyi-One";
  src: local("Zawgyi-One"), url("/fonts/zawgyi/zawgyi.woff") format("woff"), url("/fonts/zawgyi/zawgyi.ttf") format("truetype");
}
@font-face {
  font-family: "Figtree";
  src: url("/fonts/figtree/Figtree-Regular.eot?#iefix") format("eot"), url("/fonts/figtree/Figtree-Regular.woff2") format("woff2"), url("/fonts/figtree/Figtree-Regular.woff") format("woff"), url("/fonts/figtree/Figtree-Regular.ttf") format("truetype"), url("/fonts/figtree/Figtree-Regular.svg#Figtree-Regular") format("svg");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Figtree";
  src: url("/fonts/figtree/Figtree-Italic.eot?#iefix") format("eot"), url("/fonts/figtree/Figtree-Italic.woff2") format("woff2"), url("/fonts/figtree/Figtree-Italic.woff") format("woff"), url("/fonts/figtree/Figtree-Italic.ttf") format("truetype"), url("/fonts/figtree/Figtree-Italic.svg#Figtree-Italic") format("svg");
  font-weight: 500;
  font-style: Italic;
}
@font-face {
  font-family: "Figtree";
  src: url("/fonts/figtree/Figtree-Regular.eot?#iefix") format("eot"), url("/fonts/figtree/Figtree-Regular.woff2") format("woff2"), url("/fonts/figtree/Figtree-Regular.woff") format("woff"), url("/fonts/figtree/Figtree-Regular.ttf") format("truetype"), url("/fonts/figtree/Figtree-Regular.svg#Figtree-Regular") format("svg");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Figtree";
  src: url("/fonts/figtree/Figtree-Italic.eot?#iefix") format("eot"), url("/fonts/figtree/Figtree-Italic.woff2") format("woff2"), url("/fonts/figtree/Figtree-Italic.woff") format("woff"), url("/fonts/figtree/Figtree-Italic.ttf") format("truetype"), url("/fonts/figtree/Figtree-Italic.svg#Figtree-Italic") format("svg");
  font-weight: 800;
  font-style: Italic;
}
@font-face {
  font-family: "Figtree";
  src: url("/fonts/figtree/Figtree-Italic.eot?#iefix") format("eot"), url("/fonts/figtree/Figtree-Italic.woff2") format("woff2"), url("/fonts/figtree/Figtree-Italic.woff") format("woff"), url("/fonts/figtree/Figtree-Italic.ttf") format("truetype"), url("/fonts/figtree/Figtree-Italic.svg#Figtree-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Figtree";
  src: url("/fonts/figtree/Figtree-Bold.eot?#iefix") format("eot"), url("/fonts/figtree/Figtree-Bold.woff2") format("woff2"), url("/fonts/figtree/Figtree-Bold.woff") format("woff"), url("/fonts/figtree/Figtree-Bold.ttf") format("truetype"), url("/fonts/figtree/Figtree-Bold.svg#Figtree-Bold") format("svg");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Figtree";
  src: url("/fonts/figtree/Figtree-ExtraBold.eot?#iefix") format("eot"), url("/fonts/figtree/Figtree-ExtraBold.woff2") format("woff2"), url("/fonts/figtree/Figtree-ExtraBold.woff") format("woff"), url("/fonts/figtree/Figtree-ExtraBold.ttf") format("truetype"), url("/fonts/figtree/Figtree-ExtraBold.svg#Figtree-ExtraBold") format("svg");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Figtree-BlackItalic";
  src: url("/fonts/figtree/Figtree-BlackItalic.eot?#iefix") format("eot"), url("/fonts/figtree/Figtree-BlackItalic.woff2") format("woff2"), url("/fonts/figtree/Figtree-BlackItalic.woff") format("woff"), url("/fonts/figtree/Figtree-BlackItalic.ttf") format("truetype"), url("/fonts/figtree/Figtree-BlackItalic.svg#Figtree-BlackItalic") format("svg");
}
@font-face {
  font-family: "Figtree-Black";
  src: url("/fonts/figtree/Figtree-Black.eot?#iefix") format("eot"), url("/fonts/figtree/Figtree-Black.woff2") format("woff2"), url("/fonts/figtree/Figtree-Black.woff") format("woff"), url("/fonts/figtree/Figtree-Black.ttf") format("truetype"), url("/fonts/figtree/Figtree-Black.svg#Figtree-Black") format("svg");
}
@font-face {
  font-family: "Figtree";
  src: url("/fonts/figtree/Figtree-BoldItalic.eot?#iefix") format("eot"), url("/fonts/figtree/Figtree-BoldItalic.woff2") format("woff2"), url("/fonts/figtree/Figtree-BoldItalic.woff") format("woff"), url("/fonts/figtree/Figtree-BoldItalic.ttf") format("truetype"), url("/fonts/figtree/Figtree-BoldItalic.svg#Figtree-Italic") format("svg");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "icomoon";
  src: url("/fonts/icomoon/icomoon.eot?y2fwpf");
  src: url("/fonts/icomoon/icomoon.eot?y2fwpf#iefix") format("embedded-opentype"), url("/fonts/icomoon/icomoon.ttf?y2fwpf") format("truetype"), url("/fonts/icomoon/icomoon.woff?y2fwpf") format("woff"), url("/fonts/icomoon/icomoon.svg?y2fwpf#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn--download:before, .btn--icon:after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-download-2:before {
  content: "";
}

.icon-download:before {
  content: "";
}

.icon-check:before {
  content: "";
}

.icon-plus:before {
  content: "";
}

.icon-minus:before {
  content: "";
}

.icon-chevron-up:before {
  content: "";
}

.icon-chevron-down:before {
  content: "";
}

.icon-cross:before {
  content: "";
}

.icon-hamburger:before {
  content: "";
}

.icon-facebook:before {
  content: "";
}

.icon-linkedin:before {
  content: "";
}

.icon-twitter:before {
  content: "";
}

.icon-wechat:before {
  content: "";
}

.icon-youku:before {
  content: "";
}

.icon-youtube:before {
  content: "";
}

.icon-arrow-circled-left:before, .slick-prev:before, .page-bottom-nav__prev:before {
  content: "";
}

.icon-arrow-circled-up:before {
  content: "";
}

.icon-arrow-circled-down:before {
  content: "";
}

.icon-arrow-circled-right:before, .slick-next:before, .page-bottom-nav__next:before {
  content: "";
}

.icon-chevron-right:before, .uc-stories-details-view .uc-detail-footer .icon-chevron-left:before, .uc-stories-details-view .uc-detail-footer .link--emph:before, .js-news-events-slick .slick-arrow.slick-prev:before, .js-news-events-slick .slick-arrow.slick-next:before, .breadcrumb .breadcrumb-item:before, .icon-chevron-left:before, .link--emph:before {
  content: "";
}

.icon-chevron-left, .link--emph:before {
  display: inline-block;
  transform: rotate(180deg);
}

.icon-search:before {
  content: "";
}

.icon-instagram:before {
  content: "";
}

.icon-play:before, .icon-play-circled__trans-bg:before, .icon-play-circled:before {
  content: "";
}

.icon-play2:before {
  content: "";
}

.icon-play-smooth-edge:before {
  content: "";
}

.icon-map-marker:before {
  content: "";
}

.icon-envelope:before {
  content: "";
}

.icon-top-pointer:before {
  content: "";
}

.icon-clock:before {
  content: "";
}

.icon-play-circled {
  background: rgba(211, 0, 19, 0.7);
  border-radius: 50%;
  color: #ffffff;
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 1;
  padding: 25.5px 27px 25.5px 33px;
}

.icon-play-circled__trans-bg {
  border-radius: 50%;
  border: 1px solid #FFF;
  color: #ffffff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  padding: 7px 7px 7px 10px;
}

.i-loading {
  display: block;
  background: url("/images/loading-dots.svg") center no-repeat;
  background-size: 120px;
  border-radius: 50%;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  width: 64px;
  height: 64px;
  margin: auto;
}

.icon-apply:before {
  content: "";
}

.icon-help:before {
  content: "";
}

.icon-calendar:before {
  content: "";
}

.icon-building:before {
  content: "";
}

.icon-v-tour:before {
  content: "";
}

.icon-location-mark:before {
  content: "";
}

.icon-book-tour:before {
  content: "";
}

.icon-tag:before {
  content: "";
}

.icon-arrow-r:before {
  content: "";
}

.icon-user:before {
  content: "";
}

.icon-email:before {
  content: "";
}

.icon-phone:before {
  content: "";
}

.icon-map-pin:before {
  content: "";
}

.icon-facebook:before {
  content: "";
}

.icon-instagram:before {
  content: "";
}

.icon-linkedin:before {
  content: "";
}

.icon-wechat:before {
  content: "";
}

.icon-youku:before {
  content: "";
}

.icon-youtube:before {
  content: "";
}

.icon-plus-smooth:before {
  content: "";
  font-weight: 600;
}

.icon-minus-smooth:before, .sidebar-nav .nav-item .nav-item__inner.open i:before {
  content: "";
  font-weight: 600;
}

.icon-play-watch:before {
  content: "";
}

.icon-menu-open:before {
  content: "";
}

.icon-menu-close:before {
  content: "";
}

.icon-slider-arrow:before {
  content: "";
}

.icon-pdf-download:before {
  content: "";
}

.icon-youku-new:before {
  content: "";
}

.icon-icon-youku .path1:before {
  content: "";
  color: #3c3737;
}

.icon-icon-youku .path2:before {
  content: "";
  color: #fff;
  margin-left: -0.85546875em;
}

.icon-icon-youku .path3:before {
  content: "";
  color: #fff;
  margin-left: -0.85546875em;
}

.icon-quick-menu:before, .quick-links .quick-link-trigger:before {
  content: "";
}

.icon-menu-close-min:before, .quick-links.open .quick-link-trigger:before {
  content: "";
}

.icon-filter-people:before {
  content: "";
}

.icon-Icon-Social-Xiaohongshu:before {
  content: "";
}

.icon-Icon-Social-Line:before {
  content: "";
}

html {
  font-size: 1em;
  /* [1] */
  line-height: 1.5;
  /* [1] */
  background-color: #fff;
  color: #3C3737;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}

body.my {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  text-rendering: optimizeLegibility;
  font-weight: normal;
}

em {
  font-style: italic;
}

hr {
  margin: 3em 0;
  padding: 0;
  border: none;
  border-top: 1px solid #ddd;
  color: #eee;
  text-align: center;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #3C3737;
}

pre {
  display: block;
  padding: 15px;
  font-size: 0.9em;
  white-space: pre-line;
  line-height: 1.6;
  font-family: arial, sans-serif;
  color: #fff;
  background: #3C3737;
}

blockquote {
  position: relative;
  quotes: "“" "”" "‘" "’";
}

cite {
  display: inline-block;
}

p {
  margin: 0 0 0 0;
}
p:not(:last-child) {
  margin-bottom: 20px;
}

::-moz-selection {
  background-color: #D30013;
  color: #ffffff;
}

::selection {
  background-color: #D30013;
  color: #ffffff;
}

.text--serif, .h-card__copy__subtitle, .card__desc, .link--emph, .text-serif--white--xxl, .text--serif--l--emph, .text--serif--xl, .text--serif--l, .text--serif--m--caps, .text--serif--m, .text--serif--xxl--emph, .text--serif--xxl, .text--serif--xxxl--red, .text--serif--xm--strong, .text--serif--xxxl, .text--serif--xxxxl, .article-title {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
body.zh-Hans .text--serif, body.zh-Hans .h-card__copy__subtitle, body.zh-Hans .card__desc, body.zh-Hans .link--emph, body.zh-Hans .text-serif--white--xxl, body.zh-Hans .text--serif--l--emph, body.zh-Hans .text--serif--xl, body.zh-Hans .text--serif--l, body.zh-Hans .text--serif--m--caps, body.zh-Hans .text--serif--m, body.zh-Hans .text--serif--xxl--emph, body.zh-Hans .text--serif--xxl, body.zh-Hans .text--serif--xxxl--red, body.zh-Hans .text--serif--xm--strong, body.zh-Hans .text--serif--xxxl, body.zh-Hans .text--serif--xxxxl, body.zh-Hans .article-title {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
body.my .text--serif, body.my .h-card__copy__subtitle, body.my .card__desc, body.my .link--emph, body.my .text-serif--white--xxl, body.my .text--serif--l--emph, body.my .text--serif--xl, body.my .text--serif--l, body.my .text--serif--m--caps, body.my .text--serif--m, body.my .text--serif--xxl--emph, body.my .text--serif--xxl, body.my .text--serif--xxxl--red, body.my .text--serif--xm--strong, body.my .text--serif--xxxl, body.my .text--serif--xxxxl, body.my .article-title {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}

.text--sans-serif, .news-page-title .intro, .text--sans-serif--medium--emph, .text--sans-serif--medium--s, .text--sans-serif--medium--m--caps--muted, .text--sans-serif--medium--m--caps, .text--sans-serif--medium--m, .text--sans-serif--black--m--muted, .text--sans-serif--black--l, .text--sans-serif--strong--l, .text--sans-serif--medium--l, .text--sans-serif--white--xxxl, .text--sans-serif--black--xxxl, .text--sans-serif--medium, .card__author, .card__info, .card__subtitle, .box__copy, .article-header__date, .form__textarea, .form__input, .btn--link--base-skyblue, .btn--link--base, .accordion__tab__copy__link, .filtered-list__row, .text--sans-serif--black--xxxs, .text--sans-serif--black, .h-card__copy__title, .card__title, .btn--main, .btn-square, .btn--secondary, .btn--primary, .btn--blue, .btn--pill, .btn--rainbow, .btn--link--base--white, .btn--cta--blue, .btn--cta, .cookie-consent__agree, .btn--base, .text--sans-serif--medium--xs--caps--muted, .text--sans-serif--medium--xs--caps, .text--sans-serif--medium--xs, .text--sans-serif--medium--xxxs {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
body.my .text--sans-serif, body.my .news-page-title .intro, .news-page-title body.my .intro, body.my .text--sans-serif--medium--emph, body.my .text--sans-serif--medium--s, body.my .text--sans-serif--medium--m--caps--muted, body.my .text--sans-serif--medium--m--caps, body.my .text--sans-serif--medium--m, body.my .text--sans-serif--black--m--muted, body.my .text--sans-serif--black--l, body.my .text--sans-serif--strong--l, body.my .text--sans-serif--medium--l, body.my .text--sans-serif--white--xxxl, body.my .text--sans-serif--black--xxxl, body.my .text--sans-serif--medium, body.my .card__author, body.my .card__info, body.my .card__subtitle, body.my .box__copy, body.my .article-header__date, body.my .form__textarea, body.my .form__input, body.my .btn--link--base-skyblue, body.my .btn--link--base, body.my .accordion__tab__copy__link, body.my .filtered-list__row, body.my .text--sans-serif--black--xxxs, body.my .text--sans-serif--black, body.my .h-card__copy__title, body.my .card__title, body.my .btn--main, body.my .btn-square, body.my .btn--secondary, body.my .btn--primary, body.my .btn--blue, body.my .btn--pill, body.my .btn--rainbow, body.my .btn--link--base--white, body.my .btn--cta--blue, body.my .btn--cta, body.my .cookie-consent__agree, body.my .btn--base, body.my .text--sans-serif--medium--xs--caps--muted, body.my .text--sans-serif--medium--xs--caps, body.my .text--sans-serif--medium--xs, body.my .text--sans-serif--medium--xxxs {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}

.text--medium, .text--sans-serif--medium--emph, .text--sans-serif--medium--s, .text--sans-serif--medium--m--caps--muted, .text--sans-serif--medium--m--caps, .text--sans-serif--medium--m, .text--sans-serif--medium--l, .text--sans-serif--medium, .card__author, .card__info, .card__subtitle, .box__copy, .article-header__date, .form__textarea, .form__input, .btn--link--base-skyblue, .btn--link--base, .accordion__tab__copy__link, .filtered-list__row, .text--sans-serif--medium--xs--caps--muted, .text--sans-serif--medium--xs--caps, .text--sans-serif--medium--xs, .text--sans-serif--medium--xxxs {
  font-weight: 500;
}

.text--black, .news-page-title h1, .subtitle, .text--sans-serif--black--m--muted, .text--sans-serif--black--l, .text--sans-serif--black--xxxl, .text--sans-serif--black--xxxs, .text--sans-serif--black, .h-card__copy__title, .card__title, .btn--main, .btn-square, .btn--secondary, .btn--primary, .btn--blue, .btn--pill, .btn--rainbow, .btn--link--base--white, .btn--cta--blue, .btn--cta, .cookie-consent__agree, .btn--base {
  font-weight: 800;
}

.text--uppercase {
  text-transform: uppercase;
}

.text--nowrap {
  white-space: nowrap;
}

.text--xxxxl, .text--serif--xxxxl, .article-title {
  font-size: 56px;
  font-size: 3.5rem;
  line-height: 1;
}

.text--xxxl, .text--sans-serif--white--xxxl, .text--sans-serif--black--xxxl, .text--serif--xxxl--red, .text--serif--xxxl {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .text--xxxl, .text--sans-serif--white--xxxl, .text--sans-serif--black--xxxl, .text--serif--xxxl--red, .text--serif--xxxl {
    font-size: 34px;
    font-size: 2.125rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 500px) {
  .text--xxxl, .text--sans-serif--white--xxxl, .text--sans-serif--black--xxxl, .text--serif--xxxl--red, .text--serif--xxxl {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.2;
  }
}

.text--xxl, .text-serif--white--xxl, .text--serif--xxl--emph, .text--serif--xxl {
  font-size: 90px;
  font-size: 5.625rem;
  line-height: 0.9;
  letter-spacing: -1px;
}
body.zh-Hans .text--xxl, body.zh-Hans .text-serif--white--xxl, body.zh-Hans .text--serif--xxl--emph, body.zh-Hans .text--serif--xxl {
  font-size: 88px;
  font-size: 5.5rem;
  line-height: 0.9;
  letter-spacing: -1px;
}
@media screen and (max-width: 1100px) {
  body.zh-Hans .text--xxl, body.zh-Hans .text-serif--white--xxl, body.zh-Hans .text--serif--xxl--emph, body.zh-Hans .text--serif--xxl {
    font-size: 72px;
    font-size: 4.5rem;
    line-height: 0.9;
  }
}
@media screen and (max-width: 800px) {
  body.zh-Hans .text--xxl, body.zh-Hans .text-serif--white--xxl, body.zh-Hans .text--serif--xxl--emph, body.zh-Hans .text--serif--xxl {
    font-size: 64px;
    font-size: 4rem;
    line-height: 0.9;
  }
}
@media screen and (max-width: 500px) {
  body.zh-Hans .text--xxl, body.zh-Hans .text-serif--white--xxl, body.zh-Hans .text--serif--xxl--emph, body.zh-Hans .text--serif--xxl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 0.9;
  }
}
@media screen and (max-width: 400px) {
  body.zh-Hans .text--xxl, body.zh-Hans .text-serif--white--xxl, body.zh-Hans .text--serif--xxl--emph, body.zh-Hans .text--serif--xxl {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 0.9;
  }
}
@media screen and (max-width: 1100px) {
  .text--xxl, .text-serif--white--xxl, .text--serif--xxl--emph, .text--serif--xxl {
    font-size: 72px;
    font-size: 4.5rem;
    line-height: 0.9;
  }
}
@media screen and (max-width: 800px) {
  .text--xxl, .text-serif--white--xxl, .text--serif--xxl--emph, .text--serif--xxl {
    font-size: 64px;
    font-size: 4rem;
    line-height: 0.9;
  }
}
@media screen and (max-width: 500px) {
  .text--xxl, .text-serif--white--xxl, .text--serif--xxl--emph, .text--serif--xxl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 0.9;
  }
}
@media screen and (max-width: 400px) {
  .text--xxl, .text-serif--white--xxl, .text--serif--xxl--emph, .text--serif--xxl {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 0.9;
  }
}

.text--xl, .numbers-container .title-text, .text--serif--xl {
  font-size: 60px;
  font-size: 3.75rem;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .text--xl, .numbers-container .title-text, .text--serif--xl {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1;
  }
}
@media screen and (max-width: 400px) {
  .text--xl, .numbers-container .title-text, .text--serif--xl {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
  }
}

.text--l, .graduate-worldwise .title-text, .text--sans-serif--black--l, .text--sans-serif--strong--l, .text--sans-serif--medium--l, .text--serif--l--emph, .text--serif--l {
  font-size: 32px;
  font-size: 2rem;
  line-height: 40px;
}
@media screen and (max-width: 800px) {
  .text--l, .graduate-worldwise .title-text, .text--sans-serif--black--l, .text--sans-serif--strong--l, .text--sans-serif--medium--l, .text--serif--l--emph, .text--serif--l {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
  }
}
@media screen and (max-width: 400px) {
  .text--l, .graduate-worldwise .title-text, .text--sans-serif--black--l, .text--sans-serif--strong--l, .text--sans-serif--medium--l, .text--serif--l--emph, .text--serif--l {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
  }
}

.text--xm, .text--serif--xm--strong {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.2;
}

.text--m, .news-events-container .title-text, .text--sans-serif--medium--m--caps--muted, .text--sans-serif--medium--m--caps, .text--sans-serif--medium--m, .text--sans-serif--black--m--muted, .text--serif--m--caps, .text--serif--m {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.text--ms {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.text--s, .text--sans-serif--medium--s {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
}

.text--s-responsive {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .text--s-responsive {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2;
  }
}

.text--s-ex {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}

.text--xs, .text--sans-serif--medium--xs--caps--muted, .text--sans-serif--medium--xs--caps, .text--sans-serif--medium--xs {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}

.text--xxs {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.text--xxxs, .text--sans-serif--black--xxxs, .text--sans-serif--medium--xxxs {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.text--xxxxs {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.text--strong, .text--sans-serif--strong--l, .text--serif--xm--strong {
  font-weight: bold;
}

.text--emph, .text--sans-serif--medium--emph, .text--serif--l--emph, .text--serif--xxl--emph {
  font-style: italic;
}

.text--caps, .text--sans-serif--medium--m--caps--muted, .text--sans-serif--medium--m--caps, .text--sans-serif--medium--xs--caps--muted, .text--sans-serif--medium--xs--caps, .text--serif--m--caps {
  text-transform: uppercase;
}

.text--dark {
  color: #3C3737;
}

.text--white, .text--sans-serif--white--xxxl, .text-serif--white--xxl {
  color: #ffffff;
}

.text--blue {
  color: #009dd5 !important;
}

.text--green {
  color: #97da00 !important;
}

.text--red, .text--serif--xxxl--red {
  color: #D30013 !important;
}

.text--muted, .text--sans-serif--medium--m--caps--muted, .text--sans-serif--black--m--muted, .text--sans-serif--medium--xs--caps--muted {
  color: #777777 !important;
}

.text--center {
  text-align: center;
}

.text--left {
  text-align: left;
}

.text--right {
  text-align: right;
}

/*.text--body {
  color: color(greyDarkestest);
}

.text--muted {
  color: color(greyDarkest);
}


.text--highlighted {
  color: color(yellow);
}

.text--dark {
  color: color(blueDarker);
}

.text--darker {
  color: color(blueDarkest);
}

.text--darkest {
  color: color(blueDarkestest);
}*/
.text--shadow-m {
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

.text--shadow-s {
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
}

.text--tag, .graduate-worldwise .tag-text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}
@media screen and (max-width: 1100px) {
  .text--tag, .graduate-worldwise .tag-text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.2;
  }
}

.subtitle {
  margin-bottom: 30px !important;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .subtitle {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1;
  }
}
@media screen and (max-width: 400px) {
  .subtitle {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1;
  }
}

.dot--red {
  position: relative;
}
.dot--red:after {
  content: ".";
  position: absolute;
  transform: translate(0, 0);
  bottom: 0;
  color: #D30013;
}
body.zh-Hans .dot--red:after {
  bottom: -10px;
}

.dot--blue {
  position: relative;
}
.dot--blue:after {
  content: ".";
  position: absolute;
  transform: translate(0, 0);
  bottom: 0;
  color: #009dd5;
}
body.zh-Hans .dot--blue:after {
  bottom: -10px;
}

.dot--yellow {
  position: relative;
}
.dot--yellow:after {
  content: ".";
  position: absolute;
  transform: translate(0, 0);
  bottom: 0;
  color: #FFB909;
}
body.zh-Hans .dot--yellow:after {
  bottom: -10px;
}

.dot--dark {
  position: relative;
}
.dot--dark:after {
  content: ".";
  position: absolute;
  transform: translate(0, 0);
  bottom: 0;
  color: #3C3737;
}
body.zh-Hans .dot--dark:after {
  bottom: -10px;
}
.inspiring-people .dot--dark:after {
  right: 0;
}

.dot--white {
  position: relative;
}
.dot--white:after {
  content: ".";
  color: #ffffff;
}
.admission-slider .dot--white:after {
  bottom: 10px;
}

img {
  max-width: 100%;
  /* [1] */
  font-style: italic;
  /* [2] */
  vertical-align: middle;
  /* [3] */
}

.img-rounded, .img-rounded--xs, .img-rounded--s {
  border-radius: 100%;
  /* [4] */
}

.gm-style img,
img[width],
img[height] {
  /* [6] */
  max-width: none;
}

.img-shadow {
  box-shadow: 3px 3px 6px -3px #aaa, -3px 3px 6px -3px #aaa;
}

.img-full-width {
  width: 100%;
}

.img-max-width {
  display: inline-block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  align-self: flex-start;
}
.img-max-width.left {
  margin-left: 0;
}

.img-height-responsive {
  max-width: unset;
  width: auto;
  height: 100%;
}

.img-rounded--s {
  width: 40px;
  height: 40px;
}

.img-rounded--xs {
  width: 30px;
  height: 30px;
}

.img-rounded--xxs {
  border-radius: 5px;
}

li > ul,
li > ol {
  margin-bottom: 0;
  /* Remove extra vertical spacing when nesting lists. */
}

ul ul {
  list-style-type: circle;
}
ul ul ul {
  list-style-type: square;
}
ul ul ul ul {
  list-style-type: disc;
}

.list-bare {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-header--red {
  color: #D30013;
  font-weight: 800;
}

.people-filter-container {
  max-height: 100%;
  margin-bottom: 50px;
}

.pages-list {
  padding: 0;
  margin: 0;
}

.pages-list__item-wrap {
  list-style: none;
  margin: 0 auto 0 auto;
  max-width: 1600px;
  padding: 0 120px;
}
.pages-list__item-wrap:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 1600px) {
  .pages-list__item-wrap {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 1100px) {
  .pages-list__item-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 800px) {
  .pages-list__item-wrap {
    padding: 0;
  }
}

.pages-list__item {
  position: relative;
  background-size: cover;
  background: #000000 no-repeat center center;
}
.pages-list__item:before {
  content: "";
  display: block;
  padding-bottom: 35%;
}
@media screen and (max-width: 1279px) {
  .pages-list__item:before {
    padding-bottom: 42%;
  }
}
@media screen and (max-width: 800px) {
  .pages-list__item:before {
    padding-bottom: 55%;
  }
}
@media screen and (max-width: 550px) {
  .pages-list__item:before {
    padding-bottom: 70%;
  }
}
@media screen and (max-width: 500px) {
  .pages-list__item:before {
    padding-bottom: 40%;
  }
}
@media screen and (max-width: 400px) {
  .pages-list__item:before {
    padding-bottom: 40%;
  }
}

.pages-list__item--right .pages-list__overlay {
  right: 0;
}
.pages-list__item--right .page-list__title {
  text-align: right;
}
.pages-list__item--right .page-list__info-text {
  width: 49%;
}
.pages-list__item--right .page-list__title span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-color: #ffffff;
  padding: 0 0 0 1rem;
}
@media screen and (max-width: 800px) {
  .pages-list__item--right .page-list__title span {
    background-color: transparent;
  }
}
.pages-list__item--right .page-list__content {
  left: -90%;
  right: 0;
}
@media screen and (max-width: 800px) {
  .pages-list__item--right .page-list__content {
    right: 0;
    left: -8%;
  }
}
@media screen and (max-width: 550px) {
  .pages-list__item--right .page-list__content {
    padding: 8%;
    left: 0;
    right: 0;
  }
}
@media screen and (max-width: 400px) {
  .pages-list__item--right .page-list__content {
    padding: 15px;
  }
}
@media screen and (max-width: 1100px) {
  .pages-list__item--right {
    padding-right: 0;
  }
}

.pages-list__item--left .pages-list__overlay {
  left: 0;
}
.pages-list__item--left .page-list__info-text {
  width: 49%;
}
.pages-list__item--left .page-list__title span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-color: #ffffff;
  padding: 0 2rem 5px 0;
}
@media screen and (max-width: 500px) {
  .pages-list__item--left .page-list__title span {
    padding: 0;
    background-color: transparent;
  }
}
.pages-list__item--left .page-list__content {
  right: -100%;
  left: 0;
}
@media screen and (max-width: 1279px) {
  .pages-list__item--left .page-list__content {
    top: 0;
    bottom: 10%;
    padding: 10% 30px;
  }
}
@media screen and (max-width: 800px) {
  .pages-list__item--left .page-list__content {
    left: 0;
    right: -50%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 550px) {
  .pages-list__item--left .page-list__content {
    padding: 0 30px;
    left: 0;
    right: 0;
  }
}
@media screen and (max-width: 500px) {
  .pages-list__item--left .page-list__content {
    padding: 0 30px;
  }
}
@media screen and (max-width: 400px) {
  .pages-list__item--left .page-list__content {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1100px) {
  .pages-list__item--left {
    padding-left: 0;
  }
}

@media screen and (max-width: 800px) {
  .our-vision-container .pages-list__overlay {
    width: 100%;
  }
  .our-vision-container .page-list__content__centered {
    top: 0;
    transform: translateY(0px);
  }
}

.pages-list__overlay {
  position: absolute;
  background-color: #ffffff;
  width: 20%;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 1279px) {
  .pages-list__overlay {
    width: 30%;
  }
}
@media screen and (max-width: 1100px) {
  .pages-list__overlay {
    width: 55%;
  }
}
@media screen and (max-width: 800px) {
  .pages-list__overlay {
    width: 75%;
  }
}
@media screen and (max-width: 550px) {
  .pages-list__overlay {
    width: 100%;
  }
}

.page-list__content {
  background: transparent;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 1279px) {
  .page-list__content {
    top: 0;
    bottom: 10%;
    padding: 10% 12%;
  }
}
@media screen and (max-width: 1100px) {
  .page-list__content {
    padding: 8% 12%;
  }
}
@media screen and (max-width: 800px) {
  .page-list__content {
    padding: 8%;
  }
}
@media screen and (max-width: 550px) {
  .page-list__content {
    padding: 8%;
    left: 0;
    right: 0;
  }
}

/*.page-list__content-centered {
  @include media-query('tablet') {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
  }
}*/
.page-list__content__inner {
  position: relative;
  height: 100%;
  width: 100%;
}

.page-list__content__centered {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.page-list__title {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
  line-height: 1.2;
  padding: 0px 30px 5px 0;
  display: inline;
}
body.zh-Hans .page-list__title {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
body.my .page-list__title {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
@media screen and (max-width: 800px) {
  .page-list__title {
    text-align: center;
    margin-bottom: 20px;
  }
}

.page-list__description {
  padding-right: 15px;
  padding-top: 15px;
  text-align: justify;
  padding-left: 0;
}
@media screen and (max-width: 800px) {
  .page-list__description {
    padding-left: 0;
  }
}

.pages-list__item--tall .pages-list__item:before {
  padding-bottom: 40%;
}
@media screen and (max-width: 1279px) {
  .pages-list__item--tall .pages-list__item:before {
    padding-bottom: 46%;
  }
}
@media screen and (max-width: 800px) {
  .pages-list__item--tall .pages-list__item:before {
    padding-bottom: 64%;
  }
}
@media screen and (max-width: 550px) {
  .pages-list__item--tall .pages-list__item:before {
    padding-bottom: 73%;
  }
}
@media screen and (max-width: 500px) {
  .pages-list__item--tall .pages-list__item:before {
    padding-bottom: 82%;
  }
}
@media screen and (max-width: 400px) {
  .pages-list__item--tall .pages-list__item:before {
    padding-bottom: 95%;
  }
}
.pages-list__item--tall .page-list__content {
  top: 10%;
  bottom: 10%;
}
@media screen and (max-width: 1279px) {
  .pages-list__item--tall .page-list__content {
    top: 8%;
    bottom: 8%;
  }
}
.filtered-list-wrap {
  position: relative;
}
.filtered-list-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  width: 0;
  height: 0;
  overflow: hidden;
  background-color: transparent;
  background: url("/images/loading-pretty.gif") no-repeat center center;
  background-size: 100px 100px;
}
.filtered-list-wrap .loadmore-loading {
  display: none;
}
.filtered-list-wrap.is-loading .loadmore-loading {
  display: block;
}
.filtered-list-wrap:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,f0f0f0+50&0+0,0.65+50 */
}
.filtered-list-wrap.gradient-none:after {
  background: transparent;
}

.filtered-list {
  margin: 0;
  padding: 0;
  list-style: none;
  min-height: 85px;
  max-height: 600px;
  overflow-y: auto;
}
@media screen and (max-width: 800px) {
  .filtered-list {
    max-height: 500px;
  }
}

.filtered-list__row {
  display: block;
  padding: 0 30px;
  color: #000000;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .filtered-list__row {
    height: 120px;
    border-bottom: 1px solid #f9d3d1;
    position: relative;
  }
}
@media screen and (max-width: 550px) {
  .filtered-list__row {
    height: 140px;
  }
}
.filtered-list__row.even {
  background: #fdefef;
}
.filtered-list__row.odd {
  background: #ffffff;
}

.filtered-list__row-inner {
  border-bottom: 1px solid #f9d3d1;
  height: 80px;
}
@media screen and (max-width: 800px) {
  .filtered-list__row-inner {
    height: auto;
    border: none;
    position: absolute;
    top: 50%;
    /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
    /* IE 9 */
    transform: translateY(-50%);
    /* IE 10, Fx 16+, Op 12.1+ */
    left: 30px;
    right: 30px;
  }
}
@media screen and (max-width: 550px) {
  .filtered-list__row-inner {
    left: 15px;
    right: 15px;
  }
}

.filtered-list__row__item {
  float: left;
  display: inline-block;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .filtered-list__row__item {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 800px) {
  .filtered-list__row__item {
    float: none;
    display: block;
    width: 100% !important;
    height: auto;
  }
}
.filtered-list__row__item:not(:last-child) .filtered-list__row__item-content {
  padding-right: 30px;
}
@media screen and (max-width: 1100px) {
  .filtered-list__row__item:not(:last-child) .filtered-list__row__item-content {
    padding-right: 15px;
  }
}
@media screen and (max-width: 800px) {
  .filtered-list__row__item:not(:last-child) .filtered-list__row__item-content {
    padding-right: 0;
  }
}

.filtered-list__row__item--large {
  width: 40%;
}
@media screen and (max-width: 800px) {
  .filtered-list__row__item--large {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.2;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 400px) {
  .filtered-list__row__item--large {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 1.2;
  }
}

.filtered-list__row__item--medium {
  width: 33.33%;
}
@media screen and (max-width: 800px) {
  .filtered-list__row__item--medium {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 400px) {
  .filtered-list__row__item--medium {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2;
  }
}

.filtered-list__row__item--small {
  width: 20%;
}
@media screen and (max-width: 800px) {
  .filtered-list__row__item--small {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2;
  }
}

.filtered-list__row__item-content {
  position: absolute;
  top: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(-50%);
  /* IE 10, Fx 16+, Op 12.1+ */
}
@media screen and (max-width: 800px) {
  .filtered-list__row__item-content {
    position: static;
    top: inherit;
    /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
    /* IE 9 */
    transform: none;
    /* IE 10, Fx 16+, Op 12.1+ */
  }
}

.date-list__item {
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 800px) {
  .date-list__item {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 550px) {
  .date-list__item {
    margin-bottom: 40px;
  }
}

.date-list__item__date {
  padding-right: 20px;
  border-right: 1px solid #000000;
  text-align: center;
}

.date-list__item__description {
  padding-left: 40px;
}
@media screen and (max-width: 550px) {
  .date-list__item__description {
    padding-left: 30px;
  }
}

.list-container {
  width: 100%;
  clear: both;
}
.list-container .list__content {
  width: 20%;
  float: left;
  padding-top: 8%;
}
@media screen and (max-width: 800px) {
  .list-container .list__content {
    padding-top: 0;
  }
}
.list-container .list__content .list__image {
  display: none;
}
@media screen and (max-width: 800px) {
  .list-container .list__content .list__image {
    display: block;
    margin-bottom: 15px;
  }
}
.list-container .list__content .list__title span {
  position: relative;
  z-index: 1;
  background: #ffffff;
  display: inline-block;
  line-height: 1.2;
  padding-right: 30px;
}
body.my .list-container .list__content .list__title span {
  line-height: 1.9;
}
@media screen and (max-width: 800px) {
  .list-container .list__content .list__title span {
    line-height: 0.9;
    background: transparent;
  }
}
.list-container .list__content .list__description {
  display: block;
  width: 100%;
  padding-right: 5px;
}
@media screen and (max-width: 800px) {
  .list-container .list__content .list__description {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1279px) {
  .list-container .list__content {
    width: 25%;
  }
}
@media screen and (max-width: 1100px) {
  .list-container .list__content {
    width: 30%;
  }
}
@media screen and (max-width: 800px) {
  .list-container .list__content {
    width: 100%;
  }
}
.list-container .list__image {
  flex: 1;
  position: relative;
  background: #000000 no-repeat center center;
  background-size: cover;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .list-container .list__image {
    display: none;
  }
}
.list-container .list__image:before {
  content: "";
  display: block;
  padding-bottom: 45%;
}
@media screen and (max-width: 1279px) {
  .list-container .list__image:before {
    padding-bottom: 50%;
  }
}
@media screen and (max-width: 1100px) {
  .list-container .list__image:before {
    padding-bottom: 60%;
  }
}
@media screen and (max-width: 800px) {
  .list-container .list__image:before {
    padding-bottom: 45%;
  }
}
@media screen and (max-width: 550px) {
  .list-container .list__image:before {
    padding-bottom: 60%;
  }
}

.people-search-container {
  margin: 10px;
  position: relative;
}
.people-search-container i.icon-search {
  position: absolute;
  left: 12px;
  top: 50%;
  font-size: 18px;
  transform: translateY(-50%);
  color: #3C3737;
}
.people-search-container i.icon-cross {
  position: absolute;
  right: 0;
  top: 1px;
  padding: 16px;
  font-size: 12px;
  display: none;
  cursor: pointer;
}
.people-search-container i.icon-cross.active {
  display: inline-block;
}
.people-search-container input {
  width: 100%;
  padding: 10px 10px 10px 40px;
  outline: none;
  border: 1px solid #E8E8E8;
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
.people-search-container input:focus {
  outline: none;
}

a {
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s, opacity 0.3s, background-color 0.3s, border-radius 0.3s;
}
.l-body-copy a {
  color: #009dd5;
  border-bottom: 1px solid #009dd5;
}
.no-touchevents .l-body-copy a:hover {
  border-bottom-color: #009dd5;
}

.link--base, .contact-cards .contact-card .card-cnt .contact-card__inner .details p a {
  color: #D30013;
  border-bottom: 1px solid transparent;
}
.no-touchevents .link--base:hover, .no-touchevents .contact-cards .contact-card .card-cnt .contact-card__inner .details p a:hover, .contact-cards .contact-card .card-cnt .contact-card__inner .details p .no-touchevents a:hover {
  border-bottom-color: #D30013;
}

.link--no-color {
  color: inherit;
  border-bottom: 1px solid transparent;
}
.link--no-color:hover {
  border-bottom-color: inherit;
}

.link--emph {
  color: #777777;
  font-style: italic;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  padding-left: 15px;
}
@media screen and (max-width: 500px) {
  .link--emph {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1;
  }
}
.link--emph:before {
  font-family: "icomoon";
  content: "";
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  font-style: normal;
  transform: rotate(180deg);
  transition: left 0.3s;
  position: absolute;
  left: 0;
  top: 2px;
}
.link--emph:hover:before {
  left: -5px;
}

.link--blue {
  color: #009dd5;
}

.btn {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  text-align: center;
  /* [4] */
  margin: 0;
  /* [4] */
  cursor: pointer;
  /* [5] */
  overflow: visible;
  /* [6] */
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  transition: all 0.3s;
}
.btn, .btn:hover, .btn:active, .btn:focus {
  text-decoration: none;
  /* [4] */
}
.btn::-moz-focus-inner, .btn::-moz-focus-inner {
  border: 0;
  /* [8] */
  padding: 0;
  /* [8] */
}

.btn--base {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  background: #009dd5;
  padding: 12px 34px;
  border: 1px solid #009dd5;
  border-radius: 5px;
}
body.zh-Hans .btn--base {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}
.no-touchevents .btn--base:hover, .no-touchevents .btn--base:active {
  background: #ffffff;
  border-color: #009dd5;
  color: #009dd5;
}

.btn--cta, .cookie-consent__agree {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  background: #D30013;
  padding: 12px 20px;
  border: 1px solid #D30013;
  border-radius: 5px;
  min-width: 200px;
}
body.zh-Hans .btn--cta, body.zh-Hans .cookie-consent__agree {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}
.no-touchevents .btn--cta:hover, .no-touchevents .cookie-consent__agree:hover, .no-touchevents .btn--cta:active, .no-touchevents .cookie-consent__agree:active {
  background: #ffffff;
  color: #D30013;
  border-color: #D30013;
}
@media all and (max-width: 1024px) {
  .btn--cta, .cookie-consent__agree {
    min-width: 150px;
  }
}
@media all and (max-width: 991px) {
  .btn--cta, .cookie-consent__agree {
    min-width: 140px;
  }
}

.btn--cta--white {
  background: #ffffff;
}

.btn--cta--white-inverse {
  background: transparent;
  border: 1px solid #ffffff;
}
.no-touchevents .btn--cta--white-inverse:hover, .no-touchevents .btn--cta--white-inverse:active {
  background: #ffffff;
  color: #D30013;
  border-color: #ffffff;
}

.no-touchevents .btn--cta--red-inverse:hover, .no-touchevents .btn--cta--red-inverse:active {
  background: #ffffff;
  color: #D30013;
  border-color: #ffffff;
}

.btn--cta--blue {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  background: #09a8df;
  padding: 12px 20px;
  border: 1px solid #09a8df;
  border-radius: 5px;
  min-width: 200px;
}
body.zh-Hans .btn--cta--blue {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}
.no-touchevents .btn--cta--blue:hover, .no-touchevents .btn--cta--blue:active {
  background: #ffffff;
  color: #09a8df;
  border-color: #09a8df;
}

.accordion-group__tab__link:after, .btn--link--base--white:after, .btn--link--base-skyblue:after, .btn--link--base:after, .accordion__tab__copy__link:after {
  display: inline-block;
  transition: padding-left 0.3s;
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  padding-left: 5px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
  position: relative;
  top: 3px;
  font-weight: bold;
}
.no-touchevents .accordion-group__tab__link:hover:after, .no-touchevents .btn--link--base--white:hover:after, .no-touchevents .btn--link--base-skyblue:hover:after, .no-touchevents .btn--link--base:hover:after, .no-touchevents .accordion__tab__copy__link:hover:after, .no-touchevents .accordion-group__tab__link:active:after, .no-touchevents .btn--link--base--white:active:after, .no-touchevents .btn--link--base-skyblue:active:after, .no-touchevents .btn--link--base:active:after, .no-touchevents .accordion__tab__copy__link:active:after {
  content: "";
  font-size: 12px;
  padding-left: 10px;
  top: 1px;
}

.btn--link--base, .accordion__tab__copy__link {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #D30013;
}
body.zh-Hans .btn--link--base, body.zh-Hans .accordion__tab__copy__link {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}

.btn--link--base-skyblue {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #009ED0;
}
body.zh-Hans .btn--link--base-skyblue {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}

.btn--link--base--white {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
}
body.zh-Hans .btn--link--base--white {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}

.btn--rainbow {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  background: transparent;
  padding: 16px 20px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  min-width: 200px;
}
body.zh-Hans .btn--rainbow {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}

.btn--rainbow--purple {
  background: #772757;
}
.no-touchevents .btn--rainbow--purple:hover, .no-touchevents .btn--rainbow--purple:active {
  background: #ffffff;
  color: #772757;
  border-color: #772757;
}

.btn--rainbow--orange {
  background: #ff5200;
}
.no-touchevents .btn--rainbow--orange:hover, .no-touchevents .btn--rainbow--orange:active {
  background: #ffffff;
  color: #ff5200;
  border-color: #ff5200;
}

.btn--rainbow--green {
  background: #97da00;
}
.no-touchevents .btn--rainbow--green:hover, .no-touchevents .btn--rainbow--green:active {
  background: #ffffff;
  color: #97da00;
  border-color: #97da00;
}

.btn--filter {
  border: 1px solid #3C3737;
  color: #3C3737;
  height: 42px;
  line-height: 42px;
  font-size: 14px;
  padding: 0 10px;
  border-radius: 5px;
  opacity: 1;
  text-transform: uppercase;
}
body.my .btn--filter {
  font-size: 9px;
}
.no-touchevents .btn--filter:hover, .no-touchevents .btn--filter:active {
  background-color: #3C3737;
  color: #ffffff;
}

.btn--full {
  width: 100%;
}

@media screen and (max-width: 1600px) {
  .btn--full--desktop {
    width: 100%;
  }
}

@media screen and (max-width: 1366px) {
  .btn--full--desktop-normal {
    width: 100%;
  }
}

@media screen and (max-width: 1279px) {
  .btn--full--desktop-small {
    width: 100%;
  }
}

@media screen and (max-width: 1100px) {
  .btn--full--tablet-landscape {
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .btn--full--tablet-large {
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .btn--full--tablet {
    width: 100%;
  }
}

@media screen and (max-width: 550px) {
  .btn--full--phablet {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .btn--full--phone-large {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .btn--full--phone {
    width: 100%;
  }
}

@media screen and (max-width: 340px) {
  .btn--full--phone-small {
    width: 100%;
  }
}

.btn--pill {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid transparent;
  padding: 19px 25px 19px 20px;
  border-radius: 5px;
  min-width: 130px;
}
body.zh-Hans .btn--pill {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .btn--pill {
    min-width: unset;
    padding: 15px 5px;
  }
}
.btn--pill:after {
  padding-left: 12px;
  padding-bottom: 3px;
}
@media screen and (max-width: 800px) {
  .btn--pill:after {
    padding-left: 0;
  }
}

.btn--icon {
  position: relative;
}
.btn--icon:after {
  content: "";
  font-size: 32px;
  font-size: 2rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(-50%);
  /* IE 10, Fx 16+, Op 12.1+ */
}
body.zh-Hans .btn--icon:after {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1;
}

.btn--linkedin {
  padding-right: 30px;
  background: #0077b5;
}
.btn--linkedin:after {
  content: "";
  top: 46%;
}
.no-touchevents .btn--linkedin:hover, .no-touchevents .btn--linkedin:active {
  background: #ffffff;
  border-color: #0077b5;
  color: #0077b5;
}

.btn--wechat {
  background: #76b23d;
}
.btn--wechat:after {
  content: "";
}
.no-touchevents .btn--wechat:hover, .no-touchevents .btn--wechat:active {
  background: #ffffff;
  border-color: #76b23d;
  color: #76b23d;
}

.btn--facebook {
  padding-right: 30px;
  background: #4267b2;
}
.btn--facebook:after {
  content: "";
}
.no-touchevents .btn--facebook:hover, .no-touchevents .btn--facebook:active {
  background: #ffffff;
  border-color: #4267b2;
  color: #4267b2;
}

.btn--search {
  background: #D30013;
  border: 1px solid #ffffff;
  color: #ffffff;
  width: 100%;
  margin-left: 10px;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  padding: 0;
  font-size: 14px;
  font-weight: bold;
  max-width: 150px;
  font-family: "Avenir W01", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 500px) {
  .btn--search {
    margin-left: 0px;
    max-width: 100%;
  }
}
.no-touchevents .btn--search:hover, .no-touchevents .btn--search:active {
  background: #ffffff;
  border-color: #D30013;
  color: #D30013;
}

.btn--download {
  position: relative;
}
.btn--download:before {
  content: "";
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(-50%);
  /* IE 10, Fx 16+, Op 12.1+ */
  /*    body.zh-Hans & {
        @include flex-font-size(24px, 1);
      }*/
}
.no-touchevents .btn--download:hover:before, .no-touchevents .btn--download:active:before {
  left: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translate(-50%, -50%);
  /* IE 10, Fx 16+, Op 12.1+ */
}
.no-touchevents .btn--download:hover .btn--download__copy, .no-touchevents .btn--download:active .btn--download__copy {
  opacity: 0;
}

.btn--download__copy {
  display: inline-block;
  opacity: 1;
  padding-left: 30px;
  transition: 0.3s opacity;
}

.btn-group {
  text-align: center;
}
.btn-group.left {
  text-align: left;
}
.btn-group.btn-box-right {
  display: block;
  width: 252px;
  float: right;
  padding-top: 40px;
}
.btn-group.btn-box-right .btn-group__item--small {
  margin: 4px 10px 4px 0;
  width: 100%;
}
.btn-group.btn-box-right .btn-group__item--small:first-child {
  margin: 4px 10px 4px 0;
}
@media screen and (max-width: 800px) {
  .btn-group.btn-box-right {
    width: 100%;
    padding-top: 0px;
    float: left;
    margin: 0px -4px 15px;
  }
  .btn-group.btn-box-right .btn-group__item--small, .btn-group.btn-box-right .btn-group__item--small:first-child {
    display: inline-block;
    width: calc(33.3% - 8px);
    float: left;
    margin: 4px;
  }
}

.btn-group__item {
  margin: 10px 40px 0 0;
}
@media screen and (max-width: 1600px) {
  .btn-group__item {
    width: auto;
  }
}
@media screen and (max-width: 1100px) {
  .btn-group__item {
    margin: 10px 20px 0 0;
  }
}
@media screen and (max-width: 800px) {
  .btn-group__item {
    margin: 0 0 20px 0;
    max-width: none;
    width: 100%;
  }
}
.btn-group__item:first-child {
  margin-left: 0;
}
.btn-group__item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 800px) {
  .btn-group__item:last-child {
    margin-bottom: 0;
  }
}

.btn-group__item--small {
  margin: 0 10px;
}
@media screen and (max-width: 1100px) {
  .btn-group__item--small {
    margin: 0 5px;
    max-width: 200px;
  }
}
@media screen and (max-width: 800px) {
  .btn-group__item--small {
    margin: 0 0 10px 0;
    max-width: none;
  }
}
.btn-group__item--small:first-child {
  margin-left: 0;
}
.btn-group__item--small:last-child {
  margin-right: 0;
}
@media screen and (max-width: 800px) {
  .btn-group__item--small:last-child {
    margin-bottom: 0;
  }
}

.button-mobile-back {
  display: none;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 40px;
}
.button-mobile-back .icon-chevron-left, .button-mobile-back .link--emph:before {
  margin-left: 12px;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 800px) {
  .button-mobile-back {
    display: block;
  }
}

.btn--main, .btn-square, .btn--secondary, .btn--primary, .btn--blue {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  color: #ffffff;
  background: #D30013;
  border: 5px solid #D30013;
  border-radius: 5px;
  padding: 15px 20px;
  min-width: 200px;
  text-align: center;
  letter-spacing: 0.98px;
  display: inline-block;
}
.no-touchevents .btn--main:hover, .no-touchevents .btn-square:hover, .no-touchevents .btn--secondary:hover, .no-touchevents .btn--primary:hover, .no-touchevents .btn--blue:hover {
  background: #9E1422;
  border: 5px solid #9E1422;
}
.no-touchevents .btn--main:active, .no-touchevents .btn-square:active, .no-touchevents .btn--secondary:active, .no-touchevents .btn--primary:active, .no-touchevents .btn--blue:active {
  background: #D30013;
  border: 5px solid #D30013;
}
.btn--main.has-icon, .has-icon.btn-square, .has-icon.btn--secondary, .has-icon.btn--primary, .has-icon.btn--blue {
  padding-left: 72px;
  position: relative;
}
.btn--main.has-icon i, .has-icon.btn-square i, .has-icon.btn--secondary i, .has-icon.btn--primary i, .has-icon.btn--blue i {
  display: inline-block;
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
@media all and (max-width: 1024px) {
  .btn--main, .btn-square, .btn--secondary, .btn--primary, .btn--blue {
    min-width: 150px;
  }
}
@media all and (max-width: 991px) {
  .btn--main, .btn-square, .btn--secondary, .btn--primary, .btn--blue {
    min-width: 140px;
  }
}

.btn--primary, .btn--blue {
  background: #D30013;
  border: 0px solid #707070;
  text-transform: unset;
  font-weight: 500;
  text-shadow: none;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}
.no-touchevents .btn--primary:visited, .no-touchevents .btn--blue:visited, .no-touchevents .btn--primary:hover, .no-touchevents .btn--blue:hover, .no-touchevents .btn--primary:active, .no-touchevents .btn--blue:active, .no-touchevents .btn--primary:focus, .no-touchevents .btn--blue:focus, .no-touchevents .btn--primary:disabled, .no-touchevents .btn--blue:disabled {
  border: 0px solid #707070;
}
.no-touchevents .btn--primary:hover, .no-touchevents .btn--blue:hover {
  background: #F22320;
}
.no-touchevents .btn--primary:focus, .no-touchevents .btn--blue:focus {
  background: #990000;
}
.no-touchevents .btn--primary:active, .no-touchevents .btn--blue:active {
  background: #FF513E;
}
.no-touchevents .btn--primary:disabled, .no-touchevents .btn--blue:disabled {
  background: #CECECE;
}

.btn--secondary {
  color: #D30013;
  background: #ffffff;
  border: 2px solid #D30013;
  padding: 18px 20px;
}
.no-touchevents .btn--secondary:hover {
  background: #9E1422;
  border: 2px solid #9E1422;
  color: #ffffff;
}
.no-touchevents .btn--secondary:active {
  background: #D30013;
  border: 2px solid #D30013;
  color: #ffffff;
}
@media all and (max-width: 1024px) {
  .btn--secondary {
    min-width: 150px;
  }
}
@media all and (max-width: 991px) {
  .btn--secondary {
    min-width: 140px;
  }
}

.btn-square-container {
  width: 100%;
  margin: 0 -12px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .btn-square-container {
    margin: 20px -6px;
  }
}

.btn-square {
  color: #D30013;
  background: #ffffff;
  border: 2px solid #D30013;
  padding: 18px 20px;
  position: relative;
  text-align: center;
  display: block;
  width: calc(33.3% - 24px);
  margin: 12px;
}
.btn-square svg {
  position: absolute;
  left: 18px;
  top: 14px;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1;
  max-width: 24px;
  max-height: 24px;
  fill: #ffffff !important;
}
.btn-square.btn-square__red {
  color: #ffffff;
  background: #D30013;
  border: 2px solid #D30013;
}
.btn-square.btn-square__red:hover {
  background: #9E1422;
  border: 2px solid #9E1422;
  color: #ffffff;
}
.btn-square.btn-square__red:active {
  background: #D30013;
  border: 2px solid #D30013;
  color: #ffffff;
}
.btn-square.btn-square__cyan {
  color: #ffffff;
  background: #009dd5;
  border: 2px solid #009dd5;
}
.btn-square.btn-square__cyan:hover {
  background: #006D95;
  border: 2px solid #006D95;
  color: #ffffff;
}
.btn-square.btn-square__purple {
  color: #ffffff;
  background: #772757;
  border: 2px solid #772757;
}
.btn-square.btn-square__purple:hover {
  background: #531B3C;
  border: 2px solid #531B3C;
  color: #ffffff;
}
.btn-square.btn-square__yellow {
  color: #ffffff;
  background: #FFB909;
  border: 2px solid #FFB909;
}
.btn-square.btn-square__yellow:hover {
  background: #B28106;
  border: 2px solid #B28106;
  color: #ffffff;
}
.btn-square.btn-square__green {
  color: #ffffff;
  background: #97da00;
  border: 2px solid #97da00;
}
.btn-square.btn-square__green:hover {
  background: #6B9800;
  border: 2px solid #6B9800;
  color: #ffffff;
}
.btn-square.btn-square__orange {
  color: #ffffff;
  background: #ff5200;
  border: 2px solid #ff5200;
}
.btn-square.btn-square__orange:hover {
  background: #B23800;
  border: 2px solid #B23800;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .btn-square {
    float: left;
    padding: 15px 10px 15px;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.2;
    text-align: center;
    min-width: unset;
    width: calc(33.3% - 12px);
    margin: 6px;
  }
  .btn-square svg {
    position: relative;
    width: 100%;
    display: block;
    padding: 0 0 10px;
    text-align: center;
    left: auto;
    top: auto;
    transform: none;
    font-size: 24px;
    max-width: 24px;
    max-height: 24px;
    margin: 0 auto;
  }
}

.btn-square-social-box {
  display: inline-block;
  float: left;
}

.btn-square-social {
  display: inline-block;
  height: 48px;
  width: 48px;
  float: left;
  line-height: 46px;
  text-align: center;
  font-size: 28px;
  border-radius: 4px;
  border: 2px solid transparent;
  margin: 0 4px;
}
.btn-square-social i {
  color: white;
}
.btn-square-social.wechat {
  background: #76b23d;
  border-color: #76b23d;
}
.btn-square-social.wechat:hover, .btn-square-social.wechat:active {
  background: #ffffff;
  border-color: #76b23d;
}
.btn-square-social.wechat:hover i, .btn-square-social.wechat:active i {
  color: #76b23d;
}
.btn-square-social.facebook {
  background: #4267b2;
  border-color: #4267b2;
  line-height: 46px;
}
.btn-square-social.facebook:hover, .btn-square-social.facebook:active {
  background: #ffffff;
  border-color: #4267b2;
}
.btn-square-social.facebook:hover i, .btn-square-social.facebook:active i {
  color: #4267b2;
}
.btn-square-social.linkedin {
  background: #0077b5;
  border-color: #0077b5;
  line-height: 46px;
}
.btn-square-social.linkedin:hover, .btn-square-social.linkedin:active {
  background: #ffffff;
  border-color: #0077b5;
}
.btn-square-social.linkedin:hover i, .btn-square-social.linkedin:active i {
  color: #0077b5;
}

.btn-lang-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #690000;
  color: #9E1422;
  border-radius: 4px;
  overflow: hidden;
  margin: 16px 8px;
}
.btn-lang-container .btn--lang {
  background-color: #690000;
  color: #9E1422;
  display: flex;
  padding: 10px;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  flex: 1;
}
.btn-lang-container .btn--lang:hover {
  color: #ffffff;
}
.btn-lang-container .btn--lang.active {
  background-color: #D30013;
  color: #ffffff;
  border-radius: 4px;
}

/* download btn */
.btn-download-pdf {
  font-size: 16px;
  color: #D30013;
  text-transform: capitalize;
  padding: 10px 27px 15px;
  border: 1px solid #D30013;
  height: 48px;
  display: inline-block;
  border-radius: 4px;
  min-width: 200px;
}
.btn-download-pdf:hover {
  background: #F22320;
  border: 1px solid #D30013;
  color: #ffffff;
}
.btn-download-pdf:active {
  background: #990000;
  border: 1px solid transparent;
  color: #ffffff;
}
.btn-download-pdf:focus {
  background: #FFCBCF;
  border: 1px solid #D30013;
  color: #D30013;
}
.btn-download-pdf:disabled {
  background: #ffffff;
  border: 1px solid #888888;
  color: #888888;
}
@media all and (max-width: 1024px) {
  .btn-download-pdf {
    min-width: 150px;
  }
}
@media all and (max-width: 991px) {
  .btn-download-pdf {
    min-width: 140px;
  }
}

.btn-trans {
  font-size: 16px;
  color: #D30013;
  text-transform: capitalize;
  padding: 10px 27px 15px;
  border: 1px solid #D30013;
  height: 48px;
  display: inline-block;
  border-radius: 4px;
  min-width: 200px;
}
.btn-trans:hover {
  background: #F22320;
  border: 1px solid #D30013;
  color: #ffffff;
}
.btn-trans:active {
  background: #990000;
  border: 1px solid transparent;
  color: #ffffff;
}
.btn-trans:focus {
  background: #FFCBCF;
  border: 1px solid #D30013;
  color: #D30013;
}
.btn-trans:disabled {
  background: #ffffff;
  border: 1px solid #888888;
  color: #888888;
}
@media all and (max-width: 1024px) {
  .btn-trans {
    min-width: 150px;
  }
}
@media all and (max-width: 991px) {
  .btn-trans {
    min-width: 140px;
  }
}

::-webkit-input-placeholder {
  color: #777777;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #777777;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #777777;
}

:-ms-input-placeholder {
  color: #777777;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

select::-ms-expand {
  display: none;
  /* no select arrow in IE */
}

select:active, select:hover, select:focus {
  outline: none;
}

/*:focus {
  outline: rgba(color(red), .5) auto 2px;
  box-shadow: inset -1px 1px 3px 0px rgba(236, 35, 39, 0.5),  inset 1px -1px 3px 0px rgba(236, 35, 39, 0.5);
}*/
input:focus, textarea:focus {
  outline: rgba(211, 0, 19, 0.5) auto 2px;
  box-shadow: inset -1px 1px 3px 0px rgba(236, 35, 39, 0.5), inset 1px -1px 3px 0px rgba(236, 35, 39, 0.5);
  outline-offset: -2px;
}

.form__field {
  margin-bottom: 5px;
}

.form__label {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  display: block;
  font-weight: bold;
}

.form__input {
  background: transparent;
  color: #777777;
  border-radius: 0;
  border: 1px solid #777777;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  vertical-align: middle;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  transition: border-color 0.3s;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}

.is-live-valid.parsley-success {
  border-color: #97da00;
  position: relative;
}
.is-live-valid.parsley-success:focus {
  outline: none;
  box-shadow: none;
}

.success-icon {
  display: none;
  position: absolute;
  right: 15px;
  top: 35px;
}
.phone-code .success-icon {
  top: 11px;
}

.js-country-code {
  position: absolute;
  top: 37px;
  left: 49px;
  color: #777777;
}
.phone-code .js-country-code {
  top: 11px;
}

.is-live-valid.parsley-success ~ .success-icon {
  display: block;
}

.form__input--base {
  padding: 0 10px;
  width: 100%;
}

.form__input--l {
  width: 100%;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  padding: 0 20px;
}

.form__input--white {
  background: #ffffff;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  padding: 0 15px;
  border: none;
  border-radius: 5px;
}

.form__textarea {
  width: 100%;
  padding: 10px;
  line-height: 1.6;
  resize: none;
  height: 150px;
}

.form__icon-right {
  display: inline-block;
  position: relative;
  background: transparent;
  z-index: 1;
  width: 100%;
}
.form__icon-right:before {
  position: absolute;
  right: 0;
  top: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(-50%);
  /* IE 10, Fx 16+, Op 12.1+ */
  color: #000000;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  z-index: -1;
  text-align: center;
  padding-right: 20px;
}
.form__icon-right > input, .form__icon-right > select {
  padding-right: 50px;
}

.form__arrow-down {
  display: inline-block;
  position: relative;
  background: transparent;
  z-index: 1;
  width: 100%;
}
.form__arrow-down:before {
  position: absolute;
  right: 0;
  top: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(-50%);
  /* IE 10, Fx 16+, Op 12.1+ */
  color: #777777;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 40px;
  z-index: -1;
  height: 40px;
  width: 30px;
  border-left: 1px solid #777777;
  text-align: center;
}
.form__arrow-down.red--bordered:before {
  color: #ffffff;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 60px;
  background-color: #D30013;
  border: none;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  height: 56px;
  width: 56px;
  line-height: 56px;
}
.form__arrow-down.red--bordered select {
  padding-right: 56px;
}
.form__arrow-down select {
  padding-right: 40px;
}

.form__arrow-down--minimal:before {
  border: none;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 40px;
  width: 40px;
}

.form__arrow-right {
  display: inline-block;
  position: relative;
  background: transparent;
  z-index: 1;
  width: 100%;
}
.form__arrow-right:before {
  position: absolute;
  right: 0;
  top: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(-50%);
  /* IE 10, Fx 16+, Op 12.1+ */
  color: #777777;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 60px;
  z-index: -1;
  height: 60px;
  text-align: center;
  padding-right: 30px;
}
.form__arrow-right select {
  padding-right: 50px;
}

.form__arrow-right--left {
  display: inline-block;
  position: relative;
  background: transparent;
  z-index: 1;
  width: 100%;
}
.form__arrow-right--left:before {
  position: absolute;
  left: 0;
  top: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(-50%);
  /* IE 10, Fx 16+, Op 12.1+ */
  color: #000000;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  z-index: -1;
  text-align: center;
}
.form__arrow-right--left select {
  padding-left: 20px;
}

.form__select {
  display: block;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  text-align: left;
  border-radius: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  width: 100%;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}

.form__select--base {
  border: 1px solid #777777;
  color: #777777;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  padding: 0 10px;
}
.red--bordered .form__select--base {
  border: 2px solid #D30013;
  height: 56px;
  line-height: 52px;
  border-radius: 10px;
  color: #3C3737;
  padding-left: 24px;
}
@media screen and (max-width: 800px) {
  .red--bordered .form__select--base {
    padding-left: 20px;
  }
}

.form__select--filter {
  border: 1px solid #777777;
  color: #777777;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  padding: 0 20px;
}

.form__select--minimal {
  border: none;
  color: #777777;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  padding: 0 10px;
}

.form__select--nav {
  border: none;
  color: #000000;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  padding: 0 10px;
  text-transform: uppercase;
}
.form__select--nav optgroup {
  text-transform: none;
}

.form__feedback {
  text-align: center;
  color: #D30013;
  margin-bottom: 30px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
}

.parsley-errors-list {
  margin: 0;
  padding: 0 10px;
  list-style: none;
  color: #D30013;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
.parsley-errors-list > li {
  margin: 5px 0 0 0;
  padding: 0;
}

.parsley-error {
  border-color: #D30013;
}

.js-is-valid.parsley-success {
  border-color: #97da00;
}

.ruler--red {
  margin: 40px auto;
  border-top: 2px solid #D30013;
  width: 70%;
}
@media screen and (max-width: 550px) {
  .ruler--red {
    width: 100%;
  }
}

.ruler--black {
  margin: 30px auto;
  border-top: 3px solid #000000;
  width: 100%;
}

.ruler--loose--grey {
  margin: 0;
  border-top: 2px solid #b5b5b5;
  width: 100%;
}

.ruler--grey {
  margin: 0 auto;
  border-top: 2px solid #b5b5b5;
  width: 70%;
}

.ruler--grey-dark {
  margin: 0 auto;
  border-top: 2px solid #3C3737;
  width: 70%;
}

.flex-content-box {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}
.flex-content-box .footer-qr-max-width {
  max-width: 126px !important;
}

.flex-container, .two-col-copy-image-container {
  width: 100%;
  display: flex;
}
@media screen and (max-width: 800px) {
  .flex-container, .two-col-copy-image-container {
    display: inline-block;
  }
}

.flex-dir-col {
  flex-direction: column;
}

.flex-box {
  width: 100%;
  display: flex;
}

.flex {
  flex: 1;
  position: relative;
}
@media screen and (max-width: 800px) {
  .flex {
    flex: none;
    margin-top: 15px;
  }
}

.flex__3-items {
  margin-left: -15px;
}
.flex__3-items .flex-bg:first-child .title-text {
  display: block;
  overflow: visible;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.flex__3-items .flex-bg:first-child .sub-title {
  display: block;
  overflow: visible;
  font-size: 1.125rem;
}
.flex__3-items .flex-bg {
  height: calc(50% - 7.5px);
}
.flex__3-items .flex-bg .title-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 50px;
}
@media (max-width: 1110px) {
  .flex__3-items .flex-bg .title-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
.flex__3-items .flex-bg .sub-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.125rem;
}
@media screen and (max-width: 800px) {
  .flex__3-items {
    margin-left: 0;
  }
}

.flex__4-items {
  margin-left: -15px;
}
.flex__4-items .flex-bg:first-child .title-text {
  display: block;
  overflow: visible;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.flex__4-items .flex-bg:first-child .sub-title {
  display: block;
  overflow: visible;
  font-size: 1.125rem;
}
.flex__4-items .flex-bg:nth-child(2) .title-text {
  display: block;
  overflow: visible;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.flex__4-items .flex-bg:nth-child(2) .sub-title {
  display: block;
  overflow: visible;
  font-size: 1.125rem;
}
.flex__4-items .flex-bg {
  height: calc(50% - 7.5px);
}
.flex__4-items .flex-bg .title-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 50px;
}
@media (max-width: 1110px) {
  .flex__4-items .flex-bg .title-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
.flex__4-items .flex-bg .sub-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.125rem;
}
@media screen and (max-width: 800px) {
  .flex__4-items {
    margin-left: 0;
  }
}

.flex__5-items {
  margin-left: -15px;
}
.flex__5-items .flex-bg {
  height: calc(50% - 7.5px);
}
@media screen and (max-width: 800px) {
  .flex__5-items {
    margin-left: 0;
  }
}

.flex__6-items {
  margin-left: -15px;
}
.flex__6-items .flex-bg {
  height: calc(50% - 7.5px);
}
@media screen and (max-width: 800px) {
  .flex__6-items {
    margin-left: 0;
  }
}

.flex-news-events {
  margin-left: -15px;
}
.flex-news-events .flex-bg {
  height: calc(50% - 7.5px);
}
@media screen and (max-width: 800px) {
  .flex-news-events {
    margin-left: 0;
  }
}

.no-flex {
  flex: none;
}

.flex-inner-w-full {
  width: 100%;
}

.flex-inner-1of2, .flex-news-events .flex-bg:first-child {
  width: calc(50% - 15px);
  float: left;
  margin-left: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 800px) {
  .flex-inner-1of2, .flex-news-events .flex-bg:first-child {
    width: 100%;
    margin-left: 0;
  }
}
.flex-container-last .flex-inner-1of2, .flex-container-last .flex-news-events .flex-bg:first-child, .flex-news-events .flex-container-last .flex-bg:first-child {
  float: right;
}

.l-flex-inner-1of3, .flex__3-items .flex-bg, .flex__4-items .flex-bg:first-child, .flex__4-items .flex-bg:nth-child(2), .flex__4-items .flex-bg, .flex__5-items .flex-bg:first-child, .flex__5-items .flex-bg, .flex__6-items .flex-bg {
  width: calc(33.33% - 15px);
  float: left;
  margin-left: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 800px) {
  .l-flex-inner-1of3, .flex__3-items .flex-bg, .flex__4-items .flex-bg:first-child, .flex__4-items .flex-bg:nth-child(2), .flex__4-items .flex-bg, .flex__5-items .flex-bg:first-child, .flex__5-items .flex-bg, .flex__6-items .flex-bg {
    width: 100%;
    margin-left: 0;
  }
}
.flex-container-last .l-flex-inner-1of3, .flex-container-last .flex__3-items .flex-bg, .flex__3-items .flex-container-last .flex-bg, .flex-container-last .flex__4-items .flex-bg, .flex__4-items .flex-container-last .flex-bg, .flex-container-last .flex__5-items .flex-bg, .flex__5-items .flex-container-last .flex-bg, .flex-container-last .flex__6-items .flex-bg, .flex__6-items .flex-container-last .flex-bg {
  float: right;
}

.l-flex-inner-2of3, .flex__3-items .flex-bg:first-child {
  width: calc(66.66% - 15px);
  float: left;
  margin-left: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 800px) {
  .l-flex-inner-2of3, .flex__3-items .flex-bg:first-child {
    width: 100%;
    margin-left: 0;
  }
}
.flex-container-last .l-flex-inner-2of3, .flex-container-last .flex__3-items .flex-bg:first-child, .flex__3-items .flex-container-last .flex-bg:first-child {
  float: right;
}

.l-flex-inner-1of4, .flex-news-events .flex-bg {
  width: calc(25% - 15px);
  float: left;
  margin-left: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 800px) {
  .l-flex-inner-1of4, .flex-news-events .flex-bg {
    width: 100%;
    margin-left: 0;
  }
}
.flex-container-last .l-flex-inner-1of4, .flex-container-last .flex-news-events .flex-bg, .flex-news-events .flex-container-last .flex-bg {
  float: right;
}

.flex-inner-h-full, .flex__3-items .flex-bg:first-child, .flex__4-items .flex-bg:first-child, .flex__4-items .flex-bg:nth-child(2), .flex__5-items .flex-bg:first-child, .flex-news-events .flex-bg:first-child {
  height: 100%;
}

.flex-inner-h-50 {
  height: 50%;
}
@media screen and (max-width: 800px) {
  .flex-inner-h-50 {
    height: auto;
  }
}

.flex-inner-h-25 {
  height: 25%;
}
@media screen and (max-width: 800px) {
  .flex-inner-h-25 {
    height: auto;
  }
}

.flex-middle-h-50 {
  height: calc(50% - 30px);
}

.flex-bg {
  position: relative;
  background: #000000 no-repeat center center;
  background-size: cover;
  border-radius: 5px;
  overflow: hidden;
}
.flex-bg:after {
  content: "";
  display: table;
  clear: both;
}
.flex-bg:before {
  content: "";
  display: block;
}
.flex-bg .overlay {
  border-radius: 5px;
}

.flex-bg-l:before {
  padding-bottom: 60%;
}

@media screen and (max-width: 800px) {
  .flex-bg-l__tablet:before {
    padding-bottom: 60%;
  }
}

.flex-numbers-left-bg {
  margin-bottom: -15px;
}
.flex-numbers-left-bg:before {
  padding-bottom: 120%;
}
.academic-framework .flex-numbers-left-bg:before {
  padding-bottom: 130%;
}
.academic-framework .flex-numbers-left-bg .academic-framework__cta {
  position: absolute;
  padding: 20px 0 30px;
  color: #ffffff;
  bottom: 0;
}
@media screen and (max-width: 800px) {
  .academic-framework .flex-numbers-left-bg:before {
    padding-bottom: 60%;
  }
  .academic-framework .flex-numbers-left-bg .academic-framework__cta {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .flex-numbers-left-bg:before {
    padding-bottom: 60%;
  }
}

.flex-newsevents-left-bg {
  margin-bottom: -15px;
}
.flex-newsevents-left-bg:before {
  padding-bottom: 65%;
}
@media screen and (max-width: 800px) {
  .flex-newsevents-left-bg:before {
    padding-bottom: 60%;
  }
}

.flex-ucstories-bg:before {
  padding-bottom: 75%;
}
@media screen and (max-width: 800px) {
  .flex-ucstories-bg:before {
    padding-bottom: 60%;
  }
}

.flex-content {
  display: flex;
  justify-content: center;
  height: 100%;
  clear: both;
  max-width: 100%;
}
.flex-content.align-left {
  justify-content: left;
}
@media screen and (max-width: 800px) {
  .flex-content.align-left.align-center__tablet {
    justify-content: center;
  }
}
.flex-content.align-right {
  justify-content: right;
}
.flex-content .flex-content__center-v {
  align-self: center;
}

.flex-space-even {
  justify-content: space-evenly;
  margin-top: 32px;
}
.flex-space-even:before, .flex-space-even:after {
  content: "";
  display: block;
}

.flex-align-middle {
  align-items: center;
}

.flex-justify-center {
  justify-content: center;
}

.flex-news {
  display: flex;
  flex-wrap: wrap;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.3s;
}
.overlay.overlay-red {
  background: rgba(211, 0, 19, 0.85);
}
.overlay.overlay-green {
  background: rgba(15, 218, 0, 0.85);
}
.overlay.overlay-blue {
  background: rgba(0, 157, 213, 0.85);
}
.overlay.overlay-dark-light {
  background: rgba(0, 0, 0, 0.2);
}
.overlay.overlay-dark {
  background: rgba(0, 0, 0, 0.5);
}
.overlay.overlay-darker {
  background: rgba(0, 0, 0, 0.85);
}
.overlay.overlay-yellow {
  background: rgba(255, 185, 9, 0.85);
}
.overlay.overlay-purple {
  background: rgba(119, 39, 87, 0.85);
}
.overlay.overlay-dark-gradient {
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}
.overlay.overlay-grey-gradient {
  background: linear-gradient(to bottom, transparent, #777777);
}
.overlay.overlay-blue-gradient {
  background: linear-gradient(to bottom, #009dd5, #000000);
}
.overlay.overlay-yellow-gradient {
  background: linear-gradient(to bottom, #FFB909, #000000);
}
.overlay.overlay-red-gradient {
  background: linear-gradient(to top, rgba(211, 0, 19, 0.85), rgba(170, 0, 0, 0.85));
}
.overlay.overlay-red__hover:hover {
  background: rgba(211, 0, 19, 0.85);
}
.overlay.overlay-blue__hover:hover {
  background: rgba(0, 157, 213, 0.85);
}
.overlay.overlay-dark__hover:hover {
  background: rgba(0, 0, 0, 0.5);
}
.overlay.overlay-darker__hover:hover {
  background: rgba(0, 0, 0, 0.85);
}
.overlay.overlay-purple__hover:hover {
  background: rgba(119, 39, 87, 0.85);
}
.overlay.overlay-yellow__hover:hover {
  background: rgba(255, 185, 9, 0.85);
}
.overlay.overlay-green__hover:hover {
  background: rgba(15, 218, 0, 0.85);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 99;
}
@media screen and (max-width: 800px) {
  .cookie-popup {
    bottom: auto;
    top: 0;
  }
}

.cookie-consent {
  padding: 40px 0 0;
}
@media screen and (max-width: 800px) {
  .cookie-consent {
    display: flex;
    flex-direction: column;
  }
}

.cookie-consent__message {
  display: block;
  color: #ffffff;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
  font-size: 14px;
  line-height: 20px;
}
.cookie-consent__message a {
  color: #009ED0;
  text-decoration: underline;
}

.cookie-consent__agree {
  cursor: pointer;
  margin: 30px 0;
}

.gmd-group {
  position: relative;
  padding-top: 7px;
}
.gmd-group .select2-results__option[aria-selected]:hover {
  background: #009dd5;
  color: #ffffff;
}
.gmd-group .select2-results__option[aria-selected=true] {
  background: #ebebeb;
}
.gmd-group .selection .select2-selection.select2-selection--multiple {
  z-index: 2;
}
.gmd-group input.select2-search__field {
  background: transparent;
}

.gmd-label {
  color: #3C3737;
  font-size: 18px;
  position: absolute;
  left: 0;
  bottom: 18px;
  cursor: text;
  text-align: initial;
  z-index: 1;
  transform-origin: 0% 100%;
  transform: translateY(12px);
  transition: all 0.2s ease-out;
}

/*for select to material design
================================*/
.select2-container--focus ~ .gmd-label {
  color: #009688;
  font-size: 12px;
  transform: translateY(-15px);
  -webkit-transform: translateY(-15px);
}

.gmd-padding-r-ext, .select2-selection {
  padding-right: 15% !important;
  z-index: 1;
  position: relative;
  background-color: transparent !important;
}
.search-container .gmd-padding-r-ext, .search-container .select2-selection {
  padding-right: 0 !important;
}

/* ============================ */
.intl-tel-input {
  width: 100%;
}

.gmd-phone-label {
  color: #3C3737;
  font-size: 12px;
  transform: translateY(-15px);
  -webkit-transform: translateY(-15px);
}

.js-phone-error-msg {
  color: #D30013;
}

input.gmd-phone {
  width: 100%;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-radius: 0;
  padding: 0px 0 10px;
  font-size: 16px;
  display: block;
}
input.gmd-phone:not(.parsley-error) {
  border-bottom-color: teal;
}
input.gmd-phone:focus {
  box-shadow: none;
  outline: none;
}

input.gmd-input, select.gmd-input, textarea.gmd-input {
  width: 100%;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-radius: 0;
  padding: 0px 0 10px;
  font-size: 16px;
  display: block;
  font-family: "Avenir W01", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  -webkit-appearance: none;
}
input.gmd-input:not(.parsley-error), select.gmd-input:not(.parsley-error), textarea.gmd-input:not(.parsley-error) {
  border-bottom-color: teal;
}
input.gmd-input.active ~ .gmd-label, select.gmd-input.active ~ .gmd-label, textarea.gmd-input.active ~ .gmd-label {
  color: #3C3737;
  font-size: 12px;
  transform: translateY(-15px);
  -webkit-transform: translateY(-15px);
}
input.gmd-input.active.gmd-select2 ~ .gmd-label, select.gmd-input.active.gmd-select2 ~ .gmd-label, textarea.gmd-input.active.gmd-select2 ~ .gmd-label {
  height: 20px;
  top: 12px;
  color: #3C3737;
  font-size: 12px;
  transform: translateY(-15px);
  -webkit-transform: translateY(-15px);
}
input.gmd-input:focus, select.gmd-input:focus, textarea.gmd-input:focus {
  box-shadow: none;
  outline: none;
}
input.gmd-input:focus ~ .gmd-bar:before, select.gmd-input:focus ~ .gmd-bar:before, textarea.gmd-input:focus ~ .gmd-bar:before {
  width: 50%;
}
input.gmd-input:focus ~ .gmd-bar:after, select.gmd-input:focus ~ .gmd-bar:after, textarea.gmd-input:focus ~ .gmd-bar:after {
  width: 50%;
}
input.gmd-input:focus ~ .gmd-label, select.gmd-input:focus ~ .gmd-label, textarea.gmd-input:focus ~ .gmd-label {
  color: #009688;
  font-size: 12px;
  transform: translateY(-15px);
  -webkit-transform: translateY(-15px);
}
input.gmd-input:disabled, select.gmd-input:disabled, textarea.gmd-input:disabled {
  background: #ffffff;
}

.gmd-input {
  z-index: 2;
}

select.gmd-input {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: #ffffff;
  z-index: 2;
}

.gmd-bar {
  position: relative;
  display: block;
  width: 100%;
}
.gmd-bar:before, .gmd-bar:after {
  content: "";
  height: 2px;
  width: 0;
  bottom: 0px;
  position: absolute;
  background: #009688;
  transition: 0.5s ease all;
  -moz-transition: 0.5s ease all;
  -webkit-transition: 0.5s ease all;
}
.gmd-bar:before {
  left: 50%;
}
.gmd-bar:after {
  right: 50%;
}

/* active state */
.gmd-input:focus ~ .gmd-bar:before, input:focus ~ .gmd-bar:after {
  width: 50%;
}

.gmd-icon-right {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 22px;
  font-weight: bold;
  transition: 0.5s ease all;
  -moz-transition: 0.5s ease all;
  -webkit-transition: 0.5s ease all;
}

.download-dropdown {
  display: block;
  max-width: 250px;
  position: relative;
  margin: 0 auto;
}
.download-dropdown .dropdown-button {
  display: block;
  padding: 12px 30px;
  background-color: #009dd5;
  color: #ffffff;
  border-radius: 5px;
  width: 250px;
  position: relative;
  margin: 0 auto;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
}
body.zh-Hans .download-dropdown .dropdown-button {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}
.download-dropdown .dropdown-button:after {
  content: "";
  position: absolute;
  width: 30px;
  padding: 0 5px;
  height: 100%;
  top: 0;
  right: -30px;
  background-color: #009dd5;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-left: 1px solid;
}
.download-dropdown .dropdown-button:before {
  content: "";
  font-family: "icomoon";
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  right: -16px;
  top: 7px;
  z-index: 1;
  color: white;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.bg-yellow .download-dropdown .dropdown-button {
  background-color: #3C3737;
}
.bg-yellow .download-dropdown .dropdown-button:after {
  background-color: #3C3737;
}
.download-dropdown ul.dropdown-list {
  display: none;
  background-color: #ffffff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0px;
  list-style: none;
  z-index: 1;
  margin-top: 2px;
  padding: 0;
  max-height: 140px;
  overflow-y: auto;
  text-align: left;
  min-width: 280px;
  max-width: 500px;
  border-radius: 5px;
}
.download-dropdown ul.dropdown-list li {
  padding: 5px 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.download-dropdown ul.dropdown-list li:not(:first-child) {
  border-top: 1px solid #f0f0f0;
}
.download-dropdown ul.dropdown-list li a {
  display: block;
  padding: 5px 0;
  width: 100%;
  font-size: 0.875rem;
  color: #3C3737;
}
.download-dropdown ul.dropdown-list li:hover {
  background-color: #b5b5b5;
}
.download-dropdown.open .dropdown-button:before {
  transform: rotate(180deg);
}
.download-dropdown.open ul.dropdown-list {
  display: block;
}

/* Customize the label (the container) */
.checkboxContainer {
  display: inline;
  position: relative;
  cursor: pointer;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkboxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkboxContainer .checkmark {
  position: absolute;
  top: -2px;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #ffffff;
  border: 1px solid #000000;
}
.checkboxContainer .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  color: #D30013;
  border: solid #D30013;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.checkboxContainer:hover input ~ .checkmark {
  background-color: #fdefef;
  border: 1px solid #cd201f;
  transition: background-color 0.5s;
  transition: border 0.6s;
}
.checkboxContainer input:checked ~ .checkmark {
  background-color: #ffffff;
  border: 1px solid #D30013;
  animation-name: hulk;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
  -webkit-animation-name: hulk;
  -webkit-animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-out;
}
.checkboxContainer input:checked ~ .checkmark:after {
  display: block;
}
@keyframes hulk {
  0% {
    transform: scale(1, 1);
    background-color: #cd201f;
  }
  50% {
    transform: scale(1.5, 1.5);
    background-color: #fdefef;
  }
  100% {
    transform: scale(1, 1);
    background-color: #ffffff;
  }
}
@-webkit-keyframes hulk {
  0% {
    transform: scale(1, 1);
    background-color: #cd201f;
  }
  50% {
    transform: scale(1.5, 1.5);
    background-color: #fdefef;
  }
  100% {
    transform: scale(1, 1);
    background-color: #ffffff;
  }
}
.checkboxContainer span.text-muted {
  margin-left: 32px;
}

.mobile-search {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -500px;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  overflow: auto;
  z-index: 11;
  background: #ffffff;
  transition: right cubic-bezier(0.645, 0.045, 0.095, 1) 0.3s;
  padding: 0 15px 15px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}
.has-visible-search .mobile-search {
  right: 0;
}

.mobile-search-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.mobile-search__box {
  padding: 0 20px;
  position: relative;
  border-bottom: 1px solid #c6c6c6;
}
.mobile-search__box .icon-chevron-left, .mobile-search__box .link--emph:before {
  position: absolute;
  left: 0;
  padding: 21px 15px;
  font-weight: bold;
}
.mobile-search__box .icon-chevron-left:before, .mobile-search__box .link--emph:before {
  color: #c6c6c6;
}

.mobile-search__input {
  width: 100%;
  padding: 20px;
  border: 0;
  font-size: 1rem;
  box-shadow: none;
  -webkit-box-shadow: none;
  outline: none;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
.mobile-search__input:focus {
  outline: none;
  box-shadow: none;
  outline-offset: 0;
}
.mobile-search__input::-webkit-input-placeholder {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
.mobile-search__input:-ms-input-placeholder {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
.mobile-search__input:-moz-placeholder {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
.mobile-search__input::-moz-placeholder {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}

.mobile-search__history {
  height: 0;
  overflow: hidden;
  transition: height 0.3s;
}
.mobile-search__history.open {
  height: auto;
  overflow-y: auto;
}
.mobile-search__history .title-text {
  color: #c6c6c6;
  padding: 10px 15px;
}

.history {
  width: 100%;
}
.history .history__list {
  list-style: none;
  padding: 0 15px;
  max-height: 300px;
  overflow: auto;
}
.history a {
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #c6c6c6;
}
.history a:hover {
  background-color: #f0f0f0;
}
.history a .history__list-item {
  padding: 15px 0 15px 40px;
  position: relative;
  color: #262626;
}
.history a .history__list-item:last-child {
  border: 0;
}
.history a .history__list-item .icon-clock {
  position: absolute;
  left: 10px;
  top: 15px;
  font-size: 1.25rem;
}

.mobile-search__result {
  width: 100%;
  max-height: 100%;
  overflow: auto;
}

.heriatage-sticky-container {
  position: relative;
  width: 100vw;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.heriatage-sticky-logo-container {
  width: 100px;
  float: right;
  transition: width 0.3s;
}
.has-visible-nav .heriatage-sticky-logo-container {
  display: none;
}
.heriatage-sticky-logo-container.open {
  width: 200px;
}
.heriatage-sticky-logo-container.close {
  width: 36.2px;
}
@media screen and (max-width: 1100px) {
  .heriatage-sticky-logo-container {
    width: 78.5px;
  }
  .heriatage-sticky-logo-container.open {
    width: 165px;
  }
  .heriatage-sticky-logo-container.close {
    width: 30.2px;
  }
}
@media screen and (max-width: 800px) {
  .heriatage-sticky-logo-container {
    width: 100px;
  }
}
.heriatage-sticky-logo-container .heriatage-sticky-logo-forever {
  width: 190px;
  position: fixed;
  top: 280px;
  z-index: 2;
  overflow: hidden;
  transition: width 0.3s;
  right: 0;
}
@media screen and (max-width: 1100px) {
  .heriatage-sticky-logo-container .heriatage-sticky-logo-forever {
    width: 160px;
    max-width: 160px;
  }
}

.heriatage-sticky-logo {
  width: 100px;
  position: fixed;
  top: 280px;
  z-index: 2;
  overflow: hidden;
  transition: width 0.3s;
  right: 0;
}
.heriatage-sticky-logo.open {
  width: 200px;
}
.heriatage-sticky-logo .heritage-logo__small {
  display: none;
}
.heriatage-sticky-logo.close {
  width: 36.2px;
}
.heriatage-sticky-logo.close .heritage-logo__img {
  display: none;
}
.heriatage-sticky-logo.close .heritage-logo__small {
  display: block;
  max-width: 36.2px;
}
.heriatage-sticky-logo.close .heriatage-sticky-logo__arrow {
  display: none;
}
.heriatage-sticky-logo .heritage-logo__img {
  width: 200px;
  max-width: 200px;
}
@media screen and (max-width: 1100px) {
  .heriatage-sticky-logo {
    width: 86.5px;
  }
  .heriatage-sticky-logo.open {
    width: 165px;
  }
  .heriatage-sticky-logo.close {
    width: 30.2px;
  }
  .heriatage-sticky-logo.close .heritage-logo__small {
    max-width: 30.2px;
  }
  .heriatage-sticky-logo .heritage-logo__img {
    width: 165px;
    max-width: 165px;
  }
}
@media screen and (max-width: 1600px) {
  .heriatage-sticky-logo {
    right: 0;
  }
}
@media screen and (max-width: 800px) {
  .heriatage-sticky-logo {
    right: -64px;
    width: 140px;
    top: 40%;
    transition: right 0.5s ease;
  }
  .heriatage-sticky-logo.sticky-mob {
    right: 0;
  }
}
.heriatage-sticky-logo.beijing-logo {
  width: 120px;
}
.heriatage-sticky-logo.beijing-logo.open {
  width: 200px;
}
@media screen and (max-width: 1100px) {
  .heriatage-sticky-logo.beijing-logo {
    width: 100px;
  }
  .heriatage-sticky-logo.beijing-logo.open {
    width: 164px;
  }
}
@media screen and (max-width: 800px) {
  .heriatage-sticky-logo.beijing-logo {
    right: 0;
    width: 70px;
    top: 40%;
    transition: right 0.5s ease;
  }
}
.heriatage-sticky-logo.seoul-logo {
  width: 112px;
}
.heriatage-sticky-logo.seoul-logo.open {
  width: 200px;
}
@media screen and (max-width: 1100px) {
  .heriatage-sticky-logo.seoul-logo {
    width: 92px;
  }
  .heriatage-sticky-logo.seoul-logo.open {
    width: 164px;
  }
}
@media screen and (max-width: 800px) {
  .heriatage-sticky-logo.seoul-logo {
    right: 0;
    width: 70px;
    top: 300px;
    transition: right 0.5s ease;
  }
}
@media screen and (max-width: 800px) {
  .heriatage-sticky-logo.shanghai-pudong-logo {
    right: -2px;
    width: 120px;
    top: 300px;
    transition: right 0.5s ease;
  }
}

.heriatage-sticky-logo__arrow {
  position: absolute;
  left: 0;
  top: 0px;
  width: 25px;
  height: 25px;
  float: left;
  display: inline-block;
  cursor: pointer;
}
.heriatage-sticky-logo.open .heriatage-sticky-logo__arrow {
  top: -50px;
}
.heriatage-sticky-logo.open .heriatage-sticky-logo__arrow.hover-arrow {
  left: 0;
  top: 0;
}
.heriatage-sticky-logo__arrow.hover-arrow {
  left: 100%;
}

.heriatage-sticky-logo__link {
  display: inline-flex;
}

.heriatage-sticky-logo__link-forever .heritage-logo__img {
  transition: opacity 0.5s ease-in-out;
}
.heriatage-sticky-logo__link-forever .default-img {
  opacity: 1;
}
.heriatage-sticky-logo__link-forever .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.heriatage-sticky-logo__link-forever:hover .default-img {
  opacity: 0;
}
.heriatage-sticky-logo__link-forever:hover .hover-img {
  opacity: 1;
}

.breadcrumb-container {
  display: flex;
  flex-direction: column;
  margin: 50px auto 0;
}
@media screen and (max-width: 800px) {
  .breadcrumb-container {
    margin: 16px auto;
  }
}

.breadcrumb {
  position: relative;
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
  float: left;
  clear: both;
}
.breadcrumb .breadcrumb-item {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #D30013;
  float: left;
  display: flex;
  align-items: center;
  padding: 0 26px 0 0;
  position: relative;
}
@media screen and (max-width: 800px) {
  .breadcrumb .breadcrumb-item {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
.breadcrumb .breadcrumb-item:first-child {
  padding-left: 0;
}
.breadcrumb .breadcrumb-item:last-child {
  padding-right: 0;
}
.breadcrumb .breadcrumb-item a {
  color: inherit;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.breadcrumb .breadcrumb-item a:hover {
  color: #000000;
}
.breadcrumb .breadcrumb-item:before {
  font-family: icomoon;
  font-weight: bold;
  position: absolute;
  right: 10px;
  font-size: 11px;
  top: 50%;
  transform: translateY(-40%);
}
.breadcrumb .breadcrumb-item.active {
  color: #000000;
}
.breadcrumb .breadcrumb-item.active:before {
  content: "";
}

.promo-section-container {
  display: flex;
  width: 100%;
  max-width: 1600px;
  position: relative;
  margin: 0 auto;
}
.promo-section-container.right {
  flex-direction: row-reverse;
}
.promo-section-container.right .promo-container {
  float: right;
  margin: 0 auto;
  align-items: flex-start;
}
.promo-section-container.right.no-left-inset .promo-section-content {
  padding-left: 0;
}
.promo-section-container.right .promo-section-image {
  padding-left: 14px;
  text-align: right;
}
.promo-section-container.left {
  direction: rtl;
}
.promo-section-container.left .promo-section-content {
  direction: ltr;
}
.promo-section-container.left .promo-container {
  float: left;
  margin: 0 auto;
  display: flex;
  direction: ltr;
  align-items: flex-start;
}
.promo-section-container.left .promo-section-image {
  padding-right: 14px;
  text-align: left;
}
@media screen and (max-width: 800px) {
  .promo-section-container {
    padding: 0;
  }
  .promo-section-container.right .promo-container {
    float: left;
  }
  .promo-section-container.right .promo-section-image {
    padding-left: 0;
    padding-bottom: 20px;
    text-align: left;
  }
  .promo-section-container.left .promo-container {
    float: left;
  }
  .promo-section-container.left .promo-section-image {
    padding-right: 0;
    padding-bottom: 20px;
  }
}
.promo-section-container .title {
  font-weight: bold;
  font-size: 32px;
  font-size: 2rem;
  line-height: 40px;
  padding-bottom: 16px;
}
@media screen and (max-width: 800px) {
  .promo-section-container .title {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.2;
    padding-bottom: 15px;
  }
}
.promo-section-container .promo-container {
  display: flex;
  max-width: 1600px;
  width: calc(1080px + (100% - 1080px) / 2 );
  margin: 0 auto;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .promo-section-container .promo-container {
    width: 100%;
    flex-direction: column-reverse;
  }
}
.promo-section-container .promo-section-content {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 0 44px 24px 44px;
}
.promo-section-container .promo-section-content .intro-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  margin-bottom: 24px;
  max-height: 96px;
  overflow: hidden;
}
.zh .promo-section-container .promo-section-content .intro-text {
  padding-left: 4px;
}
.promo-section-container .promo-section-content .intro-text .btn--link--base, .promo-section-container .promo-section-content .intro-text .accordion__tab__copy__link {
  font-size: 16px;
  font-size: 1rem;
  line-height: 38px;
  text-transform: capitalize;
}
@media screen and (max-width: 800px) {
  .promo-section-container .promo-section-content {
    margin-top: unset;
    width: 100%;
  }
  .promo-section-container .promo-section-content .intro-text {
    margin-top: 5px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
    padding-bottom: 20px;
  }
  .zh .promo-section-container .promo-section-content .intro-text {
    padding-left: 0;
  }
}
.promo-section-container .promo-section-content .btn--link--base, .promo-section-container .promo-section-content .accordion__tab__copy__link {
  font-size: 16px;
  text-transform: capitalize;
  position: relative;
  display: inline;
}
.promo-section-container .promo-section-content .btn--link--base:before, .promo-section-container .promo-section-content .accordion__tab__copy__link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #D30013;
  left: 0;
  bottom: -2px;
  overflow: hidden;
  transition: width 0.3s;
  -webkit-transition: width 0.3s;
}
.promo-section-container .promo-section-content .btn--link--base:hover:before, .promo-section-container .promo-section-content .accordion__tab__copy__link:hover:before {
  width: calc(100% + 5px);
}
.promo-section-container .promo-section-content .btn--link--base:hover:after, .promo-section-container .promo-section-content .accordion__tab__copy__link:hover:after {
  content: "";
  font-size: 12px;
  padding-left: 10px;
  top: 1px;
}
@media screen and (max-width: 800px) {
  .promo-section-container .promo-section-content .btn--link--base:before, .promo-section-container .promo-section-content .accordion__tab__copy__link:before {
    transition: unset;
  }
}
@media screen and (max-width: 800px) {
  .promo-section-container .promo-section-content {
    padding: 0;
  }
}
.promo-section-container .promo-section-image {
  width: 58%;
}
@media screen and (max-width: 800px) {
  .promo-section-container .promo-section-image {
    width: 100%;
  }
}

.promo-card, .contextual-link-card {
  display: flex;
  flex-direction: column;
  padding: 16px;
  color: #3C3737;
}
.promo-card:hover .btn--link--base:before, .promo-card:hover .accordion__tab__copy__link:before, .contextual-link-card:hover .btn--link--base:before, .contextual-link-card:hover .accordion__tab__copy__link:before {
  width: calc(100% + 5px);
}
.promo-card:hover .btn--link--base:after, .promo-card:hover .accordion__tab__copy__link:after, .contextual-link-card:hover .btn--link--base:after, .contextual-link-card:hover .accordion__tab__copy__link:after {
  content: "";
  font-size: 12px;
  padding-left: 10px;
  right: -5px;
}
.promo-card.col-4:hover .btn--link--base:before, .promo-card.col-4:hover .accordion__tab__copy__link:before, .contextual-link-card:hover .btn--link--base:before, .contextual-link-card:hover .accordion__tab__copy__link:before {
  width: 0;
}
.promo-card.col-4:hover .btn--link--base:after, .promo-card.col-4:hover .accordion__tab__copy__link:after, .contextual-link-card:hover .btn--link--base:after, .contextual-link-card:hover .accordion__tab__copy__link:after {
  content: "";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
  right: 0;
}
.promo-card.bordered, .bordered.contextual-link-card {
  padding: 16px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  transition: box-shadow 0.3s;
}
.promo-card.bordered:hover, .bordered.contextual-link-card:hover {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
}
@media screen and (max-width: 550px) {
  .promo-card.bordered:hover, .bordered.contextual-link-card:hover {
    box-shadow: none;
  }
  .promo-card.bordered:hover.col-4, .bordered.contextual-link-card:hover {
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  }
}
@media screen and (max-width: 550px) {
  .promo-card.bordered, .bordered.contextual-link-card {
    box-shadow: none;
  }
  .promo-card.bordered.col-4, .bordered.contextual-link-card {
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  }
}
.promo-card .image, .contextual-link-card .image {
  width: 100%;
  position: relative;
  overflow: hidden;
  /* padding-bottom: 66%; */
  padding-bottom: 60%;
  background-size: cover;
}
.promo-card .image:before, .contextual-link-card .image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0,0,0,0.3); */
  z-index: 1;
}
.promo-card .image .title, .contextual-link-card .image .title {
  position: absolute;
  bottom: 16px;
  padding: 0 24px;
  z-index: 1;
  color: #ffffff;
  text-shadow: 0 2px 5px #00000036;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: bold;
}
.promo-card .image img, .contextual-link-card .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.promo-card .card-cta-container, .contextual-link-card .card-cta-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  padding: 15px;
  align-items: center;
  justify-content: space-evenly;
  z-index: 1;
}
.promo-card .promo-content, .contextual-link-card .promo-content {
  background-color: #ffffff;
  padding: 8px;
  margin-top: 0px;
  word-break: break-word;
}
.promo-card .promo-content.bg-white, .contextual-link-card .promo-content.bg-white {
  background-color: #ffffff;
  padding: 16px 0 0;
  margin-top: 0;
}
.promo-card .promo-content.bg-white .cta, .contextual-link-card .promo-content.bg-white .cta {
  color: #3C3737;
  padding-bottom: 0;
  text-transform: unset;
  white-space: unset;
  justify-content: space-between;
  display: flex;
  align-items: center;
  overflow: unset;
}
.promo-card .promo-content.bg-white .cta i, .contextual-link-card .promo-content.bg-white .cta i {
  float: right;
  color: #D30013;
}
.promo-card .promo-content.bg-white .cta i.icon-play2, .contextual-link-card .promo-content.bg-white .cta i.icon-play2 {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.promo-card .promo-content.bg-white .cta:after, .contextual-link-card .promo-content.bg-white .cta:after {
  color: #D30013;
}
.promo-card .promo-content.bg-white:hover .cta:after, .contextual-link-card .promo-content.bg-white:hover .cta:after {
  content: "";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
}
.promo-card .promo-content.bg-white:hover .cta:before, .contextual-link-card .promo-content.bg-white:hover .cta:before {
  content: "";
  width: 0px;
}
.promo-card .promo-content .promo-content__inner, .contextual-link-card .promo-content .promo-content__inner {
  /* margin: 12px 0 32px; */
  padding: 8px 0px 16px;
  height: 120px;
  overflow: hidden;
  margin-bottom: 16px;
}
.col-2 .promo-card .promo-content .promo-content__inner, .col-2 .contextual-link-card .promo-content .promo-content__inner {
  height: 72px;
}
.col-3 .promo-card .promo-content .promo-content__inner, .col-3 .contextual-link-card .promo-content .promo-content__inner {
  height: 96px;
}
.col-4 .promo-card .promo-content .promo-content__inner, .contextual-link-card .promo-card .promo-content .promo-content__inner, .col-4 .contextual-link-card .promo-content .promo-content__inner, .contextual-link-card .contextual-link-card .promo-content .promo-content__inner {
  margin: 12px 0;
  height: 96px;
}
.promo-card .title, .contextual-link-card .title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 24px;
  font-weight: bold;
  padding-bottom: 16px;
}
.promo-card .intro, .contextual-link-card .intro {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  padding: 0px 0px 16px;
}
.promo-card .cta, .contextual-link-card .cta {
  display: inline-block;
  padding-bottom: 0px;
}
.promo-card .cta.has-icon, .contextual-link-card .cta.has-icon {
  overflow: unset;
  position: relative;
}
.promo-card .cta.has-icon .icon-play2, .contextual-link-card .cta.has-icon .icon-play2 {
  font-size: 13px;
  right: -1px;
  top: 1px;
  position: relative;
  transition: right 0.3s;
}
.promo-card .cta.has-icon:hover .icon-play2, .contextual-link-card .cta.has-icon:hover .icon-play2 {
  right: -5px;
}
.promo-card .cta.has-icon:hover:after, .contextual-link-card .cta.has-icon:hover:after {
  content: "";
}
@media screen and (max-width: 800px) {
  .promo-card .cta.has-icon .icon-play2, .contextual-link-card .cta.has-icon .icon-play2 {
    top: 1px;
    position: relative;
    right: -5px;
    transition: right 0.3s ease-in-out;
  }
  .promo-card .cta.has-icon:hover .icon-play2, .contextual-link-card .cta.has-icon:hover .icon-play2 {
    right: -8px;
  }
}
.promo-card .cta.has-icon:after, .contextual-link-card .cta.has-icon:after {
  content: "";
}
@media screen and (max-width: 800px) {
  .promo-card.col-3 .image, .col-3.contextual-link-card .image {
    padding-bottom: 55%;
  }
  .promo-card.col-3 .image .title, .col-3.contextual-link-card .image .title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 28px;
    font-weight: bold;
    bottom: unset;
    top: 50%;
    transform: translateY(-50%);
  }
  .promo-card.col-3 .image .btn--cta, .col-3.contextual-link-card .image .btn--cta, .promo-card.col-3 .image .cookie-consent__agree, .col-3.contextual-link-card .image .cookie-consent__agree {
    min-width: 140px;
    max-width: 150px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 12px 5px;
  }
  .promo-card.col-3 .promo-content, .col-3.contextual-link-card .promo-content {
    height: auto;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, margin-top 0.3s;
    padding: 8px;
    margin-top: 0;
  }
  .promo-card.col-3 .promo-content.open, .col-3.contextual-link-card .promo-content.open {
    max-height: 400px;
    margin-top: 7px;
  }
  .promo-card.col-3 .promo-content .promo-content__inner, .col-3.contextual-link-card .promo-content .promo-content__inner {
    margin: 15px 0;
  }
}
@media screen and (max-width: 550px) {
  .promo-card .padding-left, .contextual-link-card .padding-left {
    padding-left: 20px;
    padding-top: 0px;
  }
  .promo-card.col-4, .contextual-link-card {
    flex-direction: row;
  }
  .promo-card.col-4 .image, .contextual-link-card .image {
    width: 33%;
    flex: none;
    float: left;
    padding-bottom: 18%;
  }
  .promo-card.col-4 .promo-content, .contextual-link-card .promo-content {
    width: 67%;
    padding: 7px 15px;
    margin-top: 0;
  }
}
@media screen and (max-width: 550px) and (max-width: 800px) {
  .promo-card.col-4 .promo-content, .contextual-link-card .promo-content {
    padding: 7px 0 7px 15px;
    display: flex;
  }
}
@media screen and (max-width: 550px) {
  .promo-card.col-4 .promo-content .promo-content__inner, .contextual-link-card .promo-content .promo-content__inner {
    height: auto;
    margin: 0 0 2px;
  }
  .promo-card.col-4 .promo-content .promo-content__inner .title, .contextual-link-card .promo-content .promo-content__inner .title {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.3;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .promo-card.col-4 .promo-content .promo-content__inner .intro, .contextual-link-card .promo-content .promo-content__inner .intro {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 550px) {
  .promo-card.col-4 .promo-content .cta, .contextual-link-card .promo-content .cta {
    padding-bottom: 0;
    display: flex;
    width: 100%;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.3;
  }
}
.promo-card:hover, .contextual-link-card:hover {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 550px) {
  .promo-card:hover, .contextual-link-card:hover {
    box-shadow: none;
  }
}
.promo-card .btn--link--base, .promo-card .accordion__tab__copy__link, .contextual-link-card .btn--link--base, .contextual-link-card .accordion__tab__copy__link {
  font-size: 16px;
  text-transform: capitalize;
  position: relative;
  padding-right: 15px;
  word-break: break-word;
}
.promo-card .btn--link--base:before, .promo-card .accordion__tab__copy__link:before, .contextual-link-card .btn--link--base:before, .contextual-link-card .accordion__tab__copy__link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #D30013;
  left: 0;
  bottom: -2px;
  transition: width 0.3s;
}
.promo-card .btn--link--base:after, .promo-card .accordion__tab__copy__link:after, .contextual-link-card .btn--link--base:after, .contextual-link-card .accordion__tab__copy__link:after {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  transition: right 0.3s;
}
.promo-card .btn--link--base:hover:before, .promo-card .accordion__tab__copy__link:hover:before, .contextual-link-card .btn--link--base:hover:before, .contextual-link-card .accordion__tab__copy__link:hover:before {
  width: calc(100% + 5px);
}
.promo-card .btn--link--base:hover:after, .promo-card .accordion__tab__copy__link:hover:after, .contextual-link-card .btn--link--base:hover:after, .contextual-link-card .accordion__tab__copy__link:hover:after {
  content: "";
  font-size: 12px;
  right: -5px;
  top: 50%;
}
@media screen and (max-width: 800px) {
  .promo-card .btn--link--base:before, .promo-card .accordion__tab__copy__link:before, .contextual-link-card .btn--link--base:before, .contextual-link-card .accordion__tab__copy__link:before {
    transition: unset;
  }
}

.contextual-link-card {
  width: 280px;
  float: right;
  box-shadow: -1px 1px 2px 0px rgba(0, 0, 0, 0.3), 1px -1px 2px 0px rgba(0, 0, 0, 0.3);
  padding: 16px;
  border-radius: 4px;
}
.contextual-link-card .image {
  padding-bottom: 55%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.contextual-link-card .promo-content {
  background-color: #fff;
  padding: 16px 0 0;
  margin-top: 0;
}
@media screen and (max-width: 800px) {
  .contextual-link-card .promo-content {
    padding: 16px 8px 8px;
  }
}
.contextual-link-card .promo-content .promo-content__inner {
  margin: 0 0 16px;
  height: 126px;
}
.contextual-link-card .promo-content .promo-content__inner .title {
  margin-bottom: 8px;
}
@media screen and (max-width: 800px) {
  .contextual-link-card .promo-content .promo-content__inner {
    height: 126px;
  }
}
@media screen and (max-width: 550px) {
  .contextual-link-card {
    width: 100%;
    margin-top: 30px;
    box-shadow: none;
  }
  .contextual-link-card .image {
    padding-bottom: 0;
    width: 32%;
  }
  .contextual-link-card .promo-content {
    padding-top: 0;
    padding-left: 16px;
    display: block;
  }
  .contextual-link-card .promo-content .promo-content__inner {
    height: auto;
    margin: 0;
    padding: 0;
  }
  .contextual-link-card .promo-content .promo-content__inner .title {
    margin-bottom: 0;
  }
  .contextual-link-card .promo-content .cta {
    width: auto;
    display: inline-block;
  }
}
.contextual-link-card a.cta {
  border: none;
  color: #D30013;
  display: inline-block;
}
.no-touchevents .contextual-link-card a.cta:hover {
  border: none;
  transition: none;
}
@media screen and (max-width: 550px) {
  .contextual-link-card a.cta {
    align-items: center;
  }
}
.contextual-link-card:hover a.cta:after {
  padding-left: 10px;
  right: -5px;
}

.icon-play-circled.cta--icon {
  position: absolute;
  left: 0;
  top: -12px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  padding: 10px 10px 10px 14px;
}

.grid-cards-col .l-grid__item-50 {
  width: 50%;
  max-width: 50%;
}
@media screen and (max-width: 800px) {
  .grid-cards-col .l-grid__item-50 {
    width: 100%;
    max-width: 100%;
  }
}
.grid-cards-col.grid-micro-cards .grid-micro-card-item {
  padding: 6px 12px;
}
@media screen and (max-width: 800px) {
  .grid-cards-col.grid-micro-cards .grid-micro-card-item {
    padding: 0px 15px 15px 15px;
  }
}

.multiple-file-upload .subtitle {
  display: inline-block;
}
.multiple-file-upload .btn-download-pdf {
  float: right;
}
@media screen and (max-width: 800px) {
  .multiple-file-upload .btn-download-pdf {
    transform: none;
  }
}
.multiple-file-upload .l-grid-50-wrapper {
  display: flex;
  justify-content: normal;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 800px) {
  .multiple-file-upload .l-grid-50-wrapper {
    width: 100%;
    padding-top: 16px;
    gap: 8px;
  }
}
.multiple-file-upload .l-grid-50-wrapper .l-grid__item-tablet-landscape-50 {
  width: auto;
}
@media screen and (max-width: 800px) {
  .multiple-file-upload .l-grid-50-wrapper .l-grid__item-tablet-landscape-50 {
    width: calc(50% - 4px);
  }
}
.multiple-file-upload .l-grid-50-wrapper .image {
  padding-bottom: 8px;
}
.multiple-file-upload .custom-bg-block.upload-bg-redlight {
  background-color: #FFCBCF;
  width: 296px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.multiple-file-upload .custom-bg-block.upload-bg-redlight i {
  font-size: 40px;
  color: #990000;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .multiple-file-upload .custom-bg-block.upload-bg-redlight {
    width: 100%;
  }
}
.multiple-file-upload .upload-file-name {
  padding: 12px 8px 14px;
  width: 296px;
  position: relative;
  max-width: 100%;
}
.multiple-file-upload .upload-file-name .btn--download {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 14px;
  color: #3C3737;
  position: relative;
  display: block;
}
.multiple-file-upload .upload-file-name .btn--download:before {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  color: #D30013;
  right: 0;
}
.multiple-file-upload .upload-file-name .btn--download:hover:before {
  left: unset;
  transform: translate(0, -50%);
}
.multiple-file-upload .promo-card, .multiple-file-upload .contextual-link-card {
  padding: 16px;
}
@media screen and (max-width: 800px) {
  .multiple-file-upload .promo-card, .multiple-file-upload .contextual-link-card {
    padding: 8px;
  }
}
.multiple-file-upload .download--filename {
  width: 85%;
  display: inline-block;
  padding-right: 8px;
}

.block-header .block-title {
  display: inline-block;
  padding-right: 16px;
}
.block-header .block-right-cta {
  float: right;
  min-width: auto;
}
.block-header .block-link {
  text-transform: capitalize;
  position: relative;
  right: 16px;
  float: right;
}
@media screen and (max-width: 550px) {
  .block-header .block-link {
    float: left;
    right: 0;
  }
}
.block-header .block-link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #D30013;
  left: 0;
  bottom: -2px;
  overflow: hidden;
  transition: width 0.3s;
}
.block-header .block-link:hover:before {
  width: calc(100% + 5px);
  transition: width 0.3s;
}
.block-header .block-link:hover:after {
  content: "";
  font-size: 12px;
  padding-left: 10px;
  top: 1px;
}
@media screen and (max-width: 800px) {
  .block-header .block-link:before {
    transition: unset;
  }
}
.block-header .descrition {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
}

.tabs-view {
  position: relative;
}
.tabs-view.tabs-view__news {
  height: auto;
  max-height: 400px;
}
.tabs-view .tab {
  width: 100%;
  left: 100%;
  display: none;
  opacity: 0;
}
.tabs-view .tab.active {
  left: 0;
  opacity: 1;
  display: block;
}

.tabs-trigger-container {
  display: flex;
  padding: 8px 11px;
  justify-content: space-between;
}
.tabs-trigger-container a {
  color: #3C3737;
  position: relative;
  display: inline-block;
}
.tabs-trigger-container a:after {
  content: "";
  width: 0;
  height: 2px;
  background-color: #D30013;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  border-radius: 2px;
  transition: width 0.3s;
}
.tabs-trigger-container a.active:after {
  width: 100%;
}

.tabs-container {
  flex-direction: row;
  direction: ltr;
  margin-bottom: 16px;
  clear: both;
}
.tabs-container.right {
  direction: rtl;
}
.tabs-container.right .tabs {
  direction: ltr;
}
.tabs-container.right .tabs-image {
  padding: 0 24px 0 0;
}
@media screen and (max-width: 800px) {
  .tabs-container.right .tabs-image {
    padding: 0;
  }
}
.tabs-container.right .tabs-image .tab-img {
  float: left;
}

.tabs {
  padding: 0 44px;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .tabs {
    padding: 0;
  }
}
.tabs h3 {
  font-size: 32px;
  font-size: 2rem;
  line-height: 40px;
}
.tabs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  display: flex;
  position: relative;
}
.tabs ul:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 2px solid #707070;
  width: 100%;
}
.tabs ul li {
  float: left;
  font-weight: normal;
  border-radius: 0;
  cursor: pointer;
  flex: 33.33%;
  padding: 0 0 8px;
}
.tabs ul li.active {
  border: none;
  border-bottom: 2px solid #D30013;
  position: relative;
  z-index: 1;
}
.tabs ul li a {
  text-decoration: none;
  text-transform: capitalize;
  color: #D30013;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  border: 0;
}
.tabs .tabs-content {
  padding-top: 16px;
}
.tabs .tabs-content .tab-content {
  opacity: 0;
  display: none;
}
.tabs .tabs-content .tab-content.active {
  opacity: 1;
  display: block;
}
.tabs.flex-inner-1of2, .flex-news-events .tabs.flex-bg:first-child {
  width: calc(50%);
}
@media screen and (max-width: 800px) {
  .tabs.flex-inner-1of2, .flex-news-events .tabs.flex-bg:first-child {
    width: calc(100%);
  }
}

.tabs-image {
  padding: 0 0 0 24px;
  margin: 0;
}
.tabs-image .tab-img {
  opacity: 0;
  width: 0;
  height: 0;
  visibility: hidden;
  float: right;
  transition: opacity 0.5s ease-in-out;
}
.tabs-image .tab-img.active {
  width: 100%;
  height: auto;
  visibility: visible;
  opacity: 1;
}
.tabs-image.mob-show {
  display: none;
}
@media screen and (max-width: 800px) {
  .tabs-image.mob-show {
    display: flex;
    width: 100%;
    flex: 100%;
    padding: 0;
    margin: 20px 0;
  }
}
.tabs-image.mob-hide {
  display: block;
}
@media screen and (max-width: 800px) {
  .tabs-image.mob-hide {
    display: none;
  }
}
.tabs-image.flex-inner-1of2, .flex-news-events .tabs-image.flex-bg:first-child {
  width: calc(50%);
}
@media screen and (max-width: 800px) {
  .tabs-image.flex-inner-1of2, .flex-news-events .tabs-image.flex-bg:first-child {
    width: calc(100%);
  }
}

.headerTop-container {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}
.headerTop-container .header-spacing {
  height: 52px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .headerTop-container .header-spacing {
    flex-direction: column;
    height: 56px;
  }
  .headerTop-container .header-spacing.has-prospective-dd {
    height: 112px;
  }
}
.headerTop-container .add-notification-space {
  height: 72px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .headerTop-container .add-notification-space {
    flex-direction: column;
    height: 56px;
  }
  .headerTop-container .add-notification-space.has-prospective-dd {
    height: 112px;
  }
}
.headerTop-container .header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 72px;
  justify-content: space-between;
  background: #FFFFFF;
  box-sizing: border-box;
  border-bottom: 1px solid #efefef;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width: 800px) {
  .headerTop-container .header {
    flex-direction: column;
    height: 56px;
    text-align: left;
  }
  .headerTop-container .header.has-prospective-dd {
    height: 112px;
  }
}
@media screen and (max-width: 800px) {
  .headerTop-container .header.header-group {
    flex-direction: row;
  }
  .headerTop-container .header.header-group .right-sec {
    justify-content: right;
  }
  .headerTop-container .header.header-group .right-sec .btn-contact {
    padding: 11px 20px 12px;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.2;
    min-width: 150px;
  }
  .headerTop-container .header.header-group .right-sec .landing-header-search {
    margin: 16px 16px;
  }
}
.headerTop-container .header .left-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.headerTop-container .header .left-sec div {
  display: inline-block;
}
.headerTop-container .header .left-sec div.left-hamburger-sec {
  padding: 0;
}
@media screen and (max-width: 800px) {
  .headerTop-container .header .left-sec div.left-hamburger-sec {
    padding: 0;
  }
}
.headerTop-container .header .left-sec div.left-hamburger-sec img {
  width: 32px;
  height: 46px;
}
@media screen and (max-width: 550px) {
  .headerTop-container .header .left-sec div.left-hamburger-sec img {
    width: 24px;
    height: auto;
  }
}
.headerTop-container .header .left-sec div.left-sec-logo {
  padding: 0;
  display: none;
}
.headerTop-container .header .left-sec div.left-sec-logo.left-hamburger-sec {
  display: flex;
  align-items: center;
}
.headerTop-container .header .left-sec div.left-sec-logo .crest-logo {
  display: none;
}
.headerTop-container .header .left-sec div.left-sec-logo .button-menu-icon {
  margin: 6 -6px 0 8px;
  position: relative;
  display: block;
  cursor: pointer;
}
.headerTop-container .header .left-sec div.left-sec-logo .button-menu-icon:before {
  padding: 22px;
  background-size: 100%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 600;
  color: #D30013;
}
@media screen and (max-width: 800px) {
  .headerTop-container .header .left-sec div.left-sec-logo .button-menu-icon {
    margin: 0;
  }
  .headerTop-container .header .left-sec div.left-sec-logo .button-menu-icon:before {
    padding: 16px;
  }
}
@media screen and (max-width: 1279px) {
  .headerTop-container .header .left-sec div.left-sec-logo {
    display: flex;
    align-items: center;
  }
  .headerTop-container .header .left-sec div.left-sec-logo.left-hamburger-sec {
    padding: 0px;
  }
  .headerTop-container .header .left-sec div.left-sec-logo img {
    width: auto;
    height: 38px;
    padding: 9px 14px;
    box-sizing: content-box;
  }
}
@media screen and (max-width: 900px) {
  .headerTop-container .header .left-sec div.left-sec-logo {
    padding: 0;
  }
  .headerTop-container .header .left-sec div.left-sec-logo .crest-logo {
    display: inline-block;
  }
}
@media screen and (max-width: 1100px) {
  .headerTop-container .header .left-sec div.left-sec-logo {
    padding: 0;
  }
  .headerTop-container .header .left-sec div.left-sec-logo .crest-logo-quick {
    display: inline-block;
  }
}
.headerTop-container .header .left-sec div.left-sec-logo img {
  width: auto;
  height: 46px;
  margin-left: 15px;
  margin-top: 3px;
}
@media screen and (max-width: 1279px) {
  .headerTop-container .header .left-sec div.left-sec-logo img {
    margin-left: 0;
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .headerTop-container .header .left-sec div.left-sec-logo img {
    width: 28px;
    height: 38px;
  }
}
.headerTop-container .header .left-sec div.left-sec-logo-txt {
  padding: 20px 24px 20px;
  min-width: 340px;
}
@media screen and (max-width: 1279px) {
  .headerTop-container .header .left-sec div.left-sec-logo-txt {
    padding: 20px 0 20px;
  }
}
@media screen and (max-width: 800px) {
  .headerTop-container .header .left-sec div.left-sec-logo-txt {
    padding: 13px 0 13px;
    min-width: 280px;
  }
}
.headerTop-container .header .left-sec div.left-sec-logo-txt img {
  max-height: 100%;
  width: 100%;
  max-width: 306px;
}
@media screen and (max-width: 550px) {
  .headerTop-container .header .left-sec div.left-sec-logo-txt img {
    max-width: 282px;
  }
}
@media screen and (max-width: 800px) {
  .headerTop-container .header .left-sec {
    width: 100%;
  }
  .headerTop-container .header .left-sec .landing-header-search {
    margin: 16px 16px;
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    float: right;
  }
  .headerTop-container .header .left-sec .landing-header-search:before {
    content: "";
    background: url("/images/logos/Icon-Search.png");
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
  }
  .headerTop-container .header .left-sec .landing-header-search a {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 9;
  }
}
.headerTop-container .header .left-sec .twenty-anniversary-sec img {
  max-height: 40px;
}
@media screen and (max-width: 1100px) {
  .headerTop-container .header .left-sec .twenty-anniversary-sec {
    padding: 0 20px;
  }
  .headerTop-container .header .left-sec .twenty-anniversary-sec img {
    max-height: 40px;
  }
}
.headerTop-container .header .right-sec {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .headerTop-container .header .right-sec {
    width: 100%;
  }
}
.headerTop-container .header .right-sec .grp-prospective {
  display: inline-flex;
  padding: 16px 0;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .headerTop-container .header .right-sec .grp-prospective {
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
.headerTop-container .header .right-sec .grp-prospective .lbl-testprospective {
  font-size: 12px;
  line-height: 14px;
  color: #3C3737;
  padding-right: 4px;
}
@media screen and (max-width: 800px) {
  .headerTop-container .header .right-sec .grp-prospective .lbl-testprospective {
    width: 27%;
  }
}
.headerTop-container .header .right-sec .grp-prospective .select-wrapper {
  position: relative;
  display: inline;
  width: 248px;
  background: #F5F5F5;
  border-radius: 2px;
  border: 1px solid #E8E8E8;
}
@media screen and (max-width: 800px) {
  .headerTop-container .header .right-sec .grp-prospective .select-wrapper {
    width: 72%;
    border: 1px solid #E8E8E8;
  }
}
.headerTop-container .header .right-sec .grp-prospective .select-wrapper .select-prospective {
  background-color: #F5F5F5;
  border-style: none;
  border-radius: 2px;
  font-size: 14px;
  line-height: 16px;
  padding: 0px;
  width: 100%;
  position: relative;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .headerTop-container .header .right-sec .grp-prospective .select-wrapper .select-prospective {
    width: 100%;
    border: 0 solid;
  }
}
.headerTop-container .header .right-sec .grp-prospective .select-wrapper .select-prospective .parent {
  list-style: none;
  position: relative;
  padding: 12px 0;
  text-align: left;
  /* &:hover {
       .sub-nav {
           display: block;
           transition: display 0.2s linear;
       }
   } */
}
.headerTop-container .header .right-sec .grp-prospective .select-wrapper .select-prospective .parent span {
  padding-left: 16px;
}
.headerTop-container .header .right-sec .grp-prospective .select-wrapper .select-prospective .parent .sub-drop {
  display: none;
  position: absolute;
  width: 100%;
  border: 1px solid #E8E8E8;
  background-color: #F5F5F5;
  top: 36px;
  list-style: none;
  text-align: left;
  padding: 0;
  border-top: 0 solid transparent;
  margin: 0 0 0 -1px;
  box-sizing: content-box;
  border-radius: 2px;
}
.headerTop-container .header .right-sec .grp-prospective .select-wrapper .select-prospective .parent .sub-drop li {
  border-bottom: 0 solid #E8E8E8;
}
.headerTop-container .header .right-sec .grp-prospective .select-wrapper .select-prospective .parent .sub-drop li a {
  color: #3C3737;
  display: block;
  padding: 11px 16px;
}
.headerTop-container .header .right-sec .grp-prospective .select-wrapper .select-prospective .parent .sub-drop li:last-child {
  border-bottom: 0 solid transparent;
}
.headerTop-container .header .right-sec .grp-prospective .select-wrapper .select-prospective .parent .sub-drop li:hover {
  background-color: rgba(225, 225, 225, 0.3);
}
.headerTop-container .header .right-sec .grp-prospective .select-wrapper:after {
  content: "";
  position: absolute;
  top: 16px;
  right: -8px;
  bottom: 0;
  padding: 0 1em;
  background-image: url("/images/logos/union.png");
  background-repeat: no-repeat;
  pointer-events: none;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .headerTop-container .header .right-sec .grp-prospective .select-wrapper:after {
    top: 16px;
  }
}
.headerTop-container .header .right-sec .btn-contact {
  font-size: 16px;
  font-size: 1rem;
  line-height: 16px;
  background-color: #D30013;
  border-style: none;
  border-radius: 4px;
  color: #fff;
  padding: 11px 28px 12px;
  display: inline;
  min-width: 1px;
  margin: 0px 4px;
}
.headerTop-container .header .right-sec .btn-contact:hover {
  background: #F22320;
}
.headerTop-container .header .right-sec .btn-contact:active {
  background: #FF513E;
}
.headerTop-container .header .right-sec .btn-contact:focus {
  background: #990000;
}
.headerTop-container .header .right-sec .btn-contact:disabled {
  background: #CECECE;
}
.headerTop-container .header .right-sec .locale-btn {
  margin: 24px;
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .headerTop-container .header .right-sec .locale-btn {
    display: none;
  }
}
.headerTop-container .header .right-sec .locale-btn .locale-link {
  color: #3C3737;
  transition: color 0.3s;
}
.headerTop-container .header .right-sec .locale-btn .locale-link:hover {
  color: #D30013;
}
@media screen and (max-width: 800px) {
  .headerTop-container .header .right-sec .locale-btn.has-landing-pg {
    display: inline-block;
  }
}
.headerTop-container .header .right-sec .landing-header-search {
  margin: 24px 24px 24px 0px;
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  float: right;
  text-align: center;
}
.headerTop-container .header .right-sec .landing-header-search:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  line-height: 24px;
}
.headerTop-container .header .right-sec .landing-header-search a {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 9;
}
.headerTop-container .header.has-mobile-lang {
  flex-direction: row;
}
@media screen and (max-width: 800px) {
  .headerTop-container .header.has-mobile-lang .locale-btn {
    display: block;
    position: absolute;
    right: 0;
  }
}
.headerTop-container .search-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background-color: #fff;
  padding: 8px;
}
.headerTop-container .search-container input {
  width: 100%;
  border: 0;
  height: 100%;
  box-sizing: border-box;
  background-color: #f5f5f5;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  color: #888888;
  padding: 12px 16px;
}
.headerTop-container .search-container .landing-header-search-close {
  margin: 16px 16px;
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  float: right;
}
.headerTop-container .search-container .landing-header-search-close:before {
  content: "";
  background: url("/images/logos/Icon-Close.png");
  background-size: 100%;
  position: absolute;
  top: -56px;
  right: 0;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 800px) {
  .headerTop-container .search-container .landing-header-search-close:before {
    top: -48px;
  }
}
@media screen and (max-width: 800px) {
  .headerTop-container .search-container {
    padding: 8px;
    height: 56px;
  }
}

.crest-logo {
  width: 32px;
}

.quick-links {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}
.quick-links .quick-link-list {
  position: absolute;
  bottom: 16px;
  height: auto;
  max-height: 0px;
  overflow: hidden;
  background: #ffffff;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 0 72px 0;
  opacity: 0;
  width: 0;
  transition: max-height 0.3s ease-in-out, z-index 0.3s ease-in-out, opacity 0.5s, width 0.3s ease-in-out;
  border-radius: 4px;
}
.quick-links .quick-link-list .quick-link-list__inner {
  margin: 0;
  padding: 0;
  height: auto;
  max-height: 300px;
  overflow: auto;
}
.quick-links .quick-link-list .quick-link-list__inner li a {
  display: block;
  padding: 12px;
  color: #3C3737;
  text-align: center;
}
.quick-links .quick-link-list .quick-link-list__inner li:first-child a {
  padding-top: 20px;
}
.quick-links .quick-link-list .quick-link-list__title {
  padding: 16px;
  background-color: #D30013;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}
.quick-links .quick-link-trigger {
  position: fixed;
  bottom: 24px;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  font-family: "icomoon";
  color: #ffffff;
  background: #D30013;
  font-size: 24px;
  border-radius: 50%;
  box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.2);
  width: 56px;
  height: 56px;
  text-align: center;
  line-height: 56px;
}
.quick-links.open .quick-link-trigger {
  background: #ffffff;
  color: #D30013;
  box-shadow: none;
}
.quick-links.open .quick-link-list {
  max-height: 450px;
  opacity: 1;
  width: 200px;
  box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.2);
}

.event-timeline-block {
  padding: 0;
  max-width: 1080px;
  margin: 0 auto 20px;
  width: 100%;
}
.event-timeline-block .event-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 24px;
  position: relative;
  top: 22px;
}
.event-timeline-block .event-header .event-header-left {
  display: flex;
  flex-direction: column;
  gap: 36px;
  line-height: 1.4;
}
@media screen and (max-width: 800px) {
  .event-timeline-block .event-header .event-header-left {
    padding: 0 14px;
    line-height: 28px;
  }
}
.event-timeline-block .event-header .event-header-left .main-heading {
  font-size: 32px;
  font-weight: 800;
  color: #3C3737;
  border-bottom: 4px solid #D30013;
  line-height: 1.4;
}
.event-timeline-block .event-header .event-header-left .sub-heading {
  font-size: 30px;
  font-weight: 800;
  color: #3C3737;
  line-height: 1.1;
}
.event-timeline-block .event-header .event-header-right {
  padding-right: 140px;
}
.event-timeline-block .event-header .event-header-right .icon-menu-close-min, .event-timeline-block .event-header .event-header-right .quick-links.open .quick-link-trigger, .quick-links.open .event-timeline-block .event-header .event-header-right .quick-link-trigger {
  font-size: 20px;
  color: #3C3737;
  cursor: pointer;
}
.event-timeline-block .event-header .event-header-right .icon-menu-close-min:hover, .event-timeline-block .event-header .event-header-right .quick-links.open .quick-link-trigger:hover, .quick-links.open .event-timeline-block .event-header .event-header-right .quick-link-trigger:hover {
  color: #D30013;
}
@media screen and (max-width: 800px) {
  .event-timeline-block .event-header {
    margin: 0 12px;
  }
  .event-timeline-block .event-header .event-header-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    line-height: 1.4;
  }
  .event-timeline-block .event-header .event-header-left .main-heading {
    font-size: 20px;
    z-index: 1;
  }
  .event-timeline-block .event-header .event-header-left .sub-heading {
    font-size: 16px;
  }
  .event-timeline-block .event-header .event-header-right {
    padding-right: 10px;
  }
}
.event-timeline-block .event-timeline-container {
  display: flex;
  width: 100%;
  position: relative;
}
.event-timeline-block .event-timeline-container .event-timeline-left {
  flex: 70%;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
.event-timeline-block .event-timeline-container .event-timeline-left .timeline {
  position: relative;
  margin-top: 40px;
  margin-left: 15px;
}
.event-timeline-block .event-timeline-container .event-timeline-left .timeline:before {
  content: "";
  position: absolute;
  top: 36px;
  left: 7px;
  width: 1px;
  height: 92%;
  background-color: #CECECE;
}
.event-timeline-block .event-timeline-container .event-timeline-left .timeline__block {
  position: relative;
  margin-top: 20px;
  padding-left: 15px;
}
.event-timeline-block .event-timeline-container .event-timeline-left .timeline__block:after {
  content: "";
  display: table;
  clear: both;
}
.event-timeline-block .event-timeline-container .event-timeline-left .timeline__block .timeline__date_hide {
  opacity: 0;
}
.event-timeline-block .event-timeline-container .event-timeline-left .timeline__midpoint {
  position: absolute;
  top: 36px;
  left: -9px;
  width: unset;
  height: unset;
}
.event-timeline-block .event-timeline-container .event-timeline-left .timeline__midpoint:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 47px;
  border-top: 1px solid #CECECE;
}
.event-timeline-block .event-timeline-container .event-timeline-left .timeline__content {
  position: relative;
  margin: 0 10px 0 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.event-timeline-block .event-timeline-container .event-timeline-left .timeline__content .timeline__date {
  font-size: 14px;
  color: #009ED0;
  font-weight: 500;
  line-height: 18px;
}
.event-timeline-block .event-timeline-container .event-timeline-left .timeline__content .timeline__title {
  font-size: 20px;
  color: #3C3737;
  font-weight: 800;
  line-height: 24px;
}
.event-timeline-block .event-timeline-container .event-timeline-left .timeline__content img {
  width: 100%;
  max-width: 592px;
  height: auto;
}
.event-timeline-block .event-timeline-container .event-timeline-left .timeline__content .timeline__text {
  font-size: 16px;
  color: #3C3737;
  font-weight: 400;
  max-width: 592px;
}
.event-timeline-block .event-timeline-container .event-timeline-left .timeline__content .read-more-btn {
  z-index: 1;
}
.event-timeline-block .event-timeline-container .event-timeline-left .timeline__content .read-more-btn .btn--link--base, .event-timeline-block .event-timeline-container .event-timeline-left .timeline__content .read-more-btn .accordion__tab__copy__link {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 0px;
  text-transform: capitalize;
  color: #D30013;
  line-height: 30px;
}
.event-timeline-block .event-timeline-container .event-scroll-right {
  flex: 30%;
  padding: 28px 40px 0 114px;
}
.event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event {
  position: absolute;
  float: left;
  top: 90px;
  transition: all 0.3s;
}
@media screen and (max-width: 800px) {
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event {
    overflow-x: scroll;
    overflow-y: hidden;
    padding-right: 30px;
    scrollbar-width: none;
  }
}
.event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar .scroll-spy-title {
  display: block;
  font-size: 35px;
  font-weight: 800;
  line-height: 12px;
  padding-left: 14px;
  transform: translateX(-32px);
}
.event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar ul.scroll-spy {
  list-style: none;
  position: relative;
  padding-left: 16px;
}
.event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar ul.scroll-spy:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 4px;
  border-radius: 4px;
  background-color: #E8E8E8;
  top: -3px;
  left: 0px;
}
.event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar ul.scroll-spy li {
  color: #3C3737;
  padding-right: 15px;
  padding: 8px 0;
  position: relative;
}
.event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar ul.scroll-spy li a {
  color: #b5b5b5;
}
.event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar ul.scroll-spy li a.active {
  color: #3C3737;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}
.event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar ul.scroll-spy li a.active a {
  color: #3C3737;
  transition: all 0.3s;
}
.event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar ul.scroll-spy li a.active:before {
  content: "";
  position: absolute;
  border-left: 4px solid #D30013;
  left: -16px;
  height: 45px;
  border-radius: 2px;
  top: -4px;
  transition: all 0.4s;
}
@media screen and (max-width: 800px) {
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar ul.scroll-spy.top-scroll-spy0:before {
    width: 100%;
    height: unset;
  }
}
@media screen and (max-width: 800px) {
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar ul.scroll-spy.top-scroll-spy1:before {
    width: 200%;
    height: unset;
  }
}
.event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event #event-sidebar.fixed {
  position: fixed;
  top: 90px;
}
@media screen and (max-width: 800px) {
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event #event-sidebar.fixed {
    top: 42px;
    background: #ffffff;
    width: 100%;
    left: 6px;
    height: 74px;
    overflow-x: scroll;
    overflow-y: hidden;
    z-index: 2;
    padding-right: 20px;
    scrollbar-width: none;
  }
}
@media screen and (max-width: 800px) {
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event #event-sidebar.fixed.is-school {
    top: 94px;
    height: 72px;
  }
}
@media screen and (max-width: 800px) {
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event {
    position: absolute;
    float: left;
    top: 5px;
    width: 100%;
    transition: all 0.3s;
  }
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 6px;
  }
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar .scroll-spy-title {
    display: block;
    font-size: 16px;
    padding-left: 0px;
    transform: translateX(20px);
  }
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar ul.scroll-spy {
    list-style: none;
    position: relative;
    padding-left: 4px;
    gap: 26px;
    display: flex;
    left: 16px;
  }
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar ul.scroll-spy:before {
    content: "";
    position: absolute;
    height: 4px;
    width: 100%;
    border-radius: 4px;
    background-color: #E8E8E8;
    top: 40px;
    left: 0px;
  }
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar ul.scroll-spy li {
    color: #3C3737;
    padding-right: 15px;
    padding: 8px 0;
    position: relative;
  }
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar ul.scroll-spy li a {
    color: #000000;
    font-size: 14px;
  }
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar ul.scroll-spy li a.active {
    color: #3C3737;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.2;
  }
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar ul.scroll-spy li a.active a {
    color: #3C3737;
  }
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar ul.scroll-spy li a.active:before {
    content: "";
    position: absolute;
    border-top: 4px solid #D30013;
    border-left: unset;
    left: -2px;
    width: 39px;
    border-radius: 1px;
    top: 40px;
  }
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar ul.scroll-spy.top-scroll-spy0:before {
    content: "";
    position: absolute;
    height: 4px;
    width: 180%;
    border-radius: 4px;
    background-color: #E8E8E8;
    top: 40px;
    left: -60px;
  }
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar ul.scroll-spy.top-scroll-spy1:before {
    content: "";
    position: absolute;
    height: 4px;
    width: 220%;
    border-radius: 4px;
    background-color: #E8E8E8;
    top: 40px;
    left: -56px;
  }
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar.fixed ul.scroll-spy {
    left: 2px;
  }
  .event-timeline-block .event-timeline-container .event-scroll-right .scroll-spy-event .sticky-sidebar.fixed .scroll-spy-title {
    transform: translateX(10px);
  }
}
@media screen and (max-width: 800px) {
  .event-timeline-block .event-timeline-container .event-scroll-right {
    padding: 0;
    flex: 100%;
  }
}
@media screen and (max-width: 800px) {
  .event-timeline-block .event-timeline-container {
    display: flex;
    flex-direction: column;
  }
  .event-timeline-block .event-timeline-container .event-timeline-left {
    flex: 100%;
  }
  .event-timeline-block .event-timeline-container .event-timeline-left .timeline {
    position: relative;
    margin-top: 80px;
    margin-left: 15px;
  }
  .event-timeline-block .event-timeline-container .event-timeline-left .timeline:before {
    width: 1px;
    height: 88%;
  }
  .event-timeline-block .event-timeline-container .event-timeline-left .timeline.is-school {
    margin-top: 0;
  }
  .event-timeline-block .event-timeline-container .event-timeline-left .timeline.is-school .timeline__block {
    margin-bottom: unset;
  }
  .event-timeline-block .event-timeline-container .event-timeline-left .timeline.is-school .timeline__date_hide {
    opacity: 0;
  }
  .event-timeline-block .event-timeline-container .event-timeline-left .timeline.is-school:before {
    content: "";
    position: absolute;
    top: 90px;
  }
  .event-timeline-block .event-timeline-container .event-timeline-left .timeline.is-school .timeline__midpoint {
    content: "";
    position: absolute;
    top: 90px;
  }
  .event-timeline-block .event-timeline-container .event-timeline-left .timeline.is-school .timeline__content {
    position: relative;
    top: 54px;
  }
  .event-timeline-block .event-timeline-container .event-timeline-left .timeline__block {
    position: relative;
    margin-top: 16px;
    margin-bottom: 4px;
    padding: 0 14px;
  }
  .event-timeline-block .event-timeline-container .event-timeline-left .timeline__block:after {
    content: "";
    display: table;
    clear: both;
  }
  .event-timeline-block .event-timeline-container .event-timeline-left .timeline__midpoint {
    position: absolute;
    left: -9px;
    width: unset;
    height: unset;
  }
  .event-timeline-block .event-timeline-container .event-timeline-left .timeline__midpoint:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 24px;
    border-top: 1px solid #CECECE;
  }
  .event-timeline-block .event-timeline-container .event-timeline-left .timeline__content {
    margin: 0 10px 0 24px;
  }
  .event-timeline-block .event-timeline-container .event-timeline-left .timeline__content .timeline__title {
    font-size: 20px;
    font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
    color: #262626;
    font-weight: 800;
  }
  .event-timeline-block .event-timeline-container .event-timeline-left .timeline__content img {
    width: 100%;
    max-width: 592px;
    height: auto;
  }
  .event-timeline-block .event-timeline-container .event-timeline-left .timeline__content .timeline__text {
    font-size: 16px;
    font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
    color: #3C3737;
    font-weight: 400;
    max-width: 592px;
    line-height: 24px;
  }
  .event-timeline-block .event-timeline-container .event-scroll-right {
    flex: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ffffff;
    height: 80px;
    width: 100%;
  }
}
@media screen and (max-width: 800px) and (max-width: 400px) {
  .event-timeline-block .event-timeline-container .event-scroll-right {
    padding: 0;
  }
}
@media screen and (max-width: 800px) {
  .event-timeline-block {
    padding: 0;
    margin: 0 auto;
  }
}

.load-more-section {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  padding: 20px 78px 0;
  margin: 0 auto;
  width: 100%;
}
.load-more-section .show-left, .load-more-section .show-right {
  flex: 50%;
}
.load-more-section .btn-download-pdf {
  width: 100%;
  font-weight: 500;
}
.load-more-section .i-loading {
  position: absolute;
  left: 46%;
  bottom: -24px;
  box-shadow: unset;
}
@media screen and (max-width: 800px) {
  .load-more-section .i-loading {
    left: 45%;
  }
}
@media screen and (max-width: 800px) {
  .load-more-section {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    gap: 14px;
    padding: 38px;
    align-items: center;
  }
  .load-more-section .show-left, .load-more-section .show-right {
    flex: 100%;
    display: contents;
  }
  .load-more-section .btn-download-pdf {
    width: 100%;
  }
  .load-more-section.is-scl {
    padding: 80px 38px;
  }
}

#event-timeline-end {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  #event-timeline-end {
    margin-bottom: unset;
  }
}

.all-event-show-btn {
  display: flex;
  justify-content: center;
  padding: 20px;
  margin: 0 auto;
}
.all-event-show-btn .btn--primary, .all-event-show-btn .btn--blue {
  font-weight: 800;
}
@media screen and (max-width: 800px) {
  .all-event-show-btn {
    margin: unset;
  }
  .all-event-show-btn .btn--primary, .all-event-show-btn .btn--blue {
    width: 100%;
  }
}

.slide-overlay {
  position: relative;
}
.slide-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: #000000;
  opacity: 0.5;
  z-index: 5;
}
.slide-overlay .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #D30013;
  border-top-color: transparent;
  -webkit-animation: spin 1s infinite linear;
          animation: spin 1s infinite linear;
  z-index: 6;
}
@-webkit-keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 1100px) {
  .has-visible-nav .page-wrapper {
    overflow: hidden;
  }
}
@media screen and (max-width: 1366px) {
  .has-visible-nav.school-page .page-wrapper {
    overflow: hidden;
  }
}
@media screen and (max-width: 1100px) {
  .has-visible-search .page-wrapper {
    overflow: hidden;
  }
}
.no-scroll .page-wrapper {
  overflow: hidden;
}

.page {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: absolute;
}
@media screen and (max-width: 1100px) {
  .page {
    left: 0;
    transition: left cubic-bezier(0.645, 0.045, 0.095, 1) 0.3s;
  }
  .has-visible-nav .page {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    left: 300px;
  }
  .has-visible-nav.school-page .page {
    left: 0;
  }
}
@media screen and (max-width: 400px) {
  .has-visible-nav .page {
    left: 100%;
  }
  .has-visible-nav.school-page .page {
    left: 0;
  }
}

.page__overlay {
  top: 0;
  background-color: transparent;
  position: fixed;
  width: 0;
  height: 0;
  z-index: 100;
  transition: 0s 0.3s width, 0s 0.3s height, 0.3s background-color;
}
.has-visible-nav .page__overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  transition: 0s width, 0s height, 0.3s background-color;
}
@media screen and (max-width: 1366px) {
  .has-visible-nav.school-page .page__overlay {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    transition: 0s width, 0s height, 0.3s background-color;
  }
}
.has-visible-search .page__overlay {
  z-index: 10;
}
@media screen and (max-width: 1100px) {
  .has-visible-search .page__overlay {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    transition: 0s width, 0s height, 0.3s background-color;
  }
}

.page-header {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
  font-weight: 500;
  background-color: #ffffff;
  width: 100%;
  position: relative;
  z-index: 10;
  text-align: center;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}
.page-header:after {
  content: "";
  display: table;
  clear: both;
}
body.my .page-header {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
@media screen and (max-width: 1100px) {
  .page-header {
    position: fixed;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
  }
}
@media screen and (max-width: 800px) {
  .has-active-search .page-header {
    padding-bottom: 70px;
  }
}

.page-header__no-nav {
  padding: 10px 0;
}
@media screen and (max-width: 1100px) {
  .page-header__no-nav {
    padding: 0;
  }
}

.page-header-hidden {
  visibility: hidden;
  opacity: 0;
}
.school-page .page-header-hidden {
  padding-top: 54px;
}
@media screen and (max-width: 1100px) {
  .school-page .page-header-hidden {
    padding-top: 8px;
  }
}
@media screen and (max-width: 800px) {
  .school-page .page-header-hidden {
    padding-top: 48px;
  }
}
@media screen and (max-width: 550px) {
  .school-page .page-header-hidden {
    padding-top: 56px;
  }
}
@media screen and (max-width: 800px) {
  .has-active-search .page-header-hidden {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 1100px) {
  .page-brand {
    display: inline-block;
  }
}

.page-brand__copy {
  position: absolute;
  left: 0;
  top: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(-50%);
  /* IE 10, Fx 16+, Op 12.1+ */
}
@media screen and (max-width: 1100px) {
  .page-brand__copy {
    display: inline-block;
    vertical-align: middle;
    position: static;
    /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
    /* IE 9 */
    transform: none;
    /* IE 10, Fx 16+, Op 12.1+ */
  }
}

.page-brand__copy__img {
  width: 400px;
}
@media screen and (max-width: 1600px) {
  .page-brand__copy__img {
    width: 370px;
  }
}
@media screen and (max-width: 1100px) {
  .page-brand__copy__img {
    width: 300px;
  }
}
@media screen and (max-width: 550px) {
  .page-brand__copy__img {
    width: 215px;
  }
}
@media screen and (max-width: 500px) {
  .page-brand__copy__img {
    width: 185px;
  }
}
@media screen and (max-width: 400px) {
  .page-brand__copy__img {
    width: 200px;
  }
  .has-second-crest .page-brand__copy__img {
    width: 170px;
  }
}

.page-brand__nav {
  position: absolute;
  right: 0;
  top: 20%;
  margin: 0;
}
.page-brand__nav.mobile-locale__nav {
  display: none;
}
@media screen and (max-width: 1100px) {
  .page-brand__nav {
    padding: 0 30px 60px;
    bottom: 0;
    position: fixed;
    left: -300px;
    top: inherit;
    width: 300px;
    transform: none;
    right: inherit;
    transition: left cubic-bezier(0.645, 0.045, 0.095, 1) 0.3s;
    text-align: center;
  }
  .page-brand__nav.mobile-locale__nav {
    display: block;
    height: 20px;
  }
  .page-brand__nav .menu-item__hidden {
    display: none;
  }
  .has-visible-nav .page-brand__nav {
    -webkit-overflow-scrolling: touch;
    left: 0;
  }
  .page-brand__nav .page-nav__item {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 1100px) and (max-width: 400px) {
  .page-brand__nav {
    left: -100%;
    width: 100%;
  }
}

.page-brand__logo {
  display: inline-block;
  text-align: center;
  width: 50px;
  margin: 15px auto;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 1100px) {
  .page-brand__logo {
    display: inline-block;
    vertical-align: middle;
    margin: 10px 0 10px 10px;
    width: 35px;
  }
}
@media screen and (max-width: 550px) {
  .page-brand__logo {
    width: 30px;
  }
}
@media screen and (max-width: 400px) {
  .page-brand__logo {
    width: 28px;
  }
}
@media screen and (max-width: 340px) {
  .page-brand__logo {
    width: 22px;
  }
}
.page-brand__logo:before {
  content: "";
  display: block;
  padding-top: 130%;
}

.page-brand__logo--high-school {
  background: url("/images/logos/logo-high-school-crest.svg") no-repeat center center;
  width: 70px;
}
@media screen and (max-width: 1100px) {
  .page-brand__logo--high-school {
    width: 49px;
  }
}
@media screen and (max-width: 550px) {
  .page-brand__logo--high-school {
    width: 43px;
  }
}
@media screen and (max-width: 400px) {
  .page-brand__logo--high-school {
    width: 40px;
  }
}
.page-brand__logo--high-school:before {
  content: "";
  display: block;
  padding-top: 92%;
}

.page-brand-container {
  position: relative;
  z-index: 2;
  text-align: center;
  transition: opacity 0.3s;
}

.page-header__mobile-search {
  position: absolute;
  top: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(-50%);
  /* IE 10, Fx 16+, Op 12.1+ */
  right: 0;
  color: #3C3737;
  display: none;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
}
@media screen and (max-width: 1100px) {
  .page-header__mobile-search {
    display: block;
  }
}
@media screen and (max-width: 340px) {
  .page-header__mobile-search {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
  }
}

.page-header__open-mobile-nav {
  position: absolute;
  top: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(-50%);
  /* IE 10, Fx 16+, Op 12.1+ */
  left: 0;
  color: #3C3737;
  display: none;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
}
@media screen and (max-width: 1100px) {
  .page-header__open-mobile-nav {
    display: block;
  }
}
@media screen and (max-width: 340px) {
  .page-header__open-mobile-nav {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
  }
}
.header-section .page-header__open-mobile-nav {
  position: relative;
  top: auto;
  left: auto;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(0);
  /* IE 10, Fx 16+, Op 12.1+ */
}

.page-header__close-mobile-nav {
  position: absolute;
  top: 10px;
  right: 0px;
  padding: 15px;
  color: #3C3737;
  display: none;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  .page-header__close-mobile-nav {
    display: block;
  }
}

.page-nav-wrap {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.page-nav-wrap.is-sticky {
  position: fixed;
  top: 0;
}
@media screen and (max-width: 1100px) {
  .page-nav-wrap.is-sticky {
    position: relative;
    top: inherit;
  }
}
@media screen and (max-width: 1100px) {
  .page-nav-wrap {
    position: relative;
    border: none;
  }
}

.page-nav:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 1100px) {
  .page-nav {
    position: fixed;
    top: 0;
    bottom: 100px;
    left: -300px;
    width: 300px;
    overflow: auto;
    z-index: 1;
    transition: left cubic-bezier(0.645, 0.045, 0.095, 1) 0.3s;
    padding-left: 30px;
  }
  .has-visible-nav .page-nav {
    -webkit-overflow-scrolling: touch;
    left: 0;
  }
  .page-nav.waterstones {
    bottom: 0;
  }
}
@media screen and (max-width: 400px) {
  .page-nav {
    left: -100%;
    width: 100%;
  }
}

.page-nav__left {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
}
.is-sticky .page-nav__left {
  width: 85%;
}
@media screen and (max-width: 1100px) {
  .page-nav__left {
    float: none;
    display: block;
    width: 100% !important;
  }
}

.page-nav__right-container {
  overflow: hidden;
  display: none;
  width: 0px;
}
.is-sticky .page-nav__right-container {
  width: 15%;
  display: block;
}
@media screen and (max-width: 1100px) {
  .page-nav__right-container {
    width: 100% !important;
  }
}

.page-nav__right {
  margin: 0;
  padding: 0;
  list-style: none;
  float: right;
  text-align: right;
}
@media screen and (max-width: 1100px) {
  .page-nav__right {
    float: none;
    width: 100% !important;
    text-align: left;
  }
}

.page-nav__ctas {
  margin: 0;
  padding: 0;
  list-style: none;
  float: right;
  text-align: right;
  margin-right: -100%;
  opacity: 0;
  transition: all 0.3s;
  padding-left: 40px;
}
@media screen and (max-width: 1600px) {
  .page-nav__ctas {
    padding-left: 35px;
  }
}
@media screen and (max-width: 1279px) {
  .page-nav__ctas {
    padding-left: 30px;
  }
}
@media screen and (max-width: 1100px) {
  .page-nav__ctas {
    display: none;
  }
}
.page-nav-wrap.is-sticky .page-nav__ctas {
  margin-right: 0;
  opacity: 1;
}
.page-nav__ctas .page-nav__item a {
  vertical-align: baseline;
}

.page-nav__item {
  display: inline-block;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 1100px) {
  .page-nav__left .page-nav__item, .page-nav__right .page-nav__item {
    display: block;
    padding: 15px 30px 0 0;
  }
}
.page-nav__item.page-brand__nav-item {
  font-weight: bold;
  text-transform: uppercase;
}
@media screen and (max-width: 1100px) {
  .page-nav__item.page-brand__nav-item {
    font-weight: 500;
  }
}
.page-nav__item:hover > a, .page-nav__item.is-active > a {
  color: #D30013;
}
.page-nav__item:not(.last-child) {
  padding-right: 15px;
}
@media screen and (max-width: 1600px) {
  .page-nav__item:not(.last-child) {
    padding-right: 10px;
  }
}
@media screen and (max-width: 1279px) {
  .page-nav__item:not(.last-child) {
    padding-right: 4px;
  }
}
@media screen and (max-width: 1600px) {
  body.zh-Hans .page-nav__item:not(.last-child) {
    padding-right: 15px;
  }
}
@media screen and (max-width: 1279px) {
  body.zh-Hans .page-nav__item:not(.last-child) {
    padding-right: 5px;
  }
}
.page-nav__item a {
  font-size: 15.5px;
  font-size: 0.96875rem;
  line-height: 1.2;
  color: #3C3737;
  vertical-align: middle;
}
@media screen and (max-width: 1279px) {
  .page-nav__item a {
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 1100px) {
  .page-nav__item a {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 1600px) {
  body.zh-Hans .page-nav__item a {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 1600px) {
  body.my .page-nav__item a {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 1279px) {
  body.my .page-nav__item a {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.2;
  }
}

.page-nav__item--l > a {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
}
@media screen and (max-width: 1600px) {
  .page-nav__item--l > a {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 1100px) {
  .page-nav__item--l > a {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 1600px) {
  body.zh-Hans .page-nav__item--l > a {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.2;
  }
}
.page-nav__item--l > a.locale-link {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
}
@media screen and (max-width: 1100px) {
  .mobile-locale__nav .page-nav__item--l > a {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

@media screen and (max-width: 1100px) {
  .page-nav__item--l.dropdown {
    width: 100%;
    border: none;
    padding: 0 0 15px 0 !important;
    text-align: center;
  }
  .page-nav__item--l.dropdown .dropdown-title {
    display: inline-block;
    width: auto;
    color: #D30013;
    padding: 0 10px;
    border-right: 1px solid #000000;
  }
  .page-nav__item--l.dropdown .dropdown-arrow {
    display: none;
  }
  .page-nav__item--l.dropdown .dropdown-list {
    position: static;
    display: inline-block;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 0;
    vertical-align: middle;
  }
  .page-nav__item--l.dropdown .dropdown-list__item {
    display: inline-block;
    padding: 0 10px;
    line-height: 1;
  }
  .page-nav__item--l.dropdown .dropdown-list__item:not(:last-child) {
    border-right: 1px solid #3C3737;
  }
}

.page-nav__mobile-school-switch {
  display: none;
}
@media screen and (max-width: 1100px) {
  .page-nav__mobile-school-switch {
    display: block;
    padding-bottom: 20px !important;
  }
}

/*.page-nav__item--mobile-float {
  @include media-query('tablet-landscape') {
    float: left;
    width: 50%;
    text-align: right;

    &.last-child {
      padding-left: 15px;
      text-align: left;
    }
  }
}*/
.page-nav__item-splitter {
  display: inline-block;
  list-style: none;
  padding: 15px 10px 15px 10px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}
@media screen and (max-width: 1600px) {
  .page-nav__item-splitter {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 1100px) {
  .page-nav__item-splitter {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 1600px) {
  body.zh-Hans .page-nav__item-splitter {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.2;
  }
}

.page-nav__sub-wrapper {
  width: 100%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(16px);
  /* IE 10, Fx 16+, Op 12.1+ */
  visibility: hidden;
  z-index: -9999;
  left: -9999;
  top: 200%;
  opacity: 0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
  transition: 0s 0.3s left, 0.3s opacity, 0.3s top;
}
.page-nav__item:hover .page-nav__sub-wrapper {
  display: block;
  visibility: visible;
  z-index: 1;
  top: 100%;
  opacity: 1;
  left: 0;
}
@media screen and (max-width: 1100px) {
  .page-nav__sub-wrapper {
    position: static;
    left: inherit;
    /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
    /* IE 9 */
    transform: none;
    /* IE 10, Fx 16+, Op 12.1+ */
    box-shadow: none;
    height: auto;
    overflow: hidden;
    visibility: visible;
    z-index: auto;
    top: 100%;
    opacity: 1;
  }
}

.page-nav__sub {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  position: absolute;
  min-width: 200px;
  max-width: 300px;
  padding: 0;
  margin: -1px 0 0 0;
  background: #ffffff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  height: 0;
  opacity: 0;
}
@media (min-width: 1100px) {
  .page-nav__item:hover .page-nav__sub {
    height: auto;
    opacity: 1;
  }
}
@media screen and (max-width: 1100px) {
  .page-nav__sub {
    max-width: 100%;
    width: 100%;
    box-shadow: none;
    position: relative;
    transition: all 0.5s;
  }
  .page-nav__item.is-active .page-nav__sub {
    opacity: 1;
    height: auto;
  }
}

.page-nav__sub a:first-child:before {
  content: "";
  bottom: 100%;
  left: 35%;
  position: absolute;
  border: solid transparent;
  border-bottom-color: #ffffff;
  border-width: 10px;
  margin-left: -36px;
  z-index: 2;
}
.page-nav__sub a:first-child:after {
  content: "";
  bottom: 100%;
  left: calc(35% - 2px);
  position: absolute;
  border: solid transparent;
  border-bottom-color: #DDD;
  border-width: 12px;
  margin-left: -36px;
  z-index: 1;
}
.page-nav__sub .page-nav__item--sub {
  display: block;
  cursor: pointer;
  padding: 10px 20px;
  width: 100%;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.page-nav__sub .page-nav__item--sub:hover, .page-nav__sub .page-nav__item--sub.is-active {
  background: #f0f0f0;
}
.page-nav__sub .page-nav__item--sub:last-child {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.page-nav__sub .page-nav__item--sub:first-child {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
@media screen and (max-width: 1100px) {
  .page-nav__sub .page-nav__item--sub {
    padding-top: 12px;
  }
  .page-nav__sub .page-nav__item--sub:before, .page-nav__sub .page-nav__item--sub:after {
    display: none;
  }
}
.page-nav__sub > a {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
  color: #3C3737;
  vertical-align: middle;
}
@media screen and (max-width: 1600px) {
  .page-nav__sub > a {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 1100px) {
  .page-nav__sub > a {
    display: block;
    width: 100%;
    height: 100%;
  }
}

.page-content {
  display: block;
  min-height: 70vh;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
  padding-bottom: 50px;
}

.page-content__nav-super {
  position: relative;
  padding-bottom: 30px;
}
.page-content__nav-super > a {
  position: absolute;
  top: 30px;
}

.page-footer {
  width: 100%;
  padding: 72px 0 24px 0;
  color: #ffffff;
  background: #F5F5F5;
  border: 1px solid #E8E8E8;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1366px) {
  .school-page .page-footer {
    padding: 72px 24px 24px;
  }
}
@media screen and (max-width: 1279px) {
  .school-page .page-footer {
    padding: 72px 0 24px 0;
  }
}
.page-footer.desktop-group-page-footer {
  padding-top: 0px;
}
@media screen and (max-width: 900px) {
  .page-footer.desktop-group-page-footer .l-inset-xxxl-top {
    padding-top: 40px;
  }
}
@media screen and (max-width: 900px) {
  .page-footer.desktop-group-page-footer .l-inset-xxxl-btm {
    padding-bottom: 45px;
  }
}
@media screen and (max-width: 900px) {
  .page-footer.desktop-group-page-footer .flex-item-middle {
    margin-top: 0px;
  }
}
@media screen and (max-width: 900px) {
  .page-footer.desktop-group-page-footer .footer-logo-dulwich-college img {
    max-width: 242px;
  }
}
@media screen and (max-width: 900px) {
  .page-footer.desktop-group-page-footer {
    padding: 0px 0 32px 0;
  }
}
.page-footer.desktop-group-page-footer .accordion-nav.sidebar-nav {
  text-align: left;
  border-bottom: 0px;
  margin-top: 0px;
  padding-bottom: 0px;
}
.page-footer.desktop-group-page-footer .accordion-nav.sidebar-nav .nav-item .nav-item__inner {
  padding: 13px 0px 10px;
}
.page-footer.desktop-group-page-footer .accordion-nav.sidebar-nav .nav-item .nav-item__inner i, .page-footer.desktop-group-page-footer .accordion-nav.sidebar-nav .nav-item .nav-item__inner .nav-text {
  color: #3C3737;
  font-weight: 600;
  left: 0px;
}
.page-footer .follow-us {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
  color: #161111;
  padding: 16px 0px 8px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  max-width: 126px;
}
@media screen and (max-width: 800px) {
  .page-footer .follow-us {
    text-align: left;
  }
}
.page-footer .follow-us.left-align {
  text-align: left;
}
.page-footer.exist-footer {
  padding: 20px 0;
  background: #000000;
  border: 0px solid #E8E8E8;
  border-top: 10px solid #D30013;
}
.page-footer.page-footer_school {
  padding-top: 0;
}
.page-footer .line-height0 {
  line-height: 0;
}
@media screen and (max-width: 900px) {
  .page-footer {
    padding: 40px 0 32px 0;
  }
}
@media screen and (max-width: 800px) {
  .page-footer.mobile-landing-footer .container {
    padding: 0 15px;
  }
}
.page-footer.mobile-landing-footer .container .footer-contact-addr p, .page-footer.mobile-landing-footer .container .footer-safequarding p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  color: #3C3737;
}
.page-footer.mobile-landing-footer .container .footer-contact-addr p.l-offset-sm-btm, .page-footer.mobile-landing-footer .container .footer-safequarding p.l-offset-sm-btm {
  margin-bottom: 32px;
}
.page-footer.mobile-landing-footer .container .footer-safequarding p {
  margin-bottom: 0;
}
.page-footer.mobile-landing-footer .container .footer-safequarding p a {
  color: #3C3737;
  text-decoration: underline;
}
.page-footer.mobile-landing-footer .container .flex-container, .page-footer.mobile-landing-footer .container .two-col-copy-image-container {
  flex-direction: column;
}
.page-footer.mobile-landing-footer .container .flex-container .flex-item-middle, .page-footer.mobile-landing-footer .container .two-col-copy-image-container .flex-item-middle {
  align-self: flex-start;
}
.page-footer.mobile-landing-footer .footer-menu-accordion {
  padding: 42px 0 0 0;
}
@media screen and (max-width: 800px) {
  .page-footer.mobile-landing-footer .container--s, .page-footer.mobile-landing-footer .title-big-container {
    padding: 0 15px;
  }
}
@media screen and (max-width: 900px) {
  .page-footer.mobile-landing-footer .flex {
    margin-top: 0;
    margin-bottom: 40px;
    overflow: auto;
    padding-left: 24px;
  }
}
@media screen and (max-width: 900px) and (max-width: 800px) {
  .page-footer.mobile-landing-footer .flex {
    padding-left: 0;
  }
}
@media screen and (max-width: 900px) {
  .page-footer.mobile-landing-footer .flex .l-offset-xxs-btm, .page-footer.mobile-landing-footer .flex .footer-left-content {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 900px) {
  .page-footer.mobile-landing-footer .flex .page-footer__social {
    padding: 0;
    margin: 0;
  }
}
.page-footer.desktop-landing-page-footer .flex-container, .page-footer.desktop-landing-page-footer .two-col-copy-image-container {
  padding: 0;
}
.page-footer.desktop-landing-page-footer .flex-container .flex, .page-footer.desktop-landing-page-footer .two-col-copy-image-container .flex {
  display: flex;
  flex-direction: column;
}
.page-footer.desktop-landing-page-footer .flex-container .flex div, .page-footer.desktop-landing-page-footer .two-col-copy-image-container .flex div {
  align-self: flex-start;
}
.page-footer.desktop-landing-page-footer .flex-container .flex div .page-footer__social, .page-footer.desktop-landing-page-footer .two-col-copy-image-container .flex div .page-footer__social {
  padding: 0;
  margin: 0;
}
.page-footer.desktop-landing-page-footer .flex-container .flex div .footer-crest, .page-footer.desktop-landing-page-footer .two-col-copy-image-container .flex div .footer-crest {
  width: 58px;
  height: auto;
  margin-bottom: 16px;
}
.page-footer.desktop-landing-page-footer .flex-container .flex div.footer-landing-logo, .page-footer.desktop-landing-page-footer .two-col-copy-image-container .flex div.footer-landing-logo {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.page-footer.desktop-landing-page-footer .flex-container .flex .footer-menu-accordion ul, .page-footer.desktop-landing-page-footer .two-col-copy-image-container .flex .footer-menu-accordion ul {
  padding-left: 0;
  margin: 0;
  text-align: left;
}
.page-footer.desktop-landing-page-footer .flex-container .flex .footer-menu-accordion ul li, .page-footer.desktop-landing-page-footer .two-col-copy-image-container .flex .footer-menu-accordion ul li {
  padding: 10px 0;
  list-style: none;
}
.page-footer.desktop-landing-page-footer .flex-container .flex .footer-menu-accordion ul li a, .page-footer.desktop-landing-page-footer .two-col-copy-image-container .flex .footer-menu-accordion ul li a {
  color: #161111;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 600;
}
.page-footer.desktop-landing-page-footer .flex-container .footer-qr, .page-footer.desktop-landing-page-footer .two-col-copy-image-container .footer-qr {
  width: 152px;
}
.page-footer.desktop-landing-page-footer .flex-container .footer-contact-addr p, .page-footer.desktop-landing-page-footer .two-col-copy-image-container .footer-contact-addr p, .page-footer.desktop-landing-page-footer .flex-container .footer-safequarding p, .page-footer.desktop-landing-page-footer .two-col-copy-image-container .footer-safequarding p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  color: #3C3737;
}
.page-footer.desktop-landing-page-footer .flex-container .footer-contact-addr p.l-offset-sm-btm, .page-footer.desktop-landing-page-footer .two-col-copy-image-container .footer-contact-addr p.l-offset-sm-btm, .page-footer.desktop-landing-page-footer .flex-container .footer-safequarding p.l-offset-sm-btm, .page-footer.desktop-landing-page-footer .two-col-copy-image-container .footer-safequarding p.l-offset-sm-btm {
  margin-bottom: 32px;
}
.page-footer.desktop-landing-page-footer .flex-container .footer-safequarding p, .page-footer.desktop-landing-page-footer .two-col-copy-image-container .footer-safequarding p {
  margin-bottom: 0;
}
.page-footer.desktop-landing-page-footer .flex-container .footer-safequarding p a, .page-footer.desktop-landing-page-footer .two-col-copy-image-container .footer-safequarding p a {
  color: #3C3737;
  text-decoration: underline;
}

.footer-logo-dulwich-college img {
  width: 100%;
  max-width: 325px;
  height: auto;
}
.footer-logo-dulwich-college .footer-crest {
  width: 100%;
  height: auto;
  max-width: 48px;
  margin-bottom: 24px;
}

@media screen and (max-width: 900px) {
  .footer-left-top {
    top: 0;
  }
}

.flex-item-middle {
  align-self: center;
}

.flex-item-left {
  text-align: left;
}
.flex-item-left img {
  max-width: 136px;
}
@media screen and (max-width: 900px) {
  .flex-item-left {
    text-align: left;
  }
}

.footer-signup-sec-label {
  font-size: 16px;
  font-size: 1rem;
  line-height: 28px;
  color: #3C3737;
}

.footer-signup-sec-inp {
  padding: 16px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 0px;
  float: left;
  border-style: none;
  color: #3C3737;
}

.footer-signup-sec-btn {
  max-width: 96px;
  border-radius: 0px 3px 3px 0px;
  padding: 16px;
  float: left;
  color: #ffffff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  background: #D30013;
}

.page-footer__social {
  list-style: none;
  margin: 0 0 0 0;
  padding: 32px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 800px) {
  .page-footer__social {
    gap: 8px;
  }
}
.page-footer__social > li {
  display: inline-block;
  width: 40px;
  height: 40px;
  box-sizing: content-box;
}

.nav-sec-div {
  margin-bottom: 40px;
  padding: 0px 16px;
}
.nav-sec-div p {
  color: #3C3737;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  margin-bottom: 0;
  font-weight: 600;
}
.nav-sec-div p a {
  color: #3C3737;
}
.nav-sec-div ul {
  padding-left: 0;
  margin-top: 12px;
}
.nav-sec-div ul li {
  padding: 5px 0;
  list-style: none;
}
.nav-sec-div ul li a {
  color: #3C3737;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 28px;
}
.nav-sec-div ul.dul-rm-height {
  margin-top: unset;
}

.footer-left-content {
  display: inline-block;
  float: left;
}
@media screen and (max-width: 800px) {
  .footer-left-content {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }
}

.footer-bottom-border {
  border-bottom: 1px solid #919191;
}

.footer-right-content {
  display: inline-block;
  float: right;
}
@media screen and (max-width: 800px) {
  .footer-right-content {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }
}
.footer-right-content a {
  color: #009dd5;
}

.page-footer__social__icon {
  display: inline-block;
  background: #3C3737;
  color: #ffffff;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 24px;
  border-radius: 4px;
  padding: 8px;
  /* .no-touchevents &.icon-facebook:hover {
    background-color: color(blueFacebook);
  }
  .no-touchevents &.icon-linkedin:hover {
    background-color: color(blueLinkedin);
  }
  .no-touchevents &.icon-wechat:hover {
    background-color: color(greenWechat);
  }
  .no-touchevents &.icon-instagram:hover {
    background-color: color(violetInstagram);
  }
  .no-touchevents &.icon-youtube:hover {
    background-color: color(redYoutube);
  }
  .no-touchevents &.icon-youku:hover {
    background-color: color(blueYouku);
  }
  .no-touchevents &.icon-twitter:hover {
    background-color: color(blueTwitter);
  } */
}
.page-footer__social__icon.youku-icon {
  font-size: 20px;
  padding: 9px 11px;
  line-height: 19px;
}
.page-footer__social__icon.icon-twitter {
  font-size: 34px;
  padding: 7px 4px 7px;
  line-height: 26px;
}
.page-footer__social__icon:hover {
  background: #FF513E;
}
.page-footer__social__icon:focus {
  background: #3C3737;
  border: 1px solid #FF513E;
}
.page-footer__social__icon:active {
  background: #990000;
  border: 0px solid transparent;
}
.page-footer__social__icon:disabled {
  background: #B4B4B4;
}

.page-footer__links > li > a, .page-footer__copyright_scl > a, .page-footer__copyright > a {
  color: #ffffff;
  border-bottom: 1px solid transparent;
}
.page-footer__links > li > a:hover, .page-footer__copyright_scl > a:hover, .page-footer__copyright > a:hover {
  border-bottom-color: #ffffff;
}

.page-footer__copyright {
  color: #3C3737;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
}
.exist-footer .page-footer__copyright {
  color: #ffffff;
}
.page-footer__copyright > a {
  color: #3C3737;
}
.exist-footer .page-footer__copyright > a {
  color: #ffffff;
}
.page-footer__copyright.footer-text-align {
  text-align: center;
}
@media screen and (max-width: 900px) {
  .page-footer__copyright.footer-text-align {
    text-align: left;
  }
}
.page-footer__copyright .full-stop:before {
  content: ".";
  position: absolute;
}

.page-footer__copyright_scl {
  color: #3C3737;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
}
.exist-footer .page-footer__copyright_scl {
  color: #ffffff;
}
.page-footer__copyright_scl > a {
  color: #3C3737;
}
.exist-footer .page-footer__copyright_scl > a {
  color: #ffffff;
}
.page-footer__copyright_scl.footer-text-align {
  text-align: center;
}
@media screen and (max-width: 900px) {
  .page-footer__copyright_scl.footer-text-align {
    text-align: left;
  }
}
.page-footer__copyright_scl .full-stop:before {
  content: ".";
  position: absolute;
}

.page-footer__links {
  list-style: none;
  margin: 0;
  padding: 0 0 5px 0;
}
.page-footer__links > li {
  display: inline-block;
}
.page-footer__links > li:not(:last-child) {
  padding-right: 15px;
}
.page-footer__copy {
  padding: 0 0 5px 0;
  font-weight: 400;
  line-height: 1.5;
}

.page-bottom-nav {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.page-bottom-nav__count {
  display: inline-block;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
  min-width: 70px;
}
body.zh-Hans .page-bottom-nav__count {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
body.my .page-bottom-nav__count {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}

.page-bottom-nav__prev,
.page-bottom-nav__next {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-size: 0px;
  text-align: center;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
  outline: none;
}
.page-bottom-nav__prev:hover, .page-bottom-nav__prev:focus,
.page-bottom-nav__next:hover,
.page-bottom-nav__next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.page-bottom-nav__prev:hover:before,
.page-bottom-nav__next:hover:before {
  transition: opacity 0.3s;
  opacity: 0.6;
}
.page-bottom-nav__prev.slick-disabled:before,
.page-bottom-nav__next.slick-disabled:before {
  opacity: 0.4;
}
.page-bottom-nav__prev:before,
.page-bottom-nav__next:before {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 30px;
  color: #3C3737;
}

.intrinsic-container {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 100%;
}

.intrinsic-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-privacy {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  margin: 16px -8px 0px;
}
.footer-privacy a {
  padding: 5px 10px 5px 8px;
  position: relative;
  display: inline-block;
}
.footer-privacy a:before {
  content: "|";
  position: absolute;
  right: -2px;
}
.footer-privacy a:last-child:before {
  content: "";
}

.mobile-menu-container {
  padding: 42px 0px 0px 0px;
}
.mobile-menu-container .footer-menu-accordion-mobile ul {
  padding: 0px;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  list-style: none;
}
.mobile-menu-container .footer-menu-accordion-mobile ul li {
  padding: 10px 0px;
}
.mobile-menu-container .footer-menu-accordion-mobile ul li:last-child {
  padding-bottom: 0px;
}
.mobile-menu-container .footer-menu-accordion-mobile ul li a {
  color: #3C3737;
}

a.email-link {
  color: #3C3737;
}
a.email-link:hover, a.email-link:active {
  text-decoration: underline;
}

.flex-mobile-connect-us {
  margin: 40px 16px 38px;
}
.flex-mobile-connect-us .text_connect_us {
  font-size: 32px;
  font-size: 2rem;
  line-height: 40px;
  font-weight: 600;
  magin-bottom: 16px;
  color: #3c3737;
  text-align: center;
}
.flex-mobile-connect-us .footer_mob_qr, .flex-mobile-connect-us .footer_mob_soc {
  text-align: center;
}
.flex-mobile-connect-us .footer_mob_qr img, .flex-mobile-connect-us .footer_mob_soc img {
  width: 242px;
  max-width: 100%;
}
.flex-mobile-connect-us .page-footer__social {
  padding-top: 16px;
}

.safeguard_mob {
  text-align: left;
  margin: 45px 0px 10px;
  color: #3C3737;
}
.safeguard_mob a {
  color: #3C3737;
  text-decoration: underline;
}
.safeguard_mob p {
  font-weight: normal;
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  margin-bottom: 0px;
}
.safeguard_mob .safeguard_mob_head {
  font-weight: 600;
}
.safeguard_mob .safeguard_mob_txt {
  margin-bottom: 20px;
}
.safeguard_mob .prvt_links {
  padding-top: 8px;
  white-space: pre;
}
.safeguard_mob .nav-eim p {
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  color: #3C3737;
  padding: 10px 0 18px;
}
.safeguard_mob .nav-eim ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.safeguard_mob .nav-eim ul li a {
  font-size: 16px;
  color: #3C3737;
  text-decoration: none;
}
.safeguard_mob .nav-eim.add-space {
  margin-top: 20px;
}

.nav-eim-scl p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #3C3737;
  padding: 18px 0 10px;
}
.nav-eim-scl ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.nav-eim-scl ul li a {
  font-size: 16px;
  line-height: 6px;
  color: #3C3737;
  text-decoration: none;
}

.nav-dul-uk {
  margin-top: 10px;
}
.nav-dul-uk p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #3C3737;
  padding: 18px 0 10px;
}
.nav-dul-uk ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.nav-dul-uk ul li a {
  font-size: 16px;
  line-height: 6px;
  color: #3C3737;
  text-decoration: none;
}

.article {
  margin-bottom: 50px;
}

.article-header {
  margin-top: 0px;
  margin-bottom: 40px;
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .article-header {
    margin-top: 20px;
    display: block;
  }
}
@media screen and (max-width: 550px) {
  .article-header {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 800px) {
  .article-title {
    font-size: 32px;
    font-size: 2rem;
    line-height: 40px;
  }
}

.article-header__date {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  text-transform: uppercase;
  color: #3C3737;
  margin-bottom: 10px;
}

.article-header__nav {
  position: relative;
}
.article-header__nav > a {
  position: absolute;
  top: -20px;
}
@media screen and (max-width: 550px) {
  .article-header__nav > a {
    top: -25px;
  }
}

.news-page-title h1 {
  font-size: 56px;
  font-size: 3.5rem;
  line-height: 1;
}
.news-page-title .intro {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
}

.filter-container {
  display: flex;
}
@media screen and (max-width: 800px) {
  .filter-container.filter-container__people {
    flex-direction: column-reverse;
  }
}

.tags-container {
  display: flex;
  width: 100%;
  position: relative;
  min-height: 48px;
  font-size: 16px;
}
.tags-container.tag-container__right {
  width: auto;
  max-width: 330px;
}
.tags-container.tag-container__right .tag-filter-container {
  top: 16px;
  left: 24px;
}
@media screen and (max-width: 800px) {
  .tags-container.tag-container__right {
    max-width: unset;
    width: calc(100% - 30px);
  }
  .tags-container.tag-container__right .tag-filter-container {
    left: 15px;
  }
}
@media screen and (max-width: 800px) {
  .tags-container {
    display: block;
    min-height: 40px;
    font-size: 14px;
  }
}
.tags-container .tag-filter-container {
  width: 25%;
  max-width: 328px;
  min-width: 328px;
  list-style: none;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #E8E8E8;
  border: 1px solid #CECECE;
  border-radius: 4px;
  height: auto;
  max-height: 48px;
  transition: max-height 0.3s ease-in-out;
  z-index: 1;
  overflow: hidden;
}
.tags-container .tag-filter-container.open {
  max-height: 500px;
}
.tags-container .tag-filter-container.open .icon-chevron-down {
  transform: rotate(180deg);
}
.tags-container .tag-filter-container .tags-search {
  position: relative;
  border: 1px solid rgba(206, 206, 206, 0.7);
  background: #ffffff;
  margin: 7px;
  display: flex;
  align-items: center;
}
.tags-container .tag-filter-container .tags-search .icon-search {
  position: absolute;
  left: 8px;
}
.tags-container .tag-filter-container .tags-search input {
  border: none;
  outline: none;
  color: #3C3737;
  padding: 8px 16px 8px 32px;
  width: 100%;
  font-size: 16px;
}
.tags-container .tag-filter-container .tags-search input::-moz-placeholder {
  color: #3C3737;
}
.tags-container .tag-filter-container .tags-search input:-ms-input-placeholder {
  color: #3C3737;
}
.tags-container .tag-filter-container .tags-search input::placeholder {
  color: #3C3737;
}
@media screen and (max-width: 800px) {
  .tags-container .tag-filter-container {
    width: 100%;
    max-height: 40px;
    max-width: unset;
  }
}
.tags-container .tag-filter-trigger {
  padding: 8px 16px 8px 40px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 4px;
  cursor: pointer;
  min-height: 48px;
}
@media screen and (max-width: 800px) {
  .tags-container .tag-filter-trigger {
    min-height: 40px;
  }
}
.tags-container .tag-filter-trigger .icon-tag, .tags-container .tag-filter-trigger .icon-filter-people {
  position: absolute;
  left: 8px;
}
.tags-container .tag-filter-trigger .icon-filter-people {
  left: 12px;
}
.tags-container .tag-filter-trigger .icon-chevron-down {
  position: absolute;
  right: 20px;
  font-size: 22px;
  font-weight: bold;
  color: #D30013;
  transform: rotate(0);
  transition: transform 0.3s ease-in-out;
}
.tags-container .tag-filter {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  background-color: #E8E8E8;
  max-height: 300px;
  overflow: auto;
}
.tags-container .tag-filter li {
  width: 100%;
  display: block;
  padding: 8px 11px;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
}
.tags-container .tag-filter li:hover {
  background-color: white;
}
.tags-container .tag-filter li.active {
  background-color: #f0f0f0;
}
.tags-container .tags {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: 340px;
}
.tags-container .tags .tag-item {
  height: 48px;
  display: flex;
  align-items: center;
  font-size: 16px;
  padding-left: 48px;
  padding-right: 20px;
  border: 1px solid #CECECE;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.tags-container .tags .tag-item:hover {
  background-color: #E8E8E8;
}
.tags-container .tags .tag-item .icon-cross {
  font-size: 18px;
  color: #D30013;
  position: absolute;
  left: 15px;
  top: 15px;
}
@media screen and (max-width: 800px) {
  .tags-container .tags {
    margin-left: 0;
    padding-top: 48px;
    gap: 8px;
  }
  .tags-container .tags .tag-item {
    height: 40px;
    font-size: 14px;
    padding-left: 40px;
  }
  .tags-container .tags .tag-item .icon-cross {
    font-size: 16px;
    left: 12px;
    top: 12px;
  }
}

.article-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
  text-align: left;
}
.article-tags.full-width {
  flex-direction: row;
  display: inline-block;
}
.article-tags.full-width .tag {
  margin: 4px 2px;
}
@media screen and (max-width: 800px) {
  .article-tags.full-width {
    display: flex;
    flex-direction: column;
  }
  .article-tags.full-width .tag {
    margin: unset;
  }
}
.article-tags .tag {
  display: inline-block;
  color: #3C3737;
}
.article-tags .tag span {
  display: inline-block;
  padding: 10px 15px;
  background-color: #E8E8E8;
  border-radius: 4px;
  transtion: background-color 0.3s;
}
.article-tags .tag:hover span {
  background-color: #CACACA;
}

.author-box {
  width: 100%;
  max-width: 328px;
  display: flex;
  align-items: center;
}
.author-box img {
  width: 96px;
  height: 96px;
  background-color: grey;
}
.author-box .profile-img {
  width: 96px;
  min-width: 96px;
  height: 96px;
  background-color: #B4B4B4;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
.author-box .profile-img i {
  font-size: 22px;
  color: #3C3737;
}
.author-box .info {
  padding: 0 16px;
}
.author-box .info .name {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  margin-bottom: 4px;
}
.author-box .info .role {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
  margin-bottom: 8px;
}
.author-box .info .post-date {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
}
.author-box .info .post-date i {
  width: 18px;
  margin-right: 8px;
}

.tags-listing-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tags-listing-container .tags-trigger {
  padding: 8px 16px 8px 40px;
  margin-right: 4px;
  width: 128px;
  display: flex;
  align-items: center;
  position: relative;
  float: left;
  border-radius: 4px;
  cursor: pointer;
  height: 48px;
  background-color: #E8E8E8;
}
.tags-listing-container .tags-trigger .icon-tag {
  position: absolute;
  left: 8px;
}
.tags-listing-container .tags-trigger .icon-chevron-down {
  position: absolute;
  right: 20px;
  font-size: 22px;
  font-weight: bold;
  color: #D30013;
  transform: rotate(0);
  transition: transform 0.3s ease-in-out;
}
.tags-listing-container .tags-listing {
  padding: 0;
  margin: 8px 0;
  height: auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}
.tags-listing-container.open .tags-trigger .icon-chevron-down {
  transform: rotate(180deg);
}
.tags-listing-container.open .tags-listing {
  max-height: 500px;
}

.hero {
  position: relative;
  background: #000000 no-repeat center center;
  background-size: cover;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  display: block;
}
.hero:after {
  content: "";
  display: table;
  clear: both;
}
.main-content-inner .hero {
  max-width: 1920px;
}
.hero:before {
  content: "";
  display: block;
}
.hero.is-school {
  background: transparent no-repeat center center;
  background-size: contain;
}

.hero--l:before {
  padding-bottom: 45%;
}
@media screen and (max-width: 550px) {
  .hero--l:before {
    padding-bottom: 55%;
  }
}
@media screen and (max-width: 400px) {
  .hero--l:before {
    padding-bottom: 75%;
  }
}
.hero--l.hero--single-image:before {
  padding-bottom: 45%;
}
@media screen and (max-width: 550px) {
  .hero--l.hero--single-image:before {
    padding-bottom: 45%;
  }
}
@media screen and (max-width: 400px) {
  .hero--l.hero--single-image:before {
    padding-bottom: 45%;
  }
}

.hero--m.school-head--m:before {
  padding-bottom: 42.5%;
}
@media screen and (max-width: 550px) {
  .hero--m.school-head--m:before {
    padding-bottom: 75%;
  }
}
.hero--m:before {
  padding-bottom: 35%;
}
@media screen and (max-width: 550px) {
  .hero--m:before {
    padding-bottom: 55%;
  }
}
@media screen and (max-width: 400px) {
  .hero--m:before {
    padding-bottom: 75%;
  }
}
.hero--m.group-head--m:before {
  padding-bottom: 34%;
}
@media screen and (max-width: 550px) {
  .hero--m.group-head--m:before {
    padding-bottom: 75%;
  }
}
.hero--m.hero--single-image:before {
  padding-bottom: 45%;
}
@media screen and (max-width: 550px) {
  .hero--m.hero--single-image:before {
    padding-bottom: 45%;
  }
}
@media screen and (max-width: 400px) {
  .hero--m.hero--single-image:before {
    padding-bottom: 45%;
  }
}

.hero--video {
  cursor: pointer;
  position: relative;
}
.no-touchevents .hero--video:not(.playing):hover {
  opacity: 0.9;
}
.hero--video:before {
  background: rgba(0, 0, 0, 0.4);
  padding-bottom: 50%;
}

.hero--video__cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
}

.hero__bg-video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background-color: #000000;
}
@media screen and (max-width: 800px) {
  .hero__bg-video-container {
    background-color: transparent;
  }
}
.hero-video-disabled .hero__bg-video-container {
  display: none;
}

.hero--video__play-btn {
  position: absolute;
  right: 120px;
  bottom: 40px;
  z-index: 1;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.2;
}
@media screen and (max-width: 1600px) {
  .hero--video__play-btn {
    right: 60px;
  }
}
@media screen and (max-width: 1100px) {
  .hero--video__play-btn {
    right: 30px;
  }
}
@media screen and (max-width: 800px) {
  .hero--video__play-btn {
    right: 20px;
    bottom: 20px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 500px) {
  .hero--video__play-btn {
    right: 10px;
    bottom: 10px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2;
  }
}
.hero--video__play-btn i {
  position: relative;
  transition: right 0.3s;
  right: 0;
  -webkit-transition: right 0.3s;
  -moz-transition: right 0.3s;
}
.hero--video__play-btn i.icon-chevron-right, .hero--video__play-btn .uc-stories-details-view .uc-detail-footer i.icon-chevron-left, .uc-stories-details-view .uc-detail-footer .hero--video__play-btn i.icon-chevron-left, .hero--video__play-btn .uc-stories-details-view .uc-detail-footer i.link--emph:before, .uc-stories-details-view .uc-detail-footer .hero--video__play-btn i.link--emph:before, .hero--video__play-btn .js-news-events-slick i.slick-arrow.slick-prev, .js-news-events-slick .hero--video__play-btn i.slick-arrow.slick-prev, .hero--video__play-btn .js-news-events-slick i.slick-arrow.slick-next, .js-news-events-slick .hero--video__play-btn i.slick-arrow.slick-next, .hero--video__play-btn i.icon-chevron-left, .hero--video__play-btn i.link--emph:before, .hero--video__play-btn .breadcrumb i.breadcrumb-item:before, .breadcrumb .hero--video__play-btn i.breadcrumb-item:before {
  bottom: -4px;
}
@media screen and (max-width: 800px) {
  .hero--video__play-btn i {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.2;
  }
  .hero--video__play-btn i.icon-chevron-right, .hero--video__play-btn .uc-stories-details-view .uc-detail-footer i.icon-chevron-left, .uc-stories-details-view .uc-detail-footer .hero--video__play-btn i.icon-chevron-left, .hero--video__play-btn .uc-stories-details-view .uc-detail-footer i.link--emph:before, .uc-stories-details-view .uc-detail-footer .hero--video__play-btn i.link--emph:before, .hero--video__play-btn .js-news-events-slick i.slick-arrow.slick-prev, .js-news-events-slick .hero--video__play-btn i.slick-arrow.slick-prev, .hero--video__play-btn .js-news-events-slick i.slick-arrow.slick-next, .js-news-events-slick .hero--video__play-btn i.slick-arrow.slick-next, .hero--video__play-btn i.icon-chevron-left, .hero--video__play-btn i.link--emph:before, .hero--video__play-btn .breadcrumb i.breadcrumb-item:before, .breadcrumb .hero--video__play-btn i.breadcrumb-item:before {
    bottom: -1px;
  }
}
@media screen and (max-width: 500px) {
  .hero--video__play-btn i {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1;
  }
}
.hero--video__play-btn:hover i {
  right: -5px;
}

.hero__bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .hero__bg-video {
    display: none;
  }
}

.hero--video__content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: -1;
  transition: 0s 0.6s z-index, 0.6s opacity;
}
.hero--video.playing .hero--video__content {
  opacity: 1;
  z-index: 1;
  transition: 0s z-index, 0.6s opacity;
}

.hero--video__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translate(-50%, -50%);
  /* IE 10, Fx 16+, Op 12.1+ */
  opacity: 1;
  z-index: 1;
  transition: 0s 0.3s z-index, 0.3s opacity;
}
.playing .hero--video__icon {
  opacity: 0;
  z-index: -1;
  transition: 0s z-index, 0.3s opacity;
}

.youku--video__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 20px;
  background: azure;
  border-radius: 50%;
  opacity: 0;
  z-index: 1;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translate(-50%, -50%);
  /* IE 10, Fx 16+, Op 12.1+ */
  transition: opacity 0.3s, z-index 0s 0.3s;
}
.playing .youku--video__icon {
  opacity: 1;
  transition: opacity 0.3s, z-index 0s;
}

.youku-player, .youtube-player {
  height: 100%;
  width: 100%;
}

.hero--title {
  color: #ffffff;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 56px;
  font-size: 3.5rem;
  line-height: 58px;
}
body.zh-Hans .hero--title {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
body.my .hero--title {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
@media screen and (max-width: 1100px) {
  .hero--title {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1;
  }
}
@media screen and (max-width: 800px) {
  .hero--title {
    letter-spacing: -2px;
    font-size: 32px;
    font-size: 2rem;
    line-height: 1;
  }
}
@media screen and (max-width: 500px) {
  .hero--title {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1;
  }
}

.hero__content {
  position: absolute;
  left: 0;
  color: #ffffff;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 56px;
  font-size: 3.5rem;
  line-height: 58px;
}
body.zh-Hans .hero__content {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
body.my .hero__content {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
.normal-hero--m .hero__content {
  font-size: 128px;
  font-size: 8rem;
  line-height: 1;
}
@media screen and (max-width: 1100px) {
  .hero__content {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1;
  }
}
@media screen and (max-width: 800px) {
  .hero__content {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 500px) {
  .hero__content {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.2;
  }
}
.block-container .hero__content {
  font-size: 64px;
  font-size: 4rem;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .block-container .hero__content {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.2;
  }
}

.hero__content--blue {
  background-color: rgba(0, 110, 195, 0.6);
}
.hero__content--blue:after {
  content: "";
  position: absolute;
  right: -15px;
  bottom: -15px;
  width: 60%;
  height: 80%;
  z-index: -1;
  display: block;
  border-bottom: 15.5px solid transparent;
  border-right: 15.5px solid transparent;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#006ec3+57,006ec3+100&0+57,0.5+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  -o-border-image: linear-gradient(165deg, rgba(0, 110, 195, 0) 57%, rgba(0, 110, 195, 0.5) 100%);
     border-image: linear-gradient(165deg, rgba(0, 110, 195, 0) 57%, rgba(0, 110, 195, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  border-image-slice: 1;
}
.hero__content--blue:before {
  content: "";
  position: absolute;
  left: 0;
  top: -15px;
  width: 60%;
  height: 80%;
  z-index: -1;
  display: block;
  border-top: 15.5px solid transparent;
  border-left: 15.5px solid transparent;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#006ec3+57,006ec3+100&0+57,0.5+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  -o-border-image: linear-gradient(340deg, rgba(0, 110, 195, 0) 57%, rgba(0, 110, 195, 0.5) 100%);
     border-image: linear-gradient(340deg, rgba(0, 110, 195, 0) 57%, rgba(0, 110, 195, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  border-image-slice: 1;
}

.hero__content--inner, .hero__content--inner-minimal {
  top: 50%;
  transform: translateY(-55%);
  padding: 0px 64px;
  width: 100%;
}
.hero__content--inner:before, .hero__content--inner-minimal:before {
  border-left: none;
}
@media screen and (max-width: 1600px) {
  .hero__content--inner, .hero__content--inner-minimal {
    padding-left: 60px;
  }
}
@media screen and (max-width: 1100px) {
  .hero__content--inner, .hero__content--inner-minimal {
    padding-left: 30px;
  }
}
@media screen and (max-width: 550px) {
  .hero__content--inner, .hero__content--inner-minimal {
    max-width: 100%;
  }
}
@media screen and (max-width: 400px) {
  .hero__content--inner, .hero__content--inner-minimal {
    padding-left: 0;
    padding-right: 10px;
  }
}

.normal-hero--m .hero__content--inner-minimal {
  padding: 0;
  width: 100%;
  max-width: 100%;
  left: auto;
  bottom: 25px;
  transform: none;
  top: unset;
}

.hero__content--outer {
  bottom: 25px;
  padding: 0px 30px;
  margin-left: 30px;
  z-index: 1;
  max-width: 70%;
  min-width: 35%;
}
.hero__content--outer:before {
  left: -15px;
}
@media (min-width: 1600px) {
  .hero__content--outer {
    padding: 0px 80px;
  }
}
@media screen and (max-width: 1100px) {
  .hero__content--outer {
    margin-left: 0;
    max-width: 80%;
  }
}
@media screen and (max-width: 800px) {
  .hero__content--outer {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 1.2;
    bottom: 0;
  }
}
@media screen and (max-width: 550px) {
  .hero__content--outer {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 500px) {
  .hero__content--outer {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 400px) {
  .hero__content--outer {
    margin-left: 15px;
    max-width: 100%;
    margin-right: 15px;
    padding: 0px;
  }
}

.hero__content--outer-limited {
  max-width: 75%;
}
@media screen and (max-width: 800px) {
  .hero__content--outer-limited {
    font-size: 48px;
    font-size: 3rem;
    line-height: 0.9;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 500px) {
  .hero__content--outer-limited {
    max-width: 60%;
    padding-bottom: 0;
    margin-bottom: 30px;
  }
}

.hero__content__title--small {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .hero__content__title--small {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 400px) {
  .hero__content__title--small {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.2;
  }
}

.hero__logo-cta {
  background: url("/images/dulwich-college-logo.png") no-repeat center center;
  background-size: contain;
  display: block;
  width: 100%;
  max-width: 270px;
  outline: none;
  margin: 0;
  border: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.hero__logo-cta:before {
  content: "";
  display: block;
  padding-bottom: 15.56%;
}

.covid-response {
  width: 100%;
  height: 72px;
  display: none;
  align-items: center;
  background-color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 40px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 800px) {
  .covid-response {
    height: auto;
    padding: 12px 40px 12px 16px;
  }
}
.covid-response.open {
  display: flex;
}
.covid-response a.covid-response-inner {
  display: flex;
  align-items: center;
  color: #3C3737;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
  height: 100%;
  min-width: 200px;
}
.covid-response a.covid-response-inner:hover {
  color: #D30013;
}
.covid-response i.icon-chevron-right, .covid-response .uc-stories-details-view .uc-detail-footer i.icon-chevron-left, .uc-stories-details-view .uc-detail-footer .covid-response i.icon-chevron-left, .covid-response .uc-stories-details-view .uc-detail-footer i.link--emph:before, .uc-stories-details-view .uc-detail-footer .covid-response i.link--emph:before, .covid-response .js-news-events-slick i.slick-arrow.slick-prev, .js-news-events-slick .covid-response i.slick-arrow.slick-prev, .covid-response .js-news-events-slick i.slick-arrow.slick-next, .js-news-events-slick .covid-response i.slick-arrow.slick-next, .covid-response i.icon-chevron-left, .covid-response i.link--emph:before, .covid-response .breadcrumb i.breadcrumb-item:before, .breadcrumb .covid-response i.breadcrumb-item:before {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  color: #D30013;
  margin-right: 24px;
  padding-bottom: 4px;
}
@media screen and (max-width: 800px) {
  .covid-response i.icon-chevron-right, .covid-response .uc-stories-details-view .uc-detail-footer i.icon-chevron-left, .uc-stories-details-view .uc-detail-footer .covid-response i.icon-chevron-left, .covid-response .uc-stories-details-view .uc-detail-footer i.link--emph:before, .uc-stories-details-view .uc-detail-footer .covid-response i.link--emph:before, .covid-response .js-news-events-slick i.slick-arrow.slick-prev, .js-news-events-slick .covid-response i.slick-arrow.slick-prev, .covid-response .js-news-events-slick i.slick-arrow.slick-next, .js-news-events-slick .covid-response i.slick-arrow.slick-next, .covid-response i.icon-chevron-left, .covid-response i.link--emph:before, .covid-response .breadcrumb i.breadcrumb-item:before, .breadcrumb .covid-response i.breadcrumb-item:before {
    margin-right: 20px;
  }
}
.covid-response i.icon-cross {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}
.covid-response i.icon-cross:hover {
  color: #D30013;
}
@media screen and (max-width: 800px) {
  .covid-response i.icon-cross {
    right: 14px;
  }
}

.banner-watchvideo {
  position: absolute;
  right: 0;
  bottom: 0;
  float: right;
}
.banner-watchvideo .banner-watchvideo-link {
  display: inline-block;
  float: right;
}
@media screen and (max-width: 800px) {
  .banner-watchvideo .banner-watchvideo-group-link {
    display: inline-block;
    position: relative;
    left: 8px;
    bottom: 16px;
    float: left;
  }
}
.banner-watchvideo .banner-watchvideo-text {
  background-color: #ffffff;
  padding: 16px 24px 16px 16px;
  height: 56px;
  box-sizing: border-box;
  border-radius: 8px 8px 0px 0px;
  text-align: center;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 550px) {
  .banner-watchvideo .banner-watchvideo-text {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
}
.banner-watchvideo .banner-watchvideo-text .icon-play-watch {
  color: #D30013;
  padding-right: 20px;
  padding-left: 8px;
  font-size: 14px;
}
@media screen and (max-width: 550px) {
  .banner-watchvideo .banner-watchvideo-text .icon-play-watch {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media screen and (max-width: 800px) {
  .banner-watchvideo .banner-watchvideo-text .icon-play-watch-group {
    color: #ffffff;
  }
}
.banner-watchvideo .banner-watchvideo-text span {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19px;
  color: #D30013;
  text-transform: uppercase;
  font-weight: 600;
}
@media screen and (max-width: 800px) {
  .banner-watchvideo .banner-watchvideo-text-group {
    border-radius: 50%;
    background-color: #D30013;
    width: 40px;
    height: 40px;
    padding: 8px;
  }
}

.hero-banner-content .page-desc {
  margin-bottom: 16px;
  margin-top: 8px;
}
.hero-banner-content .page-desc, .hero-banner-content .find-school {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  text-transform: none;
  font-weight: normal;
}
.hero-banner-content .get-started-text {
  max-width: 240px;
  width: 100%;
  position: relative;
  top: -10px;
}
@media screen and (max-width: 1100px) {
  .hero-banner-content .get-started-text {
    top: 8px;
  }
}
.hero-banner-content .map-down-wrapper {
  position: relative;
  width: 240px;
  background: #ffffff;
  border-radius: 4px;
  border: none;
  margin-top: 10px;
  height: auto;
}
.hero-banner-content .map-down-wrapper .select-prospective {
  font-size: 16px;
  font-size: 1rem;
  line-height: 14px;
  background-color: #ffffff;
  border-style: none;
  border-radius: 4px;
  padding: 0;
  width: 100%;
  position: relative;
  margin: 0;
  font-weight: normal;
  text-shadow: none;
}
.hero-banner-content .map-down-wrapper .select-prospective .parent {
  list-style: none;
  position: relative;
  padding: 16px 0px;
  text-align: left;
  z-index: 9;
  cursor: pointer;
}
.hero-banner-content .map-down-wrapper .select-prospective .parent .icon-map-location:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0px;
  bottom: 0;
  padding: 0 1em;
  pointer-events: none;
  cursor: pointer;
  color: #3C3737;
  font-size: 18px;
}
.hero-banner-content .map-down-wrapper .select-prospective .parent:after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0px;
  bottom: 0;
  padding: 0 1em;
  background-image: url("/images/logos/union.png");
  background-repeat: no-repeat;
  pointer-events: none;
  cursor: pointer;
}
.hero-banner-content .map-down-wrapper .select-prospective .parent span {
  font-size: 16px;
  font-size: 1rem;
  line-height: 14px;
  padding-left: 50px;
  color: #3C3737;
}
.hero-banner-content .map-down-wrapper .select-prospective .parent .sub-drop {
  display: none;
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  top: 40px;
  text-align: left;
  padding: 0;
}
.hero-banner-content .map-down-wrapper .select-prospective .parent .sub-drop a {
  font-size: 16px;
  font-size: 1rem;
  line-height: 14px;
  color: #3C3737;
  display: block;
  padding: 11px 20px;
}

.overflow_auto_btn {
  overflow: auto;
}

@media screen and (max-width: 800px) {
  .group-head--m .hero__content--inner-minimal {
    padding-left: 0px;
  }
}

.hero-btn-get-started {
  display: inline-block;
  margin-top: 16px;
}

.block-container {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
}
@media screen and (max-width: 1600px) {
  .school-page .block-container.container--s.l-body-copy, .school-page .block-container.l-body-copy.title-big-container {
    padding-left: 0px !important;
  }
}
@media screen and (max-width: 1366px) {
  .school-page .block-container.container--s, .school-page .block-container.title-big-container {
    max-width: 960px;
  }
  .school-page .block-container.container--s.l-body-copy, .school-page .block-container.l-body-copy.title-big-container {
    max-width: 1032px;
    padding-left: 0px !important;
  }
}
@media screen and (max-width: 1279px) {
  .school-page .block-container.container--s, .school-page .block-container.title-big-container {
    max-width: 1032px;
  }
}
.article .block-container:first-child {
  margin-top: unset;
}
@media screen and (max-width: 800px) {
  .block-container {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px;
  }
}
.block-container:last-child {
  margin-bottom: 50px;
}
@media screen and (max-width: 800px) {
  .block-container:last-child {
    margin-bottom: 30px;
  }
}
.block-container table {
  width: 100% !important;
}
.block-container table tr {
  margin-top: 15px;
}
.block-container table td {
  padding: 15px;
  vertical-align: unset;
}
@media screen and (max-width: 800px) {
  .block-container table tr {
    padding: 0;
  }
  .block-container table td {
    max-width: 100%;
    margin-top: 15px;
    padding: 0;
  }
}
.block-container .l-grid-50 h2 {
  padding: 20px 0px;
}
.block-container .l-grid-50 ol {
  list-style: auto;
  margin: 10px 20px;
}
.block-container .l-grid-50 ul {
  list-style: disc;
  margin: 16px 20px;
}
.block-container .l-grid-50 ul li {
  margin: 0;
}
.block-container .l-grid-50 ul .nested-list {
  padding: 0 56px;
  margin-bottom: 20px;
  list-style: circle;
}
@media screen and (max-width: 800px) {
  .block-container .l-grid-50 ul .nested-list {
    padding: 0 26px;
  }
}
.block-container .accordion__content__inner ol {
  list-style: auto;
  margin: 0 24px;
}
.block-container .accordion__content__inner ol li {
  line-height: 30px;
  font-size: 16px;
}
.block-container .accordion__content__inner h2 {
  padding: 20px 0px;
}
.block-container .accordion__content__inner ul {
  list-style: disc;
  margin: 0 24px;
}
.block-container .accordion__content__inner ul li {
  line-height: 30px;
  font-size: 16px;
}
.block-container .accordion__content__inner ul li {
  margin: 16px 0;
}
.block-container .accordion__content__inner ul li:first-child {
  margin: unset;
}
.block-container .accordion__content__inner ul .nested-list {
  padding: 0 56px;
  margin-bottom: 20px;
  list-style: circle;
}
@media screen and (max-width: 800px) {
  .block-container .accordion__content__inner ul .nested-list {
    padding: 0 26px;
  }
}
.block-container .two-col-copy-image-container h2 {
  padding: 20px 0px;
}
.block-container .two-col-copy-image-container ol {
  list-style: auto;
  margin: 0 24px;
}
.block-container .two-col-copy-image-container ol li {
  line-height: 30px;
  font-size: 16px;
}
.block-container .two-col-copy-image-container ul {
  list-style: auto;
  margin: 0 24px;
  margin-bottom: 16px;
}
.block-container .two-col-copy-image-container ul li {
  line-height: 30px;
  font-size: 16px;
}
.block-container .two-col-copy-image-container ul li {
  margin: 0;
}
.block-container .two-col-copy-image-container ul li:first-child {
  margin: unset;
}
.block-container .two-col-copy-image-container ul .nested-list {
  padding: 0 56px;
  margin-bottom: 20px;
  list-style: circle;
}
@media screen and (max-width: 800px) {
  .block-container .two-col-copy-image-container ul .nested-list {
    padding: 0 26px;
  }
}

/*
.block-file-download {
  position: relative;
  background: color(white);
  padding: 30px;

  @include media-query('phablet') {
    padding: 0;
  }
}

.block--left {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: calc(100% - 128px);

  @include media-query('phablet') {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    height: 70px;
  }
}

.block--left__icon {
  @include flex-font-size(36px, 1);
  color: color(white);
  background: color(red);

  &:before {
    position: absolute;
    top: 50%;
    left: 50%;
    @include transform(translate(-50%, -50%));
  }
}

.block--right {
  margin-left: 128px;

  @include media-query('phablet') {
    margin-left: 0;
    padding: 15px;
  }
}*/
.custom-bg-block {
  padding: 50px;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .custom-bg-block {
    padding: 50px 0;
  }
}
@media screen and (max-width: 800px) {
  .custom-bg-block {
    padding: 50px 0;
  }
}
.custom-bg-block .triangle-label {
  position: absolute;
  transition: 0.3s;
}
.custom-bg-block .triangle-label.right-top-label {
  top: 0px;
  right: 0px;
  border-right: 70px solid #FFF;
  border-bottom: 70px solid transparent;
}
.custom-bg-block .triangle-label.left-bottom-label {
  bottom: 0px;
  left: 0px;
  border-left: 70px solid #FFF;
  border-top: 70px solid transparent;
}
.block-right-cta {
  padding-left: 32px;
  display: inline-flex;
  align-items: center;
  padding-top: 4px;
  min-width: 200px;
}

.block-copy h2 {
  padding: 20px 0px;
}
.block-copy p {
  word-break: break-word;
}
.block-copy ol {
  padding: 0 56px;
  margin-bottom: 20px;
  list-style: auto;
}
@media screen and (max-width: 800px) {
  .block-copy ol {
    padding: 0 26px;
  }
}
.block-copy ul {
  padding: 0 56px;
  margin-bottom: 20px;
  list-style: disc;
}
@media screen and (max-width: 800px) {
  .block-copy ul {
    padding: 0 26px;
  }
}
.block-copy ul .nested-list {
  padding: 0 56px;
  margin-bottom: 20px;
  list-style: circle;
}
@media screen and (max-width: 800px) {
  .block-copy ul .nested-list {
    padding: 0 26px;
  }
}

.slick-list {
  overflow: inherit;
}

.slider-wrap-fixed {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
}

.slider-wrap, .slider {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  display: block;
}

.slider-wrap {
  margin-bottom: 50px;
}
@media screen and (max-width: 550px) {
  .slider-wrap {
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
}

.slide {
  outline: none;
}

.slider {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.slider .slide {
  display: none;
}
.slider .slide:first-child {
  display: block;
}
.slider.slick-initialized .slide {
  display: block;
}

.slider__nav {
  text-align: right;
  padding-top: 10px;
  padding-bottom: 10px;
}

.slider__count {
  display: inline-block;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
  min-width: 50px;
}
body.zh-Hans .slider__count {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
body.my .slider__count {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
body.zh-Hans .slider__count, body.my .slider__count {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}

.slick-prev,
.slick-next {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-size: 0px;
  text-align: center;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before,
.slick-next:hover:before {
  transition: opacity 0.3s;
  opacity: 0.6;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  cursor: not-allowed;
  opacity: 0.3;
}
.slick-prev:before,
.slick-next:before {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 30px;
  color: #000000;
}

.slide__body {
  margin-top: 20px;
}

.slide__img > img {
  margin-left: auto;
  margin-right: auto;
}

.lightbox-lite--slider .lightbox-lite__box {
  height: 90%;
  width: 75%;
  padding: 40px 100px;
}
@media screen and (max-width: 1279px) {
  .lightbox-lite--slider .lightbox-lite__box {
    padding: 30px 85px;
    width: 80%;
  }
}
@media screen and (max-width: 800px) {
  .lightbox-lite--slider .lightbox-lite__box {
    padding: 30px 65px;
    width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .lightbox-lite--slider .lightbox-lite__box {
    height: 80%;
    padding: 30px 40px;
    width: 95%;
  }
}
.lightbox-lite--slider .slick-list {
  overflow: hidden;
}
.lightbox-lite--slider .slider__next, .lightbox-lite--slider .slider__previous {
  height: 50px;
  width: 50px;
  line-height: 50px;
  position: absolute;
  top: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(-50%);
  /* IE 10, Fx 16+, Op 12.1+ */
}
.lightbox-lite--slider .slider__next:before, .lightbox-lite--slider .slider__previous:before {
  font-size: 48px;
  font-size: 3rem;
  line-height: 50px;
}
@media screen and (max-width: 800px) {
  .lightbox-lite--slider .slider__next, .lightbox-lite--slider .slider__previous {
    height: 40px;
    width: 40px;
    line-height: 40px;
  }
  .lightbox-lite--slider .slider__next:before, .lightbox-lite--slider .slider__previous:before {
    font-size: 38px;
    font-size: 2.375rem;
    line-height: 40px;
  }
}
@media screen and (max-width: 500px) {
  .lightbox-lite--slider .slider__next, .lightbox-lite--slider .slider__previous {
    height: 30px;
    width: 30px;
    line-height: 30px;
  }
  .lightbox-lite--slider .slider__next:before, .lightbox-lite--slider .slider__previous:before {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 30px;
  }
}
.lightbox-lite--slider .slider__next {
  right: 15px;
}
@media screen and (max-width: 500px) {
  .lightbox-lite--slider .slider__next {
    right: 5px;
  }
}
.lightbox-lite--slider .slider__previous {
  left: 15px;
}
@media screen and (max-width: 500px) {
  .lightbox-lite--slider .slider__previous {
    left: 5px;
  }
}

.achieve-slider {
  margin: 20px auto 90px;
}
.achieve-slider .slider-header-event {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.achieve-slider .slider-header-event .slider-head-left-sec {
  width: unset;
}
.achieve-slider .slider-header-event .slider-head-left-sec .block-title {
  display: inline-block;
  border-bottom: 4px solid #D30013;
}
@media screen and (max-width: 550px) {
  .achieve-slider .slider-header-event .slider-head-left-sec .block-title {
    font-size: 24px !important;
    border-bottom: unset;
    text-decoration: underline;
    -webkit-text-decoration-color: #D30013;
            text-decoration-color: #D30013;
    text-decoration-thickness: 3px;
  }
}
.achieve-slider .slider-header-event .slider-head-right-sec {
  width: unset;
  padding-right: 16px;
}
.achieve-slider .slick-slider .slick-track, .achieve-slider .slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
  position: relative;
  left: 0;
}
@media screen and (max-width: 476px) {
  .achieve-slider .slick-slider .slick-track, .achieve-slider .slick-slider .slick-list {
    left: -8px;
  }
}
@media screen and (max-width: 500px) {
  .achieve-slider .slider-head-right-sec {
    display: none;
  }
}
.achieve-slider .responsive-slider {
  margin: 44px 0 0 15px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .achieve-slider .responsive-slider {
    margin: 8px 0 0 18px;
  }
}
@media only screen and (max-width: 1380px) {
  .achieve-slider.is-school {
    padding: 0 34px;
  }
}
@media only screen and (max-width: 1250px) {
  .achieve-slider.is-school {
    padding: unset;
  }
}
@media screen and (max-width: 800px) {
  .achieve-slider {
    margin: 20px auto 40px;
  }
}

.achieve-section .l-grid__item-20 {
  width: 0%;
}
.achieve-section .l-inset-l-left {
  padding-left: unset;
}

.slick-slider-ev .slick-track {
  padding: 30px 0;
}
.slick-slider-ev #yr-anniversary-slider {
  width: 100%;
  display: flex;
  justify-content: center;
}
.slick-slider-ev .slick-slider {
  width: 100%;
}
.slick-slider-ev .slick-slider img {
  width: 100%;
  height: auto;
}
.slick-slider-ev .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 40px;
  margin: 0;
  list-style-type: none;
}
@media screen and (max-width: 800px) {
  .slick-slider-ev .slick-dots {
    padding: 0px 14px;
  }
}
@media screen and (max-width: 460px) {
  .slick-slider-ev .slick-dots {
    padding: 24px 10px 0;
  }
}
.slick-slider-ev .slick-dots > li {
  flex: 10%;
}
.slick-slider-ev .slick-dots > li.slick-active button {
  background: #D30013;
}
.slick-slider-ev .slick-dots > li button {
  border: 0;
  background: #E8E8E8;
  display: block;
  width: 100%;
  height: 4px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  cursor: pointer;
}

.slide-overlay {
  position: relative;
}
.slide-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: #000000;
  opacity: 0.5;
  z-index: 5;
}
.slide-overlay .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #D30013;
  border-top-color: transparent;
  -webkit-animation: spin 1s infinite linear;
          animation: spin 1s infinite linear;
  z-index: 6;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.box {
  display: block;
  position: relative;
}

.box--padded {
  padding: 60px 40px;
}
@media screen and (max-width: 550px) {
  .box--padded {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 400px) {
  .box--padded {
    padding: 30px 15px;
  }
}

.box--clickable {
  cursor: pointer;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transition: opacity 0.3s;
}
.box--clickable > img {
  border: none;
  outline: none;
}
.no-touchevents .box--clickable:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  opacity: 0.9;
}

[class^=box--aspect-]:before, [class*=" box--aspect-"]:before {
  content: "";
  display: block;
}

.box--aspect-ratio-75:before {
  padding-bottom: 75%;
}

@media screen and (max-width: 550px) {
  .box--aspect-ratio-60--phablet:before {
    padding-bottom: 60%;
  }
}

.box--image {
  background: #000000 no-repeat center center;
  background-size: cover;
}

.box__content {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(211, 0, 19, 0.7);
}

.box__copy {
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 10px;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(-50%);
  /* IE 10, Fx 16+, Op 12.1+ */
  color: #ffffff;
}

.box__title {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.box--red {
  color: #ffffff;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
  background-color: rgba(217, 39, 31, 0.6);
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.2;
  padding: 30px 80px;
  z-index: 1;
}
body.zh-Hans .box--red {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
body.my .box--red {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
@media screen and (max-width: 800px) {
  .box--red {
    font-size: 34px;
    font-size: 2.125rem;
    line-height: 1.2;
  }
}
.box--red:after {
  content: "";
  position: absolute;
  right: -15px;
  bottom: -15px;
  width: 60%;
  height: 80%;
  z-index: -1;
  display: block;
  border-bottom: 15.5px solid transparent;
  border-right: 15.5px solid transparent;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d8827f+57,d9271f+100&0+57,0.5+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  -o-border-image: linear-gradient(165deg, rgba(216, 130, 127, 0) 57%, rgba(217, 39, 31, 0.5) 100%);
     border-image: linear-gradient(165deg, rgba(216, 130, 127, 0) 57%, rgba(217, 39, 31, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  border-image-slice: 1;
}
.box--red:before {
  content: "";
  position: absolute;
  left: 0;
  top: -15px;
  width: 60%;
  height: 80%;
  z-index: -1;
  display: block;
  border-top: 15.5px solid transparent;
  border-left: 15.5px solid transparent;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d8827f+57,d9271f+100&0+57,0.5+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  -o-border-image: linear-gradient(340deg, rgba(216, 130, 127, 0) 57%, rgba(217, 39, 31, 0.5) 100%);
     border-image: linear-gradient(340deg, rgba(216, 130, 127, 0) 57%, rgba(217, 39, 31, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  border-image-slice: 1;
}
.box--red:before {
  left: -15px;
}

.box--centered {
  display: inline-block;
  margin: 0 auto;
}

.flex-box {
  display: flex;
  flex-flow: column;
  height: 100%;
}

.flex-box__header {
  flex: 0 1 auto;
}

.flex-box__content {
  flex: 1 1 auto;
}

.card-block {
  background: #ffffff;
  padding: 50px 50px 0 50px;
}
@media screen and (max-width: 1100px) {
  .card-block {
    padding: 30px 30px 0 30px;
  }
}
@media screen and (max-width: 400px) {
  .card-block {
    padding: 25px 25px 0 25px;
  }
}

.card {
  display: block;
  position: relative;
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  padding: 16px;
  color: #3C3737;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  border-radius: 2px;
  transition: box-shadow 0.5s;
}
.card:hover {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.3);
}
.card:hover .btn--link--base:before, .card:hover .accordion__tab__copy__link:before {
  width: 100%;
}
.card:hover .btn--link--base:after, .card:hover .accordion__tab__copy__link:after {
  content: "";
  font-size: 12px;
  padding-left: 10px;
  top: 1px;
}

.card--cta {
  padding-bottom: 40px;
}
@media screen and (max-width: 1100px) {
  .card--cta {
    padding-bottom: 30px;
  }
}
.card--cta .btn--link--base, .card--cta .accordion__tab__copy__link {
  position: absolute;
  bottom: 4px;
  text-transform: unset;
}
.card--cta .btn--link--base:before, .card--cta .accordion__tab__copy__link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #D30013;
  left: 0;
  bottom: -2px;
  overflow: hidden;
  transition: width 0.3s;
}
@media screen and (max-width: 800px) {
  .card--cta .btn--link--base:before, .card--cta .accordion__tab__copy__link:before {
    transition: unset;
  }
}

.card__header {
  display: block;
  overflow: hidden;
  min-height: 100px;
  text-align: center;
}

.card__header--fixed {
  position: relative;
  background: #3C3737;
}
.card__header--fixed:before {
  content: "";
  display: block;
  padding-bottom: 66%;
}

.card__header__box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.card__header__box__image {
  background: no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  transition: all 0.3s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: scale(1);
  /* IE 10, Fx 16+, Op 12.1+ */
}
.no-touchevents a.card:hover .card__header__box__image, .no-touchevents a.card__header:hover .card__header__box__image {
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: scale(1.1);
  /* IE 10, Fx 16+, Op 12.1+ */
}

.card__image {
  border: none;
  outline: none;
  width: 100%;
  transition: all 0.3s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.no-touchevents a.card:hover .card__image, .no-touchevents a.card__header:hover .card__image {
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: scale(1.1);
  /* IE 10, Fx 16+, Op 12.1+ */
}

.card__body {
  padding: 16px 8px 0;
  overflow: hidden;
}

.card__body--compressed {
  padding: 10px 20px 10px 0;
}

.card__title {
  color: #3C3737;
  padding-bottom: 5px;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.1;
}
@media screen and (max-width: 1600px) {
  .card__title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.1;
  }
}
@media screen and (max-width: 1100px) {
  .card__title {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.1;
  }
}

.card__subtitle {
  color: #3C3737;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.1;
}

.card__info {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  color: #009dd5;
  padding-bottom: 3px;
}

.card__author {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  color: #777777;
  padding-top: 3px;
}

.card__desc {
  height: 96px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin: 16px 0 0;
}

.card__cta {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.card--big.card--cta {
  padding-bottom: 60px;
}
@media screen and (max-width: 1100px) {
  .card--big.card--cta {
    padding-bottom: 60px;
  }
}

.visual-card {
  height: 450px;
  position: relative;
}

.visual-card__box {
  height: 100%;
  padding: 30px;
}
@media screen and (max-width: 550px) {
  .visual-card__box {
    padding: 15px;
  }
}

.visual-card__box-left {
  width: 45%;
  float: left;
  display: inline-block;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 1100px) {
  .visual-card__box-left {
    width: 50%;
  }
}
@media screen and (max-width: 550px) {
  .visual-card__box-left {
    float: none;
    width: 100%;
    height: 80%;
  }
}

.visual-card__box-right {
  width: 60%;
  float: left;
  display: inline-block;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 1100px) {
  .visual-card__box-right {
    width: 50%;
  }
}
@media screen and (max-width: 550px) {
  .visual-card__box-right {
    float: none;
    width: 100%;
    height: 20%;
  }
}

.visual-card__box-top {
  position: relative;
  height: 60%;
  padding: 30px 30px 0px 30px;
}
@media screen and (max-width: 800px) {
  .visual-card__box-top {
    height: 65%;
  }
}
@media screen and (max-width: 550px) {
  .visual-card__box-top {
    padding: 15px 15px 0px 15px;
  }
}

.visual-card__box-bottom {
  position: relative;
  height: 40%;
  padding: 0px 30px 30px 30px;
}
@media screen and (max-width: 800px) {
  .visual-card__box-bottom {
    height: 35%;
  }
}
@media screen and (max-width: 550px) {
  .visual-card__box-bottom {
    padding: 0px 15px 15px 15px;
  }
}

.visual-card__box-inner {
  position: relative;
  height: 100%;
}

.visual-card__content--bottom {
  position: absolute;
  bottom: 0;
}

.visual-card__content--top {
  position: absolute;
  top: 0;
}

.visual-card__content--bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 550px) {
  .visual-card__content--bottom-right {
    right: inherit;
  }
}

.visual-card--large {
  height: 550px;
  background-color: #ffffff;
}
@media screen and (max-width: 1100px) {
  .visual-card--large {
    height: 480px;
  }
}
@media screen and (max-width: 800px) {
  .visual-card--large {
    height: 700px;
  }
}
@media screen and (max-width: 550px) {
  .visual-card--large {
    height: 600px;
  }
}

.visual-card--large__box-left {
  width: 60%;
  float: left;
  display: inline-block;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .visual-card--large__box-left {
    float: none;
    width: 100%;
    height: 65%;
  }
}
@media screen and (max-width: 500px) {
  .visual-card--large__box-left {
    height: 60%;
  }
}
@media screen and (max-width: 550px) {
  .visual-card--large__box-left {
    height: 55%;
  }
}

.visual-card--large__box-right {
  width: 40%;
  float: left;
  display: inline-block;
  position: relative;
  height: 100%;
  padding: 30px 40px;
}
@media screen and (max-width: 800px) {
  .visual-card--large__box-right {
    float: none;
    width: 100%;
    height: 35%;
  }
}
@media screen and (max-width: 500px) {
  .visual-card--large__box-right {
    height: 40%;
    padding: 30px;
  }
}
@media screen and (max-width: 550px) {
  .visual-card--large__box-right {
    height: 45%;
  }
}

.visual-card--large__content {
  position: absolute;
  top: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(-50%);
  /* IE 10, Fx 16+, Op 12.1+ */
}
@media screen and (max-width: 800px) {
  .visual-card--large__content {
    top: inherit;
    bottom: 0;
    /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
    /* IE 9 */
    transform: none;
    /* IE 10, Fx 16+, Op 12.1+ */
  }
}

.visual-card--large__box-inner {
  position: relative;
  height: 100%;
}

.h-card {
  background: #ffffff;
  padding: 30px;
  position: relative;
  min-height: 220px;
  height: 100%;
}

.h-card--clickable {
  transition: all ease 0.5s;
  border: 1px solid transparent;
}
.no-touchevents .h-card--clickable:hover {
  border-color: #D30013;
}

.h-card__img {
  position: absolute;
  width: 140px;
  height: 160px;
}

.h-card__copy {
  margin-left: 170px;
  padding-bottom: 30px;
}
.h-card .h-card__copy {
  padding-bottom: 0;
}

.h-card__copy__cta {
  position: absolute;
  bottom: 30px;
}
.h-card .h-card__copy__cta {
  position: relative;
  margin-top: 11px;
  display: inline-block;
  margin-bottom: 2px;
}

.h-card__copy__title {
  color: #3C3737;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (max-width: 800px) {
  .h-card__copy__title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 400px) {
  .h-card__copy__title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.2;
  }
}

.h-card__copy__subtitle {
  color: #3C3737;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
  margin-bottom: 5px;
}
@media screen and (max-width: 400px) {
  .h-card__copy__subtitle {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2;
  }
}

.visual-card__content {
  position: absolute;
  width: 100%;
  bottom: 30px;
  left: 30px;
}
@media screen and (max-width: 1279px) {
  .visual-card__content {
    font-size: 50px;
  }
}
@media screen and (max-width: 1100px) {
  .visual-card__content {
    font-size: 40px;
  }
}

.visual-card__left {
  width: 45%;
}
@media screen and (max-width: 800px) {
  .visual-card__left {
    width: 100%;
  }
}

.corner-radius {
  border-radius: 5px;
}

.contact-cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
@media screen and (max-width: 800px) {
  .contact-cards {
    flex-direction: column;
  }
}
.contact-cards > * {
  flex: 0 1 48.8%;
}
.contact-cards .contact-card {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  padding: 0;
  justify-content: space-between;
}
.contact-cards .contact-card h4 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 24px;
  padding: 24px 0;
}
.contact-cards .contact-card.bordered {
  padding: 0 24px;
  box-shadow: 0px 0px 2px 0 rgba(0, 0, 0, 0.3);
}
.contact-cards .contact-card.bordered:hover {
  box-shadow: 0px 2px 8px 0 rgba(0, 0, 0, 0.3);
}
.contact-cards .contact-card.bordered h4 {
  border-bottom: 2px solid #f3f3f3;
}
.contact-cards .contact-card .card-cnt {
  display: flex;
  flex-direction: column;
}
.contact-cards .contact-card .card-cnt .contact-card__inner {
  display: flex;
  padding: 16px 0px 24px;
}
.contact-cards .contact-card .card-cnt .contact-card__inner .user-img {
  margin-right: 20px;
}
@media screen and (max-width: 400px) {
  .contact-cards .contact-card .card-cnt .contact-card__inner .user-img {
    margin-right: unset;
  }
}
.contact-cards .contact-card .card-cnt .contact-card__inner img {
  width: 96px;
  height: auto;
}
@media screen and (max-width: 400px) {
  .contact-cards .contact-card .card-cnt .contact-card__inner img {
    display: none;
  }
}
.contact-cards .contact-card .card-cnt .contact-card__inner .details {
  flex: 1;
  box-sizing: border-box;
  word-break: break-word;
}
.contact-cards .contact-card .card-cnt .contact-card__inner .details p {
  color: #6f6b6b;
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  display: flex;
  align-items: start;
  color: #3C3737;
}
.contact-cards .contact-card .card-cnt .contact-card__inner .details p.name {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
}
.contact-cards .contact-card .card-cnt .contact-card__inner .details p a {
  color: #D30013;
}
.contact-cards .contact-card .card-cnt .contact-card__inner .details p i {
  color: #3C3737;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 30px;
  margin-right: 12px;
  text-align: center;
  display: inline-block;
  width: 24px;
  min-width: 24px;
}
.contact-cards .contact-card .card-cnt .contact-card__inner .details p i.icon-phone, .contact-cards .contact-card .card-cnt .contact-card__inner .details p i.icon-map-pin {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 28px;
}
.contact-cards .contact-card .map-wrapper {
  margin-bottom: 24px;
}
.contact-cards .btn--link--base, .contact-cards .accordion__tab__copy__link {
  position: absolute;
  text-transform: unset;
}
.contact-cards .btn--link--base:before, .contact-cards .accordion__tab__copy__link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #D30013;
  left: 0;
  bottom: -2px;
  overflow: hidden;
  transition: width 0.3s;
}
.contact-cards .btn--link--base:hover:before, .contact-cards .accordion__tab__copy__link:hover:before {
  width: 100%;
}
.contact-cards .btn--link--base:hover:after, .contact-cards .accordion__tab__copy__link:hover:after {
  content: "";
  font-size: 12px;
  padding-left: 10px;
  top: 1px;
}
@media screen and (max-width: 1366px) {
  .contact-cards {
    gap: 16px;
  }
}
@media screen and (max-width: 800px) {
  .contact-cards {
    gap: 24px;
  }
}

/* slider-cards */
.slider-cards .responsive-slider {
  margin: 0 -20px;
}
@media screen and (max-width: 800px) {
  .slider-cards .responsive-slider {
    margin: 0 -12px;
  }
}
.slider-cards .responsive-slider .slick-list:after {
  content: " ";
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 4000px;
  right: 100%;
  background-color: white;
}
.slider-cards .responsive-slider .slick-track {
  margin-left: 0;
  overflow: visible;
  display: flex !important;
}
.slider-cards .responsive-slider .slick-slide {
  height: inherit !important;
}
.slider-cards .slider-header .slider-header-sec1 {
  display: flex;
  align-items: center;
  position: relative;
}
.slider-cards .slider-header .slider-head-left-sec {
  width: 75%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 550px) {
  .slider-cards .slider-header .slider-head-left-sec {
    width: 100%;
  }
}
.slider-cards .slider-header .slider-head-left-sec .block-title {
  display: inline-block;
}
@media screen and (max-width: 550px) {
  .slider-cards .slider-header .slider-head-left-sec .block-title {
    margin-right: 15px;
    font-size: 32px;
    font-size: 2rem;
    line-height: 40px;
    flex: 1 1 0;
  }
}
.slider-cards .slider-header .slider-head-left-sec .slider-view-link {
  position: relative;
  left: 24px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  color: #D30013;
}
@media screen and (max-width: 550px) {
  .slider-cards .slider-header .slider-head-left-sec .slider-view-link {
    left: 0;
    max-width: 150px;
    margin-right: 10px;
  }
}
.slider-cards .slider-header .slider-head-right-sec {
  width: 25%;
  text-align: right;
}
.slider-cards .slider-header .slider-head-right-sec .icon-slider-arrow {
  display: inline-block;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-style: none;
  background: transparent;
  position: relative;
  line-height: 24px;
}
.slider-cards .slider-header .slider-head-right-sec .icon-slider-arrow.slick-hidden {
  display: none;
}
.slider-cards .slider-header .slider-head-right-sec .icon-slider-arrow.slider-prev {
  margin-right: 4px;
}
.slider-cards .slider-header .slider-head-right-sec .icon-slider-arrow.slider-prev:before {
  transform: rotate(180deg);
  left: 0;
  top: 0;
}
.slider-cards .slider-header .slider-head-right-sec .icon-slider-arrow.slider-next:before {
  right: 0;
  top: 0;
}
.slider-cards .slider-header .slider-head-right-sec .icon-slider-arrow:before {
  position: absolute;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 24px;
  color: #D30013;
  border: 1px solid #D30013;
  padding: 12px;
  width: 24px;
  height: 24px;
  border-radius: 4px;
}
.slider-cards .slider-header .slider-head-right-sec .icon-slider-arrow.event-click:hover:before {
  color: #ffffff;
  border: unset;
  border-radius: 4px;
  background-color: #D30013;
}
.slider-cards .school-listing-slider .slider-card-content-sec {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1279px) {
  .slider-cards .school-listing-slider .slider-card-content-sec {
    gap: 16px;
  }
}
.slider-cards .school-listing-slider .slider-card-content-sec .grid-micro-card-item {
  height: 100%;
  padding: 0 10px;
}
@media screen and (max-width: 550px) {
  .slider-cards .school-listing-slider .slider-card-content-sec .grid-micro-card-item {
    padding: 6px 12px;
  }
}
.slider-cards .school-listing-slider .slider-card-content-sec a.promo-card, .slider-cards .school-listing-slider .slider-card-content-sec a.contextual-link-card {
  color: #3C3737;
  height: inherit;
}
.slider-cards .school-listing-slider .slider-card-content-sec .promo-card, .slider-cards .school-listing-slider .slider-card-content-sec .contextual-link-card {
  padding: 16px 16px 64px;
  display: flex;
  flex-basis: calc(33.3% - 24px);
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 1279px) {
  .slider-cards .school-listing-slider .slider-card-content-sec .promo-card, .slider-cards .school-listing-slider .slider-card-content-sec .contextual-link-card {
    flex-basis: calc(50% - 16px);
  }
}
@media screen and (max-width: 800px) {
  .slider-cards .school-listing-slider .slider-card-content-sec .promo-card, .slider-cards .school-listing-slider .slider-card-content-sec .contextual-link-card {
    flex-basis: 100%;
    padding: 16px;
  }
}
@media screen and (max-width: 550px) {
  .slider-cards .school-listing-slider .slider-card-content-sec .promo-card.col-4, .slider-cards .school-listing-slider .slider-card-content-sec .contextual-link-card, .slider-cards .school-listing-slider .slider-card-content-sec .promo-card.col-3 {
    flex-direction: column;
  }
  .slider-cards .school-listing-slider .slider-card-content-sec .promo-card.col-4 .image, .slider-cards .school-listing-slider .slider-card-content-sec .contextual-link-card .image, .slider-cards .school-listing-slider .slider-card-content-sec .promo-card.col-3 .image {
    width: 100%;
    padding-bottom: 50%;
  }
  .slider-cards .school-listing-slider .slider-card-content-sec .promo-card.col-4 .image img, .slider-cards .school-listing-slider .slider-card-content-sec .contextual-link-card .image img, .slider-cards .school-listing-slider .slider-card-content-sec .promo-card.col-3 .image img {
    width: 100%;
  }
  .slider-cards .school-listing-slider .slider-card-content-sec .promo-card.col-4 .promo-content, .slider-cards .school-listing-slider .slider-card-content-sec .contextual-link-card .promo-content, .slider-cards .school-listing-slider .slider-card-content-sec .promo-card.col-3 .promo-content {
    width: 100%;
    padding: 16px 0 0px 0px;
  }
}
.slider-cards .school-listing-slider .slider-card-content-sec .promo-card .promo-content .promo-content__inner, .slider-cards .school-listing-slider .slider-card-content-sec .contextual-link-card .promo-content .promo-content__inner {
  padding: 0;
  margin-bottom: 0;
  height: auto;
}
.slider-cards .school-listing-slider .slider-card-content-sec .promo-card .promo-content .promo-content__inner .title, .slider-cards .school-listing-slider .slider-card-content-sec .contextual-link-card .promo-content .promo-content__inner .title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  color: #D30013;
  padding-bottom: 10px;
  min-height: 60px;
}
.slider-cards .school-listing-slider .slider-card-content-sec .promo-card .promo-content .promo-content__inner .intro, .slider-cards .school-listing-slider .slider-card-content-sec .contextual-link-card .promo-content .promo-content__inner .intro {
  padding-bottom: 16px;
}
.slider-cards .school-listing-slider .slider-card-content-sec .promo-card .promo-content .promo-content__inner .intro .slider-txt, .slider-cards .school-listing-slider .slider-card-content-sec .contextual-link-card .promo-content .promo-content__inner .intro .slider-txt {
  display: flex;
  flex-wrap: wrap;
  color: #3C3737;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 18px;
}
.slider-cards .school-listing-slider .slider-card-content-sec .promo-card .promo-content .promo-content__inner .intro .slider-txt span, .slider-cards .school-listing-slider .slider-card-content-sec .contextual-link-card .promo-content .promo-content__inner .intro .slider-txt span {
  width: 50%;
}
.slider-cards .school-listing-slider .slider-card-content-sec .promo-card .promo-content .promo-content__inner .intro .slider-txt span.slide-value, .slider-cards .school-listing-slider .slider-card-content-sec .contextual-link-card .promo-content .promo-content__inner .intro .slider-txt span.slide-value {
  padding-left: 16px;
}
.slider-cards .school-listing-slider .slider-card-content-sec .promo-card .promo-content .promo-content__inner .intro .slider-btn, .slider-cards .school-listing-slider .slider-card-content-sec .contextual-link-card .promo-content .promo-content__inner .intro .slider-btn {
  display: flex;
  margin-top: 16px;
  gap: 8px;
  position: absolute;
  bottom: 24px;
  width: calc(100% - 32px);
}
@media screen and (max-width: 800px) {
  .slider-cards .school-listing-slider .slider-card-content-sec .promo-card .promo-content .promo-content__inner .intro .slider-btn, .slider-cards .school-listing-slider .slider-card-content-sec .contextual-link-card .promo-content .promo-content__inner .intro .slider-btn {
    position: unset;
  }
}
.slider-cards .school-listing-slider .slider-card-content-sec .promo-card .promo-content .promo-content__inner .intro .slider-btn a, .slider-cards .school-listing-slider .slider-card-content-sec .contextual-link-card .promo-content .promo-content__inner .intro .slider-btn a {
  width: 50%;
}
.slider-cards .school-listing-slider .slider-card-content-sec .promo-card .promo-content .promo-content__inner .intro .slider-btn a .btn.btn-download-pdf, .slider-cards .school-listing-slider .slider-card-content-sec .contextual-link-card .promo-content .promo-content__inner .intro .slider-btn a .btn.btn-download-pdf {
  width: 100%;
  padding: 0;
  height: 36px;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 36px;
  min-width: 1px;
}
.slider-cards .school-listing-slider .slider-card-content-sec .promo-card .promo-content .promo-content__inner .intro .slider-btn a .btn.btn-trans, .slider-cards .school-listing-slider .slider-card-content-sec .contextual-link-card .promo-content .promo-content__inner .intro .slider-btn a .btn.btn-trans {
  width: 100%;
  padding: 0;
  height: 36px;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 36px;
  min-width: 1px;
}
@media screen and (max-width: 800px) {
  .slider-cards .school-listing-slider .slider-card-content-sec .promo-card.col-3 .promo-content, .slider-cards .school-listing-slider .slider-card-content-sec .col-3.contextual-link-card .promo-content {
    padding: 0px;
  }
}
.slider-cards .school-listing-slider .slider-card-content-sec .promo-card.col-3 .promo-content .promo-content__inner .title, .slider-cards .school-listing-slider .slider-card-content-sec .col-3.contextual-link-card .promo-content .promo-content__inner .title {
  color: #3C3737;
  padding-left: 16px;
  word-break: break-word;
}
.slider-cards .school-listing-slider .slider-card-content-sec .promo-card.col-3 .promo-content .promo-content__inner .slider-txt, .slider-cards .school-listing-slider .slider-card-content-sec .col-3.contextual-link-card .promo-content .promo-content__inner .slider-txt {
  padding-left: 16px;
}
.slider-cards .school-listing-slider.responsive-slider .slider-card-content-sec {
  display: block;
}
@media screen and (max-width: 800px) {
  .slider-cards .school-listing-slider.responsive-slider .slider-card-content-sec .grid-micro-card-item {
    padding: 0;
  }
}
.slider-cards .school-listing-slider.responsive-slider .promo-card, .slider-cards .school-listing-slider.responsive-slider .contextual-link-card {
  padding-bottom: 16px;
}
.slider-cards .school-listing-slider.responsive-slider .promo-card .promo-content .promo-content__inner .title, .slider-cards .school-listing-slider.responsive-slider .contextual-link-card .promo-content .promo-content__inner .title {
  font-weight: 500;
  min-height: unset;
  word-break: break-word;
}

.card-achieve-slide {
  padding: 0 4px;
}
.card-achieve-slide .event-cards {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 4px;
  transition: 0.3s ease-in-out;
  transition-delay: 0s;
}
.card-achieve-slide .event-cards img {
  overflow: hidden;
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
  min-width: 200px;
  height: auto;
  width: 100%;
  border-radius: 2px;
  padding: 0 4px;
}
.card-achieve-slide .event-cards .cover-bg {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  display: inline-block;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(255, 255, 255, 0) 100%);
}
.card-achieve-slide .event-cards .achieve-content {
  position: absolute;
  bottom: 0px;
  left: 0;
  padding: 24px;
  color: #ffffff;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
.card-achieve-slide .event-cards .achieve-content .sub-cnt {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.1s, transform 0.1s;
  transition-delay: 0s;
}
.card-achieve-slide .event-cards .achieve-content .sub-cnt .year-division .cnt-year {
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.2;
  display: inline-block;
  padding: 5px 0;
  position: relative;
}
.card-achieve-slide .event-cards .achieve-content .sub-cnt .year-division .cnt-year:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 4px;
  left: 50%;
  position: absolute;
  background: #D30013;
  transition: width 0.6s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.card-achieve-slide .event-cards .achieve-content .sub-cnt .content-p {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  padding: 18px 0;
  overflow: hidden;
  max-height: 250px;
  -webkit-line-clamp: 4;
}
.card-achieve-slide .event-cards .achieve-content .sub-cnt .read-more-btn {
  cursor: pointer;
}
.card-achieve-slide .event-cards .achieve-content .sub-cnt .read-more-btn .btn--link--base, .card-achieve-slide .event-cards .achieve-content .sub-cnt .read-more-btn .accordion__tab__copy__link {
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 16px;
  text-transform: capitalize;
  color: #ffffff;
  line-height: 1.4;
}
.card-achieve-slide .event-cards .achieve-content .cnt-year-before {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.8;
}
.card-achieve-slide .event-cards .achieve-content .sub-title-event {
  font-size: 14px;
  font-weight: normal;
  padding-bottom: 14px;
}
.card-achieve-slide .event-cards .achieve-content .icon-plus-smooth {
  font-size: 18px;
  transition: transform 0.7s ease-in-out;
  display: block;
}
.card-achieve-slide .event-cards .achieve-content .icon-minus-smooth, .card-achieve-slide .event-cards .achieve-content .sidebar-nav .nav-item .nav-item__inner.open i, .sidebar-nav .nav-item .nav-item__inner.open .card-achieve-slide .event-cards .achieve-content i {
  font-size: 18px;
  display: none;
}
.card-achieve-slide .event-cards:hover {
  transform: translateY(-16px);
}
@media screen and (max-width: 800px) {
  .card-achieve-slide .event-cards:hover {
    transform: unset;
  }
}
@media screen and (min-width: 800px) {
  .card-achieve-slide .event-cards:hover img {
    transform: scale(1.1) translateY(-14px);
  }
  .card-achieve-slide .event-cards:hover .cover-bg {
    background: linear-gradient(to top, rgba(24, 22, 22, 0.86) 0%, rgba(43, 43, 43, 0.77) 100%);
  }
  .card-achieve-slide .event-cards:hover .achieve-content .sub-cnt {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 0.1s;
  }
  .card-achieve-slide .event-cards:hover .achieve-content .sub-cnt .year-division {
    text-align: center;
  }
  .card-achieve-slide .event-cards:hover .achieve-content .sub-cnt .year-division .cnt-year:after {
    width: 100%;
    left: 0;
  }
  .card-achieve-slide .event-cards:hover .achieve-content .cnt-year-before {
    display: none;
  }
  .card-achieve-slide .event-cards:hover .achieve-content .sub-title-event {
    display: none;
  }
  .card-achieve-slide .event-cards:hover .achieve-content .icon-plus-smooth {
    display: none;
  }
  .card-achieve-slide .event-cards:hover .achieve-content .icon-minus-smooth, .card-achieve-slide .event-cards:hover .achieve-content .sidebar-nav .nav-item .nav-item__inner.open i, .sidebar-nav .nav-item .nav-item__inner.open .card-achieve-slide .event-cards:hover .achieve-content i {
    display: block;
  }
}
@media screen and (min-width: 800px) and (min-width: 1920px) {
  .card-achieve-slide .event-cards:hover .achieve-content .sub-cnt .cnt-year {
    font-size: 28px;
    padding-bottom: 10px;
  }
  .card-achieve-slide .event-cards:hover .achieve-content .sub-cnt .content-p {
    font-size: 14px;
    padding-bottom: 10px;
    max-height: 170px;
  }
  .card-achieve-slide .event-cards:hover .achieve-content .sub-cnt .read-more-btn .btn--link--base, .card-achieve-slide .event-cards:hover .achieve-content .sub-cnt .read-more-btn .accordion__tab__copy__link {
    font-size: 16px;
    padding-bottom: 0px;
    line-height: 2;
  }
}
@media screen and (max-width: 800px) {
  .card-achieve-slide .event-cards.clickEvent img {
    transform: scale(1.1) translateY(-14px);
  }
  .card-achieve-slide .event-cards.clickEvent .cover-bg {
    background: linear-gradient(to top, rgba(24, 22, 22, 0.86) 0%, rgba(43, 43, 43, 0.77) 100%);
  }
  .card-achieve-slide .event-cards.clickEvent .achieve-content .sub-cnt {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 0.1s;
  }
  .card-achieve-slide .event-cards.clickEvent .achieve-content .sub-cnt .year-division {
    text-align: center;
  }
  .card-achieve-slide .event-cards.clickEvent .achieve-content .sub-cnt .year-division .cnt-year:after {
    width: 100%;
    left: 0;
  }
  .card-achieve-slide .event-cards.clickEvent .achieve-content .cnt-year-before {
    display: none;
  }
  .card-achieve-slide .event-cards.clickEvent .achieve-content .sub-title-event {
    display: none;
  }
  .card-achieve-slide .event-cards.clickEvent .achieve-content .icon-plus-smooth {
    display: none;
  }
  .card-achieve-slide .event-cards.clickEvent .achieve-content .icon-minus-smooth, .card-achieve-slide .event-cards.clickEvent .achieve-content .sidebar-nav .nav-item .nav-item__inner.open i, .sidebar-nav .nav-item .nav-item__inner.open .card-achieve-slide .event-cards.clickEvent .achieve-content i {
    display: block;
  }
}
@media screen and (max-width: 800px) and (min-width: 1920px) {
  .card-achieve-slide .event-cards.clickEvent .achieve-content .sub-cnt .cnt-year {
    font-size: 28px;
    padding-bottom: 10px;
  }
  .card-achieve-slide .event-cards.clickEvent .achieve-content .sub-cnt .content-p {
    font-size: 14px;
    padding-bottom: 10px;
    max-height: 170px;
  }
  .card-achieve-slide .event-cards.clickEvent .achieve-content .sub-cnt .read-more-btn .btn--link--base, .card-achieve-slide .event-cards.clickEvent .achieve-content .sub-cnt .read-more-btn .accordion__tab__copy__link {
    font-size: 16px;
    padding-bottom: 0px;
    line-height: 2;
  }
}
@media screen and (max-width: 800px) {
  .card-achieve-slide .event-cards {
    margin: 0 4px;
  }
}

.accordion-container:not(.accordion-first-child) {
  margin-top: 0;
}

.accordion {
  background: #ffffff;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.accordion__tab {
  position: relative;
  padding: 30px 50px;
}
.accordion-container--basic-plus .accordion__tab {
  padding: 24px 24px 24px 80px;
}
@media screen and (max-width: 800px) {
  .accordion-container--basic-plus .accordion__tab {
    padding: 16px 16px 16px 40px;
  }
}
@media screen and (max-width: 550px) {
  .accordion-container--basic-plus .accordion__tab {
    padding: 16px 16px 16px 40px;
  }
}
@media screen and (max-width: 1100px) {
  .accordion__tab {
    padding: 30px;
  }
}
@media screen and (max-width: 800px) {
  .accordion__tab {
    padding: 15px 30px;
  }
}
@media screen and (max-width: 550px) {
  .accordion__tab {
    padding: 15px;
  }
}

.accordion__tab__content {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.accordion__tab__img {
  position: relative;
  width: 135px;
  height: 160px;
}
.accordion__tab__img > img {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translate(-50%, -50%);
  /* IE 10, Fx 16+, Op 12.1+ */
  max-width: 135px;
  max-height: 160px;
}
.accordion-container--basic-plus .accordion__tab__img {
  width: 128px;
  height: 128px;
  min-width: 128px;
  position: relative;
  right: 0;
  float: right;
}
.accordion-container--basic-plus .accordion__tab__img > img {
  width: 100%;
  height: auto;
  max-width: unset;
  max-height: unset;
  border-radius: 4px;
}
@media screen and (max-width: 800px) {
  .accordion-container--basic-plus .accordion__tab__img {
    width: 80px;
    height: 80px;
    min-width: unset;
  }
}

.accordion__tab__copy {
  padding-left: 30px;
  left: 135px;
  top: 15px;
  bottom: 15px;
  right: 0;
}
.accordion-container--basic-plus .accordion__tab__copy {
  top: 10px;
  right: 148px;
  padding-left: 10px;
  display: flex;
  padding-right: 20px;
  left: 0;
}
@media screen and (max-width: 800px) {
  .accordion-container--basic-plus .accordion__tab__copy {
    left: 0;
    right: 80px;
    top: 3px;
    padding-left: 10px;
  }
}
.accordion-container--basic-plus .accordion__tab__copy .accordion__tab__copy__icon__sec {
  padding-right: 24px;
}
@media screen and (max-width: 800px) {
  .accordion-container--basic-plus .accordion__tab__copy .accordion__tab__copy__icon__sec {
    padding-right: 20px;
  }
}

.accordion__tab__copy__title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 24px;
  position: relative;
}
.accordion-container--basic-plus .accordion__tab__copy__title {
  font-size: 32px;
  font-size: 2rem;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 12px;
  cursor: pointer;
}
body.zh-Hans .accordion-container--basic-plus .accordion__tab__copy__title {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .accordion-container--basic-plus .accordion__tab__copy__title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.3;
  }
  body.zh-Hans .accordion-container--basic-plus .accordion__tab__copy__title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.3;
  }
}
.accordion-container--basic-plus .accordion__tab__copy__title i {
  position: absolute;
  left: -56px;
  top: 50%;
  transform: translateY(-50%);
}
.accordion-container--basic-plus .accordion__tab__copy__title i.icon-plus-smooth, .accordion-container--basic-plus .accordion__tab__copy__title i.icon-minus-smooth, .accordion-container--basic-plus .accordion__tab__copy__title .sidebar-nav .nav-item .nav-item__inner.open i, .sidebar-nav .nav-item .nav-item__inner.open .accordion-container--basic-plus .accordion__tab__copy__title i {
  font-size: 28px;
}
@media screen and (max-width: 800px) {
  .accordion-container--basic-plus .accordion__tab__copy__title i {
    left: -40px;
  }
  .accordion-container--basic-plus .accordion__tab__copy__title i.icon-plus-smooth, .accordion-container--basic-plus .accordion__tab__copy__title i.icon-minus-smooth, .accordion-container--basic-plus .accordion__tab__copy__title .sidebar-nav .nav-item .nav-item__inner.open i, .sidebar-nav .nav-item .nav-item__inner.open .accordion-container--basic-plus .accordion__tab__copy__title i {
    font-size: 24px;
  }
}
body.zh-Hans .accordion__tab__copy__title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .accordion__tab__copy__title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.2;
  }
}

.accordion__tab__copy__link {
  position: absolute;
  bottom: 0;
}
.accordion-container--basic-plus .accordion__tab__copy__link {
  color: #D30013;
  bottom: -10px;
}
.accordion-container--basic-plus .accordion__tab__copy__link:after {
  content: "";
  font-weight: bold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .accordion-container--basic-plus .accordion__tab__copy__link {
    bottom: -15px;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
.accordion-container--basic-plus .accordion__tab__copy__link .accordion__intro p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
}
.accordion-container--basic-plus .accordion__tab__copy__link .accordion__intro ul li, .accordion-container--basic-plus .accordion__tab__copy__link .accordion__intro ol li {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
}
.accordion__tab__copy__link:after {
  content: "";
}
.accordion.open .accordion__tab__copy__link:after {
  content: "";
}

.accordion__tab__right {
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 800px) {
  .accordion__intro {
    display: none;
  }
}
.accordion__intro ul {
  padding: 0;
  list-style: none;
}
.accordion__intro ul li {
  padding-left: 16px;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
}
.accordion__intro ul li:before {
  content: "";
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background-color: #000000;
  position: absolute;
  left: 0;
  top: 8px;
}

.accordion__content {
  overflow: hidden;
  max-height: 0;
  transition: all 0.1s;
}
.accordion-container--minimal .accordion__content {
  width: 100%;
  /* max-width: 712px; */
  margin: 0 auto;
}
@media screen and (max-width: 550px) {
  .accordion-container--minimal .accordion__content {
    margin: 0 15px 0 12px;
  }
}
.accordion-container--minimal .open .accordion__content {
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 550px) {
  .accordion-container--minimal .open .accordion__content {
    margin: 0 auto;
  }
}
.accordion.open .accordion__content {
  max-height: 2500px;
}
@media screen and (max-width: 550px) {
  .accordion.open .accordion__content {
    max-height: 3500px;
  }
}

.accordion__content__inner {
  margin: 0 50px;
  padding: 50px 0;
  position: relative;
}
.accordion__content__inner h3 {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  color: #3C3737;
}
.accordion-container--basic-plus .accordion__content__inner {
  padding: 24px 24px 32px;
  position: relative;
  margin: 0;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
}
.accordion-container--basic-plus .accordion__content__inner .border-line {
  position: absolute;
  top: 0;
  width: calc(100% - 48px);
  height: 1px;
  background-color: #cccccc;
}
@media screen and (max-width: 800px) {
  .accordion-container--basic-plus .accordion__content__inner {
    margin: 0;
    padding: 24px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 24px;
  }
}
@media screen and (max-width: 1100px) {
  .accordion__content__inner {
    margin: 0 30px;
  }
}
@media screen and (max-width: 800px) {
  .accordion__content__inner {
    margin: 0 30px;
    padding: 30px 0;
  }
}
@media screen and (max-width: 550px) {
  .accordion__content__inner {
    margin: 0 15px;
    padding: 15px 0;
  }
}

.accordion__content__inner__cta {
  display: inline-block;
  margin-top: 32px;
  position: relative;
  line-height: unset;
  font-size: 16px;
}
.accordion__content__inner__cta:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #D30013;
  left: 0;
  bottom: -2px;
  overflow: hidden;
  transition: width 0.3s;
}
.accordion__content__inner__cta:hover:before {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .accordion-container--basic-plus .accordion__content__inner__cta {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 550px) {
  .accordion__content__inner__cta {
    font-size: 14px;
  }
}
@media screen and (max-width: 800px) {
  .accordion__content__inner__cta {
    margin-top: 15px;
    margin-bottom: 10px;
  }
}

.accordion-container--basic {
  margin-bottom: 30px;
}
.accordion-container--basic .accordion {
  border-bottom: 6px solid #D30013;
  border-radius: 4px;
}
@media screen and (max-width: 550px) {
  .accordion-container--basic .accordion__tab__img {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .accordion-container--basic .accordion__tab__copy {
    position: static;
    padding-left: 0;
  }
}
.accordion-container--basic .accordion__tab__copy__title {
  font-weight: bold;
}
@media screen and (max-width: 550px) {
  .accordion-container--basic .accordion__tab__copy__title {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 550px) {
  .accordion-container--basic .accordion__tab__copy__link {
    position: static;
  }
}
.accordion-container--basic .accordion__content__inner {
  border-top: 1px solid #ebebeb;
}

.accordion-container--artistic {
  margin: 0px auto 30px auto;
}
.accordion-container--artistic:first-child {
  margin-top: 5px;
}
.accordion-container--artistic .accordion__tab__content {
  height: 155px;
  width: 67%;
}
@media screen and (max-width: 550px) {
  .accordion-container--artistic .accordion__tab__content {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 550px) {
  .accordion-container--artistic .accordion__tab__copy {
    position: static;
    padding-left: 0;
  }
}
.accordion-container--artistic .accordion__tab__copy {
  left: 0;
  top: 10px;
  bottom: 10px;
  padding-left: 0;
}
.accordion-container--artistic .accordion__tab__right {
  left: 65%;
  background: transparent center center;
  background-size: cover;
}
@media screen and (max-width: 550px) {
  .accordion-container--artistic .accordion__tab__right {
    display: none;
  }
}
.accordion-container--artistic .accordion__tab__right:before {
  content: "";
  bottom: 3px;
  position: absolute;
  width: 60px;
  background: white;
  transform: rotate(13deg);
  top: -20px;
  left: -30px;
}
.accordion-container--artistic .accordion__content__inner {
  border-top: 1px solid #ebebeb;
}
.accordion-container--artistic .accordion__content {
  border-bottom: 0 solid transparent;
}
.accordion-container--basic-plus .accordion-container--artistic .accordion__content {
  clear: both;
}
.accordion-container--artistic .accordion__tab__copy__title {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 550px) {
  .accordion-container--artistic .accordion__tab__copy__title {
    font-size: 1.2rem;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 550px) {
  .accordion-container--artistic .accordion__tab__copy__link {
    position: static;
  }
}
.accordion-container--artistic .accordion.open .accordion__content {
  border-bottom: 6px solid #D30013;
}

.accordion-group__tab {
  background: #ffffff;
  padding: 25px 110px;
}
@media screen and (max-width: 1100px) {
  .accordion-group__tab {
    padding: 25px 50px;
  }
}
@media screen and (max-width: 800px) {
  .accordion-group__tab {
    padding: 15px 30px;
  }
}
@media screen and (max-width: 550px) {
  .accordion-group__tab {
    padding: 15px;
  }
}

.accordion-group__tab__link:after {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  content: "";
}
.accordion-group.open .accordion-group__tab__link:after {
  content: "";
}

.accordion-group__content {
  overflow: hidden;
  max-height: 0;
  transition: all 0.3s;
}
.accordion-group.open .accordion-group__content {
  max-height: 10000px;
}

.accordion-container--minimal {
  width: 100%;
}
.accordion-container--minimal .accordion__tab__copy__title {
  color: #3C3737;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.accordion-container--minimal .accordion__tab__copy {
  position: static;
  padding-left: 0;
}
.accordion-container--minimal .accordion {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  border: 0;
}
.accordion-container--minimal .accordion.open .accordion__toggle-icon:before {
  content: "";
  font-size: 3px;
  top: -7px;
  position: relative;
}
.accordion-container--minimal .accordion__tab {
  position: relative;
  background: white;
  padding: 24px;
  width: auto;
}
.accordion-container--minimal .accordion__tab__content {
  width: 100% !important;
}
.accordion-container--minimal .accordion__tab__right {
  background: white;
  left: 0;
  position: relative;
}
.accordion-container--minimal .accordion__tab__right:after {
  color: #009dd5;
}
.accordion-container--minimal .accordion__tab__right:before {
  background: transparent;
  transform: unset;
  position: relative;
}
.accordion-container--minimal .accordion__content__inner {
  padding: 16px 0px 24px;
  margin: 0 24px;
}
.accordion-container--minimal .accordion__content__inner .l-body-copy p {
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
}
.accordion-container--minimal .accordion__content__inner .l-body-copy ul, .accordion-container--minimal .accordion__content__inner .l-body-copy ol {
  padding: 0;
  margin: 0;
  vertical-align: middle;
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
}
.accordion-container--minimal .accordion__content__inner .l-body-copy ul li, .accordion-container--minimal .accordion__content__inner .l-body-copy ol li {
  background: url("/images/logos/eligibilityTick.svg") no-repeat left top;
  padding: 0 0 16px 40px;
  list-style: none;
}
.accordion-container--minimal .accordion__toggle-icon:before {
  font-family: "icomoon";
  font-style: normal;
  content: "";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
  margin-right: 15px;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .accordion-container--minimal .accordion__toggle-icon:before {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2;
    margin-right: 10px;
  }
}
.accordion-container--minimal .border-line {
  position: absolute;
  top: 0;
  width: calc(100% - 48px);
  height: 1px;
  background-color: #cccccc;
}

.people-intro {
  display: none;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  position: relative;
  left: -24px;
}
.people-intro.accordion-intro-mob {
  left: 16px;
  padding-bottom: 16px;
}
.people-intro.accordion-intro-mob p {
  margin: 0;
}
@media screen and (max-width: 800px) {
  .people-intro {
    display: block;
  }
}

.card-bg {
  width: 100%;
  background-size: cover;
  background-position: center;
  padding-bottom: 67%;
  position: relative;
}
.card-bg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.card-bg .card-title {
  position: absolute;
  left: 0;
  font-size: 28px;
  line-height: 1.2;
  color: #ffffff;
  padding: 30px;
  font-weight: bold;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.75);
}
.card-bg .card-title.card-title__btm {
  bottom: 0;
}
.card-bg .card-title.card-title__mid {
  top: 50%;
  transform: translateY(-50%);
}
.card-bg .card-cta-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  padding: 30px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .card-bg .card-title {
    padding: 15px;
    font-size: 20px;
    line-height: 1.2;
  }
  .card-bg .card-cta-container {
    padding: 15px;
  }
  .card-bg .card-cta-container .btn--cta, .card-bg .card-cta-container .cookie-consent__agree {
    min-width: 150px;
  }
}

.accordion__trigger .is-closed {
  display: inline-block;
}
.accordion__trigger .is-opened {
  display: none;
}
.accordion__trigger.open .is-closed {
  display: none;
}
.accordion__trigger.open .is-opened {
  display: inline-block;
}

.content__inner {
  padding: 50px 0;
}
@media screen and (max-width: 800px) {
  .content__inner {
    padding: 30px 0;
  }
}

@media screen and (max-width: 800px) {
  .text-top {
    padding-top: 0px;
    display: flex;
  }
}

.card-container {
  padding-bottom: 0 !important;
}
@media screen and (max-width: 800px) {
  .card-container:first-child {
    padding-bottom: 0 !important;
  }
  .card-container:last-child {
    padding-top: 30px;
    padding-bottom: 20px !important;
  }
}
.card-container .btn-group__item {
  margin: 0;
}

.accordion-content {
  max-height: 0;
  height: auto;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  background-color: #f0f0f0;
  padding: 0;
}
.accordion-content .accordion-content__inner {
  padding: 50px 30px;
}
@media screen and (max-width: 800px) {
  .accordion-content .accordion-content__inner {
    padding: 30px 15px;
  }
}
.accordion-content.open {
  max-height: 2000px;
}

.accordion-container--with--content {
  font-weight: 400;
}
.accordion-container--with--content .with--content-accordion {
  border-bottom: 0;
}
.accordion-container--with--content .with--content-accordion .accordion__tab {
  padding: 24px 24px;
}
.accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content {
  display: flex;
}
@media screen and (max-width: 800px) {
  .accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content {
    flex-direction: column;
  }
}
.accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__copy {
  position: static;
  padding: 0 24px 0 0;
  flex: 50%;
}
@media screen and (max-width: 800px) {
  .accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__copy {
    padding-bottom: 16px;
  }
}
.accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__copy p {
  margin: 0;
}
.accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__copy .accordion__tab__copy__title {
  font-size: 32px;
  font-size: 2rem;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__copy .accordion__tab__copy__title {
    padding-bottom: 0px;
  }
}
.accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__copy .accordion__tab__copy_age {
  text-transform: capitalize;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
}
.accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__copy .accordion__tab__copy_age p {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
}
.accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__details {
  flex: 50%;
}
.accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__details p {
  margin: 0;
}
.accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__details .days {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  text-transform: capitalize;
}
.accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__details .accordion__tab__details_split {
  display: flex;
  padding-bottom: 16px;
}
.accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__details .accordion__tab__details_split .accordion__tab__details_year, .accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__details .accordion__tab__details_split .accordion__tab__details_term {
  flex: 50%;
}
.accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__details .accordion__tab__details_split .amount__year {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 32px;
  font-weight: 600;
}
.accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__details .accordion__tab__details_split .amount__term {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  font-weight: 600;
}
.accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__details .accordion__tab__details_split .per__year, .accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__details .accordion__tab__details_split .per__term {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
}
.accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__copy__link {
  font-size: 16px;
  font-size: 1rem;
  line-height: 38px;
  text-transform: capitalize;
}
@media screen and (max-width: 800px) {
  .accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__copy__link {
    position: relative;
  }
}
.accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__copy__link i.accordion__toggle-icon {
  padding-right: 8px;
  position: relative;
  top: 3px;
}
.accordion-container--with--content .with--content-accordion .accordion__tab .accordion__tab__content .accordion__tab__copy__link:after {
  content: "";
}
.accordion-container--with--content .with--content-accordion .accordion__content .accordion__content__inner {
  padding: 24px 0px 40px;
  margin: 0px 24px;
}
.accordion-container--with--content .with--content-accordion .accordion__content .accordion__content__inner p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
}
.accordion-container--with--content .with--content-accordion .accordion__content .accordion__content__inner .border-line {
  position: absolute;
  top: 0;
  width: calc(100%);
  height: 1px;
  background-color: #cccccc;
}

.two-col-block .l-grid-50-wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .two-col-block .l-grid-50-wrapper {
    flex-direction: column;
  }
}
.two-col-block .promo-content.accordion-content {
  max-height: 100%;
}

.accordion-block.block-container:first-child {
  margin-top: 56px;
}
@media screen and (max-width: 800px) {
  .accordion-block.block-container {
    margin-bottom: 16px;
    margin-top: 16px;
  }
  .accordion-block.block-container:first-child {
    margin-top: 16px;
  }
}

[class^=bg--cover], [class*=" bg--cover"] {
  background: no-repeat center center;
  background-size: cover;
}

.bg--right {
  background-position: right center;
}

.bg--cover--job-openings {
  background-image: url("/images/backgrounds/homepage-block-job-openings.jpg");
}

.bg--cover--alumni {
  background-image: url("/images/backgrounds/homepage-block-alumni.jpg");
}
@media screen and (max-width: 800px) {
  .bg--cover--alumni {
    margin-top: 15px;
  }
}

.bg--cover--schools-map {
  background-image: url("/images/backgrounds/schools-map.jpg");
}

.bg--homepage-slide-1 {
  background-image: url("/images/backgrounds/homepage-slider-1.jpg");
}

/*.bg--homepage-slide-2 {
  background-image: url(image-url('backgrounds/homepage-slider-2.jpg'));
}

.bg--homepage-slide-3 {
  background-image: url(image-url('backgrounds/homepage-slider-3.jpg'));
}

.bg--homepage-slide-4 {
  background-image: url(image-url('backgrounds/homepage-slider-4.jpg'));
}*/
.bg--careers-overview-slide-1 {
  background-image: url("/images/backgrounds/careers-overview-slide-1.jpg");
}

.bg--about-overview {
  background-image: url("/images/backgrounds/about-us-overview.jpg");
}

.bg--white {
  background: #ffffff;
}

.bg-grey {
  background: #f0f0f0;
}

.bg-yellow {
  background: #FFB909;
}

.dropdown {
  position: relative;
  width: 95px;
  border: 1px solid transparent;
  padding: 15px !important;
  text-align: left;
  transition: border-color 0.3s;
}
.dropdown.open {
  border-color: #ebebeb;
}

.dropdown-title {
  position: relative;
  width: 100%;
  display: inline-block;
}

.dropdown-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(-50%);
  /* IE 10, Fx 16+, Op 12.1+ */
  vertical-align: middle;
  opacity: 1;
  transition: opacity 0.3s;
}
.open .dropdown-arrow {
  opacity: 0;
}

.dropdown-list {
  position: absolute;
  left: -1px;
  right: -1px;
  z-index: 1000;
  display: none;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-top: none;
  transition: border-color 0.3s;
}
.open > .dropdown-list {
  display: block;
  border-color: #ebebeb;
}
.dropdown-list a {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #000000;
  vertical-align: middle;
}
@media screen and (max-width: 1600px) {
  .dropdown-list a {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 1100px) {
  .dropdown-list a {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2;
  }
}

.dropdown-list__item {
  padding: 10px 15px;
}
.dropdown-list__item:hover a {
  color: #D30013;
}

.mega-menu {
  position: relative;
}
@media screen and (max-width: 1100px) {
  .mega-menu {
    display: none !important;
  }
}

.mega-menu-arrow {
  vertical-align: middle;
  padding: 10px 5px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
}
@media screen and (max-width: 1600px) {
  .mega-menu-arrow {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
  }
}

.mega-menu-toggle {
  position: relative;
  font-size: 16px;
}
.open > .mega-menu-toggle {
  color: #D30013;
}
.open > .mega-menu-toggle:before {
  opacity: 1;
}

.mega-menu-content {
  display: block;
  position: absolute;
  width: 650px;
  background: #ffffff;
  padding: 10px 0 10px;
  border-radius: 5px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  left: -9999px;
  opacity: 0;
  z-index: -1;
  top: 200%;
  transition: 0s 0.3s z-index, 0s 0.3s left, 0.3s opacity, 0.3s top;
}
body.school .mega-menu-content {
  padding: 20px 0 0px;
}
@media screen and (max-width: 1100px) {
  .mega-menu-content {
    display: none !important;
  }
}
.mega-menu:hover > .mega-menu-content {
  opacity: 1;
  z-index: 1;
  top: 100%;
  left: auto;
  right: -10px;
  transition: 0s z-index, 0s left, 0.3s opacity, 0.3s top;
}
.mega-menu-content:before {
  content: "";
  bottom: 100%;
  right: 40px;
  position: absolute;
  border: solid transparent;
  border-bottom-color: #ffffff;
  border-width: 10px;
  margin-left: -36px;
  z-index: 2;
}
.mega-menu-content:after {
  content: "";
  bottom: 100%;
  right: calc(40px - 2px);
  position: absolute;
  border: solid transparent;
  border-bottom-color: #DDD;
  border-width: 12px;
  margin-left: -36px;
  z-index: 1;
}

.mega-menu-list-title {
  text-transform: uppercase;
  border-bottom: 3px solid #D30013;
  margin-bottom: 10px;
}
.mega-menu-list-title.no-border {
  border-bottom: 0;
}
.mega-menu-list-title .red-bottom-bar {
  width: calc(100% - 20px);
  float: right;
  height: 3px;
  background-color: #D30013;
}
.mega-menu-list-title.menu-list-right {
  margin-left: -20px;
  margin-right: auto;
}
.mega-menu-list-title.menu-list-right > a {
  padding: 10px 0 10px 20px;
}
.mega-menu-list-title.menu-list-left {
  margin-right: 20px;
  margin-left: auto;
}
.mega-menu-list-title.menu-list-left > a {
  padding: 10px 0px 10px 20px;
}
.mega-menu-list-title a {
  display: flex;
  border-radius: 5px;
  color: #D30013;
}
.mega-menu-list-title a:hover {
  background-color: #f0f0f0;
}

.mega-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-menu-list__bottom {
  position: relative;
  width: 100%;
  margin-top: 10px;
  text-align: center;
  background-color: #f0f0f0;
  border-radius: 5px;
  padding: 5px;
}
.mega-menu-list__bottom .mega-menu-list__item > a {
  position: relative;
  width: auto;
}
.mega-menu-list__bottom .mega-menu-list__item i {
  font-size: 10px;
  position: absolute;
  top: 14px;
  right: -12px;
  transition: right 0.3s;
}
@media screen and (max-width: 1279px) {
  .mega-menu-list__bottom .mega-menu-list__item i {
    top: 12px;
  }
}
.mega-menu-list__bottom .mega-menu-list__item:hover i {
  right: -15px;
}

.mega-menu-list__item {
  margin-right: 30px;
}
.mega-menu-list__item > a {
  display: inline-block;
  width: 100%;
  padding: 10px 0 10px 20px;
  color: #3C3737;
  border-radius: 5px;
}
.mega-menu-list__item > a:hover {
  background: #f0f0f0;
}
.mega-menu-list__item.menu-list-right {
  margin-left: -20px;
  margin-right: auto;
}
.mega-menu-list__item.menu-list-right > a {
  padding: 10px 0 10px 20px;
}

.quote {
  position: relative;
  width: 100%;
}

.quote__img {
  width: 25%;
  margin-right: 50px;
}
@media screen and (max-width: 800px) {
  .quote__img {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
}
.quote__img img {
  border-radius: 5px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.quote__copy {
  position: absolute;
  top: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(-50%);
  /* IE 10, Fx 16+, Op 12.1+ */
  left: 25%;
  padding: 0 20px;
  width: 75%;
}
@media screen and (max-width: 800px) {
  .quote__copy {
    position: static;
    top: 0;
    /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
    /* IE 9 */
    transform: none;
    /* IE 10, Fx 16+, Op 12.1+ */
    left: 0;
    width: 100%;
    padding: 20px;
  }
}

.quote__copy__source {
  margin-top: 20px;
  text-align: right;
}

.panel {
  position: relative;
  overflow: hidden;
  background: #000000 no-repeat center center;
  background-size: cover;
}
.panel:before {
  content: "";
  display: block;
  padding-bottom: 80%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+58 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
@media screen and (max-width: 1100px) {
  .panel:before {
    padding-bottom: 50%;
  }
}
@media screen and (max-width: 800px) {
  .panel:before {
    padding-bottom: 80%;
  }
}
@media screen and (max-width: 500px) {
  .panel:before {
    padding-bottom: 90%;
  }
}

.panel__inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.panel__content {
  max-height: 0;
  transition: all 0.3s;
}
.panel.open .panel__content {
  max-height: 220px;
}
@media screen and (max-width: 1279px) {
  .panel.open .panel__content {
    max-height: 180px;
  }
}
@media screen and (max-width: 800px) {
  .panel.open .panel__content {
    max-height: 200px;
  }
}
@media screen and (max-width: 500px) {
  .panel.open .panel__content {
    max-height: 140px;
  }
}
.panel.open.opened .panel__content {
  overflow: auto;
}

.panel__tab {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.3s;
}

.panel__tab__top {
  padding: 10px 40px;
}
@media screen and (max-width: 550px) {
  .panel__tab__top {
    padding: 10px 20px;
  }
}

.panel__tab__bottom {
  padding: 10px 40px;
  border-top: 2px solid #ffffff;
  background-color: rgba(211, 0, 19, 0.6);
}
@media screen and (max-width: 550px) {
  .panel__tab__bottom {
    padding: 10px 20px;
  }
}
.panel.open .panel__tab__bottom {
  padding-bottom: 20px;
}

.panel__toggle {
  color: #ffffff;
  position: absolute;
  right: 0;
  top: 50%;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translateY(-50%);
  /* IE 10, Fx 16+, Op 12.1+ */
  text-transform: uppercase;
}
.panel__toggle:after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  padding-left: 10px;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  content: "";
  font-weight: bold;
}
.panel.open .panel__toggle:after {
  content: "";
}

.panel__content__subtitle {
  padding-right: 35px;
}

.map {
  background: #ffffff;
  align-items: center;
  position: relative;
}

.map__container {
  position: relative;
}

.map__img {
  width: 100%;
}

.map__content {
  padding: 50px;
  height: 100%;
}
@media screen and (max-width: 1100px) {
  .map__content {
    padding: 30px 25px;
  }
}
@media screen and (max-width: 800px) {
  .map__content {
    position: relative;
    padding: 30px 0;
  }
}
@media screen and (max-width: 550px) {
  .map__content {
    padding: 25px 0;
  }
}

.map__content__row {
  border-left: 5px solid #D30013;
  padding-left: 25px;
}
.map__content__row:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 550px) {
  .map__content__row:first-child {
    margin-top: 30px;
  }
}
@media screen and (max-width: 550px) {
  .map__content__row {
    border-top: 5px solid #D30013;
    border-left: none;
    padding: 20px 0 0 0;
  }
}

.map__content__img {
  display: block;
}

.map__reset {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1;
  font-size: 16px;
  line-height: 16px;
  color: #D30013;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
  padding: 15px;
  transition: 0.3s all;
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: translate3d(0, 0, 0);
  /* IE 10, Fx 16+, Op 12.1+ */
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform-origin: 50% 50%;
}
.no-touchevents .map__reset:hover, .no-touchevents .map__reset:active {
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  /* IE 9 */
  transform: rotate(-180deg);
  /* IE 10, Fx 16+, Op 12.1+ */
}

.map__marker {
  display: block;
  position: absolute;
  background: #ffffff;
  border-radius: 100%;
  width: 8px;
  height: 8px;
  box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 800px) {
  .map__marker {
    width: 6px;
    height: 6px;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.6);
  }
}

.map__marker__copy {
  background: #009dd5;
  color: #ffffff;
  padding: 2px 10px;
  position: absolute;
  bottom: 15px;
  border: 2px solid #009dd5;
  transition: all 0.3s;
  white-space: nowrap;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 1279px) {
  .map__marker__copy {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4;
    padding: 1px 10px;
  }
}
@media screen and (max-width: 550px) {
  .map__marker__copy {
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 1.3;
    padding: 1px 5px;
  }
}
.map__marker.is-active > .map__marker__copy {
  background: #ffffff;
  color: #009dd5;
}
.map__marker.is-active > .map__marker__copy:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.map__marker--left .map__marker__copy {
  left: 5px;
}
@media screen and (max-width: 550px) {
  .map__marker--left .map__marker__copy {
    left: 3px;
  }
}
.map__marker--right .map__marker__copy {
  right: 5px;
}
@media screen and (max-width: 550px) {
  .map__marker--right .map__marker__copy {
    right: 3px;
  }
}
.map__marker__copy:before, .map__marker__copy:after {
  content: "";
  display: block;
  top: 100%;
  position: absolute;
}
.map__marker__copy:before {
  border-top: 13px solid #009dd5;
}
.map__marker__copy:after {
  border-top: 9px solid #009dd5;
  transition: all 0.3s;
}
.map__marker--bottom .map__marker__copy {
  top: 15px;
  bottom: inherit;
}
@media all and (max-width: 991px) {
  .map__marker--bottom .map__marker__copy {
    top: 13px;
  }
}
.map__marker--bottom .map__marker__copy:before {
  bottom: 100%;
  top: auto;
  border-bottom: 13px solid #009dd5;
  border-top: none;
}
.map__marker--bottom .map__marker__copy:after {
  bottom: 100%;
  top: auto;
  border-bottom: 9px solid #009dd5;
  border-top: none;
}
.map__marker--left .map__marker__copy:before {
  border-right: 14px solid transparent;
  left: -2px;
}
.map__marker--left .map__marker__copy:after {
  border-right: 10px solid transparent;
  left: 0;
}
.map__marker--right .map__marker__copy:before {
  border-left: 14px solid transparent;
  right: -2px;
}
.map__marker--right .map__marker__copy:after {
  border-left: 10px solid transparent;
  right: 0;
}
.no-touchevents .map__marker:hover .map__marker__copy, .no-touchevents .map__marker:active .map__marker__copy {
  background: #ffffff;
  color: #009dd5;
}
.no-touchevents .map__marker:hover .map__marker__copy:after, .no-touchevents .map__marker:active .map__marker__copy:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}

.map__marker--shanghai {
  top: 28%;
  right: 24.5%;
}

.map__marker--beijing {
  top: 9%;
  right: 31.2%;
}

.map__marker--seoul {
  top: 14%;
  right: 17%;
}

.map__marker--suzhou {
  top: 27%;
  right: 26.5%;
}

.map__marker--zhuhai {
  top: 46%;
  right: 35.3%;
}

.map__marker--yangon {
  top: 56%;
  right: 57.8%;
}

.map__marker--singapore {
  top: 83%;
  right: 47.7%;
}

body.zh-Hans .school-map-title.text--xxl, body.zh-Hans .school-map-title.text--serif--xxl, body.zh-Hans .school-map-title.text--serif--xxl--emph, body.zh-Hans .school-map-title.text-serif--white--xxl {
  font-size: 88px;
  font-size: 5.5rem;
  line-height: 0.9;
}
@media screen and (max-width: 1100px) {
  body.zh-Hans .school-map-title.text--xxl, body.zh-Hans .school-map-title.text--serif--xxl, body.zh-Hans .school-map-title.text--serif--xxl--emph, body.zh-Hans .school-map-title.text-serif--white--xxl {
    font-size: 72px;
    font-size: 4.5rem;
    line-height: 0.9;
  }
}
@media screen and (max-width: 800px) {
  body.zh-Hans .school-map-title.text--xxl, body.zh-Hans .school-map-title.text--serif--xxl, body.zh-Hans .school-map-title.text--serif--xxl--emph, body.zh-Hans .school-map-title.text-serif--white--xxl {
    font-size: 64px;
    font-size: 4rem;
    line-height: 0.9;
  }
}
@media screen and (max-width: 500px) {
  body.zh-Hans .school-map-title.text--xxl, body.zh-Hans .school-map-title.text--serif--xxl, body.zh-Hans .school-map-title.text--serif--xxl--emph, body.zh-Hans .school-map-title.text-serif--white--xxl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 0.9;
  }
}
@media screen and (max-width: 400px) {
  body.zh-Hans .school-map-title.text--xxl, body.zh-Hans .school-map-title.text--serif--xxl, body.zh-Hans .school-map-title.text--serif--xxl--emph, body.zh-Hans .school-map-title.text-serif--white--xxl {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 0.9;
  }
}

.landing-page {
  display: flex;
  max-width: 1920px;
  margin: 0 auto;
}
.landing-page .sidebar {
  background-color: #9E1422;
  flex: 0 0 280px;
  position: relative;
  z-index: 1;
}
.landing-page .sidebar.group-sidebar {
  flex: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.3s linear;
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0);
}
.landing-page .sidebar.group-sidebar.open-sidebar {
  left: 0;
  transition: left 0.3s linear;
}
.landing-page .sidebar.group-sidebar.open-sidebar .sidebar-inner {
  background-color: #9E1422;
  width: 280px;
  height: 100%;
}
.landing-page .sidebar.group-sidebar.open-sidebar .sidebar-inner .sidebar-sticky .sidebar-header .button-menu-icon-open {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 16px;
  margin: 0 14px 0 0;
  box-sizing: content-box;
  display: block;
  cursor: pointer;
}
.landing-page .sidebar.group-sidebar.open-sidebar .sidebar-inner .sidebar-sticky .sidebar-header .button-menu-icon-open:before {
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  font-size: 22px;
  color: #D30013;
  font-weight: 600;
}
.landing-page .sidebar .button-menu-icon-open {
  display: none;
}
@media all and (max-width: 1400px) {
  .landing-page .sidebar {
    flex: 0 0 280px;
  }
}
@media screen and (max-width: 1279px) {
  .landing-page .sidebar {
    flex: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s linear;
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0);
  }
  .landing-page .sidebar.open-sidebar {
    left: 0;
    transition: left 0.3s linear;
  }
  .landing-page .sidebar.open-sidebar .sidebar-inner .sidebar-sticky .sidebar-header .button-menu-icon-open {
    position: relative;
    width: 24px;
    height: 24px;
    padding: 16px;
    margin: 0 14px 0 0;
    box-sizing: content-box;
    display: block;
    cursor: pointer;
  }
  .landing-page .sidebar.open-sidebar .sidebar-inner .sidebar-sticky .sidebar-header .button-menu-icon-open:before {
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    font-size: 22px;
    color: #D30013;
    font-weight: 600;
  }
}
.landing-page .sidebar .sidebar-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
}
@media screen and (max-width: 1279px) {
  .landing-page .sidebar .sidebar-inner {
    background-color: #9E1422;
    width: 280px;
    height: 100%;
  }
}
.landing-page .sidebar .sidebar-inner .sidebar-sticky {
  position: fixed;
  top: 0;
  width: 280px;
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding-bottom: 50px;
}
@media all and (max-width: 1400px) {
  .landing-page .sidebar .sidebar-inner .sidebar-sticky {
    width: 280px;
  }
}
@media screen and (max-width: 1100px) {
  .landing-page .sidebar .sidebar-inner .sidebar-sticky {
    width: 280px;
  }
}
.landing-page .sidebar-header {
  height: 72px;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 16px;
  background-color: #ffffff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1279px) {
  .landing-page .sidebar-header {
    height: 56px;
    padding-left: 0;
  }
}
.landing-page .main-content {
  flex: 1;
  max-width: calc(100% - 280px);
}
@media all and (max-width: 1400px) {
  .landing-page .main-content {
    max-width: calc(100% - 280px);
  }
}
@media screen and (max-width: 1279px) {
  .landing-page .main-content {
    max-width: 100%;
  }
}
.landing-page .main-content-inner {
  display: flex;
  flex-direction: column;
}

.sidebar-nav {
  width: 100%;
  margin-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #D54C4A;
}
.sidebar-nav .nav-item {
  position: relative;
}
.sidebar-nav .nav-item .nav-item__inner {
  display: flex;
  cursor: pointer;
  padding: 12px 14px;
  flex-direction: column;
  font-weight: bold;
}
.sidebar-nav .nav-item .nav-item__inner i {
  position: absolute;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 20px;
  color: #ffffff;
  left: 12px;
  top: 12px;
}
.sidebar-nav .nav-item .nav-item__inner .nav-text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  margin-left: 32px;
  padding-top: 2px;
}
.sidebar-nav .nav-item .nav-item__inner .nav-subtitle {
  font-size: 16px;
  font-size: 1rem;
  line-height: 23px;
  font-weight: bold;
  color: #3C3737;
  text-transform: unset;
  margin-left: 32px;
  padding-top: 2px;
}
.sidebar-nav .nav-item .sub-nav {
  position: relative;
  height: auto;
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
  width: 100%;
  overflow: hidden;
}
.sidebar-nav .nav-item .sub-nav .nav-item .nav-text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 16px;
  text-transform: unset;
  font-weight: normal;
}
.sidebar-nav .nav-item .sub-nav.open {
  max-height: 800px;
}

.sidebar-nav .sidebar-list-title.nav-item .nav-item__inner .nav-text {
  font-weight: 600;
  letter-spacing: 0.1px;
  color: #ffffff;
  margin-top: 30px;
}
.sidebar-nav .sidebar-list-title.nav-item:first-child .nav-item__inner .nav-text {
  margin-top: 0;
}
.sidebar-nav .sidebar-list-title.nav-item:last-child .nav-item__inner .nav-text {
  margin-top: 0;
  margin-bottom: 30px;
}

.main-group-content {
  max-width: 100%;
  width: 100%;
}

.content-container-bottom {
  padding: 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.academic-framework .content-container-bottom {
  padding: 0px;
  left: 0;
  position: relative;
  margin-top: 108px;
  max-height: 185px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .academic-framework .content-container-bottom {
    padding: 15px;
  }
}

.graduate-worldwise-container .hero--video:before {
  padding-bottom: 60%;
}

.graduate-worldwise .title-text {
  margin-bottom: 10px;
}
@media (max-width: 1280px) {
  .graduate-worldwise .title-text {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1;
  }
}
@media (max-width: 991px) {
  .graduate-worldwise .title-text {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1;
  }
}
@media screen and (max-width: 800px) {
  .graduate-worldwise .title-text {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
  }
}
@media screen and (max-width: 400px) {
  .graduate-worldwise .title-text {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
  }
}
.graduate-worldwise .tag-text {
  margin-bottom: 10px;
}
.graduate-worldwise .read-more-text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
}

.title-big-container {
  margin-bottom: 24px;
}
@media screen and (max-width: 550px) {
  .title-big-container {
    padding: 0 !important;
  }
}

.numbers-container .content-center {
  padding: 0 20px;
  position: relative;
  text-align: center;
  margin: auto;
}
@media screen and (max-width: 800px) {
  .numbers-container {
    margin-bottom: 15px;
  }
}
.numbers-container .title-text {
  margin-bottom: 10px;
}
@media screen and (max-width: 1100px) {
  .numbers-container .title-text {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1;
  }
}
@media screen and (max-width: 800px) {
  .numbers-container .title-text {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1;
  }
}
@media screen and (max-width: 400px) {
  .numbers-container .title-text {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1;
  }
}
.numbers-container .sub-title {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.2;
}
body.zh-Hans .numbers-container .sub-title {
  font-size: 20.8px;
  font-size: 1.3rem;
  line-height: 1.2;
}
@media screen and (max-width: 1279px) {
  .numbers-container .sub-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.2;
  }
}
body.zh-Hans .numbers-container .sub-title {
  font-size: 20.8px;
  font-size: 1.3rem;
  line-height: 1.2;
}

@media screen and (max-width: 1100px) {
  .news-events-container .title-text {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1;
  }
}
@media screen and (max-width: 800px) {
  .news-events-container .title-text {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
.news-events-container .title-text-small {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 1100px) {
  .news-events-container .title-text-small {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1;
  }
}
@media screen and (max-width: 800px) {
  .news-events-container .title-text-small {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
.news-events-container .events-container {
  width: 100%;
}
.news-events-container .events-container .date-container {
  width: 140px;
  float: left;
  position: relative;
}
@media screen and (max-width: 500px) {
  .news-events-container .events-container .date-container {
    width: 120px;
  }
}
.news-events-container .events-container .date-container:after {
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  height: 50px;
  border-right: 1px solid #3C3737;
}
@media screen and (max-width: 800px) {
  .news-events-container .events-container .flex-container, .news-events-container .events-container .two-col-copy-image-container {
    display: flex;
  }
}
.news-events-container .events-container .flex-container .flex, .news-events-container .events-container .two-col-copy-image-container .flex {
  margin-left: 40px;
}
@media screen and (max-width: 800px) {
  .news-events-container .events-container .flex-container .flex, .news-events-container .events-container .two-col-copy-image-container .flex {
    flex: 1;
    margin-top: 0;
    margin-left: 30px;
  }
}
@media screen and (max-width: 500px) {
  .news-events-container .events-container .flex-container .flex, .news-events-container .events-container .two-col-copy-image-container .flex {
    margin-left: 20px;
  }
}
.news-events-container .events-container a.link--blue {
  position: relative;
  display: inline-block;
  margin-top: 5px;
}
.news-events-container .events-container a.link--blue .icon-chevron-right, .news-events-container .events-container a.link--blue .js-news-events-slick .slick-arrow.slick-prev, .js-news-events-slick .news-events-container .events-container a.link--blue .slick-arrow.slick-prev, .news-events-container .events-container a.link--blue .js-news-events-slick .slick-arrow.slick-next, .js-news-events-slick .news-events-container .events-container a.link--blue .slick-arrow.slick-next, .news-events-container .events-container a.link--blue .icon-chevron-left, .news-events-container .events-container a.link--blue .link--emph:before, .news-events-container .events-container a.link--blue .breadcrumb .breadcrumb-item:before, .breadcrumb .news-events-container .events-container a.link--blue .breadcrumb-item:before {
  position: absolute;
  right: -15px;
  top: 4.5px;
  font-size: 12px;
  font-weight: 800;
  transition: right 0.3s;
}
.news-events-container .events-container a.link--blue:hover .icon-chevron-right, .news-events-container .events-container a.link--blue:hover .js-news-events-slick .slick-arrow.slick-prev, .js-news-events-slick .news-events-container .events-container a.link--blue:hover .slick-arrow.slick-prev, .news-events-container .events-container a.link--blue:hover .js-news-events-slick .slick-arrow.slick-next, .js-news-events-slick .news-events-container .events-container a.link--blue:hover .slick-arrow.slick-next, .news-events-container .events-container a.link--blue:hover .icon-chevron-left, .news-events-container .events-container a.link--blue:hover .link--emph:before, .news-events-container .events-container a.link--blue:hover .breadcrumb .breadcrumb-item:before, .breadcrumb .news-events-container .events-container a.link--blue:hover .breadcrumb-item:before {
  right: -25px;
}
@media screen and (max-width: 800px) {
  .news-events-container .events-container {
    width: 100%;
  }
}

.js-news-events-slick .slick-arrow {
  position: absolute;
  top: 48%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  border: 1px solid #3c3737;
}
.js-news-events-slick .slick-arrow:before {
  font-size: 12px;
  font-weight: 800;
  position: absolute;
  left: 10px;
  top: -1px;
}
.js-news-events-slick .slick-arrow.slick-next {
  right: -15px;
}
.js-news-events-slick .slick-arrow.slick-next:before {
  left: 12px;
}
.js-news-events-slick .slick-arrow.slick-prev {
  left: -15px;
}
.js-news-events-slick .slick-arrow.slick-prev:before {
  display: flex;
  transform: rotate(180deg);
}

.school-cta-container {
  width: 80%;
}
.school-cta-container .variant-1 {
  display: none;
}
.school-cta-container .no-variant {
  display: block;
}
.school-cta-container.school-cta-container-variant-1 .variant-1 {
  display: block;
}
.school-cta-container.school-cta-container-variant-1 .no-variant {
  display: none;
}
.school-cta-container .cta-icon {
  min-width: 100px;
}
.school-cta-container .cta-icon img {
  height: 150px;
}
@media screen and (max-width: 800px) {
  .school-cta-container .cta-icon img {
    height: 90px;
  }
}
@media screen and (max-width: 500px) {
  .school-cta-container .cta-icon img {
    height: 60px;
  }
}
@media screen and (max-width: 800px) {
  .school-cta-container .cta-icon {
    min-width: 90px;
  }
}
@media screen and (max-width: 500px) {
  .school-cta-container .cta-icon {
    min-width: 55px;
  }
}
.school-cta-container .flex {
  padding: 15px;
}
@media screen and (max-width: 1100px) {
  .school-cta-container {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .school-cta-container .flex-container, .school-cta-container .two-col-copy-image-container {
    display: flex;
    overflow: hidden;
    flex-wrap: nowrap;
    width: 100%;
  }
  .school-cta-container .flex-container .flex, .school-cta-container .two-col-copy-image-container .flex {
    float: left;
    min-width: 90px;
    padding: 15px 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .school-cta-container .flex-container .flex, .school-cta-container .two-col-copy-image-container .flex {
    min-width: 55px;
  }
}
.footer-cta-icons .school-cta-container .cta-icon {
  min-width: 100px;
}
.footer-cta-icons .school-cta-container .cta-icon img {
  height: 120px;
}
@media screen and (max-width: 800px) {
  .footer-cta-icons .school-cta-container .cta-icon img {
    height: 90px;
  }
}
@media screen and (max-width: 500px) {
  .footer-cta-icons .school-cta-container .cta-icon img {
    height: 60px;
  }
}
@media screen and (max-width: 800px) {
  .footer-cta-icons .school-cta-container .cta-icon {
    min-width: 90px;
  }
}
@media screen and (max-width: 500px) {
  .footer-cta-icons .school-cta-container .cta-icon {
    min-width: 55px;
  }
}
@media screen and (max-width: 500px) {
  .footer-cta-icons .school-cta-container {
    padding: 0 !important;
  }
}
.school-cta-container .footer-cta-icons {
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .school-cta-container {
    width: 100%;
  }
}

.padding-top {
  padding-top: 20px;
}

.scroll-spy-container {
  position: absolute;
  float: left;
  top: 55px;
  width: 300px;
  transition: all 0.3s;
}
@media screen and (max-width: 1279px) {
  .scroll-spy-container {
    width: 200px;
  }
}
.scroll-spy-container.is-bottom-reached {
  top: auto;
  bottom: 0px;
  position: absolute;
}
.scroll-spy-container.sticky {
  position: fixed !important;
  top: 70px;
  bottom: auto;
}
.scroll-spy-container.sticky.is-bottom-reached {
  top: auto;
  bottom: 0px;
  position: absolute !important;
}
.scroll-spy-container ul.scroll-spy {
  list-style: none;
  position: relative;
  padding-left: 16px;
}
.scroll-spy-container ul.scroll-spy:before {
  background-color: #b5b5b5;
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  top: 8px;
  left: 0px;
}
.scroll-spy-container ul.scroll-spy li {
  padding-right: 15px;
  color: #b5b5b5;
  padding: 8px 0;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}
.scroll-spy-container ul.scroll-spy li a {
  color: #b5b5b5;
}
.scroll-spy-container ul.scroll-spy li.open {
  color: #3C3737;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}
.scroll-spy-container ul.scroll-spy li.open a {
  color: #3C3737;
}
.scroll-spy-container ul.scroll-spy li.open:before {
  content: "";
  position: absolute;
  border-left: 2px solid #D30013;
  left: -16px;
  height: 36px;
  top: 0px;
}

.scroll-spy-body:first-child {
  overflow: hidden;
}
.scroll-spy-body .block-container.container {
  padding: 0 !important;
  width: 100%;
}
.scroll-spy-body .scroll-spy-download {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
@media screen and (max-width: 1279px) {
  .scroll-spy-body .scroll-spy-download .multiple-file-upload .btn-download-pdf {
    transform: translateX(-20%);
  }
}

@media screen and (max-width: 1279px) {
  .btn-download-pdf {
    transform: unset !important;
  }
}

.uc-stories-container .content-center {
  padding: 15px;
  text-align: center;
  margin: auto;
}
.uc-stories-container .content-bottom {
  padding: 20px 15px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  margin: auto;
}
.uc-stories-container .title-text {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 10px;
}
body.zh-Hans .uc-stories-container .title-text {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 10px;
}
@media screen and (max-width: 1279px) {
  body.zh-Hans .uc-stories-container .title-text {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.1;
  }
}
@media screen and (max-width: 800px) {
  body.zh-Hans .uc-stories-container .title-text {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.1;
  }
}
@media screen and (max-width: 500px) {
  body.zh-Hans .uc-stories-container .title-text {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.1;
  }
}
body.my .uc-stories-container .title-text {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
@media screen and (max-width: 1279px) {
  body.my .uc-stories-container .title-text {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 800px) {
  body.my .uc-stories-container .title-text {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 500px) {
  body.my .uc-stories-container .title-text {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 1279px) {
  .uc-stories-container .title-text {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1;
  }
}
@media screen and (max-width: 800px) {
  .uc-stories-container .title-text {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1;
  }
}
@media screen and (max-width: 500px) {
  .uc-stories-container .title-text {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1;
  }
}
.uc-stories-container .sub-title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
}
@media screen and (max-width: 1100px) {
  .uc-stories-container .sub-title {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 500px) {
  .uc-stories-container .sub-title {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2;
  }
}

.uc-stories-details-view {
  position: fixed;
  display: none;
  width: 100vw;
  height: 100vh;
  z-index: 15;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.uc-stories-details-view.open {
  display: block;
}
.uc-stories-details-view a {
  color: white !important;
  -webkit-text-decoration: revert !important;
          text-decoration: revert !important;
}
.uc-stories-details-view .uc-stories-detail {
  display: none;
}
.uc-stories-details-view .uc-stories-detail.open {
  display: block;
}
.uc-stories-details-view .detail-container {
  height: 80vh;
  padding-top: 30px;
  overflow-y: auto;
}
.uc-stories-details-view .icon-cross {
  position: absolute;
  top: 0px;
  right: 30px;
  cursor: pointer;
  padding: 20px;
  display: inline-block;
  transition: 0.3s;
}
.uc-stories-details-view .icon-cross:hover {
  transform: rotate(180deg);
}
@media screen and (max-width: 500px) {
  .uc-stories-details-view .icon-cross {
    top: 20px;
    right: 10px;
    padding: 0;
  }
}
.uc-stories-details-view .uc-detail-footer {
  width: 100%;
  position: absolute;
  padding: 20px 50px;
  height: 70px;
  bottom: 20px;
  left: 0;
  z-index: 1;
}
.uc-stories-details-view .uc-detail-footer .icon-chevron-left, .uc-stories-details-view .uc-detail-footer .link--emph:before {
  cursor: pointer;
  transform: rotate(180deg);
  padding: 0 20px;
}
.uc-stories-details-view .uc-detail-footer .icon-chevron-right, .uc-stories-details-view .uc-detail-footer .icon-chevron-left, .uc-stories-details-view .uc-detail-footer .link--emph:before, .uc-stories-details-view .uc-detail-footer .breadcrumb .breadcrumb-item:before, .breadcrumb .uc-stories-details-view .uc-detail-footer .breadcrumb-item:before, .uc-stories-details-view .uc-detail-footer .js-news-events-slick .slick-arrow.slick-next, .js-news-events-slick .uc-stories-details-view .uc-detail-footer .slick-arrow.slick-next, .uc-stories-details-view .uc-detail-footer .js-news-events-slick .slick-arrow.slick-prev, .js-news-events-slick .uc-stories-details-view .uc-detail-footer .slick-arrow.slick-prev {
  cursor: pointer;
  padding: 0 20px;
}
@media screen and (max-width: 800px) {
  .uc-stories-details-view .uc-detail-footer {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 500px) {
  .uc-stories-details-view .uc-detail-footer {
    padding: 20px 0px;
  }
}

.uc-subtitle {
  display: inline-block;
  max-width: 70%;
}

.affiliation-container {
  white-space: nowrap;
  overflow: hidden;
}
.affiliation-container .affiliation-container-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  height: 100%;
  margin-bottom: -16px;
}
.affiliation-container .affiliation-container-scroll img {
  height: 80px;
  margin: 0 15px;
}
.affiliation-container .affiliation-container-scroll .horizontal-spacer {
  display: inline-block;
  width: 10%;
}
.affiliation-container:before {
  content: "";
  position: absolute;
  width: 15%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 90%);
}
.affiliation-container:after {
  content: "";
  position: absolute;
  width: 15%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 90%);
}

.two-col-copy-image-container p strong {
  font-size: 24px;
  line-height: 38px;
}
@media screen and (max-width: 800px) {
  .two-col-copy-image-container p strong {
    font-size: 19px;
    line-height: 32px;
  }
}
.two-col-copy-image-container .image {
  flex: 0 0 328px;
  box-sizing: content-box;
}
.two-col-copy-image-container .image img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.two-col-copy-image-container .content-container-narrow {
  max-width: 100%;
}
.two-col-copy-image-container .content-container-narrow P {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  padding-bottom: 24px;
}
.two-col-copy-image-container .content-container-narrow P:first-child {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
}
.two-col-copy-image-container .content-container-narrow strong {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 32px;
}
.two-col-copy-image-container .lead {
  font-size: 24px;
  line-height: 38px;
}
@media screen and (max-width: 800px) {
  .two-col-copy-image-container .lead {
    font-size: 19px;
    line-height: 32px;
  }
}
.two-col-copy-image-container p {
  margin: 0 0 16px 0;
}
.two-col-copy-image-container p:last-child {
  margin-bottom: 0;
}
.two-col-copy-image-container p:first-child {
  margin-bottom: 0;
}
@media screen and (max-width: 800px) {
  .two-col-copy-image-container {
    direction: ltr;
    text-align: left;
  }
  .two-col-copy-image-container .image {
    text-align: center;
    margin: 0 auto;
  }
  .two-col-copy-image-container .image img {
    width: 100%;
    height: auto;
  }
}
.two-col-copy-image-container .subtitle {
  margin-top: 24px;
}
.two-col-copy-image-container.left .image {
  padding-right: 24px;
  padding-left: 0;
}
@media screen and (max-width: 800px) {
  .two-col-copy-image-container.left .image {
    padding: 0 0 16px;
    width: 100%;
  }
}
.two-col-copy-image-container.right {
  direction: rtl;
  text-align: left;
}
.two-col-copy-image-container.right .image {
  padding-right: 0;
  padding-left: 24px;
}
@media screen and (max-width: 800px) {
  .two-col-copy-image-container.right .image {
    padding: 0 0 16px;
    width: 100%;
  }
}
