@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

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

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

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

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

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

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

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

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

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

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

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

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

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

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

@-webkit-keyframes zoomIn {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  50% {
    opacity: 1;
  }
}

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

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

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

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

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

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

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 28px 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  line-height: 0;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger.is-active:hover {
  opacity: 1;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #FFF;
}

.hamburger-box {
  width: 27px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 31px;
  height: 3px;
  background-color: #FFF;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -12px;
}

.hamburger-inner::after {
  bottom: -12px;
}

/*
     * Squeeze
     */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a, button, input {
  outline: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.container {
  max-width: 1306px;
  padding: 0 30px;
  margin: 0 auto;
}

.container.large-container {
  max-width: 1366px;
  padding: 0;
}

.btn a {
  background-color: #FFB100;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.44px;
  border-radius: 8px;
  padding: 16.5px 34px;
}

section a.btn {
  background-color: #FFB100;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.44px;
  border-radius: 8px;
  padding: 15.5px 33px;
  text-decoration: none;
  display: inline-block;
  color: #ffffff;
  border: 1px solid #FFb100;
}

@media (max-width: 768px) {
  section a.btn {
    font-size: 20px;
  }
}

section a.btn:hover {
  background: #fff;
  color: #FFb100;
}

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

#main-wrapper {
  overflow-x: hidden;
  min-height: 500px;
}

body, html {
  font-family: nimbus-sans, sans-serif;
  font-weight: 400;
  color: #363636;
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 768px) {
  body, html {
    font-size: 18px;
    line-height: 28px;
  }
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

h1 {
  color: #ffffff;
  font-size: 60px;
  line-height: 65px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 45px;
    line-height: 50px;
  }
}

h2 {
  color: #3C379E;
  font-size: 50px;
  line-height: 55px;
}

@media (max-width: 768px) {
  h2 {
    font-size: 40px;
    line-height: 45px;
  }
}

h3 {
  color: #ffffff;
  font-size: 35px;
  line-height: 40px;
}

@media (max-width: 768px) {
  h3 {
    font-size: 27px;
    line-height: 35px;
  }
}

h4 {
  color: #3C379E;
  font-size: 30px;
  line-height: 30px;
}

p {
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 768px) {
  p {
    font-size: 18px;
    line-height: 28px;
  }
}

strong {
  font-weight: 700;
}

#main-wrapper ol {
  list-style: decimal;
  list-style-position: inside;
}

sup {
  font-size: 60%;
  line-height: 60%;
  vertical-align: super;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(15, 12, 98, 0.9);
  z-index: 999;
  transition: transform 350ms ease-in-out;
}

header .nav {
  height: 80px;
}

header .nav-inner {
  width: 100%;
}

header .nav-inner:after {
  content: '';
  display: block;
  float: none;
  clear: both;
}

header .left-nav {
  float: left;
  padding: 15.5px 0;
}

@media (max-width: 1080px) {
  header .left-nav {
    padding: 20px 0;
  }
}

header .left-nav img {
  max-width: 188px;
}

@media (max-width: 1080px) {
  header .left-nav img {
    max-width: 155px;
  }
}

header .right-nav {
  float: right;
  height: 80px;
  display: flex;
  align-items: center;
}

header .menu > .menu-item {
  display: inline-block;
  margin-right: 65px;
}

@media (max-width: 1080px) {
  header .menu > .menu-item {
    display: block;
    margin-right: 0;
  }
}

header .menu > .menu-item:not(.btn-nav) {
  vertical-align: middle;
}

header .menu > .menu-item:not(.btn-nav) a {
  height: 80px;
  display: flex;
  align-items: center;
}

@media (max-width: 1080px) {
  header .menu > .menu-item:not(.btn-nav) a {
    height: auto;
  }
}

header .menu > .menu-item.btn-nav {
  margin-right: 25px;
}

header .menu > .menu-item:last-of-type {
  margin-right: 0;
}

header .menu > .menu-item a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.36px;
  text-decoration: none;
}

@media (max-width: 1080px) {
  header .menu > .menu-item a {
    margin-bottom: 20px;
  }
}

header .btn-nav a {
  font-size: 18px;
  padding: 10px 35px;
}

@media (max-width: 1080px) {
  header .btn-nav a {
    display: inline-block;
  }
}

header .menu-item-has-children {
  position: relative;
}

header .menu-item-has-children .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 80px;
  left: -25px;
  background-color: #0f0c62;
  width: 208px;
  padding: 16px 25px;
  -webkit-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 1080px) {
  header .menu-item-has-children .sub-menu {
    position: relative;
    opacity: 1;
    visibility: visible;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 0 30px;
  }
}

header .menu-item-has-children .sub-menu .menu-item:not(:last-of-type) {
  margin-bottom: 32px;
}

@media (max-width: 1080px) {
  header .menu-item-has-children .sub-menu .menu-item:not(:last-of-type) {
    margin-bottom: 0;
  }
}

header .menu-item-has-children .sub-menu a {
  height: auto !important;
}

header .menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 1080px) {
  header .menu-main-menu-container {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(15, 12, 98, 0.9);
    padding: 30px;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  }
}

