@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
 */

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

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

  70% {
    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 {
  animation-name: bounce;
  transform-origin: center bottom;
}

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

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

.flash {
  animation-name: flash;
}

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

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

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

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

.pulse {
  animation-name: pulse;
}

@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 {
  animation-name: rubberBand;
}

@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 {
  animation-name: shake;
}

@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 {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@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;
  animation-name: swing;
}

@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 {
  animation-name: tada;
}

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

@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 {
  animation-name: wobble;
}

@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 {
  animation-name: jello;
  transform-origin: center;
}

@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 {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-timing-function: ease-in-out;
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    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 {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    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 {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    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 {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    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 {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    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 {
  animation-name: bounceInUp;
}

@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 {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}

@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 {
  animation-name: bounceOutDown;
}

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

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

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

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

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

.bounceOutRight {
  animation-name: bounceOutRight;
}

@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 {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

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

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

.fadeInDown {
  animation-name: fadeInDown;
}

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

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

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

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

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

.fadeInLeft {
  animation-name: fadeInLeft;
}

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

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

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

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

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

.fadeInRight {
  animation-name: fadeInRight;
}

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

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

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

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

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

.fadeInUp {
  animation-name: fadeInUp;
}

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

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

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

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

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

  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    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);
    animation-timing-function: ease-in;
  }

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

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

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

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    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 {
  backface-visibility: visible !important;
  animation-name: flipInX;
}

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

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    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 {
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@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 {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@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 {
  animation-duration: 0.75s;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@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 {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

@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 {
  animation-name: rotateIn;
}

@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 {
  animation-name: rotateInDownLeft;
}

@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 {
  animation-name: rotateInDownRight;
}

@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 {
  animation-name: rotateInUpLeft;
}

@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 {
  animation-name: rotateInUpRight;
}

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

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

.rotateOut {
  animation-name: rotateOut;
}

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

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

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

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

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

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

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

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

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

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

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

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

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

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

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

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

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

@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 {
  animation-name: jackInTheBox;
}

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

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

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

.rollIn {
  animation-name: rollIn;
}

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

.rollOut {
  animation-name: rollOut;
}

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

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    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);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    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);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    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);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    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);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    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;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

@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 {
  animation-name: zoomOutLeft;
}

@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 {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    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;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

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

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

.slideInDown {
  animation-name: slideInDown;
}

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

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

.slideInLeft {
  animation-name: slideInLeft;
}

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

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

.slideInRight {
  animation-name: slideInRight;
}

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

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

.slideInUp {
  animation-name: slideInUp;
}

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

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

.slideOutDown {
  animation-name: slideOutDown;
}

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

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

.slideOutLeft {
  animation-name: slideOutLeft;
}

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

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

.slideOutRight {
  animation-name: slideOutRight;
}

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

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

.slideOutUp {
  animation-name: slideOutUp;
}

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

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

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

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

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

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

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

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

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

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

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

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

@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;
  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 20px;
    width: 95%;
  }
}
@media (max-width: 768px) {
  .lightbox-lite__box {
    padding: 40px 20px;
    width: 95%;
  }
}

.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;
  animation-duration: 0.5s;
}

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 */
}

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;
}

.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-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-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-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-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-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-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;
}

.l-grid-flex {
  flex-wrap: wrap;
}

.l-grid-flex--centered {
  -moz-justify-content: center;
  justify-content: center;
}

.l-inset {
  padding: 30px 15px;
}

.l-inset-xms {
  padding: 15px;
}

.l-inset-l-h {
  padding-left: 50px;
  padding-right: 50px;
}

.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-btm {
  padding-bottom: 0 !important;
}

.l-inset-xxl-btm {
  padding-bottom: 70px !important;
}

.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 {
  padding-top: 90px;
}
@media screen and (max-width: 800px) {
  .l-inset-top--header {
    padding-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-m-top {
  margin-top: 40px !important;
}

.l-offset-s-top {
  margin-top: 30px;
}

.l-offset-xs-top {
  margin-top: 20px !important;
}

.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: 50px;
}
@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-s-btm {
  margin-bottom: 30px !important;
}

.l-offset-xs-btm {
  margin-bottom: 20px !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;
  }
}

@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: 1280px) {
  .l-offset-xxs-top--desktop-small {
    margin-top: 10px;
  }
}

@media screen and (max-width: 1280px) {
  .l-offset-l-top--desktop-small {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 1280px) {
  .l-offset-l-btm--desktop-small {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 1280px) {
  .l-offset-s-btm--desktop-small {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 1280px) {
  .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;
  }
}

.u-line-height-normal {
  line-height: 1.2 !important;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  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: 400px) {
  .container {
    padding-left: 15px !important;
    padding-right: 15px !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: 400px) {
  .container--l {
    padding-left: 15px !important;
    padding-right: 15px !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: 400px) {
  .container--m {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.container--s {
  width: 100%;
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
}

.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;
  }
}

@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: 771px) {
  .l-tablet {
    display: none;
  }
}

@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: 1280px) {
  .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;
  }
}

.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-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: "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: "\e910";
}

.icon-download:before {
  content: "\e90d";
}

.icon-check:before {
  content: "\f00c";
}

.icon-plus:before {
  content: "\f067";
}

.icon-minus:before {
  content: "\f068";
}

.icon-chevron-up:before {
  content: "\f106";
}

.icon-chevron-down:before {
  content: "\f107";
}

.icon-cross:before {
  content: "\e90b";
}

.icon-hamburger:before {
  content: "\e90c";
}

.icon-facebook:before {
  content: "\e901";
}

