@charset "UTF-8";
.grid {
  *zoom: 1;
}
.grid:before, .grid:after {
  content: "";
  display: table;
}
.grid:after {
  clear: both;
}

.hidden,
.sr_only,
.sr-only {
  position: absolute;
  display: inline-block;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 0px;
  height: 0px;
  margin: -1px;
  padding: 0;
  word-break: keep-all;
  white-space: nowrap;
  color: transparent;
  border: 0;
  text-indent: -9999px;
}

.grid {
  position: relative;
  box-sizing: border-box;
}
.grid .col {
  position: relative;
  float: left;
  box-sizing: border-box;
}

.table {
  display: table;
}
.table .table-cell {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}

.effect-bounce-diagonal {
  animation-name: effectBounceDiagonal;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: normal;
}
@keyframes effectBounceDiagonal {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -10px);
  }
}

.effect-bounce-updown {
  animation-name: effectBounceUpDown;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: normal;
}
@keyframes effectBounceUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.effect-extend {
  animation-name: effectExtend;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: normal;
}
@keyframes effectExtend {
  0%, 100% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
}

.effect-blink {
  animation-name: effectBlink;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: step-start;
  animation-direction: normal;
}
@keyframes effectBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  animation-iteration-count: 2;
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  animation-iteration-count: 3;
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  animation-delay: 2s;
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  animation-delay: 3s;
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  animation-delay: 4s;
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  animation-delay: 5s;
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  animation-duration: 0.5s;
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  animation-duration: 0.8s;
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  animation-duration: 3s;
  animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
@keyframes bounce {
  0%, 20%, 53%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  0% {
    opacity: 0;
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__tada {
  animation-name: tada;
}
@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  animation-name: backInUp;
}
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}
@keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedInRight {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  0% {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}

.motion-1 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-2 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-3 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-4 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-5 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-6 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-7 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-8 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-9 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-10 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-11 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-12 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-x-1 {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-x-2 {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-x-3 {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-x-4 {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-x-5 {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-x-6 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-x-7 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-x-8 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-x-9 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-x-10 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-box-1 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-box-2 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-box-3 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-box-4 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-box-5 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-box-6 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-box-7 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-box-8 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-box-9 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-box-10 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}

.motion-scale-y-1 {
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform-origin: center bottom;
}

.motion-scale-y-2 {
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform-origin: center bottom;
}

.motion-scale-y-3 {
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform-origin: center bottom;
}

.motion-scale {
  opacity: 0;
  transform: scale(1.5, 1.5);
  transition: all 0.3s;
  transition-timing-function: ease-out;
  transform-origin: center center;
}

.active .motion-1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.active .motion-2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.active .motion-3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.active .motion-4 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}
.active .motion-5 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}
.active .motion-6 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}
.active .motion-7 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.4s;
}
.active .motion-8 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.6s;
}
.active .motion-9 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.8s;
}
.active .motion-10 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2s;
}
.active .motion-11 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.2s;
}
.active .motion-12 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.4s;
}
.active .motion-x-1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
.active .motion-x-2 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}
.active .motion-x-3 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}
.active .motion-x-4 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.8s;
}
.active .motion-x-5 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1s;
}
.active .motion-x-6 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.2s;
}
.active .motion-x-7 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.4s;
}
.active .motion-x-8 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.6s;
}
.active .motion-x-9 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.8s;
}
.active .motion-x-10 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 2s;
}
.active .motion-box-1 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.1s;
}
.active .motion-box-2 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.2s;
}
.active .motion-box-3 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.3s;
}
.active .motion-box-4 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.4s;
}
.active .motion-box-5 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.5s;
}
.active .motion-box-6 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.6s;
}
.active .motion-box-7 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.7s;
}
.active .motion-box-8 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.8s;
}
.active .motion-box-9 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.9s;
}
.active .motion-box-10 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 1s;
}
.active .motion-scale-y-1 {
  opacity: 1;
  transform: scaleY(1);
  transition-delay: 0.1s;
}
.active .motion-scale-y-2 {
  opacity: 1;
  transform: scaleY(1);
  transition-delay: 0.2s;
}
.active .motion-scale-y-3 {
  opacity: 1;
  transform: scaleY(1);
  transition-delay: 0.3s;
}
.active .motion-scale {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.1s;
  transform-origin: center center;
}