@media (max-width: 1080px) {
  header.active-nav .menu-main-menu-container {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

header .hamburger-wrap {
  display: none;
}

@media (max-width: 1080px) {
  header .hamburger-wrap {
    display: block;
  }
}

header .menu > li:not(.btn-nav) a {
  position: relative;
}

header .menu > li:not(.btn-nav) a:after {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

header .menu > li:not(.btn-nav) a:hover:after {
  width: 100%;
}

header .menu > li:not(.btn-nav) .sub-menu a {
  display: inline-block;
}

header .menu > li:not(.btn-nav) .sub-menu a:after {
  bottom: 0;
}

@media (max-width: 1080px) {
  body.active-nav {
    overflow: hidden;
  }
}

.hide-nav header {
  transform: translateY(-100%);
}

footer {
  background-color: #0F0C62;
  padding: 70px 0;
}

@media (max-width: 1080px) {
  footer {
    padding-top: 60px;
    padding-bottom: 84px;
  }
}

footer .footer-logo {
  max-width: 205.5px;
}

footer .footer-wrap {
  padding: 0 54px;
}

@media (max-width: 1080px) {
  footer .footer-wrap {
    padding: 0;
  }
}

@media (max-width: 1080px) {
  footer .top-footer {
    justify-content: space-between;
  }
}

footer .top-footer .col {
  width: 25%;
}

footer .top-footer .col.col-menu {
  border-right: 1px solid #fff;
}

footer .top-footer .col.second-menu, footer .top-footer .col.col-socmed {
  padding-left: 79.5px;
}

footer .top-footer .col.col-socmed .soc-med-wrap {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-bottom: -30px;
}

@media (max-width: 768px) {
  footer .top-footer .col.col-socmed .soc-med-wrap {
    max-width: 300px;
    margin: 0 auto -30px;
  }
}

footer .top-footer .col.col-socmed a {
  opacity: 1;
  width: calc(33.33% - 40px);
  margin: 0 20px 30px;
  text-align: center;
  -webkit-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

footer .top-footer .col.col-socmed a:hover {
  opacity: 0.8;
}

footer .top-footer .col.col-socmed a:after {
  display: none;
}

footer .top-footer .col.col-socmed img {
  width: auto;
}

footer .top-footer .col.col-socmed .facebook-logo {
  max-height: 25px;
}

footer .top-footer .col.col-socmed .instagram-logo {
  max-height: 25px;
}

footer .top-footer .col.col-socmed .twitter-logo {
  max-height: 21px;
}

footer .top-footer .col.col-socmed .youtube-logo {
  max-height: 23px;
}

footer .top-footer a {
  color: #ffffff;
  font-size: 18px;
  line-height: 40px;
  text-decoration: none;
}

@media (max-width: 1080px) {
  footer .top-footer a {
    line-height: 50px;
  }
}

footer .top-footer .col-logo a:after {
  display: none;
}

footer .top-footer .col-logo img {
  max-width: 205.5px;
}

@media (max-width: 1080px) {
  footer .top-footer .col-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
}

@media (max-width: 1080px) {
  footer .top-footer .col-menu {
    width: auto;
    border-right: 0 !important;
    padding: 0 0 0 25px !important;
  }
}

@media (max-width: 1080px) {
  footer .top-footer .col-menu.second-menu {
    width: auto;
    border-right: 0 !important;
    padding: 0 25px 0 0 !important;
  }
}

@media (max-width: 1080px) {
  footer .top-footer .col-socmed {
    padding-left: 0 !important;
    width: 100%;
    text-align: center;
    margin-top: 48px;
  }
}

footer .bottom-footer .col-gutter {
  width: 25%;
}

@media (max-width: 1080px) {
  footer .bottom-footer .col-gutter {
    display: none;
  }
}

footer .bottom-footer .col-bottom-content {
  width: 75%;
  padding-top: 26px;
  border-top: 1px solid #fff;
  margin-top: 54.5px;
}

@media (max-width: 1080px) {
  footer .bottom-footer .col-bottom-content {
    width: 100%;
    border-top: 0;
    text-align: center;
    padding-left: 6px;
    padding-right: 6px;
  }
}

footer .bottom-footer .copyright {
  color: #ffffff;
  font-size: 17px;
  line-height: 20px;
}

@media (max-width: 1080px) {
  footer .bottom-footer .bot-links {
    padding-bottom: 21px;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
  }
}

footer .bottom-footer .bot-links a {
  color: #ffffff;
  font-size: 17px;
  line-height: 30px;
  text-decoration: none;
}

footer .bottom-footer .row {
  justify-content: space-between;
}

@media (max-width: 1080px) {
  footer .bottom-footer .row {
    flex-direction: column-reverse;
  }
}

footer a:not(.btn) {
  position: relative;
}

footer a:not(.btn):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

footer a:not(.btn):hover:after {
  width: 100%;
}

.homepage-banner {
  position: relative;
  overflow: hidden;
  background-color: #3C379E;
}

.homepage-banner .background-image {
  position: absolute;
  top: -45%;
  left: 48%;
  width: 1190px;
  padding-bottom: 1190px;
  border-radius: 100%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .homepage-banner .background-image {
    position: relative;
    top: 0;
    left: 50%;
    width: 130%;
    transform: translateX(-50%);
    padding-bottom: 100%;
    border-radius: 0 0 100% 100%;
  }
}

.homepage-banner .background-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 20%;
  left: -13.5%;
}

@media (max-width: 1366px) {
  .homepage-banner .background-image img {
    width: 75%;
    height: 75%;
    top: 25%;
  }
}

@media (max-width: 768px) {
  .homepage-banner .background-image img {
    width: 140%;
    height: 140%;
    top: -13%;
    left: -25%;
  }
}

.homepage-banner .container-inner {
  display: flex;
  align-items: center;
  min-height: 770px;
  padding: 0 54px;
}

@media (max-width: 768px) {
  .homepage-banner .container-inner {
    min-height: auto;
    padding: 0 5px;
  }
}

.homepage-banner .content {
  position: relative;
  max-width: 413px;
  padding: 80px 0;
  z-index: 1;
}

@media (max-width: 768px) {
  .homepage-banner .content {
    max-width: 100%;
    padding: 30px 0 60px;
  }
}

.homepage-banner .content h1 {
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .homepage-banner .content h1 {
    margin-bottom: 15px;
  }
}

.homepage-banner .content p {
  color: #ffffff;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .homepage-banner .content p {
    margin-bottom: 25px;
  }
}

.homepage-slider {
  position: relative;
  padding: 78px 0 83px;
}

@media (max-width: 768px) {
  .homepage-slider {
    padding: 43px 0 69px;
  }
}

.homepage-slider:after {
  content: '';
  position: absolute;
  top: -770px;
  right: 0;
  height: 949px;
  width: 820px;
  background-image: url("../../src/images/homeslider-circle.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

@media (max-width: 768px) {
  .homepage-slider:after {
    display: none;
  }
}

.homepage-slider .container-inner {
  padding: 0 88px;
}

@media (max-width: 768px) {
  .homepage-slider .container-inner {
    padding: 0;
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}

.homepage-slider .owl-item {
  transform: scale(0.6);
  opacity: 0;
  -webkit-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 768px) {
  .homepage-slider .owl-item {
    transform: scale(1);
  }
}

.homepage-slider .owl-item.active {
  z-index: 2;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .homepage-slider .owl-item.active {
    opacity: 1;
  }
}

.homepage-slider .owl-item.center {
  transform: scale(1);
  opacity: 1;
  z-index: 3;
}

.homepage-slider .owl-item.center img {
  box-shadow: 0px 20px 30px #0000004d;
  margin-bottom: 45px;
}

@media (max-width: 768px) {
  .homepage-slider .owl-item.center img {
    margin-bottom: 53px;
  }
}

.homepage-slider .owl-item .item {
  margin: 0 -214.5px;
}

@media (max-width: 768px) {
  .homepage-slider .owl-item .item {
    margin: 0;
  }
}

.homepage-slider .description {
  text-align: center;
  margin-bottom: 45px;
}

@media (max-width: 768px) {
  .homepage-slider .description {
    padding: 0 30px;
  }
}

.homepage-slider .description h2 {
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .homepage-slider .description h2 {
    margin-top: 11px;
  }
}

.homepage-slider .owl-dots {
  text-align: center;
}

.homepage-slider .owl-dots .owl-dot {
  margin: 0 15px;
}

.homepage-slider .owl-dots .owl-dot span {
  display: block;
  width: 15px;
  height: 15px;
  background-color: #C1C1C1;
  opacity: 0.66;
  border-radius: 100%;
}

.homepage-slider .owl-dots .owl-dot.active span {
  background-color: #3C379E;
  opacity: 1;
}

.homepage-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}

.homepage-slider .owl-nav button {
  width: 55px;
  height: 55px;
  border-radius: 100%;
  background: #fff !important;
  position: absolute;
  box-shadow: 0px 0px 10px #00000080;
  opacity: 1;
  -webkit-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.homepage-slider .owl-nav button:hover {
  opacity: 0.8;
}

.homepage-slider .owl-nav span {
  font-size: 0;
  line-height: 0;
  width: 14px;
  height: 20px;
  display: block;
  background-image: url("../../src/images/arrows.png");
  background-size: cover;
  margin: 0 auto;
}

.homepage-slider .owl-nav .owl-prev {
  left: -27.5px;
  top: -50px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.homepage-slider .owl-nav .owl-next {
  right: -27.5px;
  top: -50px;
}

.homepage-slider .owl-carousel .owl-nav.disabled,
.homepage-slider .owl-carousel .owl-dots.disabled {
  display: block;
}

@media (max-width: 768px) {
  .homepage-slider .owl-carousel .owl-nav.disabled {
    display: none;
  }
}

.two-col-left-cimage {
  position: relative;
  background-color: #3C379E;
  padding: 54px 0 74px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .two-col-left-cimage {
    padding: 0 0 74px;
  }
}

.two-col-left-cimage .background-image {
  position: absolute;
  top: -50%;
  right: 48%;
  width: 60%;
  padding-bottom: 75%;
  border-radius: 100%;
  overflow: hidden;
}

@media (max-width: 1366px) {
  .two-col-left-cimage .background-image {
    top: -21%;
    left: -13%;
    width: 850px;
    padding-bottom: 850px;
  }
}

@media (max-width: 768px) {
  .two-col-left-cimage .background-image {
    position: relative;
    top: 0;
    right: 0;
    left: 50%;
    width: 110%;
    padding-bottom: 83.575%;
    transform: translateX(-50%);
    margin-bottom: 35px;
    border-radius: 0 0 100% 100%;
  }
}

.two-col-left-cimage .background-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .two-col-left-cimage .background-image img {
    width: 130%;
    height: 130%;
  }
}

.two-col-left-cimage .container-inner {
  padding: 0 80px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .two-col-left-cimage .container-inner {
    padding: 0 6.5px;
  }
}

.two-col-left-cimage .content {
  max-width: 440px;
  margin-left: auto;
}

@media (max-width: 768px) {
  .two-col-left-cimage .content {
    max-width: 100%;
  }
}

.two-col-left-cimage .content h2, .two-col-left-cimage .content p {
  color: #ffffff;
}

.two-col-left-cimage .content h2 {
  margin-bottom: 14px;
  font-size: 45px;
  line-height: 50px;
}

@media (max-width: 768px) {
  .two-col-left-cimage .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}

.two-col-left-cimage .content p {
  max-width: 360px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .two-col-left-cimage .content p {
    padding-right: 20px;
  }
}

.two-col-right-cimage {
  position: relative;
  background-color: #8E9ED8;
  padding: 75px 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .two-col-right-cimage {
    padding: 0 0 75px;
  }
}

.two-col-right-cimage .background-image {
  position: absolute;
  top: -50%;
  left: 48%;
  width: 60%;
  padding-bottom: 75%;
  border-radius: 100%;
  overflow: hidden;
}

@media (max-width: 1366px) {
  .two-col-right-cimage .background-image {
    top: -35%;
    right: -15%;
    left: auto;
    width: 850px;
    padding-bottom: 850px;
  }
}

@media (max-width: 768px) {
  .two-col-right-cimage .background-image {
    position: relative;
    top: 0;
    right: 0;
    left: 50%;
    width: 110%;
    padding-bottom: 83.575%;
    transform: translateX(-50%);
    margin-bottom: 35px;
    border-radius: 0 0 100% 100%;
  }
}

.two-col-right-cimage .background-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1366px) {
  .two-col-right-cimage .background-image img {
    position: absolute;
    width: 100%;
    height: 80%;
    top: 5%;
    right: 20%;
    object-fit: cover;
  }
}

@media (max-width: 991px) {
  .two-col-right-cimage .background-image img {
    right: 10%;
  }
}

@media (max-width: 768px) {
  .two-col-right-cimage .background-image img {
    top: -20%;
    right: 0;
    width: 130%;
    height: 130%;
  }
}

.two-col-right-cimage .container-inner {
  padding: 0 80px;
}

@media (max-width: 768px) {
  .two-col-right-cimage .container-inner {
    padding: 0 6px;
  }
}

.two-col-right-cimage .content {
  position: relative;
  max-width: 508px;
  z-index: 1;
}

.two-col-right-cimage .content h2, .two-col-right-cimage .content p {
  color: #ffffff;
}

.two-col-right-cimage .content h2 {
  margin-bottom: 14px;
  font-size: 45px;
  line-height: 50px;
}

@media (max-width: 768px) {
  .two-col-right-cimage .content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}

.two-col-right-cimage .content p {
  max-width: 508px;
  margin-bottom: 15px;
}

.text-bottom-image {
  padding: 82px 0;
}

.text-bottom-image h2 {
  margin-bottom: 14px;
}

.text-bottom-image .container-inner {
  text-align: center;
  padding: 0 63px;
}

@media (max-width: 768px) {
  .text-bottom-image .container-inner {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .text-bottom-image img {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}

.text-bottom-image .parallax {
  position: relative;
  width: 1120px;
  padding: 98px 0 39px;
}

.text-bottom-image .parallax img {
  width: 744px;
}

.text-bottom-image .parallax .slide {
  position: absolute;
  background: #fff;
  box-shadow: 0px 30px 50px #0000004D;
  border-radius: 20px;
  overflow: hidden;
}

.text-bottom-image .parallax .slide.one {
  top: 73px;
  left: 66px;
  width: 225px;
  padding: 7px 16px 7px 27px;
  z-index: 1;
}

.text-bottom-image .parallax .slide.two {
  bottom: 76px;
  left: 143px;
  width: 214px;
  padding: 24px 34px 23px 34px;
  z-index: 1;
}

.text-bottom-image .parallax .slide.three {
  top: 195px;
  left: 263px;
  width: 130px;
  padding: 5px 21px;
}

.text-bottom-image .parallax .slide.four {
  bottom: 244px;
  left: 328px;
  width: 141px;
  padding: 31px 13px 30px;
}

.text-bottom-image .parallax .slide.five {
  top: 75px;
  left: 436px;
  width: 144px;
  padding: 0 19px 4px 21px;
}

.text-bottom-image .parallax .slide.six {
  top: 272px;
  left: 514px;
  width: 106px;
  padding: 10px 15px 5px;
}

.text-bottom-image .parallax .slide.seven {
  bottom: 189px;
  left: 540px;
  width: 172px;
  padding: 21px 12px 21px 13px;
  z-index: 1;
}

.text-bottom-image .parallax .slide.eight {
  top: 183px;
  left: 635px;
  width: 98px;
  padding: 7px 14px;
}

.text-bottom-image .parallax .slide.nine {
  top: 20px;
  left: 673px;
  width: 194px;
  padding: 22px 19px;
}

.text-bottom-image .parallax .slide.ten {
  top: 313px;
  left: 694px;
  width: 110px;
  padding: 26.5px 26px;
}

.text-bottom-image .parallax .slide.eleven {
  top: 218px;
  left: 846px;
  width: 144px;
  padding: 13px 24px;
}

.text-bottom-image .parallax .slide.twelve {
  top: 389px;
  left: 831px;
  width: 206px;
  padding: 7px 32px 7px 33px;
}

.text-bottom-image .parallax .slide img {
  width: 100%;
  -webkit-transform: matrix(1, 0, 0, 1, 0, 0) !important;
  -moz-transform: matrix(1, 0, 0, 1, 0, 0) !important;
  -ms-transform: matrix(1, 0, 0, 1, 0, 0) !important;
  -o-transform: matrix(1, 0, 0, 1, 0, 0) !important;
  transform: matrix(1, 0, 0, 1, 0, 0) !important;
}

@media (max-width: 1306px) {
  .text-bottom-image .hide-mobile {
    display: none;
  }
}

.text-bottom-image .show-mobile {
  display: none;
}

@media (max-width: 1306px) {
  .text-bottom-image .show-mobile {
    display: block;
  }
}

.ways-to-watch {
  position: relative;
  padding: 47px 0 143px;
}

@media (max-width: 768px) {
  .ways-to-watch {
    padding: 47px 0 120px;
  }
}

.ways-to-watch .container {
  position: relative;
}

.ways-to-watch .background-image {
  position: absolute;
  top: -30%;
  right: -17.5%;
  height: 766px;
  width: 766px;
  z-index: -1;
}

@media (max-width: 1080px) {
  .ways-to-watch .background-image {
    height: 438px;
    width: 438px;
    top: 93px;
    right: -103px;
  }
}

.ways-to-watch .background-image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3C379E;
  opacity: 0.35;
  border-radius: 100%;
}

.ways-to-watch .arc-image {
  position: absolute;
  bottom: -34%;
  right: 19.5%;
  width: 555px;
  height: 555px;
  z-index: -2;
}

@media (max-width: 1080px) {
  .ways-to-watch .arc-image {
    width: 317px;
    height: 317px;
    top: 295px;
    right: 189px;
  }
}

.ways-to-watch .container-inner {
  padding: 0 54px;
}

@media (max-width: 991px) {
  .ways-to-watch .container-inner {
    padding: 0 6px;
  }
}

.ways-to-watch h2 {
  margin-bottom: 44px;
}

@media (max-width: 1080px) {
  .ways-to-watch h2 {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 473px;
  }
}

.ways-to-watch .row {
  width: 892px;
  margin-left: -16px;
}

@media (max-width: 1080px) {
  .ways-to-watch .row {
    width: 265px;
    margin-left: 0;
  }
}

.ways-to-watch .row .col {
  background-color: #3C379E;
  border-radius: 25px;
  width: calc(33.33% - 32px);
  margin: 0 16px;
  padding: 62px 18.5px 48px;
  box-shadow: 0px 20px 30px #0000004D;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1080px) {
  .ways-to-watch .row .col {
    width: 100%;
    margin: 0;
  }
}

.ways-to-watch .row .col .call-out-label {
  position: absolute;
  top: 25px;
  right: -50px;
  width: 190px;
  height: 36px;
  background-color: #feb12a;
  text-align: center;
  padding: 10px 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ways-to-watch .row .col .item-image {
  display: flex;
  align-items: center;
  height: 90px;
}

.ways-to-watch .row .col .item-image img {
  max-width: 125px;
  max-height: 90px;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.ways-to-watch .row .col .subscription-tag {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.32px;
  color: #ffffff;
  text-align: center;
  background: #0F0C62;
  border-radius: 18px;
  padding: 9.5px 0;
  margin-top: 50px;
}

.ways-to-watch .row .col .text-content {
  margin-top: 38px;
  margin-bottom: 28px;
  height: 100px;
  overflow: hidden;
}

.ways-to-watch .row .col .item-title {
  color: #ffffff;
  font-size: 27px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  margin-bottom: 14px;
}

.ways-to-watch .row .col .item-subcopy {
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}

.ways-to-watch .row .col .btn-wrap {
  text-align: center;
}

@media (max-width: 1080px) {
  .ways-to-watch .hide-mobile {
    display: none;
  }
}

.ways-to-watch .show-mobile {
  display: none;
}

@media (max-width: 1080px) {
  .ways-to-watch .show-mobile {
    display: block;
  }
}

.ways-to-watch .owl-carousel .owl-stage-outer {
  overflow: visible;
}

@media (max-width: 991px) {
  .ways-to-watch .slider-wrap {
    padding-left: 39px;
  }
}

@media (max-width: 413px) {
  .ways-to-watch .slider-wrap {
    padding-left: 0;
  }
}

.ways-to-watch .owl-dots {
  width: 300px;
  height: 10px;
  position: absolute;
  bottom: -65px;
  left: -17.5px;
  border-radius: 30px;
}

@media (max-width: 413px) {
  .ways-to-watch .owl-dots {
    width: 100%;
    left: 20px;
  }
}

.ways-to-watch .owl-dots .owl-dot {
  width: 33.33%;
  height: 100%;
  background-color: #E5E5E5;
}

.ways-to-watch .owl-dots .owl-dot:first-of-type {
  border-radius: 30px 0 0 30px;
}

.ways-to-watch .owl-dots .owl-dot:last-of-type {
  border-radius: 0 30px 30px 0;
}

.ways-to-watch .owl-dots .owl-dot.active {
  background-color: #3C379E;
  border-radius: 30px;
}

@media (max-width: 768px) {
  .two-col-left-image {
    padding-bottom: 65px;
  }
}

.two-col-left-image .col {
  width: 50%;
}

@media (max-width: 768px) {
  .two-col-left-image .col {
    width: 100%;
  }
}

.two-col-left-image .col:last-of-type {
  display: flex;
  align-items: center;
}

.two-col-left-image .col .content {
  max-width: 623px;
  padding-left: 96px;
  padding-right: 27px;
}

@media (max-width: 768px) {
  .two-col-left-image .col .content {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.two-col-left-image .col .content h2 {
  max-width: 460px;
  margin-bottom: 14px;
  color: #3E3AA5;
}

.two-col-left-image .col .content p {
  margin-bottom: 26px;
  color: #2B2B2B;
}

@media (max-width: 768px) {
  .two-col-left-image img {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-bottom: 30px;
  }
}

.content-page-banner {
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 768px) {
  .content-page-banner .container {
    padding: 0 14px;
  }
}

.content-page-banner .container-inner {
  max-width: 560px;
  min-height: 770px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .content-page-banner .container-inner {
    min-height: 750px;
  }
}

@media (max-width: 768px) {
  .content-page-banner .container-inner h1 {
    padding: 0 20px;
  }
}

.content-page-banner .content {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}

.content-page-banner .content:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(59, 54, 156, 0.85);
  border-radius: 100%;
  mix-blend-mode: multiply;
}

.content-page-banner .content .content-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.content-page-banner .anchor-button {
  position: absolute;
  bottom: -180px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 330px;
  height: 247px;
  border-radius: 100%;
  background-color: rgba(59, 54, 156, 0.85);
  mix-blend-mode: multiply;
}

.content-page-banner:after {
  content: '';
  position: absolute;
  bottom: 22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 11px solid #fff;
}

.content-video {
  position: relative;
  padding: 115px 0 130px;
  background-color: #3C379E;
}

@media (max-width: 768px) {
  .content-video {
    padding: 59px 0 110px;
  }
}

.content-video:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1029px;
  height: 388px;
  background-image: url("../../src/images/video-arc.png");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .content-video:after {
    width: 610px;
    height: 210px;
  }
}

.content-video .container-inner {
  max-width: 904px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.content-video h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}

.content-video .iframe-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  box-shadow: 0px 30px 50px #00000064;
}

.content-video .iframe-wrap img, .content-video .iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-video .iframe-wrap .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background-image: url("../../src/images/play-button.png");
  background-repeat: no-repeat;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 768px) {
  .content-video .iframe-wrap .play-button {
    width: 50px;
    height: 50px;
    background-size: cover;
  }
}

.content-video .iframe-wrap .play-button:hover {
  opacity: 0.8;
}

.content-video .iframe-wrap.hide-play-btn .play-button {
  display: none;
}

.content-video sup {
  vertical-align: super;
  font-size: 30px;
  line-height: 30px;
  position: relative;
  top: 5px;
}

@media (max-width: 768px) {
  .content-video sup {
    font-size: 25px;
    line-height: 25px;
    top: 4px;
  }
}

.channel-slider {
  margin: 112px 0 109px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .channel-slider {
    margin: 56px 0 72px;
  }
}

.channel-slider .container-inner {
  max-width: 925px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .channel-slider .container-inner {
    padding: 0 17px;
  }
}

.channel-slider .content-text {
  text-align: center;
}

.channel-slider .content-text .heading {
  margin-bottom: 13px;
}

.channel-slider .content-text .description {
  max-width: 750px;
  margin: 0 auto 27px;
}

.channel-slider #sync1 {
  box-shadow: 0px 30px 50px #00000029;
  margin-bottom: 49px;
  border-radius: 15px;
}

.channel-slider #sync1 .item {
  padding: 33px 78px 58px 70px;
}

@media (max-width: 768px) {
  .channel-slider #sync1 .item {
    padding: 34px 40px 58px;
  }
}

.channel-slider #sync1 .item .col.col-logo {
  width: 300px;
}

.channel-slider #sync1 .item .col.col-logo img {
  max-width: 200px;
  max-height: 170px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .channel-slider #sync1 .item .col.col-logo {
    width: 100%;
  }
}