.icon-linkedin:before {
  content: "\e902";
}

.icon-twitter:before {
  content: "\e903";
}

.icon-wechat:before {
  content: "\e904";
}

.icon-youku:before {
  content: "\e905";
}

.icon-youtube:before {
  content: "\e906";
}

.icon-arrow-circled-left:before, .page-bottom-nav__prev:before, .slick-prev:before {
  content: "\e908";
}

.icon-arrow-circled-up:before {
  content: "\e90e";
}

.icon-arrow-circled-down:before {
  content: "\e90f";
}

.icon-arrow-circled-right:before, .page-bottom-nav__next:before, .slick-next:before {
  content: "\e909";
}

.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, .icon-chevron-left:before, .link--emph:before {
  content: "\e90a";
}

.icon-chevron-right-b:before {
  content: "\e91a";
  font-weight: 700;
}

.icon-chevron-left, .link--emph:before {
  display: inline-block;
  transform: rotate(180deg);
}

.icon-search:before {
  content: "\e907";
}

.icon-instagram:before {
  content: "\e900";
}

.icon-play:before, .icon-play-circled__trans-bg:before, .icon-play-circled:before {
  content: "\f04b";
}

.icon-map-marker:before {
  content: "\f041";
}

.icon-envelope:before {
  content: "\f0e0";
}

.icon-top-pointer:before {
  content: "\e911";
}

.icon-clock:before {
  content: "\e912";
}

.icon-play-smooth-edge:before {
  content: "\e91c";
}

.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-pretty.gif") center no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  margin: auto;
}

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__title, .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 {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
body.zh .text--serif, body.zh .h-card__copy__title, body.zh .link--emph, body.zh .text-serif--white--xxl, body.zh .text--serif--l--emph, body.zh .text--serif--xl, body.zh .text--serif--l, body.zh .text--serif--m--caps, body.zh .text--serif--m, body.zh .text--serif--xxl--emph, body.zh .text--serif--xxl, body.zh .text--serif--xxxl--red, body.zh .text--serif--xm--strong, body.zh .text--serif--xxxl, body.zh .text--serif--xxxxl {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}
body.my .text--serif, body.my .h-card__copy__title, 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 {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
}

.text--sans-serif, .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__info, .card__subtitle, .box__copy, .article-header__date, .form__textarea, .form__input, .filtered-list__row, .text--sans-serif--black--xxxs, .text--sans-serif--black, .h-card__copy__subtitle, .card__title, .btn--main, .btn--primary, .btn--pill, .btn--rainbow, .btn--link--base--white, .btn--link--base, .accordion__tab__copy__link, .btn--cta--blue, .btn--cta, .cookie-consent__agree, .btn--blue, .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 .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__info, body.my .card__subtitle, body.my .box__copy, body.my .article-header__date, body.my .form__textarea, body.my .form__input, body.my .filtered-list__row, body.my .text--sans-serif--black--xxxs, body.my .text--sans-serif--black, body.my .h-card__copy__subtitle, body.my .card__title, body.my .btn--main, body.my .btn--primary, body.my .btn--pill, body.my .btn--rainbow, body.my .btn--link--base--white, body.my .btn--link--base, body.my .accordion__tab__copy__link, body.my .btn--cta--blue, body.my .btn--cta, body.my .cookie-consent__agree, body.my .btn--blue, 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__info, .card__subtitle, .box__copy, .article-header__date, .form__textarea, .form__input, .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, .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__subtitle, .card__title, .btn--main, .btn--primary, .btn--pill, .btn--rainbow, .btn--link--base--white, .btn--link--base, .accordion__tab__copy__link, .btn--cta--blue, .btn--cta, .cookie-consent__agree, .btn--blue, .btn--base {
  font-weight: 800;
}

.text--uppercase {
  text-transform: uppercase;
}

.text--nowrap {
  white-space: nowrap;
}

.text--xxxxl, .text--serif--xxxxl {
  font-size: 54px;
  font-size: 3.375rem;
  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 .text--xxl, body.zh .text-serif--white--xxl, body.zh .text--serif--xxl--emph, body.zh .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 .text--xxl, body.zh .text-serif--white--xxl, body.zh .text--serif--xxl--emph, body.zh .text--serif--xxl {
    font-size: 72px;
    font-size: 4.5rem;
    line-height: 0.9;
  }
}
@media screen and (max-width: 800px) {
  body.zh .text--xxl, body.zh .text-serif--white--xxl, body.zh .text--serif--xxl--emph, body.zh .text--serif--xxl {
    font-size: 64px;
    font-size: 4rem;
    line-height: 0.9;
  }
}
@media screen and (max-width: 500px) {
  body.zh .text--xxl, body.zh .text-serif--white--xxl, body.zh .text--serif--xxl--emph, body.zh .text--serif--xxl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 0.9;
  }
}
@media screen and (max-width: 400px) {
  body.zh .text--xxl, body.zh .text-serif--white--xxl, body.zh .text--serif--xxl--emph, body.zh .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: 36px;
  font-size: 2.25rem;
  line-height: 1;
}
@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: 20px;
    font-size: 1.25rem;
    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--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: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
}

.text--lightbox-title {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .text--lightbox-title {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1;
  }
}
@media screen and (max-width: 400px) {
  .text--lightbox-title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
  }
}

.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: 48px;
  font-size: 3rem;
  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 .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 .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 .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 .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;
}

.admissions-section-title {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

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: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.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. */
}