.promotion,
.product,
.product-eco,
.fullservice {
  text-align: center;
}
.promotion [class^=sector-],
.product [class^=sector-],
.product-eco [class^=sector-],
.fullservice [class^=sector-] {
  position: relative;
}
.promotion .wrap,
.product .wrap,
.product-eco .wrap,
.fullservice .wrap {
  position: relative;
  margin: 0 auto;
}
.promotion .wrap-full,
.product .wrap-full,
.product-eco .wrap-full,
.fullservice .wrap-full {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.promotion ::-moz-placeholder, .product ::-moz-placeholder, .product-eco ::-moz-placeholder, .fullservice ::-moz-placeholder {
  color: #aaa !important;
  font-weight: 700;
  font-size: 3.0555555556vw;
  letter-spacing: -0.2083333333vw;
}
.promotion ::placeholder,
.product ::placeholder,
.product-eco ::placeholder,
.fullservice ::placeholder {
  color: #aaa !important;
  font-weight: 700;
  font-size: 3.0555555556vw;
  letter-spacing: -0.2083333333vw;
}
@media screen and (min-width: 720px) {
  .promotion ::-moz-placeholder, .product ::-moz-placeholder, .product-eco ::-moz-placeholder, .fullservice ::-moz-placeholder {
    font-size: 22px;
  }
  .promotion ::placeholder,
  .product ::placeholder,
  .product-eco ::placeholder,
  .fullservice ::placeholder {
    font-size: 22px;
  }
}
@media screen and (min-width: 720px) {
  .promotion ::-moz-placeholder, .product ::-moz-placeholder, .product-eco ::-moz-placeholder, .fullservice ::-moz-placeholder {
    letter-spacing: -1.5px;
  }
  .promotion ::placeholder,
  .product ::placeholder,
  .product-eco ::placeholder,
  .fullservice ::placeholder {
    letter-spacing: -1.5px;
  }
}
@media screen and (min-width: 720px) {
  .promotion ::-moz-placeholder, .product ::-moz-placeholder, .product-eco ::-moz-placeholder, .fullservice ::-moz-placeholder {
    font-size: 18px;
  }
  .promotion ::placeholder,
  .product ::placeholder,
  .product-eco ::placeholder,
  .fullservice ::placeholder {
    font-size: 18px;
  }
}
.promotion .freebook-privacy,
.product .freebook-privacy,
.product-eco .freebook-privacy,
.fullservice .freebook-privacy {
  margin-bottom: 5.5555555556vw;
}
@media screen and (min-width: 720px) {
  .promotion .freebook-privacy,
  .product .freebook-privacy,
  .product-eco .freebook-privacy,
  .fullservice .freebook-privacy {
    margin-bottom: 40px;
  }
}
.promotion .freebook-privacy .wrap,
.product .freebook-privacy .wrap,
.product-eco .freebook-privacy .wrap,
.fullservice .freebook-privacy .wrap {
  width: 86.1111111111%;
  margin: 0 auto;
  max-width: 620px;
  background: #f6f6f6;
  text-align: left;
  color: #666666;
  padding: 4.8611111111vw 6.9444444444vw;
  font-size: 3.3333333333vw;
}
@media screen and (min-width: 720px) {
  .promotion .freebook-privacy .wrap,
  .product .freebook-privacy .wrap,
  .product-eco .freebook-privacy .wrap,
  .fullservice .freebook-privacy .wrap {
    padding: 35px 50px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .freebook-privacy .wrap,
  .product .freebook-privacy .wrap,
  .product-eco .freebook-privacy .wrap,
  .fullservice .freebook-privacy .wrap {
    font-size: 24px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .freebook-privacy .wrap,
  .product .freebook-privacy .wrap,
  .product-eco .freebook-privacy .wrap,
  .fullservice .freebook-privacy .wrap {
    width: 1000px;
    max-width: 1000px;
    font-size: 14px;
  }
}
.promotion .freebook-privacy .wrap .privacy-title,
.product .freebook-privacy .wrap .privacy-title,
.product-eco .freebook-privacy .wrap .privacy-title,
.fullservice .freebook-privacy .wrap .privacy-title {
  font-size: 3.6111111111vw;
  color: #333;
  font-weight: 700;
  margin-bottom: 2.2222222222vw;
}
@media screen and (min-width: 720px) {
  .promotion .freebook-privacy .wrap .privacy-title,
  .product .freebook-privacy .wrap .privacy-title,
  .product-eco .freebook-privacy .wrap .privacy-title,
  .fullservice .freebook-privacy .wrap .privacy-title {
    font-size: 26px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .freebook-privacy .wrap .privacy-title,
  .product .freebook-privacy .wrap .privacy-title,
  .product-eco .freebook-privacy .wrap .privacy-title,
  .fullservice .freebook-privacy .wrap .privacy-title {
    font-size: 16px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .freebook-privacy .wrap .privacy-title,
  .product .freebook-privacy .wrap .privacy-title,
  .product-eco .freebook-privacy .wrap .privacy-title,
  .fullservice .freebook-privacy .wrap .privacy-title {
    margin-bottom: 16px;
  }
}
.promotion .freebook-privacy .wrap .privacy-title .necessary,
.product .freebook-privacy .wrap .privacy-title .necessary,
.product-eco .freebook-privacy .wrap .privacy-title .necessary,
.fullservice .freebook-privacy .wrap .privacy-title .necessary {
  color: #f00;
}
.promotion .freebook-privacy .wrap .privacy-check,
.product .freebook-privacy .wrap .privacy-check,
.product-eco .freebook-privacy .wrap .privacy-check,
.fullservice .freebook-privacy .wrap .privacy-check {
  position: absolute;
  bottom: 4.8611111111vw;
  left: 0;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 720px) {
  .promotion .freebook-privacy .wrap .privacy-check,
  .product .freebook-privacy .wrap .privacy-check,
  .product-eco .freebook-privacy .wrap .privacy-check,
  .fullservice .freebook-privacy .wrap .privacy-check {
    bottom: 35px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .freebook-privacy .wrap .privacy-check,
  .product .freebook-privacy .wrap .privacy-check,
  .product-eco .freebook-privacy .wrap .privacy-check,
  .fullservice .freebook-privacy .wrap .privacy-check {
    width: auto;
    text-align: right;
    top: 4.8611111111vw;
    right: 6.9444444444vw;
  }
}
@media screen and (min-width: 720px) and (min-width: 720px) {
  .promotion .freebook-privacy .wrap .privacy-check,
  .product .freebook-privacy .wrap .privacy-check,
  .product-eco .freebook-privacy .wrap .privacy-check,
  .fullservice .freebook-privacy .wrap .privacy-check {
    top: 35px;
  }
}
@media screen and (min-width: 720px) and (min-width: 720px) {
  .promotion .freebook-privacy .wrap .privacy-check,
  .product .freebook-privacy .wrap .privacy-check,
  .product-eco .freebook-privacy .wrap .privacy-check,
  .fullservice .freebook-privacy .wrap .privacy-check {
    right: 50px;
  }
}
.promotion .freebook-privacy .wrap .privacy-check span,
.product .freebook-privacy .wrap .privacy-check span,
.product-eco .freebook-privacy .wrap .privacy-check span,
.fullservice .freebook-privacy .wrap .privacy-check span {
  margin: 0 0.6944444444vw;
}
@media screen and (min-width: 720px) {
  .promotion .freebook-privacy .wrap .privacy-check span,
  .product .freebook-privacy .wrap .privacy-check span,
  .product-eco .freebook-privacy .wrap .privacy-check span,
  .fullservice .freebook-privacy .wrap .privacy-check span {
    margin: 0 5px;
  }
}
.promotion .freebook-privacy .wrap .privacy-check span input[type=radio],
.product .freebook-privacy .wrap .privacy-check span input[type=radio],
.product-eco .freebook-privacy .wrap .privacy-check span input[type=radio],
.fullservice .freebook-privacy .wrap .privacy-check span input[type=radio] {
  vertical-align: middle;
}
.promotion .freebook-privacy .wrap .privacy-check span label,
.product .freebook-privacy .wrap .privacy-check span label,
.product-eco .freebook-privacy .wrap .privacy-check span label,
.fullservice .freebook-privacy .wrap .privacy-check span label {
  vertical-align: middle;
  cursor: pointer;
}
.promotion .freebook-privacy .wrap .scroll-box,
.product .freebook-privacy .wrap .scroll-box,
.product-eco .freebook-privacy .wrap .scroll-box,
.fullservice .freebook-privacy .wrap .scroll-box {
  line-height: 1.6;
}
@media screen and (min-width: 720px) {
  .promotion .freebook-privacy .wrap .scroll-box span,
  .product .freebook-privacy .wrap .scroll-box span,
  .product-eco .freebook-privacy .wrap .scroll-box span,
  .fullservice .freebook-privacy .wrap .scroll-box span {
    padding-left: 1.6666666667vw;
  }
}
@media screen and (min-width: 720px) and (min-width: 720px) {
  .promotion .freebook-privacy .wrap .scroll-box span,
  .product .freebook-privacy .wrap .scroll-box span,
  .product-eco .freebook-privacy .wrap .scroll-box span,
  .fullservice .freebook-privacy .wrap .scroll-box span {
    padding-left: 12px;
  }
}

.comment-privacy {
  background: #fff;
  margin-top: 1.875rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 720px) {
  .comment-privacy {
    margin-top: 60px;
  }
}
@media screen and (min-width: 720px) {
  .comment-privacy {
    padding-bottom: 80px;
  }
}
.comment-privacy .wrap {
  padding: 0 1.40625rem;
}
@media screen and (min-width: 720px) {
  .comment-privacy .wrap {
    padding: 0 45px;
  }
}
@media screen and (min-width: 1024px) {
  .comment-privacy .wrap {
    padding: 0;
    width: 1100px;
    margin: 0 auto;
  }
}
.comment-privacy .agree_check {
  font-weight: bold;
  text-align: left;
  color: #000;
  font-size: 4.4444444444vw;
  padding-bottom: 1.09375rem;
}
@media screen and (min-width: 720px) {
  .comment-privacy .agree_check {
    font-size: 32px;
  }
}
@media screen and (min-width: 720px) {
  .comment-privacy .agree_check {
    padding-bottom: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .comment-privacy .agree_check {
    font-size: 20px;
    padding-bottom: 18px;
  }
}
.comment-privacy .agree_check input {
  vertical-align: middle;
  width: 1.3125rem;
  height: 1.3125rem;
}
@media screen and (min-width: 720px) {
  .comment-privacy .agree_check input {
    width: 42px;
  }
}
@media screen and (min-width: 720px) {
  .comment-privacy .agree_check input {
    height: 42px;
  }
}
@media screen and (min-width: 1024px) {
  .comment-privacy .agree_check input {
    width: 32px;
    height: 32px;
  }
}
.comment-privacy .agree_check label {
  vertical-align: middle;
  font-weight: bold;
  padding-left: 0.40625rem;
}
@media screen and (min-width: 720px) {
  .comment-privacy .agree_check label {
    padding-left: 13px;
  }
}
@media screen and (min-width: 1024px) {
  .comment-privacy .agree_check label {
    padding-left: 7px;
  }
}
.comment-privacy .scroll_box {
  text-align: left;
  border: 1px solid #ccc;
  color: #333;
  line-height: 1.6;
  font-size: 3.6111111111vw;
  padding: 1.0625rem;
}
@media screen and (min-width: 720px) {
  .comment-privacy .scroll_box {
    font-size: 26px;
  }
}
@media screen and (min-width: 720px) {
  .comment-privacy .scroll_box {
    padding: 34px;
  }
}
@media screen and (min-width: 1024px) {
  .comment-privacy .scroll_box {
    line-height: 2;
    font-size: 14px;
    padding: 22px;
  }
}
.comment-privacy .scroll_box strong {
  display: block;
  color: #000;
  font-weight: bold;
  font-size: 4.4444444444vw;
  margin-bottom: 1.0625rem;
}
@media screen and (min-width: 720px) {
  .comment-privacy .scroll_box strong {
    font-size: 32px;
  }
}
@media screen and (min-width: 720px) {
  .comment-privacy .scroll_box strong {
    margin-bottom: 34px;
  }
}
@media screen and (min-width: 1024px) {
  .comment-privacy .scroll_box strong {
    font-size: 16px;
    margin-bottom: 17px;
  }
}
.comment-privacy .scroll_box strong.highlight {
  margin: 0;
  font-size: 3.6111111111vw;
}
@media screen and (min-width: 720px) {
  .comment-privacy .scroll_box strong.highlight {
    font-size: 26px;
  }
}
@media screen and (min-width: 1024px) {
  .comment-privacy .scroll_box strong.highlight {
    font-size: 14px;
  }
}
.comment-privacy .scroll_box span {
  display: block;
  line-height: 1.5;
  padding: 0.3125rem 0 0.3125rem 0.40625rem;
}
@media screen and (min-width: 720px) {
  .comment-privacy .scroll_box span {
    padding: 10px 0 10px 13px;
  }
}
@media screen and (min-width: 1024px) {
  .comment-privacy .scroll_box span {
    line-height: 1.5;
    padding-left: 7px;
    padding-bottom: 10px;
  }
}
.comment-privacy .scroll_box em {
  color: #000;
  font-weight: bold;
  font-size: 4.4444444444vw;
}
@media screen and (min-width: 720px) {
  .comment-privacy .scroll_box em {
    font-size: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .comment-privacy .scroll_box em {
    font-size: 18px;
  }
}

.promotion * {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  letter-spacing: -0.5px;
}
.promotion .only-mobile {
  display: none;
}
.promotion .only-pc {
  display: block;
}
.promotion .wrap {
  width: 1200px;
}
.promotion img {
  max-width: 100%;
}
.promotion .pointer {
  position: relative;
  display: inline-block;
}
.promotion .pointer:after {
  content: "";
  position: absolute;
  top: 55%;
  right: 5%;
  z-index: 1;
  display: block;
  width: 9.1666666667vw;
  height: 10.1388888889vw;
  background: url("https://img.eduwill.net/Img2/Common/icon/pointer/icon_pointer_20.png") no-repeat 0 0;
  background-size: 100% auto;
  animation-name: pointerBounceDiagonal;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: normal;
}
@media screen and (min-width: 720px) {
  .promotion .pointer:after {
    width: 66px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .pointer:after {
    height: 73px;
  }
}
@keyframes pointerBounceDiagonal {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -10px);
  }
}
.promotion .fix-wing {
  z-index: 10;
  position: fixed;
  right: 20px;
  bottom: 120px;
}
.promotion .fix-wing a {
  display: block;
  margin: 10px 0;
}
.promotion .fix-banner {
  z-index: 50;
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  background: #000;
}
.promotion .fix-banner a {
  display: block;
  margin-top: -18px;
}
.promotion .slick-dots {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.promotion .slick-dots li {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #DDD;
}
.promotion .slick-dots li button {
  text-indent: -999em;
  overflow: hidden;
}
.promotion .slick-dots li.slick-active {
  width: 24px;
  background: #FFBF00;
}
.promotion .title-box {
  margin-bottom: 60px;
}
.promotion .title-box p {
  font-size: 35px;
  line-height: 120%;
  color: #000;
  letter-spacing: -1.4px;
}
.promotion .title-box p strong {
  display: block;
  font-weight: 700;
}
.promotion .title-box small {
  font-size: 14px;
  line-height: 140%;
  color: rgba(68, 68, 68, 0.5);
  letter-spacing: -0.7px;
}
.promotion .title-box span {
  display: block;
  font-size: 20px;
  line-height: 150%;
  color: #444;
  letter-spacing: -0.8px;
  margin-top: 10px;
}
.promotion .sector-title {
  background-image: url("https://img.eduwill.net/eduwill/img/2025/J/event/250924_2/pc/bg_title.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
}
.promotion .sector-title:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFD930;
  background: linear-gradient(180deg, #FFD930 0%, #FFB700 75.88%);
}
.promotion .sector-title .btn-base {
  position: absolute;
  top: 279px;
  left: 50%;
  display: block;
  font-size: 12px;
  line-height: 120%;
  color: #93693C;
  letter-spacing: -0.6px;
  transform: translateX(-50%);
}
.promotion .sector-title .btn-base span {
  padding-right: 10px;
}
.promotion .sector-title .btn-base span {
  position: relative;
  display: inline-block;
}
.promotion .sector-title .btn-base span:before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 1.1111111111vw;
  height: 1.1111111111vw;
  margin-top: -0.5555555556vw;
  border-width: 0;
  border-style: solid;
  border-color: #93693C;
  transform: rotate(45deg);
  right: 2.2222222222vw;
  border-top-width: 1px;
  border-right-width: 1px;
}
@media screen and (min-width: 720px) {
  .promotion .sector-title .btn-base span:before {
    width: 8px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-title .btn-base span:before {
    height: 8px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-title .btn-base span:before {
    margin-top: -4px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-title .btn-base span:before {
    right: 16px;
  }
}
.promotion .sector-title .btn-base span:before {
  right: 0;
}
.promotion .sector-title .btn-action {
  position: absolute;
  top: 624px;
  left: 50%;
  transform: translateX(-50%);
}
.promotion .sector-start {
  background: #FAFAFA;
}
.promotion .sector-start .wrap {
  padding: 100px 0;
}
.promotion .sector-start .slick-arrow {
  border-radius: 50px;
}
.promotion .sector-start .slick-prev {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: block;
  width: 5.5555555556vw;
  height: 5.5555555556vw;
  margin: 0;
  padding: 0;
  font-size: 0;
  color: transparent;
  text-indent: -9999px;
  border: none;
  outline: none;
  cursor: pointer;
  transform: translateY(-50%);
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 720px) {
  .promotion .sector-start .slick-prev {
    width: 40px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-start .slick-prev {
    height: 40px;
  }
}
.promotion .sector-start .slick-prev:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.3888888889vw;
  height: 1.3888888889vw;
  border-width: 0;
  border-style: solid;
  border-color: #FFF;
  border-bottom-width: 2px;
  border-left-width: 2px;
  transform: translate(-25%, -50%) rotate(45deg);
}
@media screen and (min-width: 720px) {
  .promotion .sector-start .slick-prev:before {
    width: 10px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-start .slick-prev:before {
    height: 10px;
  }
}
.promotion .sector-start .slick-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: block;
  width: 5.5555555556vw;
  height: 5.5555555556vw;
  margin: 0;
  padding: 0;
  font-size: 0;
  color: transparent;
  text-indent: -9999px;
  border: none;
  outline: none;
  cursor: pointer;
  transform: translateY(-50%);
  right: 0;
  background: rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 720px) {
  .promotion .sector-start .slick-next {
    width: 40px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-start .slick-next {
    height: 40px;
  }
}
.promotion .sector-start .slick-next:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.3888888889vw;
  height: 1.3888888889vw;
  border-width: 0;
  border-style: solid;
  border-color: #FFF;
  border-top-width: 2px;
  border-right-width: 2px;
  transform: translate(-75%, -50%) rotate(45deg);
}
@media screen and (min-width: 720px) {
  .promotion .sector-start .slick-next:before {
    width: 10px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-start .slick-next:before {
    height: 10px;
  }
}
.promotion .sector-start .slick-slide {
  text-align: center;
  margin: 0 20px;
}
.promotion .sector-start .slick-slide img {
  margin: 0 auto;
}
.promotion .sector-start .btn-base {
  position: absolute;
  right: 20px;
  bottom: 64px;
  font-size: 14px;
  line-height: 120%;
  color: #000;
  letter-spacing: -0.7px;
  padding: 2px 8px;
  border: 1px solid #000;
  opacity: 0.3;
}
.promotion .sector-start .btn-base span {
  padding-right: 10px;
}
.promotion .sector-start .btn-base span {
  position: relative;
  display: inline-block;
}
.promotion .sector-start .btn-base span:before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
  margin-top: -0.4166666667vw;
  border-width: 0;
  border-style: solid;
  border-color: #000;
  transform: rotate(45deg);
  right: 1.6666666667vw;
  border-top-width: 1px;
  border-right-width: 1px;
}
@media screen and (min-width: 720px) {
  .promotion .sector-start .btn-base span:before {
    width: 6px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-start .btn-base span:before {
    height: 6px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-start .btn-base span:before {
    margin-top: -3px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-start .btn-base span:before {
    right: 12px;
  }
}
.promotion .sector-start .btn-base span:before {
  right: 0;
}
.promotion .sector-interview {
  background: #FFF;
}
.promotion .sector-interview .wrap {
  padding: 100px 0;
}
.promotion .sector-interview .interview-group {
  display: flex;
  justify-content: center;
  gap: 14px;
  height: 476px;
}
.promotion .sector-interview .video-box {
  position: relative;
  width: 846px;
  height: 476px;
}
.promotion .sector-interview .video-box .btn-video {
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}
.promotion .sector-interview .video-box video {
  display: block;
  width: 100%;
  height: 100%;
}
.promotion .sector-interview .interview-list {
  width: 177px;
}
.promotion .sector-interview .interview-list img {
  max-width: 100%;
}
.promotion .sector-interview .slide-list {
  position: relative;
}
.promotion .sector-interview .btns-play {
  position: relative;
  display: block;
  width: 164px;
  text-align: right;
  margin-left: auto;
  padding-left: 13px;
}
.promotion .sector-interview .btns-play.on:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 177px;
  background-image: url("https://img.eduwill.net/eduwill/img/2025/J/event/250924_2/pc/interview_active.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}
.promotion .sector-bar-text {
  border: solid #000;
  border-width: 4px 0;
  background: #FFD453;
  background: linear-gradient(180deg, #FFD453 -27.78%, #FFBF00 94.44%);
}
.promotion .sector-bar-text .wrap {
  padding: 50px 0;
}
.promotion .sector-bar-text span {
  font-family: "EduwillPassRegular", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-size: 22px;
  line-height: 150%;
  color: #000;
  letter-spacing: -0.88px;
}
.promotion .sector-bar-text p {
  font-family: "EduwillPassBold", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 150%;
  color: #000;
  letter-spacing: -1.68px;
}
.promotion .sector-frame {
  background: #FAFAFA;
}
.promotion .sector-frame .wrap {
  padding: 100px 0;
}
.promotion .sector-frame .frame-box {
  margin: 0 20px;
  margin-bottom: 40px;
  padding: 50px 0;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  background: #FFF;
}
.promotion .sector-frame .frame-box:last-child {
  margin-bottom: 0;
}
.promotion .sector-frame .title-box {
  margin-bottom: 40px;
}
.promotion .sector-frame .title-box span {
  display: block;
  font-size: 16px;
  line-height: 140%;
  color: #444;
  letter-spacing: -0.48px;
  margin-top: 4px;
}
.promotion .sector-frame .num-title {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  line-height: 120%;
  color: #000;
  letter-spacing: -0.48px;
  margin-bottom: 20px;
  padding: 15px 20px;
  border: 1px solid #E6E6E6;
  border-radius: 8px;
  background: #FFF;
}
.promotion .sector-frame .sub-title {
  font-size: 22px;
  line-height: 140%;
  color: #000;
  letter-spacing: -0.66px;
}
.promotion .sector-frame .sub-title strong {
  display: inline-block;
  font-weight: 700;
}
.promotion .sector-frame .video-tab-box {
  padding: 0 60px;
}
.promotion .sector-frame .video-tab-list {
  display: flex;
  gap: 10px;
  margin: 60px 0 10px;
}
.promotion .sector-frame .video-tab-list li {
  width: 100%;
  font-size: 20px;
  line-height: 130%;
  color: #AAA;
  letter-spacing: -0.8px;
  padding: 20px 0;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  cursor: pointer;
}
.promotion .sector-frame .video-tab-list li.active {
  color: #FFF;
  border-color: #000;
  background: #000;
}
.promotion .sector-frame .video-tab-cont {
  padding-bottom: 60px;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  background: #F8F8F8;
  overflow: hidden;
}
.promotion .sector-frame .video-tab-view {
  display: none;
}
.promotion .sector-frame .video-tab-view.active {
  display: block;
}
.promotion .sector-frame .video-tab-view .tab-list {
  display: flex;
}
.promotion .sector-frame .video-tab-view .tab-list li {
  width: 100%;
  font-size: 20px;
  line-height: 130%;
  color: #AAA;
  letter-spacing: -0.8px;
  padding: 20px 0;
  border-bottom: 1px solid #E6E6E6;
  background: #FFF;
  cursor: pointer;
}
.promotion .sector-frame .video-tab-view .tab-list li.active {
  font-weight: 700;
  color: #000;
  border-color: #FFBF00;
  background: #FFBF00;
}
.promotion .sector-frame .tab-cont {
  padding-top: 40px;
}
.promotion .sector-frame .tab-cont .title-box {
  font-size: 22px;
  line-height: 140%;
  color: #000;
  letter-spacing: -0.88px;
}
.promotion .sector-frame .contents-box {
  display: flex;
  gap: 40px;
  margin: 0 30px;
  padding: 30px 32px;
  border-radius: 10px;
  background: #FFF;
}
.promotion .sector-frame .contents-box .video-box {
  position: relative;
  max-width: 524px;
  min-width: 524px;
  height: 262px;
}
.promotion .sector-frame .contents-box .video-box button {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}
.promotion .sector-frame .contents-box .video-box video {
  display: block;
  width: 100%;
  height: 100%;
}
.promotion .sector-frame .tab-view {
  display: none;
}
.promotion .sector-frame .tab-view.active {
  display: block;
}
.promotion .sector-frame .review-box {
  text-align: left;
}
.promotion .sector-frame .review-box h3 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  color: #FFAA00;
  letter-spacing: -1.4px;
  margin-top: 10px;
  margin-bottom: 6px;
  padding-left: 24px;
}
.promotion .sector-frame .review-box h3:first-child {
  margin-top: 0;
}
.promotion .sector-frame .review-box h3:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 19px;
  transform: translateY(-50%);
  background-image: url("https://img.eduwill.net/eduwill/img/2025/J/event/250924_2/pc/icon_check.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
}
.promotion .sector-frame .review-box ul li {
  font-size: 16px;
  line-height: 150%;
  color: #444;
  letter-spacing: -0.64px;
}
.promotion .sector-frame .review-box .swiper-slide {
  font-size: 16px;
  line-height: 150%;
  color: #444;
  letter-spacing: -0.64px;
}
.promotion .sector-frame .review-box .swiper-slide span {
  display: block;
  font-size: 14px;
  color: rgba(68, 68, 68, 0.5);
  letter-spacing: -0.56px;
}
.promotion .sector-frame .notice {
  font-size: 14px;
  line-height: 140%;
  color: rgba(68, 68, 68, 0.5);
  letter-spacing: -0.7px;
  text-align: right;
  margin-top: 10px;
  margin-right: 60px;
}
.promotion .sector-frame .slider-contents .slick-slide {
  margin: 0 10px;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  background: #F8F8F8;
}
.promotion .sector-frame .action {
  margin-top: 40px;
}
.promotion .sector-frame .action + .notice {
  text-align: center;
  margin-top: 10px;
}
.promotion .sector-apply {
  background: #FFF;
}
.promotion .sector-apply .wrap {
  padding: 100px 0;
}
.promotion .sector-apply .table-group {
  border: solid #444;
  border-width: 2px 0;
}
.promotion .sector-apply .grid {
  display: flex;
  padding: 18px 0;
  border-bottom: 1px solid #BBB;
}
.promotion .sector-apply .grid:last-child {
  border-bottom: none;
}
.promotion .sector-apply .target {
  max-width: 247px;
  min-width: 247px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.64px;
}
.promotion .sector-apply .desc {
  font-size: 16px;
  color: #444;
  letter-spacing: -0.64px;
  text-align: left;
}
.promotion .sector-apply .small {
  font-size: 14px;
  color: rgba(68, 68, 68, 0.5);
}
.promotion .sector-apply .point {
  font-weight: 700;
  color: #FFAA00;
}
.promotion .sector-apply .btn-book {
  display: inline-block;
  font-size: 14px;
  color: #000;
  letter-spacing: -0.7px;
  margin-left: 20px;
  padding: 4px 12px;
  border: 1px solid #000;
  opacity: 0.5;
}
.promotion .sector-apply .btn-book span {
  padding-right: 12px;
}
.promotion .sector-apply .btn-book span {
  position: relative;
  display: inline-block;
}
.promotion .sector-apply .btn-book span:before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
  margin-top: -0.4166666667vw;
  border-width: 0;
  border-style: solid;
  border-color: #000;
  transform: rotate(45deg);
  right: 1.6666666667vw;
  border-top-width: 1px;
  border-right-width: 1px;
}
@media screen and (min-width: 720px) {
  .promotion .sector-apply .btn-book span:before {
    width: 6px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-apply .btn-book span:before {
    height: 6px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-apply .btn-book span:before {
    margin-top: -3px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-apply .btn-book span:before {
    right: 12px;
  }
}
.promotion .sector-apply .btn-book span:before {
  right: 0;
}
.promotion .sector-apply ul li {
  position: relative;
  color: #444;
  line-height: 180%;
  letter-spacing: -0.64px;
  padding-left: 6px;
}
.promotion .sector-apply ul li:before {
  content: "·";
  position: absolute;
  left: 0;
}
.promotion .sector-apply .btn-action {
  margin-top: 40px;
}
.promotion .sector-winner {
  background-color: #FFBF00;
  background-image: url("https://img.eduwill.net/eduwill/img/2025/J/event/250924_2/pc/bg_winner.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
}
.promotion .sector-winner .winner-list {
  transform: perspective(300px) rotateX(25deg);
}
.promotion .sector-winner .winner-list p {
  font-size: 18px;
  font-weight: 500;
  margin: 5px 0;
}
.promotion .sector-winner .slick-slide {
  width: 300px;
  margin: 0 6px;
}
.promotion .sector-frame-2 {
  padding: 100px 0;
  background: #F8F8F8;
}
.promotion .sector-frame-2 .frame {
  position: relative;
  padding: 50px 0 60px;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  background: #FFF;
}
.promotion .sector-frame-2 .frame-list {
  width: 1160px;
  margin: 0 auto 40px;
}
.promotion .sector-frame-2 .frame-list:last-child {
  margin-bottom: 0;
}
.promotion .sector-frame-2 .frame.frame-2 .num-title {
  margin-bottom: 0;
}
.promotion .sector-frame-2 .frame.frame-2 {
  background-image: url("//img.eduwill.net/eduwill/img/2025/J/simple/250917/pc/bg_frame.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.promotion .sector-frame-2 .frame .title-box {
  margin-bottom: 50px;
}
.promotion .sector-frame-2 .frame .num-title {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  line-height: 120%;
  color: #000;
  letter-spacing: -0.48px;
  margin-bottom: 20px;
  padding: 15px 20px;
  border: 1px solid #E6E6E6;
  border-radius: 8px;
  background: #FFF;
}
.promotion .sector-frame-2 .frame .sub-title {
  font-size: 22px;
  line-height: 140%;
  color: #000;
  letter-spacing: -0.66px;
}
.promotion .sector-frame-2 .frame .sub-title strong {
  font-weight: 700;
}
.promotion .sector-frame-2 .frame .small-text {
  font-size: 16px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: -0.48px;
  margin-top: 40px;
}
.promotion .sector-frame-2 .frame .subject {
  font-size: 16px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: -0.48px;
  margin-top: 8px;
}
.promotion .sector-frame-2 .interview-section {
  width: 1000px;
  margin: 0 auto;
}
.promotion .sector-frame-2 .interview-section .interview-tab {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.promotion .sector-frame-2 .interview-section .interview-tab div a {
  display: flex;
  flex-direction: column;
  width: 92px;
  color: #777;
  padding: 9px 9px 6px;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  background: #F8F8F8;
  box-sizing: border-box;
}
.promotion .sector-frame-2 .interview-section .interview-tab div a p {
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.48px;
}
.promotion .sector-frame-2 .interview-section .interview-tab div a img {
  display: block;
  width: 50px;
  margin: 9px auto 6px;
  filter: grayscale(1);
}
.promotion .sector-frame-2 .interview-section .interview-tab div a span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.48px;
}
.promotion .sector-frame-2 .interview-section .interview-tab div.active a {
  color: #FFF;
  background: linear-gradient(180deg, #424242 0%, #000 100%);
}
.promotion .sector-frame-2 .interview-section .interview-tab div.active a p {
  color: #FFF;
}
.promotion .sector-frame-2 .interview-section .interview-tab div.active a img {
  filter: grayscale(0);
}
.promotion .sector-frame-2 .interview-section .view-wrap {
  width: 1000px;
  margin: 0 auto;
  height: 563px;
}
.promotion .sector-frame-2 .interview-section .view-wrap img, .promotion .sector-frame-2 .interview-section .view-wrap iframe {
  width: 100%;
  height: 100%;
}
.promotion .sector-frame-2 .btn-action {
  margin-top: 30px;
}
.promotion .sector-frame-2 .btn-action a {
  display: block;
  width: 850px;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  color: #FFF;
  letter-spacing: -0.6px;
  margin: 0 auto;
  padding: 32px 0;
  border-radius: 10px;
  background: #424242;
  background: linear-gradient(180deg, #424242 0%, #000 100%);
}
.promotion .sector-frame-2 .btn-action a span {
  padding-right: 18px;
}
.promotion .sector-frame-2 .btn-action a span {
  position: relative;
  display: inline-block;
}
.promotion .sector-frame-2 .btn-action a span:before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 1.1111111111vw;
  height: 1.1111111111vw;
  margin-top: -0.5555555556vw;
  border-width: 0;
  border-style: solid;
  border-color: #FFF;
  transform: rotate(45deg);
  right: 2.2222222222vw;
  border-top-width: 2px;
  border-right-width: 2px;
}
@media screen and (min-width: 720px) {
  .promotion .sector-frame-2 .btn-action a span:before {
    width: 8px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-frame-2 .btn-action a span:before {
    height: 8px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-frame-2 .btn-action a span:before {
    margin-top: -4px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-frame-2 .btn-action a span:before {
    right: 16px;
  }
}
.promotion .sector-frame-2 .btn-action a span:before {
  right: 0;
}
.promotion .sector-frame-2 .notice-list {
  width: 70%;
  text-align: left;
  margin-top: 20px;
}
.promotion .sector-frame-2 .notice-list li {
  font-size: 16px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: -0.48px;
}
.promotion .sector-frame-2 .reason-slide {
  margin-top: 24px;
}
.promotion .sector-frame-2 .reason-slide .slick-slide {
  width: 300px;
  margin: 0 5px;
}
.promotion .sector-frame-2 .support-message {
  font-size: 16px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: -0.48px;
}
.promotion .sector-frame-2 .book-slide {
  margin: 80px 0 40px;
}
.promotion .sector-frame-2 .book-slide .slick-slide {
  margin: 0 5px;
}
.promotion .sector-frame-2 .btn-base {
  position: absolute;
  top: 149px;
  right: 48px;
  font-size: 14px;
  line-height: 130%;
  color: #5C5C5C;
  letter-spacing: -0.7px;
}
.promotion .sector-frame-2 .btn-base span {
  padding-right: 10px;
}
.promotion .sector-frame-2 .btn-base span {
  position: relative;
  display: inline-block;
}
.promotion .sector-frame-2 .btn-base span:before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
  margin-top: -0.4166666667vw;
  border-width: 0;
  border-style: solid;
  border-color: #5C5C5C;
  transform: rotate(45deg);
  right: 1.6666666667vw;
  border-top-width: 1px;
  border-right-width: 1px;
}
@media screen and (min-width: 720px) {
  .promotion .sector-frame-2 .btn-base span:before {
    width: 6px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-frame-2 .btn-base span:before {
    height: 6px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-frame-2 .btn-base span:before {
    margin-top: -3px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-frame-2 .btn-base span:before {
    right: 12px;
  }
}
.promotion .sector-frame-2 .btn-base span:before {
  right: 0;
}
.promotion .sector-frame-2 .flag {
  z-index: 5;
  position: absolute;
  top: 121px;
  left: 50%;
  margin-left: 162px;
}
.promotion .sector-frame-2 .tab-list {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  padding: 0 60px;
}
.promotion .sector-frame-2 .tab-list li {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  color: #6D6D6D;
  letter-spacing: -0.9px;
  padding: 24px 0;
  border-radius: 5px;
  border: 1px solid #E6E6E6;
  background: #F8F8F8;
  cursor: pointer;
}
.promotion .sector-frame-2 .tab-list li.on {
  color: #FFF;
  background: #424242;
  background: linear-gradient(180deg, #424242 0%, #000 100%);
}
.promotion .sector-frame-2 .tab-view {
  height: 420px;
  margin: 0 60px;
  padding: 40px;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  background: #FFF;
  overflow-y: scroll;
  box-sizing: border-box;
}
.promotion .sector-frame-2 .tab-cell img {
  width: 100%;
}
.promotion .sector-frame-2 .tab-text {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 0 16px;
}
.promotion .sector-frame-2 .tab-text p {
  width: 400px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
.promotion .sector-frame-2 .text-box {
  margin: 40px 0 20px;
}
.promotion .sector-frame-2 .text-box p {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.6px;
}
.promotion .sector-frame-2 .slide-video {
  margin-top: 40px;
}
.promotion .sector-frame-2 .slide-video .slick-slide {
  width: 200px;
  padding: 0 8px 12px;
  border-radius: 0 10px 10px 10px;
  overflow: hidden;
}
.promotion .sector-frame-2 .slide-video .slick-slide img {
  width: 100%;
  border-radius: 0 10px 10px 10px;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.23);
}
.promotion .sector-frame-2 .slide-video .slick-dots li {
  width: 8px;
  height: 8px;
}
.promotion .sector-frame-2 .slide-video .slick-dots li.slick-active {
  background: #444;
}/*# sourceMappingURL=web.css.map */