.channel-slider #sync1 .item .col.col-text {
  padding-top: 38px;
  padding-left: 63px;
  width: calc(100% - 300px);
}

@media (max-width: 768px) {
  .channel-slider #sync1 .item .col.col-text {
    width: 100%;
    padding-left: 0;
  }
}

.channel-slider #sync1 .item .col.col-text a {
  position: relative;
  display: inline-block;
  color: #3C379E;
  font-size: 20px;
  line-height: 100%;
  text-decoration: none;
  font-weight: 700;
  margin-top: 24px;
}

.channel-slider #sync1 .item .col.col-text a:after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  height: 2px;
  width: 100%;
  background-color: #FFB100;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.channel-slider #sync1 .item .col.col-text a:hover:after {
  width: 0;
}

.channel-slider #sync1 .owl-dots {
  position: absolute;
  bottom: -192px;
  left: 50%;
  display: flex;
  height: 6px;
  width: 417px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 30px;
  background-color: #EDEDED;
}

@media (max-width: 768px) {
  .channel-slider #sync1 .owl-dots {
    width: 320px;
  }
}

.channel-slider #sync1 .owl-dots .active {
  background-color: #3C379E;
  border-radius: 30px;
}

.channel-slider #sync1.items-1 .owl-dot {
  flex-grow: 1;
}

.channel-slider #sync1.items-2 .owl-dot {
  flex-grow: 2;
}

.channel-slider #sync1.items-3 .owl-dot {
  flex-grow: 3;
}

.channel-slider #sync1.items-4 .owl-dot {
  flex-grow: 4;
}

.channel-slider #sync1.items-5 .owl-dot {
  flex-grow: 5;
}

.channel-slider #sync1.items-6 .owl-dot {
  flex-grow: 6;
}

.channel-slider #sync1.items-7 .owl-dot {
  flex-grow: 7;
}

.channel-slider #sync1.items-8 .owl-dot {
  flex-grow: 8;
}

.channel-slider #sync1.items-9 .owl-dot {
  flex-grow: 9;
}

.channel-slider #sync1 .owl-nav {
  position: absolute;
  top: calc(50% - 27.5px);
  left: 0;
  width: 100%;
}

.channel-slider #sync1 .owl-nav button {
  position: absolute;
  overflow: visible;
  opacity: 1;
  -webkit-transition: opacity 0.4s cubic-bezier(1, 0, 0, 1);
  -moz-transition: opacity 0.4s cubic-bezier(1, 0, 0, 1);
  -ms-transition: opacity 0.4s cubic-bezier(1, 0, 0, 1);
  -o-transition: opacity 0.4s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.4s cubic-bezier(1, 0, 0, 1);
}

.channel-slider #sync1 .owl-nav button:hover {
  opacity: 0.5;
}

.channel-slider #sync1 .owl-nav button.owl-prev {
  left: -123px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (max-width: 1240px) {
  .channel-slider #sync1 .owl-nav button.owl-prev {
    left: -27.5px;
  }
}

.channel-slider #sync1 .owl-nav button.owl-prev span {
  box-shadow: 0px -5px 10px #00000080;
}

.channel-slider #sync1 .owl-nav button.owl-next {
  right: -123px;
}

@media (max-width: 1240px) {
  .channel-slider #sync1 .owl-nav button.owl-next {
    right: -27.5px;
  }
}

.channel-slider #sync1 .owl-nav button span {
  position: relative;
  font-size: 0;
  display: block;
  width: 55px;
  height: 55px;
  background-color: #FFFFFF;
  border-radius: 100%;
  background-image: url("../../src/images/arrows.png");
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0px 5px 10px #00000080;
  overflow: visible;
}

@media (max-width: 768px) {
  .channel-slider #sync1 .owl-nav button span {
    width: 52px;
    height: 52px;
  }
}

.channel-slider #sync2 {
  width: 925px;
}

.channel-slider #sync2 .item {
  width: 115px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 49px;
  border-radius: 15px;
}

.channel-slider #sync2 .item img {
  max-width: 95px;
  max-height: 80px;
}

.channel-slider #sync2 .owl-item.active .item {
  box-shadow: 0px 10px 30px #00000029;
}

.channel-slider #sync2 .owl-stage-outer {
  overflow: visible;
  position: relative;
}

.channel-slider #sync2 .owl-stage-outer:before {
  content: '';
  top: -20px;
  right: calc(100% - -20px);
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
}

.channel-slider #sync2 .owl-stage-outer:after {
  content: '';
  top: -20px;
  left: calc(100% - -20px);
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
}

.channel-slider #sync2 .owl-nav {
  display: none;
}

.channel-slider #sync2 .owl-dots {
  display: none;
}

.channel-slider .btn-wrap {
  margin-top: 66px;
  text-align: center;
}

.video-slider {
  margin-bottom: 130px;
}

@media (max-width: 768px) {
  .video-slider {
    margin-bottom: 103px;
  }
}

.video-slider .container-inner {
  max-width: 1162px;
  margin: 0 auto;
}

.video-slider .content-text {
  text-align: center;
}

.video-slider .content-text .heading {
  margin-bottom: 16px;
}

.video-slider .content-text .description {
  margin-bottom: 49px;
}

.video-slider .owl-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.62);
  -moz-transform: scale(0.62);
  -ms-transform: scale(0.62);
  -o-transform: scale(0.62);
  transform: scale(0.62);
  -webkit-transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
  -moz-transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
  -ms-transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
  -o-transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
}