.list-bare {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-header--red {
  color: #D30013;
  font-weight: 800;
}

.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: 1280px) {
  .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: 1280px) {
  .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: 1280px) {
  .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: 1280px) {
  .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 .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: 1280px) {
  .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: 1280px) {
  .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.is-loading:before {
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(240, 240, 240, 0.7);
}
.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 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(240, 240, 240, 0.65) 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#a6f0f0f0",GradientType=0 ); /* IE6-9 */
}
.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: 1280px) {
  .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: 1280px) {
  .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%;
  }
}

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: #D30013;
  border-bottom: 1px solid transparent;
}
.no-touchevents .l-body-copy a:hover {
  border-bottom-color: #D30013;
}

.link--base {
  color: #D30013;
  border-bottom: 1px solid transparent;
}
.no-touchevents .link--base: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: "\e90a";
  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;
  -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 .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--blue {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  background: #009dd5;
  padding: 12px 20px;
  border: 1px solid #009dd5;
  border-radius: 5px;
  min-width: 200px;
}
body.zh .btn--blue {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}
.no-touchevents .btn--blue:hover, .no-touchevents .btn--blue: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 .btn--cta, body.zh .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;
}

.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;
}

.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 .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: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: "\e90a";
  padding-left: 5px;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.2;
}
.no-touchevents .accordion-group__tab__link:hover:after, .no-touchevents .btn--link--base--white: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:active:after, .no-touchevents .accordion__tab__copy__link:active:after {
  padding-left: 10px;
}

.btn--link--base, .accordion__tab__copy__link {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #009dd5;
}
body.zh .btn--link--base, body.zh .accordion__tab__copy__link {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}

.btn--link--base--white {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
}
body.zh .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 .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: 1280px) {
  .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: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid transparent;
  padding: 10px 20px;
  border-radius: 5px;
  min-width: 130px;
}
body.zh .btn--pill {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}

.btn--icon {
  position: relative;
}
.btn--icon:after {
  content: "";
  font-size: 24px;
  font-size: 1.5rem;
  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 .btn--icon:after {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1;
}

.btn--linkedin {
  padding-right: 30px;
  background: #0077b5;
}
.btn--linkedin:after {
  content: "\e902";
  top: 46%;
}
.no-touchevents .btn--linkedin:hover, .no-touchevents .btn--linkedin:active {
  background: #ffffff;
  border-color: #0077b5;
  color: #0077b5;
}

.btn--wechat {
  padding-right: 30px;
  background: #76b23d;
}
.btn--wechat:after {
  content: "\e904";
}
.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: "\e901";
}
.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: "\e910";
  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 & {
        @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__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--primary {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  text-transform: uppercase;
  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--primary:hover {
  background: #9E1422;
  border: 5px solid #9E1422;
}
.no-touchevents .btn--main:active, .no-touchevents .btn--primary:active {
  background: #D30013;
  border: 5px solid #D30013;
}
.btn--main.has-icon, .has-icon.btn--primary {
  padding-left: 72px;
  position: relative;
}
.btn--main.has-icon i, .has-icon.btn--primary 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--primary {
    min-width: 150px;
  }
}
@media all and (max-width: 991px) {
  .btn--main, .btn--primary {
    min-width: 140px;
  }
}

.btn--link--base, .accordion__tab__copy__link {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #D30013;
}
body.zh .btn--link--base, body.zh .accordion__tab__copy__link {
  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 .btn--link--base--white {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}

::-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;
}

.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;
  -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;
}
.parsley-errors-list > li {
  margin: 5px 0 0 0;
  padding: 0;
}

.parsley-error {
  border-color: #D30013;
}

.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-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 {
  height: calc(50% - 7.5px);
}
@media screen and (max-width: 800px) {
  .flex__3-items {
    margin-left: 0;
  }
}

.flex__4-items {
  margin-left: -15px;
}
.flex__4-items .flex-bg {
  height: calc(50% - 7.5px);
}
@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;
}

.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);
}

.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;
  box-shadow: 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 .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: "\f107";
  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;
  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;
  }
}
.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;
}

.select-list__nationality {
  position: relative;
  z-index: 2;
}

.other-nationality .other-nationality-container {
  padding: 10px;
  display: none;
}
.other-nationality.open .other-nationality-container {
  display: block;
}

.form-select-list {
  list-style: none;
}
.form-select-list ul {
  list-style: none;
}
.form-select-list .form-select-l2 {
  max-height: 0;
  width: 100%;
  position: absolute;
  overflow: hidden;
  margin-left: -10px;
  box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.5);
  transition: max-height 0.3s;
  -webkit-transition: max-height 0.3s;
  padding: 0;
}
.form-select-list .form-select-l2.open {
  max-height: 500px;
  overflow-y: auto;
  background: #FFF;
}
.form-select-list .form-select-l2 li {
  cursor: pointer;
  width: 100%;
  padding: 0;
  background-color: white;
}
.form-select-list .form-select-l2 li .title-l2 {
  padding: 0 15px;
}
.form-select-list .form-select-l2 li ul.form-select-l3 {
  padding: 0;
  margin: 0;
  max-height: 0;
  transition: max-height 0.3s;
  -webkit-transition: max-height 0.3s;
  overflow: hidden;
}
.form-select-list .form-select-l2 li ul.form-select-l3 li {
  padding: 0 30px;
}
.form-select-list .form-select-l2 li ul.form-select-l3 li:hover {
  background: #DDD;
}
.form-select-list .form-select-l2 li:hover {
  background: #b5b5b5;
}
.select-list__nationality .form-select-list .form-select-l2 li:hover {
  background: #DDD;
}
.form-select-list .form-select-l2 li:hover ul.form-select-l3 {
  max-height: 500px;
  transition: max-height 0.3s ease-in;
  -webkit-transition: max-height 0.3s ease-in;
}
.form-select-list .form-select-l2 li.click-control:hover ul.form-select-l3 {
  max-height: 0;
}
.form-select-list .form-select-l2 li.click-control.open ul.form-select-l3 {
  max-height: 500px;
  transition: max-height 0.3s ease-in;
  -webkit-transition: max-height 0.3s ease-in;
}

