@charset "UTF-8";
.after-before {
  position: absolute;
  content: "";
}

.img-default {
  float: left;
  width: 100%;
  height: auto;
}

.float-default {
  float: left;
  width: 100%;
}

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.mp-animation {
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.mp-animated {
  opacity: 1;
}

@-webkit-keyframes mp-pulse {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes mp-pulse {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.mp-pulse {
  -webkit-animation-name: mp-pulse;
  animation-name: mp-pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes mp-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mp-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mp-fadeIn {
  -webkit-animation-name: mp-fadeIn;
  animation-name: mp-fadeIn;
}

@-webkit-keyframes mp-fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes mp-fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.mp-fadeInUp {
  -webkit-animation-name: mp-fadeInUp;
  animation-name: mp-fadeInUp;
}

@-webkit-keyframes mp-fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes mp-fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.mp-fadeInDown {
  -webkit-animation-name: mp-fadeInDown;
  animation-name: mp-fadeInDown;
}

@-webkit-keyframes mp-fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes mp-fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.mp-fadeInLeft {
  -webkit-animation-name: mp-fadeInLeft;
  animation-name: mp-fadeInLeft;
}

@-webkit-keyframes mp-fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes mp-fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.mp-fadeInRight {
  -webkit-animation-name: mp-fadeInRight;
  animation-name: mp-fadeInRight;
}

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

@-webkit-keyframes mp-fadeZoom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes mp-fadeZoom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.mp-fadeZoom {
  -webkit-animation-name: mp-fadeZoom;
  animation-name: mp-fadeZoom;
}

@-webkit-keyframes mp-fadeZoomBig {
  from {
    opacity: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes mp-fadeZoomBig {
  from {
    opacity: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.mp-fadeZoomBig {
  -webkit-animation-name: mp-fadeZoomBig;
  animation-name: mp-fadeZoomBig;
}

@-webkit-keyframes mp-bounceBig {
  from, 20%, 53%, to {
    opacity: 1;
    -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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes mp-bounceBig {
  from, 20%, 53%, to {
    opacity: 1;
    -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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.mp-bounceBig {
  -webkit-animation-name: mp-bounceBig;
  animation-name: mp-bounceBig;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes mp-bounce {
  from, 20%, 53%, 80%, to {
    opacity: 1;
    -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: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  40%, 43%, 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);
  }
  70% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes mp-bounce {
  from, 20%, 53%, 80%, to {
    opacity: 1;
    -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: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  40%, 43%, 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);
  }
  70% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.mp-bounce {
  -webkit-animation-name: mp-bounce;
  animation-name: mp-bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

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

@-webkit-keyframes mp-clipY {
  0% {
    opacity: 1;
    -webkit-transform: scale(0, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
  }
}
@keyframes mp-clipY {
  0% {
    opacity: 1;
    transform: scale(0, 1);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
.mp-clipY {
  -webkit-animation-name: mp-clipY;
  animation-name: mp-clipY;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes mp-clipYR {
  0% {
    opacity: 1;
    -webkit-transform: rotate(-40deg) scale(0, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(-40deg) scale(1, 1);
  }
}
@keyframes mp-clipYR {
  0% {
    opacity: 1;
    transform: rotate(-40deg) scale(0, 1);
  }
  100% {
    opacity: 1;
    transform: rotate(-40deg) scale(1, 1);
  }
}
.mp-clipYR {
  -webkit-animation-name: mp-clipYR;
  animation-name: mp-clipYR;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes mp-clipYR2 {
  0% {
    opacity: 1;
    -webkit-transform: rotate(-320deg) scale(0, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(-320deg) scale(1, 1);
  }
}
@keyframes mp-clipYR2 {
  0% {
    opacity: 1;
    transform: rotate(-320deg) scale(0, 1);
  }
  100% {
    opacity: 1;
    transform: rotate(-320deg) scale(1, 1);
  }
}
.mp-clipYR2 {
  -webkit-animation-name: mp-clipYR2;
  animation-name: mp-clipYR2;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes mp-clipX {
  0% {
    opacity: 1;
    -webkit-transform: scale(1, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
  }
}
@keyframes mp-clipX {
  0% {
    opacity: 1;
    transform: scale(1, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
.mp-clipX {
  -webkit-animation-name: mp-clipX;
  animation-name: mp-clipX;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes mp-clipXY {
  0% {
    opacity: 1;
    -webkit-transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
  }
}
@keyframes mp-clipXY {
  0% {
    opacity: 1;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
.mp-clipXY {
  -webkit-animation-name: mp-clipXY;
  animation-name: mp-clipXY;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes mp-backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    opacity: 0.5;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@keyframes mp-backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.5;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.mp-backInUp {
  -webkit-animation: mp-backInUp;
  animation: mp-backInUp;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes mp-zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
@keyframes mp-zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.mp-zoomIn {
  -webkit-animation-name: mp-zoomIn;
  animation-name: mp-zoomIn;
}

@-webkit-keyframes mp-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);
  }
  to {
    opacity: 1;
  }
}
@keyframes mp-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);
  }
  to {
    opacity: 1;
  }
}
.mp-zoomInDown {
  -webkit-animation-name: mp-zoomInDown;
  animation-name: mp-zoomInDown;
}

@-webkit-keyframes mp-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);
  }
  to {
    opacity: 1;
  }
}
@keyframes mp-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);
  }
  to {
    opacity: 1;
  }
}
.mp-zoomInUp {
  -webkit-animation-name: mp-zoomInUp;
  animation-name: mp-zoomInUp;
}

@-webkit-keyframes mp-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);
  }
  to {
    opacity: 1;
  }
}
@keyframes mp-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);
  }
  to {
    opacity: 1;
  }
}
.mp-zoomInLeft {
  -webkit-animation-name: mp-zoomInLeft;
  animation-name: mp-zoomInLeft;
}

@-webkit-keyframes mp-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);
  }
  to {
    opacity: 1;
  }
}
@keyframes mp-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);
  }
  to {
    opacity: 1;
  }
}
.mp-zoomInRight {
  -webkit-animation-name: mp-zoomInRight;
  animation-name: mp-zoomInRight;
}

@-webkit-keyframes mp-typing {
  0% {
    width: 0%;
  }
  30% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes mp-typing {
  0% {
    width: 0%;
  }
  30% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.mp-typing {
  -webkit-animation: mp-typing;
  animation: mp-typing;
}

@-webkit-keyframes mp-pulsate {
  0% {
    -webkit-transform: scale(0.62);
    transform: scale(0.62);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(207, 172, 114, 0.75), 0px 0px 25px 10px rgba(207, 172, 114, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;
  }
}
@keyframes mp-pulsate {
  0% {
    -webkit-transform: scale(0.62);
    transform: scale(0.62);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(207, 172, 114, 0.75), 0px 0px 25px 10px rgba(207, 172, 114, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;
  }
}
.mp-pulsate {
  -webkit-animation: mp-pulsate;
  animation: mp-pulsate;
}

@-webkit-keyframes hotspot-pulse {
  0% {
    -webkit-transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  70% {
    -webkit-transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes hotspot-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.animate-delay-100 {
  -webkit-animation-delay: 100ms !important;
  animation-delay: 100ms !important;
}

.animate-delay-200 {
  -webkit-animation-delay: 200ms !important;
  animation-delay: 200ms !important;
}

.animate-delay-300 {
  -webkit-animation-delay: 300ms !important;
  animation-delay: 300ms !important;
}

.animate-delay-400 {
  -webkit-animation-delay: 400ms !important;
  animation-delay: 400ms !important;
}

.animate-delay-500 {
  -webkit-animation-delay: 500ms !important;
  animation-delay: 500ms !important;
}

.animate-delay-600 {
  -webkit-animation-delay: 600ms !important;
  animation-delay: 600ms !important;
}

.animate-delay-700 {
  -webkit-animation-delay: 700ms !important;
  animation-delay: 700ms !important;
}

.animate-delay-800 {
  -webkit-animation-delay: 800ms !important;
  animation-delay: 800ms !important;
}

.animate-delay-900 {
  -webkit-animation-delay: 900ms !important;
  animation-delay: 900ms !important;
}

.animate-delay-1 {
  -webkit-animation-delay: 1000ms !important;
  animation-delay: 1000ms !important;
}

.fade-in-right {
  -webkit-animation: fade-in-right 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-right 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-left {
  -webkit-animation: fade-in-left 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-left 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
body:after {
  content: "";
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
  background: url(../Images/Location.svg);
}

body {
  overflow: hidden !important;
}

* {
  box-sizing: border-box;
}

.main-menu-bg.location {
  background: #a7334a;
}
.main-menu-bg.location .logo-bg .logo {
  background: url(../Images/logoW.svg) right no-repeat;
}
.main-menu-bg.location .menu-bg .menu-item-bg .menu-item.active span, .main-menu-bg.location .menu-bg .menu-item-bg .menu-item:hover span {
  color: #a7334a;
  background: white;
}
.main-menu-bg.location .menu-bg .menu-item-bg .menu-item.active i, .main-menu-bg.location .menu-bg .menu-item-bg .menu-item:hover i {
  color: #a7334a;
}

:root {
  --dash-color: #999;
  /* màu nét */
  --dash-thickness: 1px;
  /* độ dày */
  --dash-length: 3px;
  /* chiều dài nét */
  --dash-gap: 3px;
  /* khoảng cách giữa nét */
  --dash-fade: 50px;
  /* độ dài vùng mờ ở 2 đầu */
}

.location-page {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
  background: url(../Images/gallery_bg.jpg);
}
.location-page .info-bg {
  width: 35%;
  order: 1;
}
.location-page .info-bg .info-content {
  position: relative;
  text-align: left;
  color: #666;
  display: flex;
  /* Sử dụng flex để căn giữa nội dung bên trong */
  flex-direction: column;
  /* Sắp xếp các phần tử theo cột */
  justify-content: center;
  /* Căn giữa theo chiều dọc */
  align-items: right;
  /* Căn giữa theo chiều ngang nếu cần */
  height: 100%;
  padding: 0 0 60px 86px;
}
.location-page .info-bg .info-content h2 {
  float: left;
  width: 100%;
  font-size: 26px;
  color: #333;
  font-weight: 100;
  font-family: "SVN-Audrey", "Arial";
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.location-page .info-bg .info-content h1 {
  float: left;
  width: 100%;
  font-size: 26px;
  font-family: "SVN-Audrey", "Arial";
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.28;
  margin-bottom: 18px;
}
.location-page .info-bg .info-content .content {
  float: left;
  width: 100%;
}
.location-page .info-bg .info-content .content .icon-group {
  position: relative;
  float: left;
  width: 46px;
  height: 100%;
}
.location-page .info-bg .info-content .content .icon-group .walk {
  float: left;
  width: 100%;
  height: 108px;
  margin: 18px 0 0 0;
  border-right: 3px solid rgba(170, 170, 170, 0.26);
  background: url(../Images/walk.svg) no-repeat center;
}
.location-page .info-bg .info-content .content .icon-group .bike {
  float: left;
  width: 100%;
  height: 178px;
  margin: 32px 0 0 0;
  border-right: 3px solid rgba(170, 170, 170, 0.26);
  background: url(../Images/bike.svg) no-repeat center;
}
.location-page .info-bg .info-content .content .timeline {
  position: relative;
  float: left;
  width: calc(100% - 56px);
  margin: 10px 0 0 10px;
}
.location-page .info-bg .info-content .content .timeline::after {
  position: absolute;
  content: "";
  height: 100%;
  width: var(--dash-thickness);
  left: 69px;
  top: 20px;
  z-index: 0;
  background: repeating-linear-gradient(to bottom, var(--dash-color) 0 var(--dash-length), transparent var(--dash-length) calc(var(--dash-length) + var(--dash-gap)));
  /* làm mờ 2 đầu bằng mask */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, black var(--dash-fade), black calc(100% - var(--dash-fade)), transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, black var(--dash-fade), black calc(100% - var(--dash-fade)), transparent 100%);
}
.location-page .info-bg .info-content .content .timeline .item {
  float: left;
  width: 100%;
  margin-bottom: 18px;
}
.location-page .info-bg .info-content .content .timeline .item .time {
  float: left;
  width: 48px;
  height: 52px;
}
.location-page .info-bg .info-content .content .timeline .item .time .no {
  float: left;
  width: 100%;
  color: #a7334a;
  font-family: "Montserrat-Medium", "Arial";
  font-size: 21px;
  font-weight: 700;
  margin: 6px 0 6px 0;
}
.location-page .info-bg .info-content .content .timeline .item .time .minute {
  float: left;
  width: 100%;
  font-size: 14px;
}
.location-page .info-bg .info-content .content .timeline .item .text {
  position: relative;
  float: left;
  width: calc(100% - 48px);
  height: 52px;
  font-size: 13px;
  line-height: 18px;
  font-family: "Montserrat-Medium", "Arial";
  padding: 0 0 0 42px;
  display: flex;
  align-items: center;
  /* canh giữa theo chiều dọc */
}
.location-page .info-bg .info-content .content .timeline .item .text::after {
  position: absolute;
  content: "";
  z-index: 9;
  left: 18px;
  top: 22px;
  margin: 0 auto;
  width: 8px;
  height: 8px;
  background: #a7334a;
  outline: 2px solid rgba(167, 51, 74, 0.3);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.location-page .info-bg .info-content .location-btn-bg {
  float: left;
  width: 100%;
  margin: 25px 0 0 0;
}
.location-page .info-bg .info-content .location-btn-bg .location-btn {
  float: left;
  width: 142px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  color: #a7334a;
  border: 1px solid #a7334a;
  -moz-border-radius: 36px;
  -webkit-border-radius: 36px;
  -ms-border-radius: 36px;
  -o-border-radius: 36px;
  border-radius: 36px;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
.location-page .info-bg .info-content .location-btn-bg .location-btn:hover {
  color: white;
  background: #a7334a;
}
.location-page .map-bg {
  width: 65%;
  order: 2;
  position: relative;
  overflow: visible;
}
.location-page .map-bg .panzoom-parent {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden !important;
}
.location-page .map-bg .panzoom-parent .map-left {
  position: absolute;
  width: 115px;
  height: 100vh;
  z-index: 9;
  left: 0;
  top: 0;
  background: url(../Images/map_left.png) right repeat-y;
}
.location-page .map-bg .panzoom-parent .map-bottom {
  position: absolute;
  width: 100%;
  height: 115px;
  z-index: 9;
  left: 0;
  bottom: 0;
  background: url(../Images/map_bottom.png) top repeat-x;
}
.location-page .map-bg .panzoom-parent .map-bottom .zoom-btn-bg {
  position: absolute;
  width: 108px;
  height: 48px;
  right: 12px;
  bottom: 18px;
}
.location-page .map-bg .panzoom-parent .map-bottom .zoom-btn-bg .zoom-btn {
  position: relative;
  float: left;
  width: 42px;
  height: 42px;
  margin-left: 3px;
  background: #A7334A;
  border: 3px solid white;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
.location-page .map-bg .panzoom-parent .map-bottom .zoom-btn-bg .zoom-btn i {
  float: left;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  font-size: 18px;
  color: white;
}
.location-page .map-bg .panzoom-parent .map-bottom .zoom-btn-bg .zoom-btn:hover {
  background: #4C1621;
}
.location-page .map-bg .panzoom-parent .panzoom {
  width: auto;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: visible;
  touch-action: none;
}
.location-page .map-bg .panzoom-parent .panzoom img,
.location-page .map-bg .panzoom-parent .panzoom svg {
  display: block;
  height: 100vh;
  width: auto;
  object-fit: contain;
  object-position: left;
}

.cls-29, .cls-24, .cls-24 {
  animation: dash 5s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: 100;
  }
}
/* Media query cho màn hình di động (dưới 768px) */
@media (max-width: 768px) {
  .info-bg {
    width: 100%;
    order: 2;
    /* Đổi thứ tự: info-bg xuống dưới */
  }

  .map-bg {
    width: 100%;
    order: 1;
    /* Đổi thứ tự: map-bg lên trên */
  }
}