.video-slider .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.video-slider .owl-item.center {
  z-index: 3;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.video-slider .owl-item.index-2 {
  z-index: 2;
  -webkit-transform: scale(0.87);
  -moz-transform: scale(0.87);
  -ms-transform: scale(0.87);
  -o-transform: scale(0.87);
  transform: scale(0.87);
}

.video-slider .owl-item.index-1 {
  z-index: 1;
  -webkit-transform: scale(0.717);
  -moz-transform: scale(0.717);
  -ms-transform: scale(0.717);
  -o-transform: scale(0.717);
  transform: scale(0.717);
}

.video-slider .owl-item.first {
  opacity: 0.5;
  visibility: visible;
}

.video-slider .owl-item.first .item {
  margin-right: -84.75px;
  margin-left: -28.25px;
}

.video-slider .owl-item.last {
  opacity: 0.5;
  visibility: visible;
}

.video-slider .owl-item.last .item {
  margin-left: -84.75px;
  margin-right: -28.25px;
}

.video-slider .item {
  margin: 0 -56.5px;
}

@media (max-width: 768px) {
  .video-slider .item {
    margin: 0 -100.5px;
  }
}

.video-slider .owl-carousel {
  position: relative;
}

.video-slider .owl-stage-outer {
  overflow: visible;
}

.video-slider .owl-nav {
  position: absolute;
  top: calc(50% - 40.5px);
  left: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .video-slider .owl-nav {
    display: none;
  }
}

.video-slider .owl-nav button {
  position: absolute;
  opacity: 1;
  -webkit-transition: opacity 0.4s cubic-bezier(1, 0, 0, 1);
  -moz-transition: opacity 0.4s cubic-bezier(1, 0, 0, 1);
  -ms-transition: opacity 0.4s cubic-bezier(1, 0, 0, 1);
  -o-transition: opacity 0.4s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.4s cubic-bezier(1, 0, 0, 1);
}

.video-slider .owl-nav button:hover {
  opacity: 0.5;
}

.video-slider .owl-nav button.owl-prev {
  left: -34.5px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (max-width: 1240px) {
  .video-slider .owl-nav button.owl-prev {
    left: 0;
  }
}

.video-slider .owl-nav button.owl-next {
  right: -34.5px;
}

@media (max-width: 1240px) {
  .video-slider .owl-nav button.owl-next {
    right: 0;
  }
}

.video-slider .owl-nav button span {
  font-size: 0;
  display: block;
  width: 55px;
  height: 55px;
  background-color: #FFFFFF;
  border-radius: 100%;
  background-image: url("../../src/images/arrows.png");
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0px 5px 10px #00000080;
}

.privacy-policy-banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
}

.privacy-policy-banner .container-inner {
  min-height: 348px;
}

.privacy-policy-banner .content {
  padding: 90px 0;
  text-align: center;
  -webkit-transform: translateY(108px);
  -moz-transform: translateY(108px);
  -ms-transform: translateY(108px);
  -o-transform: translateY(108px);
  transform: translateY(108px);
}

.privacy-policy-banner .content h2 {
  color: #ffffff;
  text-transform: uppercase;
}

.privacy-policy-content {
  color: #2B2B2B;
  padding: 65px 0 130px;
}

.privacy-policy-content .container-inner {
  max-width: 1088px;
  margin: 0 auto;
}

.privacy-policy-content strong {
  font-size: 20px;
  line-height: 28px;
}

.privacy-policy-content p:not(:last-of-type) {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .privacy-policy-content p:not(:last-of-type) {
    margin-bottom: 28px;
  }
}

.privacy-policy-content ol, .privacy-policy-content ul {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .privacy-policy-content ol, .privacy-policy-content ul {
    margin-bottom: 28px;
  }
}

.inner-banner {
  overflow: hidden;
}

@media (max-width: 768px) {
  .inner-banner {
    min-height: 768px;
    background-size: auto 520px !important;
    background-position: 56% 100% !important;
  }
}

.inner-banner .container-inner {
  position: relative;
  padding: 0 54px;
  min-height: 770px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .inner-banner .container-inner {
    padding: 127px 6px 100px;
    min-height: auto;
  }
}

.inner-banner .container-inner:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  width: 929px;
  height: 929px;
  background-color: rgba(60, 55, 158, 0.9);
  mix-blend-mode: multiply;
  border-radius: 100%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .inner-banner .container-inner:before {
    left: 50%;
    transform: translate(-50%, -72%);
  }
}

.inner-banner .content {
  position: relative;
  z-index: 1;
  max-width: 405px;
}

@media (max-width: 768px) {
  .inner-banner .content {
    width: 100%;
  }
}

.inner-banner h1 {
  margin-bottom: 13px;
}

.inner-banner p {
  color: #ffffff;
  max-width: 380px;
  margin-bottom: 26px;
}

.pricing-page .inner-banner .content {
  max-width: 469px;
}

.local-channel {
  padding: 75px 0 68px;
  position: relative;
  overflow: hidden;
}

.local-channel:after {
  content: '';
  position: absolute;
  top: -597px;
  right: -583px;
  width: 756px;
  height: 756px;
  border-radius: 100%;
  border: 50px solid #8e9ed8;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .local-channel:after {
    display: none;
  }
}

.local-channel .container-inner {
  padding: 0 70px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .local-channel .container-inner {
    padding: 0;
  }
}

.local-channel .content-text {
  text-align: center;
  max-width: 626px;
  margin: 0 auto;
}

.local-channel .content-text h2 {
  margin-bottom: 13px;
}

.local-channel .content-text.bottom-text p {
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 768px) {
  .local-channel .content-text.bottom-text p {
    font-size: 16px;
    line-height: 26px;
  }
}

.local-channel .top-text {
  margin-bottom: 63px;
}

.local-channel .bottom-text {
  margin-top: 32px;
}

.local-channel .item {
  display: flex;
  flex-wrap: wrap;
}

.local-channel .item .logo-wrap {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 72px;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .local-channel .item .logo-wrap {
    width: 50%;
  }
}