.js-household-bj__child, .js-household-bj__child-not {
  position: relative;
}
.js-household-bj__child:before, .js-household-bj__child-not:before {
  content: "";
  position: absolute;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  background: #FFF;
}
.js-household-bj__child.open:before, .js-household-bj__child-not.open:before {
  content: "";
  width: 0;
  height: 0;
}

.status-message {
  text-align: center;
  padding-top: 30px;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 99;
  display: none;
}
@media screen and (max-width: 800px) {
  .cookie-popup {
    bottom: auto;
    top: 0;
  }
}
.cookie-popup.is-shown {
  display: block;
}

.cookie-consent {
  padding: 40px 0 0;
}
@media screen and (max-width: 800px) {
  .cookie-consent {
    display: flex;
    flex-direction: column;
    padding: 40px 15px 0;
  }
}

.cookie-consent__message {
  display: none;
  color: #ffffff;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
  font-size: 14px;
  line-height: 20px;
}
.cookie-consent__message.en {
  display: block;
}
.cookie-consent__message.zh {
  display: none;
}
.cookie-consent__message:lang(zh).zh {
  display: block;
}
.cookie-consent__message:lang(zh).en {
  display: none;
}
.cookie-consent__message a {
  color: #009ED0;
  text-decoration: underline;
}

.cookie-consent__agree {
  cursor: pointer;
  margin: 30px 0;
}
.cookie-consent__agree.en {
  display: block;
}
.cookie-consent__agree.zh {
  display: none;
}
.cookie-consent__agree:lang(zh).zh {
  display: block;
}
.cookie-consent__agree:lang(zh).en {
  display: none;
}

.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;
}
.promo-section-container.right .promo-section-image {
  padding-left: 5%;
}
.promo-section-container.left .promo-container {
  float: left;
}
.promo-section-container.left .promo-section-image {
  padding-right: 5%;
}
@media screen and (max-width: 800px) {
  .promo-section-container {
    padding: 0 15px;
  }
  .promo-section-container.right .promo-container {
    float: left;
  }
  .promo-section-container.right .promo-section-image {
    padding-left: 0;
    padding-bottom: 20px;
  }
  .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: 80px;
  font-size: 5rem;
  line-height: 1;
  padding-bottom: 24px;
}
@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(1320px + (100% - 1320px) / 2);
}
@media all and (max-width: 1319px) {
  .promo-section-container .promo-container {
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 1100px) {
  .promo-section-container .promo-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@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: 42%;
  margin-top: 40px;
}
.promo-section-container .promo-section-content .intro-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  padding-bottom: 32px;
}
.zh .promo-section-container .promo-section-content .intro-text {
  padding-left: 4px;
}
@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: 0px;
  }
}
.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;
}
.promo-card .image, .contextual-link-card .image {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 66%;
  background-size: cover;
  background-position: center;
}
.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: 0px 2px 5px rgba(0, 0, 0, 0.2117647059);
  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;
}
.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-between;
  z-index: 1;
}
.promo-card .promo-content, .contextual-link-card .promo-content {
  background-color: #f0f0f0;
  padding: 24px;
  margin-top: 7px;
}
.promo-card .promo-content .promo-content__inner, .contextual-link-card .promo-content .promo-content__inner {
  margin: 12px 0 32px;
  height: 112px;
  overflow: hidden;
}
.col-3 .promo-card .promo-content .promo-content__inner, .col-3 .contextual-link-card .promo-content .promo-content__inner {
  height: 200px;
}
.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;
}
.promo-card .promo-content .title, .contextual-link-card .promo-content .title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  font-weight: bold;
}
.promo-card .promo-content .intro, .contextual-link-card .promo-content .intro {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
}
.promo-card .promo-content .cta, .contextual-link-card .promo-content .cta {
  display: inline-block;
  padding-bottom: 6px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .promo-card .promo-content .cta, .contextual-link-card .promo-content .cta {
    white-space: unset;
    overflow: unset;
  }
}
.promo-card .promo-content .cta.has-icon, .contextual-link-card .promo-content .cta.has-icon {
  overflow: unset;
  position: relative;
}
.promo-card .promo-content .cta.has-icon .icon-play2, .contextual-link-card .promo-content .cta.has-icon .icon-play2 {
  font-size: 13px;
  right: -1px;
  top: 1px;
  position: relative;
  transition: right 0.3s;
}
.promo-card .promo-content .cta.has-icon:hover .icon-play2, .contextual-link-card .promo-content .cta.has-icon:hover .icon-play2 {
  right: -5px;
}
@media screen and (max-width: 800px) {
  .promo-card .promo-content .cta.has-icon .icon-play2, .contextual-link-card .promo-content .cta.has-icon .icon-play2 {
    top: 1px;
    position: relative;
    right: -5px;
    transition: right 0.3s ease-in-out;
  }
  .promo-card .promo-content .cta.has-icon:hover .icon-play2, .contextual-link-card .promo-content .cta.has-icon:hover .icon-play2 {
    right: -8px;
  }
}
.promo-card .promo-content .cta.has-icon:after, .contextual-link-card .promo-content .cta.has-icon:after {
  content: "";
}
@media screen and (max-width: 800px) {
  .promo-card.col-3 .image, .col-3.contextual-link-card .image {
    padding-bottom: 65%;
  }
  .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 {
    max-height: 0;
    height: auto;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, margin-top 0.3s;
    padding: 0 15px;
    margin-top: 0px;
  }
  .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;
  }
  .promo-card.col-3 .promo-content .cta, .col-3.contextual-link-card .promo-content .cta {
    padding-bottom: 24px;
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .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: 0;
  }
  .promo-card.col-4 .promo-content, .contextual-link-card .promo-content {
    width: 67%;
    padding: 7px 15px;
    margin-top: 0;
  }
  .promo-card.col-4 .promo-content .promo-content__inner, .contextual-link-card .promo-content .promo-content__inner {
    height: 45px;
    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;
  }
  .promo-card.col-4 .promo-content .cta, .contextual-link-card .promo-content .cta {
    padding-bottom: 0;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.3;
  }
}