.local-channel .item .logo-wrap img {
  max-width: 100%;
  max-height: 87px;
  height: auto;
  width: auto;
  filter: grayscale(100%);
  -webkit-transition: filter 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: filter 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: filter 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: filter 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: filter 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.local-channel .item .logo-wrap:hover img {
  filter: grayscale(0);
}

.local-channel .owl-dots {
  text-align: center;
}

.local-channel .owl-dots .owl-dot {
  margin: 0 12.5px;
}

.local-channel .owl-dots .owl-dot span {
  display: block;
  width: 11px;
  height: 11px;
  background-color: #C1C1C1;
  opacity: 0.66;
  border-radius: 100%;
}

.local-channel .owl-dots .owl-dot.active span {
  background-color: #3C379E;
  opacity: 1;
  width: 13px;
  height: 13px;
  margin-bottom: -1px;
}

@media (max-width: 768px) {
  .local-channel .desktop-carousel {
    display: none;
  }
}

.local-channel .mobile-carousel {
  display: none;
}

@media (max-width: 768px) {
  .local-channel .mobile-carousel {
    display: block;
  }
}

.testimonial {
  padding: 113px 0 62px;
}

.testimonial .content-text {
  text-align: center;
  color: #3C379E;
  margin-bottom: 38px;
}

@media (max-width: 768px) {
  .testimonial .owl-carousel {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}

.testimonial .item {
  max-width: 380px;
  margin: 0 auto 77px;
  padding-top: 51px;
  text-align: center;
  box-shadow: 0px 20px 30px #0000004D;
  border-radius: 25px;
}

@media (max-width: 768px) {
  .testimonial .item {
    max-width: 340px;
    margin: 0 auto 52px;
  }
}

.testimonial .item .image {
  width: 198px;
  height: 198px;
  margin: 0 auto 24px;
  border-radius: 100%;
  overflow: hidden;
  border: 9px solid #8E9ED8;
  box-shadow: 0px 10px 20px #00000033;
}

.testimonial .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial .item .text {
  padding: 0 24.5px;
  margin-bottom: 45px;
}

@media (max-width: 768px) {
  .testimonial .item .text {
    padding: 0 22px;
  }
}

.testimonial .item .author {
  background: #3C379E;
  border-radius: 0 0 25px 25px;
  color: #ffffff;
  font-weight: 700;
  line-height: 26px;
  padding: 17px 0 21px;
}

.testimonial .owl-item {
  -webkit-transform: scale(0.77);
  -moz-transform: scale(0.77);
  -ms-transform: scale(0.77);
  -o-transform: scale(0.77);
  transform: scale(0.77);
}

.testimonial .owl-item.center {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.testimonial .owl-dots {
  text-align: center;
}

.testimonial .owl-dots .owl-dot {
  margin: 0 12.5px;
}

.testimonial .owl-dots .owl-dot span {
  display: block;
  width: 11px;
  height: 11px;
  background-color: #C1C1C1;
  opacity: 0.66;
  border-radius: 100%;
}

.testimonial .owl-dots .owl-dot.active span {
  background-color: #3C379E;
  opacity: 1;
  width: 13px;
  height: 13px;
  margin-bottom: -1px;
}

.testimonial .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}

.testimonial .owl-nav button {
  width: 55px;
  height: 55px;
  border-radius: 100%;
  background: #fff !important;
  position: absolute;
  box-shadow: 0px 0px 10px #00000080;
  opacity: 1;
  -webkit-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.testimonial .owl-nav button:hover {
  opacity: 0.8;
}

.testimonial .owl-nav span {
  font-size: 0;
  line-height: 0;
  width: 14px;
  height: 20px;
  display: block;
  background-image: url("../../src/images/arrows.png");
  background-size: cover;
  margin: 0 auto;
}

.testimonial .owl-nav .owl-prev {
  left: 28px;
  top: -75px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.testimonial .owl-nav .owl-next {
  right: 28px;
  top: -75px;
}

.accordion-slide {
  padding: 120px 0 135px;
  background-color: #3C379E;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .accordion-slide {
    padding: 70px 0 135px;
  }
}

.accordion-slide .container {
  position: relative;
  z-index: 1;
}

.accordion-slide:before {
  content: '';
  position: absolute;
  top: -684px;
  left: 50%;
  width: 1135px;
  height: 1135px;
  background-color: #8e9ed8;
  mix-blend-mode: multiply;
  opacity: 0.42;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 100%;
}

@media (max-width: 768px) {
  .accordion-slide:before {
    top: -282px;
    width: 634px;
    height: 634px;
  }
}

.accordion-slide:after {
  content: '';
  position: absolute;
  bottom: -500px;
  right: -457px;
  width: 631px;
  height: 631px;
  border: 50px solid #8e9ed8;
  opacity: 0.2;
  border-radius: 100%;
}

@media (max-width: 768px) {
  .accordion-slide:after {
    width: 547px;
    height: 547px;
    bottom: -483px;
    right: -440px;
  }
}

.accordion-slide .content-text {
  text-align: center;
}

.accordion-slide .content-text h2, .accordion-slide .content-text p {
  color: #ffffff;
}

.accordion-slide .content-text h2 {
  margin-bottom: 17px;
}

.accordion-slide .content-text p {
  font-weight: 300;
}

.accordion-slide .col {
  width: 50%;
}

@media (max-width: 768px) {
  .accordion-slide .col {
    width: 100%;
  }
}

.accordion-slide .col.col-accordion {
  padding-top: 72px;
}

@media (max-width: 768px) {
  .accordion-slide .col.col-slider {
    padding: 0 36px;
  }
}

.accordion-slide .large-container {
  margin-bottom: 127px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .accordion-slide .large-container {
    margin-bottom: 72px;
  }
}

.accordion-slide .accordion-wrap {
  max-width: 573.5px;
  margin-left: auto;
  padding-left: 30px;
  padding-right: 43.5px;
}

@media (max-width: 768px) {
  .accordion-slide .accordion-wrap {
    max-width: 100%;
    padding-left: 36px;
    padding-right: 36px;
  }
}

.accordion-slide .accordion-wrap .item:not(:last-of-type) {
  border-bottom: 1px solid #fff;
}

.accordion-slide .accordion-wrap .item:not(:last-of-type) .accordion-content-inner {
  padding-bottom: 40px;
}

.accordion-slide .accordion-wrap .item:not(:first-of-type) .accordion-label {
  padding-top: 35px;
}

.accordion-slide .accordion-wrap .item .accordion-label {
  color: #ffffff;
  font-size: 35px;
  font-weight: 700;
  line-height: 40px;
  padding-bottom: 35px;
}

@media (max-width: 768px) {
  .accordion-slide .accordion-wrap .item .accordion-label {
    font-size: 28px;
    line-height: 38px;
  }
}

.accordion-slide .accordion-wrap .item .accordion-label .label-inner {
  position: relative;
  padding-right: 52px;
  cursor: pointer;
}

.accordion-slide .accordion-wrap .item .accordion-label .label-inner:after {
  content: '';
  position: absolute;
  top: 0;
  right: 15px;
  height: 38px;
  width: 38px;
  background-color: #fff;
  border-radius: 100%;
  background-image: url("../../src/images/arrows.png");
  background-repeat: no-repeat;
  background-size: 35%;
  background-position: 55% 50%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 768px) {
  .accordion-slide .accordion-wrap .item .accordion-label .label-inner:after {
    height: 33px;
    width: 33px;
    top: 10px;
    right: 0;
  }
}

.accordion-slide .accordion-wrap .item .accordion-content {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  padding-right: 52px;
  height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: -8px;
  -webkit-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 768px) {
  .accordion-slide .accordion-wrap .item .accordion-content {
    font-size: 18px;
    line-height: 28px;
    padding-right: 0;
  }
}

.accordion-slide .accordion-wrap .item.active .accordion-content {
  opacity: 1;
  height: 100%;
}

.accordion-slide .accordion-wrap .item.active .accordion-label .label-inner:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.accordion-slide .owl-dots {
  text-align: center;
  margin-top: -32px;
}

@media (max-width: 768px) {
  .accordion-slide .owl-dots {
    margin-top: 20px;
  }
}

.accordion-slide .owl-dots .owl-dot {
  margin: 0 12.5px;
}

.accordion-slide .owl-dots .owl-dot span {
  display: block;
  width: 11px;
  height: 11px;
  background-color: #BCBBDE;
  opacity: 0.66;
  border-radius: 100%;
}

.accordion-slide .owl-dots .owl-dot.active span {
  background-color: #F2A026;
  opacity: 1;
  width: 13px;
  height: 13px;
  margin-bottom: -1px;
}

.accordion-slide .additional-info .container-inner {
  max-width: 1087.5px;
  margin: 0 auto;
}

.accordion-slide .additional-info .container-inner h3 {
  text-align: center;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .accordion-slide .additional-info .container-inner h3 {
    font-size: 28px;
    line-height: 38px;
  }
}

.accordion-slide .additional-info .row {
  width: calc(100% + 87.5px);
  margin-left: -43.75px;
}

.accordion-slide .additional-info .item {
  width: calc(50% - 87.5px);
  margin: 0 43.75px;
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .accordion-slide .additional-info .item {
    width: calc(100% - 87.5px);
  }
}

@media (max-width: 768px) {
  .accordion-slide .additional-info .item:nth-child(odd) {
    order: 1;
  }
}

@media (max-width: 768px) {
  .accordion-slide .additional-info .item:nth-child(even) {
    order: 2;
  }
}

.accordion-slide .additional-info .item strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .accordion-slide .container-inner {
    padding: 0 6px;
  }
}

.international-bundle {
  background-color: #3C379E;
  padding: 87px 0 107px;
}

.international-bundle .container-inner {
  max-width: 1088px;
  margin: 0 auto;
}

.international-bundle .content-text {
  text-align: center;
  margin-bottom: 74px;
}

.international-bundle .content-text h2, .international-bundle .content-text p {
  color: #ffffff;
}

.international-bundle .content-text h2 {
  margin-bottom: 12px;
}

.international-bundle .content-text p {
  max-width: 802px;
  margin: 0 auto;
}

.international-bundle .row {
  width: calc(100% + 56.5px);
  margin-left: -28.25px;
}

.international-bundle .item {
  width: calc(33.33% - 56.5px);
  margin: 0 28.25px;
  background: #fff;
  box-shadow: 0px 30px 50px #00000029;
  border-radius: 35px;
  text-align: center;
  padding: 55px 30px;
}

@media (max-width: 1200px) {
  .international-bundle .item {
    width: 300px;
    margin: 0;
    padding: 52px ​30px;
  }
}

.international-bundle .bundle-title {
  color: #2B2B2B;
  font-size: 25px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 17px;
}

.international-bundle .country-flag {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 100%;
  margin: 0 auto;
  box-shadow: 0px 5px 15px #00000033;
  margin-bottom: 35px;
}

.international-bundle .price {
  color: #3C379E;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 34px;
}

.international-bundle .coming-soon {
  color: #3B369D;
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.44px;
  padding: 20.5px 0px;
}

@media (max-width: 1200px) {
  .international-bundle .hide-mobile {
    display: none;
  }
}

.international-bundle .show-mobile {
  display: none;
}

@media (max-width: 1200px) {
  .international-bundle .show-mobile {
    display: block;
    width: 300px;
    margin: 0 auto;
  }
}

.international-bundle .show-mobile .owl-stage-outer {
  overflow: visible;
}

.international-bundle .show-mobile .owl-dots {
  width: 300px;
  border-radius: 30px;
  margin-top: 60px;
  background-color: #E5E5E5;
  line-height: 0;
}

.international-bundle .show-mobile .owl-dots .owl-dot {
  width: 33.33%;
  height: 10px;
  background-color: #E5E5E5;
  vertical-align: middle;
}

.international-bundle .show-mobile .owl-dots .owl-dot:first-of-type {
  border-radius: 30px 0 0 30px;
}

.international-bundle .show-mobile .owl-dots .owl-dot:last-of-type {
  border-radius: 0 30px 30px 0;
}

.international-bundle .show-mobile .owl-dots .owl-dot.active {
  background-color: #FEB12A;
  border-radius: 30px;
}

.subscription-pricing {
  position: relative;
  overflow: hidden;
  padding: 100px 0 117px;
}

@media (max-width: 1300px) {
  .subscription-pricing {
    padding: 53px 0 77px;
  }
}

.subscription-pricing:after {
  content: '';
  position: absolute;
  bottom: -218px;
  right: -489px;
  width: 683px;
  height: 683px;
  border: 50px solid #8e9ed8;
  border-radius: 100%;
  z-index: -1;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .subscription-pricing:after {
    display: none;
  }
}

.subscription-pricing .container-inner {
  max-width: 1215px;
  margin: 0 auto;
}

.subscription-pricing .content-text {
  text-align: center;
  margin-bottom: 50px;
}

.subscription-pricing .content-text h2 {
  margin-bottom: 13px;
}

.subscription-pricing .content-text p {
  color: #2B2B2B;
}

.subscription-pricing .row {
  width: calc(100% + 40px);
  margin-left: -20px;
}

@media (max-width: 1300px) {
  .subscription-pricing .row {
    width: 100%;
    margin-left: 0;
  }
}

.subscription-pricing .col {
  position: relative;
  width: 400px;
  background-color: #3C379E;
  border-radius: 25px;
  padding: 87px 0 99px;
  box-shadow: 0px 20px 30px #0000004D;
  overflow: hidden;
}

@media (max-width: 1300px) {
  .subscription-pricing .col {
    width: 300px;
    box-shadow: none;
    padding: 80px 0 40px;
  }
}

.subscription-pricing .col:first-of-type {
  background-color: #8E9ED8;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}

@media (max-width: 1300px) {
  .subscription-pricing .col:first-of-type {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

.subscription-pricing .col:nth-of-type(2) {
  margin: 0 27.5px;
}

.subscription-pricing .col:last-of-type {
  background-color: #0F0C62;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}

@media (max-width: 1300px) {
  .subscription-pricing .col:last-of-type {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

.subscription-pricing .col:last-of-type .subscription-tag span {
  background-color: #3C379E;
}

.subscription-pricing .col .call-out-label {
  position: absolute;
  top: 25px;
  right: -50px;
  width: 190px;
  height: 36px;
  background-color: #feb12a;
  text-align: center;
  padding: 10px 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.subscription-pricing .col .item-image {
  display: flex;
  align-items: center;
  height: 132px;
  margin-bottom: 30px;
}

@media (max-width: 1300px) {
  .subscription-pricing .col .item-image {
    height: 104px;
  }
}

.subscription-pricing .col .item-image img {
  max-width: 160px;
  max-height: 132px;
  width: auto;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 1300px) {
  .subscription-pricing .col .item-image img {
    max-height: 104px;
  }
}

.subscription-pricing .col .subscription-tag {
  text-align: center;
  margin-bottom: 32px;
}

@media (max-width: 1300px) {
  .subscription-pricing .col .subscription-tag {
    margin-bottom: 20px;
  }
}

.subscription-pricing .col .subscription-tag span {
  color: #fff;
  display: inline-block;
  font-size: 21px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0.42px;
  background-color: #0F0C62;
  border-radius: 25px;
  padding: 13px 53px;
}

@media (max-width: 1300px) {
  .subscription-pricing .col .subscription-tag span {
    font-size: 16px;
    letter-spacing: 0.32px;
    line-height: 20px;
    padding: 7.5px 53px;
  }
}

.subscription-pricing .col .text-content {
  padding: 0 38px;
  min-height: 290px;
}

@media (max-width: 1300px) {
  .subscription-pricing .col .text-content {
    padding: 0 14px;
    min-height: 257px;
  }
}

.subscription-pricing .col .text-content .item-title {
  position: relative;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 1300px) {
  .subscription-pricing .col .text-content .item-title {
    font-size: 31px;
    line-height: 35px;
    margin-bottom: 23px;
  }
}

.subscription-pricing .col .text-content .item-title .tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  background: #fff;
  color: #2B2B2B;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  padding: 13px 12px 12px;
  width: 264px;
  opacity: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.subscription-pricing .col .text-content .item-title .tooltip:before {
  content: '';
  position: absolute;
  top: -4.5px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 5.5px solid transparent;
  border-right: 5.5px solid transparent;
  border-bottom: 5.57px solid #fff;
}

.subscription-pricing .col .text-content .item-title:hover .tooltip {
  opacity: 1;
}

.subscription-pricing .col .text-content .item-list li {
  position: relative;
  line-height: 25px;
  color: #ffffff;
}

@media (max-width: 1300px) {
  .subscription-pricing .col .text-content .item-list li {
    font-size: 17px;
    line-height: 24px;
  }
}

.subscription-pricing .col .text-content .item-list li:not(:last-of-type) {
  margin-bottom: 5px;
}

.subscription-pricing .col .text-content .item-list li .tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  background: #fff;
  color: #2B2B2B;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  padding: 13px 16px 14px;
  width: 235px;
  opacity: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.subscription-pricing .col .text-content .item-list li .tooltip:before {
  content: '';
  position: absolute;
  top: -4.5px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 5.5px solid transparent;
  border-right: 5.5px solid transparent;
  border-bottom: 5.57px solid #fff;
}

.subscription-pricing .col .text-content .item-list li:hover .tooltip {
  opacity: 1;
}

.subscription-pricing .col .text-content .item-subcopy {
  color: #ffffff;
  font-size: 15px;
  line-height: 34px;
  text-align: center;
  margin-top: 19px;
}

.subscription-pricing .col .btn-wrap {
  margin-top: 9px;
  text-align: center;
}

@media (max-width: 1300px) {
  .subscription-pricing .hide-mobile {
    display: none;
  }
}

.subscription-pricing .hide-mobile .col:nth-of-type(1) .item-image img {
  width: 142px;
}

.subscription-pricing .hide-mobile .col:nth-of-type(2) .item-image img {
  width: 119px;
}

.subscription-pricing .hide-mobile .col:nth-of-type(3) .item-image img {
  width: 160px;
}

.subscription-pricing .show-mobile {
  display: none;
}

@media (max-width: 1300px) {
  .subscription-pricing .show-mobile {
    display: block;
    width: 300px;
    margin: 0 auto;
  }
}

.subscription-pricing .show-mobile .owl-stage-outer {
  overflow: visible;
}

.subscription-pricing .show-mobile .owl-stage-outer .owl-item {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0px 20px 30px #0000004D;
  border-radius: 25px;
}

.subscription-pricing .show-mobile .owl-stage-outer .owl-item.active {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.subscription-pricing .show-mobile .owl-stage-outer .owl-item:first-of-type .col {
  background-color: #8E9ED8;
}

.subscription-pricing .show-mobile .owl-stage-outer .owl-item:first-of-type .col .subscription-tag span {
  background-color: #0F0C62;
}

.subscription-pricing .show-mobile .owl-stage-outer .owl-item:nth-of-type(2) .col {
  background-color: #3C379E;
}

.subscription-pricing .show-mobile .owl-stage-outer .owl-item:nth-of-type(2) .col .subscription-tag span {
  background-color: #0F0C62;
}

.subscription-pricing .show-mobile .owl-dots {
  width: 300px;
  border-radius: 30px;
  margin-top: 60px;
  background-color: #E5E5E5;
  line-height: 0;
}

.subscription-pricing .show-mobile .owl-dots .owl-dot {
  width: 33.33%;
  height: 10px;
  background-color: #E5E5E5;
  vertical-align: middle;
}

.subscription-pricing .show-mobile .owl-dots .owl-dot:first-of-type {
  border-radius: 30px 0 0 30px;
}

.subscription-pricing .show-mobile .owl-dots .owl-dot:last-of-type {
  border-radius: 0 30px 30px 0;
}

.subscription-pricing .show-mobile .owl-dots .owl-dot.active {
  background-color: #3C379E;
  border-radius: 30px;
}

.international-banner {
  position: relative;
}

.international-banner h3 {
  font-size: 35px;
  line-height: 40px;
  text-transform: uppercase;
}

.international-banner .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background-color: #3C379E;
  z-index: -1;
  overflow: hidden;
}

.international-banner .background:before {
  content: '';
  position: absolute;
  top: 144px;
  left: -220px;
  width: 495px;
  height: 495px;
  opacity: 0.2;
  border: 50px solid #8e9ed8;
  border-radius: 100%;
}

@media (max-width: 768px) {
  .international-banner .background:before {
    width: 350px;
    height: 350px;
    top: 247px;
    left: -220px;
    border: 30px solid #8e9ed8;
  }
}

.international-banner .background:after {
  content: '';
  position: absolute;
  bottom: 95px;
  right: -291px;
  width: 445px;
  height: 445px;
  opacity: 0.2;
  border: 50px solid #8e9ed8;
  border-radius: 100%;
}

@media (max-width: 768px) {
  .international-banner .background:after {
    width: 350px;
    height: 350px;
    bottom: 175px;
    right: -252px;
    border: 30px solid #8e9ed8;
  }
}

.international-banner .container-inner {
  padding-top: 100px;
}

@media (max-width: 768px) {
  .international-banner .container-inner {
    padding-top: 132px;
  }
}

.international-banner .heading {
  color: #ffffff;
  text-align: center;
  margin-bottom: 84px;
}

@media (max-width: 768px) {
  .international-banner .heading {
    margin-bottom: 74px;
  }
}

.international-banner .heading p {
  line-height: 40px;
  margin-bottom: 3px;
}

.international-banner .content-box {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  width: 489px;
  margin: 0 auto;
  padding: 101px 0 36px;
  text-align: center;
  box-shadow: 0px 30px 50px #00000029;
}

@media (max-width: 768px) {
  .international-banner .content-box {
    padding: 84px 0 45px;
    width: 330px;
  }
}

.international-banner .flag {
  position: absolute;
  top: -69px;
  left: 50%;
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 100%;
  box-shadow: 0px 5px 15px #00000033;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .international-banner .flag {
    width: 120px;
    height: 120px;
    top: -53px;
  }
}

.international-banner .flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.international-banner .price {
  color: #3C379E;
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .international-banner .price {
    font-size: 35px;
  }
}

.international-banner .btn-wrap {
  margin-top: 28px;
}

@media (max-width: 768px) {
  .international-banner .btn-wrap {
    margin-top: 21px;
  }
}

.international-banner .btn-wrap .btn {
  padding: 11.5px 30.5px;
}

@media (max-width: 768px) {
  .international-banner .btn-wrap .btn {
    padding: 10px 27px;
  }
}

.ib-desc {
  margin: 46px 0;
}

@media (max-width: 768px) {
  .ib-desc {
    margin: 67px 0 63px;
  }
}

.ib-desc .container-inner {
  max-width: 904px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .ib-desc .container-inner {
    padding: 0 6px;
  }
}

.ib-desc p {
  color: #2B2B2B;
}

.ib-desc h1, .ib-desc h2, .ib-desc h3, .ib-desc h4, .ib-desc h5, .ib-desc h6 {
  color: #3C379E;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .ib-desc h1, .ib-desc h2, .ib-desc h3, .ib-desc h4, .ib-desc h5, .ib-desc h6 {
    margin-bottom: 22px;
  }
}

.ib-desc h3 {
  line-height: 45px;
}

@media (max-width: 768px) {
  .ib-desc h3 {
    line-height: 35px;
  }
}

.channels-included {
  margin: 92px 0 128px;
}

@media (max-width: 768px) {
  .channels-included {
    margin: 63px 0 101px;
  }
}

.channels-included .container-inner {
  max-width: 904px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .channels-included .container-inner {
    padding: 0 8px;
  }
}

.channels-included h4 {
  margin-bottom: 35px;
}

@media (max-width: 768px) {
  .channels-included h4 {
    font-size: 27px;
    line-height: 35px;
  }
}

.channels-included .row {
  width: calc(100% + 41px);
  margin-left: -20.5px;
}

.channels-included .row .item {
  background-color: #fff;
  box-shadow: 0px 10px 10px #00000029;
  border-radius: 17px;
  width: calc(20% - 41px);
  margin: 0 20.5px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .channels-included .row .item {
    width: calc(50% - 41px);
    margin-bottom: 25px;
  }
}

.channels-included .row .img-wrap {
  position: relative;
  height: 0;
  padding-bottom: 100%;
}

.channels-included .row img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 80%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}

.channels-included .owl-dots {
  margin-top: 22px;
  text-align: center;
}

@media (max-width: 768px) {
  .channels-included .owl-dots {
    margin-top: 32px;
  }
}

.channels-included .owl-dots .owl-dot {
  margin: 0 12.5px;
}

.channels-included .owl-dots .owl-dot span {
  display: block;
  width: 11px;
  height: 11px;
  background-color: #C1C1C1;
  opacity: 0.66;
  border-radius: 100%;
}

.channels-included .owl-dots .owl-dot.active span {
  background-color: #3C379E;
  opacity: 1;
  width: 13px;
  height: 13px;
  margin-bottom: -1px;
}

.channels-included .btn-wrap {
  margin-top: 52px;
  text-align: center;
}

@media (max-width: 768px) {
  .channels-included .btn-wrap {
    margin-top: 62px;
  }
}

.channels-included .desktop-carousel .owl-stage-outer {
  overflow: visible;
}

.channels-included .desktop-carousel .owl-stage-outer:before {
  content: '';
  position: absolute;
  top: 0;
  right: calc(100% + 20.5px);
  width: 1000%;
  height: 100%;
  background: #fff;
  z-index: 1;
}

.channels-included .desktop-carousel .owl-stage-outer:after {
  content: '';
  position: absolute;
  top: 0;
  left: calc(100% + 20.5px);
  width: 1000%;
  height: 100%;
  background: #fff;
  z-index: 1;
}

@media (max-width: 768px) {
  .channels-included .desktop-carousel {
    display: none;
  }
}

.channels-included .mobile-carousel {
  display: none;
}

.channels-included .mobile-carousel .owl-stage-outer {
  overflow: visible;
}

@media (max-width: 768px) {
  .channels-included .mobile-carousel {
    display: block;
  }
}

.about-us-banner {
  position: relative;
  min-height: 480px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
  overflow: hidden;
}

@media (max-width: 768px) {
  .about-us-banner {
    min-height: 450px;
    background-position: 30% 0;
    background-size: auto 100%;
  }
}

.about-us-banner:before {
  content: '';
  position: absolute;
  top: 130px;
  left: 50%;
  width: 560px;
  height: 560px;
  border-radius: 100%;
  background-color: #3B369C;
  opacity: 0.85;
  mix-blend-mode: multiply;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .about-us-banner:before {
    top: 185px;
  }
}

.about-us-banner .container-inner {
  position: relative;
  max-width: 511px;
  margin: 0 auto;
  -webkit-transform: translateY(286px);
  -moz-transform: translateY(286px);
  -ms-transform: translateY(286px);
  -o-transform: translateY(286px);
  transform: translateY(286px);
  text-align: center;
}

@media (max-width: 768px) {
  .about-us-banner .container-inner {
    -webkit-transform: translateY(273px);
    -moz-transform: translateY(273px);
    -ms-transform: translateY(273px);
    -o-transform: translateY(273px);
    transform: translateY(273px);
  }
}

.about-us-banner h1 {
  text-transform: uppercase;
}

.about-us-intro {
  background-color: #3C379E;
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 50px 0;
}

@media (max-width: 768px) {
  .about-us-intro {
    min-height: 600px;
  }
}

.about-us-intro:after {
  content: '';
  position: absolute;
  top: -285px;
  right: -334px;
  width: 469px;
  height: 469px;
  border: 50px solid #332E92;
  border-radius: 100%;
  z-index: -1;
}

@media (max-width: 768px) {
  .about-us-intro:after {
    display: none;
  }
}

.about-us-intro .container-inner {
  max-width: 949px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about-us-intro .container-inner {
    padding: 0 6px;
  }
}

.about-us-intro h4 {
  color: #ffffff;
  line-height: 45px;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 768px) {
  .about-us-intro h4 {
    font-size: 24px;
    line-height: 34px;
  }
}

.about-us-content {
  padding: 94px 0;
}

@media (max-width: 768px) {
  .about-us-content {
    padding: 60px 0 80px;
  }
}

.about-us-content .container-inner {
  max-width: 990px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about-us-content .container-inner {
    padding: 0 6px;
  }
}

.about-us-content h3 {
  color: #3C379E;
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 53px;
}

@media (max-width: 768px) {
  .about-us-content h3 {
    font-size: 30px;
    line-height: 40px;
  }
}

.about-us-content p {
  color: #2B2B2B;
}

.about-us-content p:not(:last-of-type) {
  margin-bottom: 27px;
}

@media (max-width: 768px) {
  .about-us-content p:not(:last-of-type) {
    margin-bottom: 30px;
  }
}

.contact-us {
  position: relative;
  overflow: hidden;
}

.contact-us:before {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  background: #3C379E;
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .contact-us:before {
    display: none;
  }
}

.contact-us .col-text {
  width: calc(100% - 550px);
  line-height: 28px;
  background-color: #3C379E;
  padding-top: 222px;
  position: relative;
}

@media (max-width: 991px) {
  .contact-us .col-text {
    overflow: hidden;
    font-size: 20px;
  }
}

.contact-us .col-text:before {
  content: '';
  position: absolute;
  top: -283px;
  right: -450px;
  width: 530px;
  height: 530px;
  border: 45px solid #8e9ed8;
  opacity: 0.3;
  border-radius: 100%;
}

@media (max-width: 768px) {
  .contact-us .col-text:before {
    display: none;
  }
}

.contact-us .col-text:after {
  content: '';
  position: absolute;
  bottom: -1016px;
  right: -447px;
  width: 1132px;
  height: 1132px;
  border: 50px solid #8e9ed8;
  opacity: 0.2;
  border-radius: 100%;
}

@media (max-width: 768px) {
  .contact-us .col-text:after {
    width: 804px;
    height: 804px;
    border: 40px solid #8e9ed8;
    bottom: -702px;
    right: -534px;
  }
}

.contact-us .col-text .circle-background {
  position: absolute;
  bottom: -354px;
  right: 85px;
  width: 997px;
  height: 997px;
  border-radius: 100%;
  background-color: #8e9ed8;
  mix-blend-mode: multiply;
  opacity: 0.8;
  z-index: 1;
}

@media (max-width: 768px) {
  .contact-us .col-text .circle-background {
    width: 715px;
    height: 715px;
    bottom: -219px;
    right: -92px;
  }
}

@media (max-width: 991px) {
  .contact-us .col-text {
    width: 100%;
    padding-top: 137px;
    padding-bottom: 92px;
  }
}

.contact-us .col-text strong {
  display: block;
}

.contact-us .col-text .text-wrap {
  position: relative;
  z-index: 1;
  max-width: 572px;
  margin: 0 auto;
  padding: 0 30px;
}

@media (max-width: 991px) {
  .contact-us .col-text .text-wrap {
    padding: 0 36px;
  }
}

.contact-us .col-text h2 {
  color: #ffffff;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .contact-us .col-text h2 {
    text-align: center;
  }
}

.contact-us .col-text a {
  text-decoration: none;
  color: #ffffff;
}

.contact-us .col-text a:hover {
  opacity: 0.8;
}

.contact-us .address-wrap {
  padding-bottom: 33px;
  border-bottom: 1px solid #fff;
  margin-bottom: 40px;
}

.contact-us .address-wrap,
.contact-us .email-wrap {
  max-width: 389px;
  padding-left: 53px;
  color: #ffffff;
}

@media (max-width: 991px) {
  .contact-us .address-wrap,
  .contact-us .email-wrap {
    max-width: 100%;
  }
}

.contact-us .location {
  position: relative;
  margin-bottom: 13px;
}

.contact-us .location:after {
  content: '';
  position: absolute;
  top: 7px;
  left: -53px;
  width: 28px;
  height: 36px;
  background: url("../../src/images/pin-logo.png");
}

.contact-us .email {
  position: relative;
}

.contact-us .email:after {
  content: '';
  position: absolute;
  top: 7px;
  left: -53px;
  width: 37px;
  height: 29px;
  background: url("../../src/images/email-logo.png");
}

.contact-us .col-form {
  background: #fff;
  padding: 195px 0 46px;
  width: 550px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .contact-us .col-form {
    width: 100%;
    padding: 53px 36px 100px;
  }
}

.contact-us .col-form .form-wrap {
  max-width: 413px;
  margin: 0 auto;
}

.contact-us .form-field.col-50 {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 33px);
  margin-left: -16.5px;
}

.contact-us .form-field.col-50 .forminator-row {
  width: calc(50% - 33px);
  margin: 0 16.5px !important;
}

@media (max-width: 991px) {
  .contact-us .form-field.col-50 .forminator-row {
    width: calc(100% - 33px);
  }
}

@media (max-width: 991px) {
  .contact-us .form-field.col-50 .forminator-row:first-of-type {
    margin-bottom: 20px !important;
  }
}

.contact-us .form-field.col-50 .forminator-row .forminator-col {
  padding: 0 !important;
}

.contact-us .form-field label {
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 8px !important;
  margin-bottom: 10px !important;
}

.contact-us .form-field input,
.contact-us .form-field textarea {
  border-radius: 6px !important;
  padding: 11.5px 9px !important;
}

.contact-us .form-field textarea {
  height: 106px !important;
  resize: none !important;
}

.contact-us .form-field.forminator-button-submit {
  border-radius: 8px !important;
  width: 220px !important;
  height: 55px !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  display: block !important;
  margin: 52px auto 0 !important;
}

.live-stream-single-page .ls-single-banner {
  display: flex;
  align-items: center;
  padding-top: 80px;
  min-height: 350px;
  background-color: #3C379E;
}

.live-stream-single-page .ls-single-banner .container-inner {
  padding: 50px 0;
}

.live-stream-single-page .ls-single-banner .heading {
  text-align: center;
}

.live-stream-single-page .ls-single-banner p {
  line-height: 40px;
  color: #ffffff;
  margin-bottom: 10px;
}

.live-stream-single-page .ls-single-banner p span {
  color: #FEB12A;
}

.live-stream-single-page .ls-single-banner h2 {
  color: #ffffff;
  text-transform: uppercase;
}

.live-stream-single-page .live-stream-content {
  padding: 53px 0 90px;
}

@media (max-width: 768px) {
  .live-stream-single-page .live-stream-content {
    padding: 41px 0 0;
  }
}

.live-stream-single-page .live-stream-content .container-inner {
  max-width: 1034px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .live-stream-single-page .live-stream-content .container-inner {
    padding: 0 6px;
  }
}

.live-stream-single-page .live-stream-content .col-image {
  width: 380px;
}

@media (max-width: 768px) {
  .live-stream-single-page .live-stream-content .col-image {
    width: 100%;
  }
}

.live-stream-single-page .live-stream-content .col-image .image-wrap {
  width: 380px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0px 30px 20px #00000029;
  border-radius: 20px;
  position: relative;
  height: 0;
  padding-bottom: 325px;
}

@media (max-width: 768px) {
  .live-stream-single-page .live-stream-content .col-image .image-wrap {
    width: 342px;
  }
}

.live-stream-single-page .live-stream-content .col-image .image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 70.5%;
  max-height: 230px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.live-stream-single-page .live-stream-content .col-text {
  padding-top: 22px;
  padding-bottom: 22px;
  padding-left: 71px;
  width: calc(100% - 380px);
  max-width: 643px;
}

@media (max-width: 768px) {
  .live-stream-single-page .live-stream-content .col-text {
    padding-top: 42px;
    padding-bottom: 12px;
    padding-left: 0;
    max-width: 100%;
    width: 100%;
  }
}

.live-stream-single-page .live-stream-content .col-text .text-wrap {
  margin-bottom: 19px;
}

.live-stream-single-page .live-stream-content .col-text .text-wrap p:not(:last-of-type) {
  margin-bottom: 19px;
}

.live-stream-single-page .live-stream-content .col-text .category-wrap span {
  font-weight: 700;
}

.live-stream-single-page .live-stream-slider .container-inner {
  max-width: 1004px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .live-stream-single-page .live-stream-slider #ls-sync1 {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}

.live-stream-single-page .live-stream-slider #ls-sync1 .item .item-wrap,
.live-stream-single-page .live-stream-slider #ls-sync1 .item .video-container__wrapper {
  position: relative;
  height: 0;
  padding-bottom: 51%;
  overflow: hidden;
  box-shadow: 0px 20px 30px #00000033;
  border-radius: 20px;
  margin: 50px 50px 30px;
}

@media (max-width: 768px) {
  .live-stream-single-page .live-stream-slider #ls-sync1 .item .item-wrap,
  .live-stream-single-page .live-stream-slider #ls-sync1 .item .video-container__wrapper {
    margin: 50px 36px 25px;
  }
}

.live-stream-single-page .live-stream-slider #ls-sync1 .item img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.live-stream-single-page .live-stream-slider #ls-sync1 .item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-stream-single-page .live-stream-slider #ls-sync1 .item .js-video-btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background-image: url(../../src/images/play-button.png);
  background-repeat: no-repeat;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.live-stream-single-page .live-stream-slider #ls-sync1 .item .playing .js-video-btn,
.live-stream-single-page .live-stream-slider #ls-sync1 .item .playing .image-placeholder {
  display: none;
}

.live-stream-single-page .live-stream-slider #ls-sync1 .owl-nav {
  position: absolute;
  top: calc(50% - 27.5px);
  left: 0;
  width: 100%;
}

.live-stream-single-page .live-stream-slider #ls-sync1 .owl-nav button {
  position: absolute;
  overflow: visible;
  opacity: 1;
  -webkit-transition: opacity 0.4s cubic-bezier(1, 0, 0, 1);
  -moz-transition: opacity 0.4s cubic-bezier(1, 0, 0, 1);
  -ms-transition: opacity 0.4s cubic-bezier(1, 0, 0, 1);
  -o-transition: opacity 0.4s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.4s cubic-bezier(1, 0, 0, 1);
}

.live-stream-single-page .live-stream-slider #ls-sync1 .owl-nav button:hover {
  opacity: 0.5;
}

.live-stream-single-page .live-stream-slider #ls-sync1 .owl-nav button.owl-prev {
  left: -95px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (max-width: 1240px) {
  .live-stream-single-page .live-stream-slider #ls-sync1 .owl-nav button.owl-prev {
    left: -27.5px;
  }
}

.live-stream-single-page .live-stream-slider #ls-sync1 .owl-nav button.owl-prev span {
  box-shadow: 0px -5px 10px #00000080;
}

.live-stream-single-page .live-stream-slider #ls-sync1 .owl-nav button.owl-next {
  right: -95px;
}

@media (max-width: 1240px) {
  .live-stream-single-page .live-stream-slider #ls-sync1 .owl-nav button.owl-next {
    right: -27.5px;
  }
}

.live-stream-single-page .live-stream-slider #ls-sync1 .owl-nav button span {
  position: relative;
  font-size: 0;
  display: block;
  width: 55px;
  height: 55px;
  background-color: #FFFFFF;
  border-radius: 100%;
  background-image: url("../../src/images/arrows.png");
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0px 5px 10px #00000080;
  overflow: visible;
}

@media (max-width: 768px) {
  .live-stream-single-page .live-stream-slider #ls-sync1 .owl-nav button span {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 768px) {
  .live-stream-single-page .live-stream-slider #ls-sync1 .owl-nav {
    display: none;
  }
}