.contextual-link-card {
  width: 252px;
  float: right;
}
.contextual-link-card .promo-content .promo-content__inner {
  margin-top: 0;
}
@media screen and (max-width: 800px) {
  .contextual-link-card {
    width: 100%;
    margin-top: 30px;
  }
}
.contextual-link-card a.cta {
  border: none;
  color: #D30013;
}
.no-touchevents .contextual-link-card a.cta:hover {
  border: none;
  transition: none;
}

.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;
}

.article {
  margin-bottom: 50px;
}

.article-header {
  margin-top: 50px;
  margin-bottom: 40px;
}
@media screen and (max-width: 550px) {
  .article-header {
    margin-bottom: 30px;
  }
}

.article-header__date {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  text-transform: uppercase;
  color: #D30013;
  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;
  }
}

.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;
}
.hero:after {
  content: "";
  display: table;
  clear: both;
}
.hero:before {
  content: "";
  display: block;
}

.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--video {
  cursor: pointer;
}
.no-touchevents .hero--video:not(.playing):hover {
  opacity: 0.9;
}
.hero--video:before {
  background: rgba(0, 0, 0, 0.4);
  padding-bottom: 50%;
}

.hero__bg-video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.hero-video-disabled .hero__bg-video-container {
  display: none;
}

.hero--video__play-btn {
  position: absolute;
  right: 120px;
  bottom: 40px;
}
.hero--video__play-btn .icon-chevron-right, .hero--video__play-btn .uc-stories-details-view .uc-detail-footer .icon-chevron-left, .uc-stories-details-view .uc-detail-footer .hero--video__play-btn .icon-chevron-left, .hero--video__play-btn .uc-stories-details-view .uc-detail-footer .link--emph:before, .uc-stories-details-view .uc-detail-footer .hero--video__play-btn .link--emph:before, .hero--video__play-btn .js-news-events-slick .slick-arrow.slick-prev, .js-news-events-slick .hero--video__play-btn .slick-arrow.slick-prev, .hero--video__play-btn .js-news-events-slick .slick-arrow.slick-next, .js-news-events-slick .hero--video__play-btn .slick-arrow.slick-next, .hero--video__play-btn .icon-chevron-left, .hero--video__play-btn .link--emph:before {
  position: relative;
  right: -2px;
  top: 2px;
}
@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 {
    display: none;
  }
}

.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;
}

.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-player, .youtube-player {
  height: 100%;
  width: 100%;
}

.hero__content {
  position: absolute;
  left: 0;
  color: #ffffff;
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
  font-weight: 800;
  letter-spacing: -4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 128px;
  font-size: 8rem;
  line-height: 1;
}
body.zh .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;
}
@media screen and (max-width: 1100px) {
  .hero__content {
    font-size: 80px;
    font-size: 5rem;
    line-height: 1;
  }
}
@media screen and (max-width: 800px) {
  .hero__content {
    letter-spacing: -2px;
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 1;
  }
}
@media screen and (max-width: 500px) {
  .hero__content {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1;
  }
}
.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 {
  bottom: 25px;
  padding: 0px 60px 0px 120px;
  max-width: 75%;
}
.hero__content--inner:before {
  border-left: none;
}
@media screen and (max-width: 1600px) {
  .hero__content--inner {
    padding-left: 60px;
  }
}
@media screen and (max-width: 1100px) {
  .hero__content--inner {
    padding-left: 30px;
  }
}
@media screen and (max-width: 550px) {
  .hero__content--inner {
    max-width: 85%;
  }
}
@media screen and (max-width: 400px) {
  .hero__content--inner {
    padding-left: 15px;
    padding-right: 30px;
  }
}

.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: 400px) {
  .hero__content--outer-limited {
    max-width: 80%;
  }
}

.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;
  -o-user-select: none;
  user-select: none;
}
.hero__logo-cta:before {
  content: "";
  display: block;
  padding-bottom: 15.56%;
}