.live-stream-single-page .live-stream-slider #ls-sync2 {
  padding: 0 50px;
}

@media (max-width: 768px) {
  .live-stream-single-page .live-stream-slider #ls-sync2 {
    padding: 0 6px;
  }
}

.live-stream-single-page .live-stream-slider .btn-wrap {
  margin: 96px 0 91px;
  text-align: center;
}

@media (max-width: 768px) {
  .live-stream-single-page .live-stream-slider .btn-wrap {
    margin: 65px 0 80px;
  }
}

.live-stream-archive-page {
  background-color: #3C379E;
}

.live-stream-archive-page .live-stream-heading {
  padding-top: 135px;
  padding-bottom: 59px;
}

.live-stream-archive-page .live-stream-heading .container-inner {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.live-stream-archive-page .live-stream-heading h2, .live-stream-archive-page .live-stream-heading p {
  color: #ffffff;
}

.live-stream-archive-page .live-stream-heading h2 {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .live-stream-archive-page .live-stream-heading h2 {
    font-size: 45px;
    line-height: 50px;
  }
}

.live-stream-archive-page .filter {
  position: relative;
  z-index: 2;
}

.live-stream-archive-page .filter .container-inner {
  max-width: 1094px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .container-inner {
    padding: 0 6px;
  }
}

.live-stream-archive-page .filter .filter-option {
  display: inline-block;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .filter-option {
    display: block;
  }
}

.live-stream-archive-page .filter .filter-option:not(:first-of-type) {
  margin-left: 20px;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .filter-option:not(:first-of-type) {
    margin-left: 0;
  }
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .all-channel-wrap {
    padding: 22px 33px;
    border-bottom: 1px solid #E0E0E0;
  }
}

.live-stream-archive-page .filter .all-channels {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #ffffff;
  text-decoration: none;
  width: 200px;
  background-color: #8E9ED8;
  border-radius: 10px;
  text-align: center;
  padding: 13px 0;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .all-channels {
    background: #fff;
    color: #280C7F;
    padding: 0;
    font-size: 20px;
    line-height: 30px;
    width: auto;
  }
}

.live-stream-archive-page .filter .categories-wrap {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #ffffff;
  text-decoration: none;
  width: 200px;
  background-color: #8E9ED8;
  border-radius: 10px;
  padding: 13px 22px;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .categories-wrap {
    background: #fff;
    color: #280C7F;
    font-size: 20px;
    line-height: 30px;
    width: auto;
    display: block;
    padding: 22px 33px;
    border-bottom: 1px solid #E0E0E0;
    border-radius: 0;
  }
}

.live-stream-archive-page .filter .categories-wrap:after {
  content: '';
  position: absolute;
  top: 20px;
  right: 15px;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-bottom: 0;
  border-top: 10px solid #fff;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  -moz-transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  -ms-transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  -o-transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .categories-wrap:after {
    top: 31px;
    right: 30px;
    border: 7.5px solid transparent;
    border-bottom: 0;
    border-top: 11px solid #280C7F;
  }
}

.live-stream-archive-page .filter .categories-wrap .drop-down {
  padding: 20px 7px 20px 22px;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 20px 30px #00000029;
  border-radius: 0 0 10px 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .categories-wrap .drop-down {
    display: none;
    position: relative;
    opacity: 1;
    visibility: visible;
    top: 0;
    left: 0;
    padding: 30px 0 0;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .categories-wrap .drop-down label {
    font-size: 18px;
  }
}

.live-stream-archive-page .filter .categories-wrap.active .drop-down {
  display: block;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .categories-wrap.active:after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}

.live-stream-archive-page .filter .categories-wrap:hover {
  border-radius: 10px 10px 0 0;
}

@media (min-width: 1101px) {
  .live-stream-archive-page .filter .categories-wrap:hover:after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}

.live-stream-archive-page .filter .categories-wrap:hover .drop-down {
  opacity: 1;
  visibility: visible;
}

.live-stream-archive-page .filter .categories-wrap ul {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  max-height: 180px;
  overflow-y: scroll;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .categories-wrap ul {
    max-height: 185px;
  }
}

.live-stream-archive-page .filter .categories-wrap ul::-webkit-scrollbar {
  width: 4px;
}

.live-stream-archive-page .filter .categories-wrap ul::-webkit-scrollbar-track {
  background: #E5E5E5;
  border-radius: 30px;
}

.live-stream-archive-page .filter .categories-wrap ul::-webkit-scrollbar-thumb {
  background: #3C379E;
  border-radius: 30px;
}

.live-stream-archive-page .filter .categories-wrap ul::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

.live-stream-archive-page .filter .categories-wrap ul li {
  padding-left: 28px;
  margin-bottom: 19px;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .categories-wrap ul li {
    padding-left: 38px;
  }
}

.live-stream-archive-page .filter .categories-wrap ul input {
  margin: 0;
  position: relative;
}

.live-stream-archive-page .filter .categories-wrap ul input:before {
  content: '';
  position: absolute;
  top: -15px;
  left: -27px;
  border-radius: 100%;
  height: 19px;
  width: 19px;
  border: 1px solid #BABABA;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .categories-wrap ul input:before {
    left: -37px;
  }
}

.live-stream-archive-page .filter .categories-wrap ul input:checked:before {
  height: 8px;
  width: 8px;
  border: 6px solid #3C379E;
}

.live-stream-archive-page .filter .sort-wrap {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #ffffff;
  text-decoration: none;
  width: 200px;
  background-color: #8E9ED8;
  border-radius: 10px;
  padding: 13px 22px;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .sort-wrap {
    background: #fff;
    color: #280C7F;
    font-size: 20px;
    line-height: 30px;
    width: auto;
    display: block;
    padding: 22px 33px;
    border-bottom: 1px solid #E0E0E0;
    border-radius: 0;
  }
}

.live-stream-archive-page .filter .sort-wrap:after {
  content: '';
  position: absolute;
  top: 20px;
  right: 15px;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-bottom: 0;
  border-top: 10px solid #fff;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  -moz-transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  -ms-transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  -o-transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .sort-wrap:after {
    top: 31px;
    right: 30px;
    border: 7.5px solid transparent;
    border-bottom: 0;
    border-top: 11px solid #280C7F;
  }
}

.live-stream-archive-page .filter .sort-wrap .drop-down {
  padding: 0;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 20px 30px #00000029;
  border-radius: 0 0 10px 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .sort-wrap .drop-down {
    display: none;
    position: relative;
    opacity: 1;
    visibility: visible;
    top: 0;
    left: 0;
    padding: 30px 0 0;
    border-radius: 0;
    box-shadow: none;
  }
}