.block-container {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 550px) {
  .block-container {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.block-container:last-child {
  margin-bottom: 50px;
}
@media screen and (max-width: 550px) {
  .block-container:last-child {
    margin-bottom: 30px;
  }
}
.block-container table {
  width: 100%;
  border: 0;
}
.block-container table tr {
  display: block;
  margin-top: 15px;
}
.block-container table td, .block-container table th {
  width: 50%;
  border: 0;
}
.block-container table td:first-child, .block-container table th:first-child {
  padding-right: 30px;
}
.block-container table td:last-child, .block-container table th:last-child {
  padding-left: 30px;
}
@media screen and (max-width: 800px) {
  .block-container table tr {
    padding: 0;
  }
  .block-container table td {
    width: 100%;
    display: block;
    margin-top: 15px;
    padding: 0;
  }
  .block-container table td:first-child, .block-container table td:last-child {
    padding: 0;
  }
}

/*
.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: 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-slider {
  width: 100%;
  overflow: hidden;
}

.block-slider-item {
  width: 100%;
  height: 580px;
  max-height: calc(100vh - 160px);
  overflow: auto;
  margin: 15px 5px;
  padding: 20px 30px 50px;
  outline: none;
  box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media screen and (max-width: 800px) {
  .block-slider-item {
    margin: 15px 5px;
    padding: 30px 15px;
  }
}

.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;
}

.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__nav.slide__nav-center {
  text-align: center;
}

.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 .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 .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: 1280px) {
  .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;
  }
}

.block-slider.slick-slider {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

.block-slider .slick-list.draggable {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.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;
  }
}

.no-scroll {
  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 {
    backface-visibility: hidden;
    left: 300px;
  }
}
@media screen and (max-width: 400px) {
  .has-visible-nav .page {
    left: 100%;
  }
}

.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;
}
@media screen and (max-width: 1100px) {
  .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;
  }
}

.page-header {
  font-family: "Figtree", "Helvetica Neue", Helvetica, Arial, "Zawgyi-One", sans-serif;
  font-weight: 500;
  background-color: #ffffff;
  width: 100%;
  z-index: 10;
}
.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;
  padding-top: 54px;
}
@media screen and (max-width: 1100px) {
  .page-header-hidden {
    padding-top: 0;
  }
}
@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 a {
  display: flex;
}

.page-brand__copy__img {
  width: 310px;
}
@media screen and (max-width: 1100px) {
  .page-brand__copy__img {
    width: 200px;
    max-height: 80px;
  }
}
@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: 11;
  text-align: center;
  transition: opacity 0.3s;
  height: 100px;
}
@media screen and (max-width: 1100px) {
  .page-brand-container {
    height: auto;
  }
}

.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;
  }
}

.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 {
  position: relative;
  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: 10;
}
.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;
  }
}
@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 {
  display: none;
  width: 0px;
}
.is-sticky .page-nav__right-container {
  width: 14%;
  display: inline-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: 1280px) {
  .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: 1280px) {
  .page-nav__item:not(.last-child) {
    padding-right: 4px;
  }
}
@media screen and (max-width: 1600px) {
  body.zh .page-nav__item:not(.last-child) {
    padding-right: 15px;
  }
}
@media screen and (max-width: 1280px) {
  body.zh .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;
}
.page-nav__item a.text--xxxxs {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
}
@media screen and (max-width: 1280px) {
  .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 .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: 1280px) {
  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 .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 .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: 20px 0 20px 0;
  color: #ffffff;
  background: #000000;
  border-top: 10px solid #D30013;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
  position: relative;
}
.page-footer.page-footer_school {
  padding-top: 0;
}

.page-footer__social {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 10px 0 0;
}
.page-footer__social > li {
  display: inline-block;
  padding-bottom: 5px;
}
.page-footer__social > li:not(:last-child) {
  padding-right: 5px;
}

.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;
}
.footer-right-content a.eim-sub-link {
  color: #ffffff;
}
.footer-right-content a.eim-sub-link:hover {
  color: #D30013;
}

.social-qr-image {
  max-width: 100%;
  height: auto;
}

.page-footer__social__icon {
  display: inline-block;
  vertical-align: middle;
  background: #262626;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1;
  padding: 2px;
  color: #ffffff;
  border-radius: 0;
}
@media screen and (max-width: 400px) {
  .page-footer__social__icon {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1;
  }
}
.page-footer__social__icon:hover {
  border-radius: 5px;
}
.no-touchevents .page-footer__social__icon.icon-facebook:hover {
  background-color: #4267b2;
}
.no-touchevents .page-footer__social__icon.icon-linkedin:hover {
  background-color: #0077b5;
}
.no-touchevents .page-footer__social__icon.icon-wechat:hover {
  background-color: #6AAD32;
}
.no-touchevents .page-footer__social__icon.icon-instagram:hover {
  background-color: #bc2a8d;
}
.no-touchevents .page-footer__social__icon.icon-youtube:hover {
  background-color: #cd201f;
}
.no-touchevents .page-footer__social__icon.icon-youku:hover {
  background-color: #09a8df;
}
.no-touchevents .page-footer__social__icon.icon-twitter:hover {
  background-color: #1da1f2;
}
.no-touchevents .page-footer__social__icon.icon-rednote:hover {
  background-color: #fe2c55;
}
.no-touchevents .page-footer__social__icon.icon-wechat-channels:hover {
  background-color: #07C160;
}
.page-footer__social__icon .page-footer__social__icon-svg {
  display: block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
}
.page-footer__social__icon-svg {
  width: 32px;
  height: 32px;
  color: #fff;
  background: transparent;
}

.page-footer__links > li > a, .page-footer__copyright > a {
  color: #ffffff;
  border-bottom: 1px solid transparent;
}
.page-footer__links > li > a:hover, .page-footer__copyright > a:hover {
  border-bottom-color: #ffffff;
}

.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 .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%;
}

.dehong-group-logo {
  max-width: 150px;
}

.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 .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;
  color: #3C3737;
}

.card--cta {
  padding-bottom: 40px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1100px) {
  .card--cta {
    padding-bottom: 30px;
  }
}

.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;
  -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;
  -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 {
  border-top: 1px solid #ebebeb;
  padding: 20px;
  overflow: hidden;
}

.card__body--compressed {
  padding: 10px 20px;
}

.card__title {
  color: #3C3737;
  padding-bottom: 5px;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.1;
}
@media screen and (max-width: 1600px) {
  .card__title {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.1;
  }
}
@media screen and (max-width: 1100px) {
  .card__title {
    font-size: 20px;
    font-size: 1.25rem;
    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;
  text-transform: uppercase;
  color: #D30013;
  padding-bottom: 3px;
}

.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__copy__cta {
  position: absolute;
  bottom: 30px;
}

.h-card__copy__title {
  color: #D30013;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.2;
  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: 16px;
  font-size: 1rem;
  line-height: 1.2;
  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: 1280px) {
  .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;
}

.accordion-container:not(.accordion-first-child) {
  margin-top: 0;
}

.accordion {
  background: #ffffff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.accordion__tab {
  position: relative;
  padding: 30px 50px;
}
@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%;
}

.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__tab__copy {
  padding-left: 30px;
  position: absolute;
  left: 135px;
  top: 15px;
  bottom: 15px;
  right: 0;
}

.accordion__tab__copy__title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
}
body.zh .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__tab__copy__link:after {
  content: "\f107";
}
.accordion.open .accordion__tab__copy__link:after {
  content: "\f106";
}

.accordion__tab__right {
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.accordion__content {
  overflow: hidden;
  max-height: 0;
  transition: all 0.1s;
}
.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;
}
@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: block;
  float: right;
}
@media screen and (max-width: 550px) {
  .accordion__content__inner__cta {
    padding-bottom: 15px;
  }
}

.accordion-container--basic {
  margin-bottom: 30px;
}
.accordion-container--basic .accordion {
  border-bottom: 6px solid #D30013;
}
@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 5px 30px 5px;
}
.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--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: "\f107";
}
.accordion-group.open .accordion-group__tab__link:after {
  content: "\f106";
}

.accordion-group__content {
  overflow: hidden;
  max-height: 0;
  transition: all 0.3s;
}
.accordion-group.open .accordion-group__content {
  max-height: 10000px;
}

.accordion-container--minimal {
  margin-bottom: 2px;
}
.accordion-container--minimal .accordion__tab__copy {
  position: static;
  padding-left: 0;
}
.accordion-container--minimal .accordion {
  box-shadow: none;
  border: 0;
}
.accordion-container--minimal .accordion.open .accordion__toggle-icon:before {
  content: "\f068";
}
.accordion-container--minimal .accordion__tab {
  position: relative;
  background: white;
  padding: 2px 0;
  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: 10px 0;
}
.accordion-container--minimal .accordion__toggle-icon:before {
  font-family: "icomoon";
  font-style: normal;
  content: "\f067";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
  margin-right: 15px;
}
@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__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;
}

[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: 200px;
  background: #ffffff;
  padding: 10px 0 5px;
  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: auto;
  transition: 0s z-index, 0s left, 0.3s opacity, 0.3s top;
}
.is-sticky.mega-menu:hover > .mega-menu-content {
  left: -40px;
}
.mega-menu-content:before {
  content: "";
  bottom: 100%;
  left: 30px;
  position: absolute;
  border: solid transparent;
  border-bottom-color: #ffffff;
  border-width: 10px;
  margin-left: 0;
  z-index: 2;
}
.mega-menu-content:after {
  content: "";
  bottom: 100%;
  left: 28px;
  position: absolute;
  border: solid transparent;
  border-bottom-color: #DDD;
  border-width: 12px;
  margin-left: 0;
  z-index: 1;
}
.is-sticky .mega-menu-content:before {
  left: 75px;
}
.is-sticky .mega-menu-content:after {
  left: 73px;
}

.mega-menu-list-title {
  text-transform: uppercase;
  border-bottom: 2px solid #D30013;
  margin-bottom: 10px;
  padding: 0 0 5px 10px;
  font-size: 12px;
  text-align: left;
  font-weight: bold;
}

.mega-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-menu-list__bottom {
  position: relative;
  width: 100%;
  margin-top: 10px;
  text-align: left;
  background-color: #f0f0f0;
  border-radius: 5px;
  padding: 5px 0;
}
.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: 8px;
  right: 0px;
  transition: right 0.3s;
}
@media screen and (max-width: 1280px) {
  .mega-menu-list__bottom .mega-menu-list__item i {
    top: 12px;
  }
}
.mega-menu-list__bottom .mega-menu-list__item:hover i {
  right: -5px;
}

.mega-menu-list__item > a {
  display: inline-block;
  width: 100%;
  padding: 5px 10px;
  color: #3C3737;
  border-radius: 5px;
  text-align: left;
  font-size: 12px;
  font-weight: normal;
  text-transform: capitalize;
}
.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%;
  overflow: auto;
}

.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: 1280px) {
  .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: "\e90e";
  font-weight: bold;
}
.panel.open .panel__toggle:after {
  content: "\e90f";
}

.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: 10px;
  height: 10px;
}

.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;
}
@media screen and (max-width: 1280px) {
  .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: 12px;
    font-size: 0.75rem;
    line-height: 1.3;
    padding: 0 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;
}
.map__marker--right .map__marker__copy {
  right: 5px;
}
.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;
}
.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: 24%;
  right: 26.5%;
}

.map__marker--beijing {
  top: 6.5%;
  right: 31.5%;
}

.map__marker--xian {
  top: 14%;
  right: 45%;
}

body.zh .school-map-title.text--xxl, body.zh .school-map-title.text--serif--xxl, body.zh .school-map-title.text--serif--xxl--emph, body.zh .school-map-title.text-serif--white--xxl {
  font-size: 80px;
  font-size: 5rem;
  line-height: 0.9;
}
@media screen and (max-width: 1100px) {
  body.zh .school-map-title.text--xxl, body.zh .school-map-title.text--serif--xxl, body.zh .school-map-title.text--serif--xxl--emph, body.zh .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 .school-map-title.text--xxl, body.zh .school-map-title.text--serif--xxl, body.zh .school-map-title.text--serif--xxl--emph, body.zh .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 .school-map-title.text--xxl, body.zh .school-map-title.text--serif--xxl, body.zh .school-map-title.text--serif--xxl--emph, body.zh .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 .school-map-title.text--xxl, body.zh .school-map-title.text--serif--xxl, body.zh .school-map-title.text--serif--xxl--emph, body.zh .school-map-title.text-serif--white--xxl {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 0.9;
  }
}

.content-container-bottom {
  padding: 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.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 .title-description-right {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 20px;
}
@media screen and (max-width: 800px) {
  .title-big-container .title-description-right {
    position: relative;
    top: 15px;
    left: 0;
  }
}

.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 .numbers-container .sub-title {
  font-size: 20.8px;
  font-size: 1.3rem;
  line-height: 1.2;
}
@media screen and (max-width: 1280px) {
  .numbers-container .sub-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.2;
  }
}
body.zh .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 {
  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 {
  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 .cta-icon {
  width: 110px;
  position: relative;
  display: inline-block;
}
.school-cta-container .cta-icon .school-cta-text {
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
  color: #E2292E;
}
.school-cta-container .cta-icon .school-cta-text.orange {
  color: #F95530;
}
.school-cta-container .cta-icon .school-cta-text.purple {
  color: #903D66;
}
.school-cta-container .cta-icon .school-cta-text.yellow {
  color: #FFBE43;
}
.school-cta-container .cta-icon .school-cta-text.green {
  color: #8CD531;
}
.school-cta-container .cta-icon .school-cta-text.blue {
  color: #00ACD5;
}
.school-cta-container .cta-icon .state-normal, .school-cta-container .cta-icon .state-hover {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 110px;
  display: inline-block;
  transition: all 0.3s;
}
.school-cta-container .cta-icon .state-hover {
  display: none;
}
.school-cta-container .cta-icon:hover .state-normal {
  display: none;
}
.school-cta-container .cta-icon:hover .state-hover {
  display: inline-block;
}
.school-cta-container .cta-icon:hover .school-cta-text {
  color: #E2292E;
}
@media screen and (max-width: 800px) {
  .school-cta-container .cta-icon {
    width: 90px;
  }
  .school-cta-container .cta-icon .state-normal, .school-cta-container .cta-icon .state-hover {
    height: 90px;
  }
  .school-cta-container .cta-icon .school-cta-text {
    font-size: 14px;
    margin-top: 8px;
  }
}
@media screen and (max-width: 500px) {
  .school-cta-container .cta-icon {
    width: 60px;
  }
  .school-cta-container .cta-icon .state-normal, .school-cta-container .cta-icon .state-hover {
    height: 60px;
  }
  .school-cta-container .cta-icon .school-cta-text {
    font-size: 12px;
    margin-top: 5px;
  }
}
.school-cta-container .cta-icon img {
  height: 110px;
}
@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: 500px) {
  .school-cta-container .cta-icon {
    min-width: 40px;
  }
}
.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 {
    width: 20%;
    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: 70px;
  }
}
.footer-cta-icons .school-cta-container .cta-icon {
  min-width: 100px;
}
.footer-cta-icons .school-cta-container .cta-icon img {
  width: 100%;
  height: 120px;
}
@media screen and (max-width: 800px) {
  .footer-cta-icons .school-cta-container .cta-icon img {
    height: 120px;
  }
}
@media screen and (max-width: 500px) {
  .footer-cta-icons .school-cta-container .cta-icon img {
    height: 70px;
  }
}
@media screen and (max-width: 500px) {
  .footer-cta-icons .school-cta-container .cta-icon {
    min-width: 60px;
  }
}
@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%;
  }
}

.scroll-spy-container {
  position: absolute;
  float: left;
  top: 130px;
  width: 300px;
  transition: all 0.3s;
}
@media screen and (max-width: 1280px) {
  .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;
}
.scroll-spy-container ul.scroll-spy li {
  padding-right: 15px;
  color: #b5b5b5;
  padding: 5px 0;
  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:before {
  font-family: "icomoon";
  font-style: normal;
  content: "\f067";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  color: #b5b5b5;
  margin-right: 10px;
}
.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 {
  font-family: "icomoon";
  font-style: normal;
  content: "\f068";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  color: #3C3737;
  margin-right: 10px;
}

.scroll-spy-body:first-child {
  overflow: hidden;
}
.scroll-spy-body .scroll-spy-left {
  max-width: 20%;
}
.scroll-spy-body .scroll-spy-right {
  display: block;
  flex-direction: column;
  width: 100%;
  padding-left: calc(20% + 50px);
}
@media screen and (max-width: 800px) {
  .scroll-spy-body .scroll-spy-right {
    padding-left: 0;
  }
}
.scroll-spy-body .block-container.container {
  padding: 0 !important;
  width: 100%;
}

.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 .uc-stories-container .title-text {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 10px;
}
@media screen and (max-width: 1280px) {
  body.zh .uc-stories-container .title-text {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.1;
  }
}
@media screen and (max-width: 800px) {
  body.zh .uc-stories-container .title-text {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.1;
  }
}
@media screen and (max-width: 500px) {
  body.zh .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: 1280px) {
  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: 1280px) {
  .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 .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 .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 .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 .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;
    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;
    width: 100%;
  }
}