.live-stream-archive-page .filter .sort-wrap:hover {
  border-radius: 10px 10px 0 0;
}

@media (min-width: 1101px) {
  .live-stream-archive-page .filter .sort-wrap:hover:after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}

.live-stream-archive-page .filter .sort-wrap:hover .drop-down {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .sort-wrap.active .drop-down {
    display: block;
  }
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .sort-wrap.active:after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}

.live-stream-archive-page .filter .sort-wrap ul {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .sort-wrap ul {
    font-size: 18px;
  }
}

.live-stream-archive-page .filter .sort-wrap ul li {
  padding: 10px 23px;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .sort-wrap ul li {
    padding: 10px 0;
  }
}

.live-stream-archive-page .filter .sort-wrap ul li.active {
  font-weight: 700;
  background-color: #EBEBEB;
  color: #3C379E;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .sort-wrap ul li.active {
    background-color: transparent;
  }
}

.live-stream-archive-page .filter .sort-wrap ul input {
  margin: 0;
  position: relative;
}

.live-stream-archive-page .filter .sort-wrap ul input:before {
  content: '';
  position: absolute;
  top: -15px;
  left: -27px;
  border-radius: 100%;
  height: 19px;
  width: 19px;
  border: 1px solid #BABABA;
}

.live-stream-archive-page .filter .sort-wrap ul input:checked:before {
  height: 8px;
  width: 8px;
  border: 6px solid #3C379E;
}

.live-stream-archive-page .filter .search-wrap {
  position: relative;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .search-wrap {
    max-width: 325px;
    margin: 0 auto;
  }
}

.live-stream-archive-page .filter .search-wrap span {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: #FEB12A;
  border-radius: 10px;
  cursor: pointer;
}

.live-stream-archive-page .filter .search-wrap span:after {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 22.5px;
  height: 22.5px;
  background: url("./../../src/images/search-icon.png");
}

.live-stream-archive-page .filter .search-wrap input[type='text'] {
  border: 0;
  border-radius: 10px;
  padding: 12.5px 78px 12.5px 28px;
  width: 350px;
  font-size: 18px;
  line-height: 25px;
  color: #A0A0A0;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .search-wrap input[type='text'] {
    width: 325px;
    box-shadow: 0px 3px 6px #00000029;
  }
}

.live-stream-archive-page .filter .search-wrap input[type='text']::-webkit-input-placeholder {
  font-size: 18px;
  line-height: 25px;
  color: #A0A0A0;
}

.live-stream-archive-page .filter .search-wrap input[type='text']::-moz-placeholder {
  font-size: 18px;
  line-height: 25px;
  color: #A0A0A0;
}

.live-stream-archive-page .filter .search-wrap input[type='text']:-ms-input-placeholder {
  font-size: 18px;
  line-height: 25px;
  color: #A0A0A0;
}

.live-stream-archive-page .filter .search-wrap input[type='text']:-moz-placeholder {
  font-size: 18px;
  line-height: 25px;
  color: #A0A0A0;
}

.live-stream-archive-page .filter .search-wrap input[type='submit'] {
  display: none;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .filter-wrap {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: #fff;
    opacity: 0;
    visibility: hidden;
  }
}

.live-stream-archive-page .filter .filter-wrap:after {
  content: '';
  display: block;
  clear: both;
  float: none;
}

.live-stream-archive-page .filter .filter-wrap .left-filter {
  float: left;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .filter-wrap .left-filter {
    float: none;
  }
}

.live-stream-archive-page .filter .filter-wrap .right-filter {
  float: right;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .filter-wrap .right-filter {
    float: none;
    padding: 30px 0 33px;
  }
}

.live-stream-archive-page .filter .filter-button-mobile {
  display: none;
}

@media (max-width: 1100px) {
  .live-stream-archive-page .filter .filter-button-mobile {
    display: block;
  }
}

.live-stream-archive-page .filter .filter-button {
  text-align: center;
  background: #8E9ED8;
  border-radius: 10px;
  padding: 15px 0;
}

.live-stream-archive-page .filter .filter-button div {
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  padding-left: 37px;
  position: relative;
}

.live-stream-archive-page .filter .filter-button div span {
  position: absolute;
  top: 11px;
  left: 4px;
  width: 10px;
  height: 2px;
  background: #fff;
}

.live-stream-archive-page .filter .filter-button div span:before {
  content: "";
  position: absolute;
  top: -6px;
  left: -4px;
  width: 18px;
  height: 2px;
  background: #fff;
}

.live-stream-archive-page .filter .filter-button div span:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 2px;
  width: 6px;
  height: 2px;
  background: #fff;
}

.live-stream-archive-page .live-stream-list {
  padding-bottom: 98px;
  position: relative;
  overflow: hidden;
}

.live-stream-archive-page .live-stream-list:before {
  content: '';
  position: absolute;
  top: 214px;
  right: -252px;
  width: 788px;
  height: 788px;
  border: 50px solid #8E9ED8;
  border-radius: 100%;
  opacity: 0.2;
}

@media (max-width: 768px) {
  .live-stream-archive-page .live-stream-list:before {
    top: 145px;
    right: -681px;
  }
}

.live-stream-archive-page .live-stream-list:after {
  content: '';
  position: absolute;
  top: 952px;
  left: -400px;
  width: 625px;
  height: 625px;
  border: 50px solid #8E9ED8;
  border-radius: 100%;
  opacity: 0.1;
}

@media (max-width: 768px) {
  .live-stream-archive-page .live-stream-list:after {
    top: 1163px;
    right: -480px;
  }
}

.live-stream-archive-page .live-stream-list .container-inner {
  position: relative;
  max-width: 1088px;
  margin: 0 auto;
  z-index: 1;
}

@media (max-width: 768px) {
  .live-stream-archive-page .live-stream-list .container-inner {
    padding: 0 6px;
  }
}

.live-stream-archive-page .live-stream-list .row {
  width: calc(100% + 38px);
  margin-left: -19px;
  margin-top: 40px;
  margin-bottom: 46px;
}

@media (max-width: 768px) {
  .live-stream-archive-page .live-stream-list .row {
    width: calc(100% + 23px);
    margin-left: -11.5px;
  }
}

.live-stream-archive-page .live-stream-list .item {
  width: calc(25% - 38px);
  margin: 20px 19px;
  display: none;
  position: relative;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  top: auto;
  -webkit-transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.6s, top cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  -moz-transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.6s, top cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  -ms-transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.6s, top cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  -o-transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.6s, top cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.6s, top cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  overflow: hidden;
}

@media (max-width: 768px) {
  .live-stream-archive-page .live-stream-list .item {
    width: calc(50% - 23px);
    margin: 15px 11.5px;
  }
}

@media (min-width: 769px) {
  .live-stream-archive-page .live-stream-list .item:hover {
    -webkit-transform: scale(1.075);
    -moz-transform: scale(1.075);
    -ms-transform: scale(1.075);
    -o-transform: scale(1.075);
    transform: scale(1.075);
    top: -7.5px;
  }
}

@media (min-width: 769px) {
  .live-stream-archive-page .live-stream-list .item:hover .img-wrap img {
    top: 40%;
  }
}

@media (min-width: 769px) {
  .live-stream-archive-page .live-stream-list .item:hover .cta-button {
    opacity: 1;
    visibility: visible;
  }
}

.live-stream-archive-page .live-stream-list .item .cta-button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background-color: #0F0C62;
  color: #ffffff;
  font-size: 18px;
  line-height: 20px;
  padding: 18.4px 0;
  border-radius: 0 0 17px 17px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  -moz-transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  -ms-transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  -o-transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
}

.live-stream-archive-page .live-stream-list .exclusive-wrap {
  position: absolute;
  top: 20px;
  right: -65px;
  color: #ffffff;
  background-color: #0F0C62;
  font-size: 11px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 0.33px;
  z-index: 1;
  padding: 8px 0;
  width: 200px;
  text-align: center;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.live-stream-archive-page .live-stream-list .img-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  box-shadow: 0px 30px 20px #00000029;
  border-radius: 17px;
  background-color: #fff;
}

.live-stream-archive-page .live-stream-list .img-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 74%;
  -webkit-transition: top cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  -moz-transition: top cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  -ms-transition: top cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  -o-transition: top cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  transition: top cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
}

.live-stream-archive-page #post-load-more {
  text-align: center;
}

.active-filter-menu .live-stream-archive-page .filter .filter-wrap {
  opacity: 1;
  visibility: visible;
}

.partner-programs {
  position: relative;
}

.partner-programs .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 550px;
  background-color: #3C379E;
  z-index: -1;
}

@media (max-width: 768px) {
  .partner-programs .background {
    height: 100%;
    top: auto;
    bottom: 70px;
  }
}

.partner-programs .text-content {
  max-width: 699px;
  margin: 0 auto;
  padding: 98px 0 148px;
  text-align: center;
}

@media (max-width: 768px) {
  .partner-programs .text-content {
    padding: 70px 0 75px;
  }
}

.partner-programs .text-content h4 {
  color: #ffffff;
  font-weight: 400;
  line-height: 45px;
}

@media (max-width: 768px) {
  .partner-programs .text-content h4 {
    font-size: 24px;
    line-height: 34px;
  }
}

.partner-programs .partner-apps {
  max-width: 1084px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 30px 20px #00000029;
  text-align: center;
  padding: 50px 28px 60px;
}

@media (max-width: 768px) {
  .partner-programs .partner-apps {
    padding: 50px 28px 34px;
  }
}

.partner-programs .partner-apps h3 {
  color: #3C379E;
  font-size: 40px;
  line-height: 45px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .partner-programs .partner-apps h3 {
    font-size: 30px;
    line-height: 35px;
  }
}

.partner-programs .partner-apps p {
  max-width: 677px;
  margin: 0 auto 24px;
}

.partner-programs .partner-app-icons img {
  height: 54px;
  width: auto;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .partner-programs .partner-app-icons img {
    height: 41px;
  }
}

.partner-programs .partner-app-icons img:not(:last-of-type) {
  margin-right: 6px;
}

.two-col-image-desc {
  padding: 108px 0 45px;
}

@media (max-width: 768px) {
  .two-col-image-desc {
    padding: 41px 0 65px;
  }
}

@media (max-width: 768px) {
  .two-col-image-desc .container {
    padding: 0 19.5px;
  }
}

.two-col-image-desc .container-inner {
  max-width: 936px;
  margin: 0 auto;
}

.two-col-image-desc .col-image {
  width: calc(50% + 32px);
}

@media (max-width: 768px) {
  .two-col-image-desc .col-image {
    width: 100%;
    margin-bottom: 33px;
  }
}

.two-col-image-desc .col-text {
  width: calc(50% - 32px);
  padding-left: 36px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .two-col-image-desc .col-text {
    width: 100%;
    padding-left: 0;
    padding: 0 16.5px;
  }
}

.two-col-image-desc .col-text h3 {
  color: #3C379E;
  font-size: 40px;
  line-height: 45px;
  padding-bottom: 33px;
  margin-bottom: 22px;
  border-bottom: 1px solid #3C379E;
}

@media (max-width: 768px) {
  .two-col-image-desc .col-text h3 {
    font-size: 30px;
    line-height: 35px;
  }
}

.two-col-image-desc .row {
  margin-bottom: 120px;
}

@media (max-width: 768px) {
  .two-col-image-desc .row {
    margin-bottom: 75px;
  }
}

@media (max-width: 768px) {
  .two-col-image-desc .row:last-of-type {
    margin-bottom: 0;
  }
}

.two-col-image-desc .row:nth-of-type(even) {
  flex-direction: row-reverse;
}

.two-col-image-desc .row:nth-of-type(even) .col-text {
  padding-left: 0;
  padding-right: 36px;
}

@media (max-width: 768px) {
  .two-col-image-desc .row:nth-of-type(even) .col-text {
    padding-right: 0;
  }
}

.contact-us-strip {
  background-color: #8E9ED8;
}

.contact-us-strip .container-inner {
  min-height: 350px;
  display: flex;
  align-items: center;
  max-width: 821px;
  margin: 0 auto;
  padding: 30px 0;
}

@media (max-width: 768px) {
  .contact-us-strip .container-inner {
    min-height: 492px;
    padding: 30px 6px;
  }
}

.contact-us-strip .text-wrap {
  text-align: center;
}

.contact-us-strip h3 {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .contact-us-strip h3 {
    font-size: 40px;
    line-height: 45px;
  }
}

.contact-us-strip p {
  color: #ffffff;
  margin-bottom: 35px;
}
