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

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-slide:focus, .slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

/* Animate Css */
/*!
* animate.css -http://daneden.me/animate
* Version - 3.7.0
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2018 Daniel Eden
*/
@-webkit-keyframes bounce {
  20%, 53%, 80%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  20%, 53%, 80%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom;
}

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

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

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

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

@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

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

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

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

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

@-webkit-keyframes heartBeat {
  0%, 28%, 70% {
    transform: scale(1);
  }
  14%, 42% {
    transform: scale(1.3);
  }
}
@keyframes heartBeat {
  0%, 28%, 70% {
    transform: scale(1);
  }
  14%, 42% {
    transform: scale(1.3);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flipInY,
.flipOutX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

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

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

@-webkit-keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animated.fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

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

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

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

/** service-hexagon **/
@-webkit-keyframes service_hexagon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes service_hexagon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes service_hexagon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    transition: none !important;
  }
}
.wrapSlideMainHome .single_about_thumb img {
  width: 100%;
  height: auto;
}
.wrapSlideMainHome .about_shape_thumb_affiliate2 {
  left: auto;
  right: 0;
}
.wrapSlideMainHome .about_shape_thumb_affiliate1 {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}
.wrapSlideMainHome .banner_title_content,
.wrapSlideMainHome .banner_content_text,
.wrapSlideMainHome .slider_button {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  opacity: 0;
  filter: alpha(opacity=0);
}
.wrapSlideMainHome .banner_title_content {
  transform: translate(0, -30px);
  -webkit-transform: translate(0, -30px);
  -moz-transform: translate(0, -30px);
  -ms-transform: translate(0, -30px);
  -o-transform: translate(0, -30px);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -ms-transition-delay: 0s;
  -o-transition-delay: 0s;
}
.wrapSlideMainHome .banner_title_content .titleMain {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
}
.wrapSlideMainHome .banner_content_text {
  transform: translate(30px, 0);
  -webkit-transform: translate(30px, 0);
  -moz-transform: translate(30px, 0);
  -ms-transform: translate(30px, 0);
  -o-transform: translate(30px, 0);
  color: #fff;
  transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -ms-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  padding-top: 15px;
}
.wrapSlideMainHome .banner_content_text p {
  margin: 0;
}
.wrapSlideMainHome .slider_button {
  transform: translate(0, 30px);
  -webkit-transform: translate(0, 30px);
  -moz-transform: translate(0, 30px);
  -ms-transform: translate(0, 30px);
  -o-transform: translate(0, 30px);
  transition-delay: 0.8s;
  -webkit-transition-delay: 0.8s;
  -moz-transition-delay: 0.8s;
  -ms-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
}
.wrapSlideMainHome.banner_area .data_science_video_inner {
  left: 212px;
}
.wrapSlideMainHome .slick-active .banner_title_content,
.wrapSlideMainHome .slick-active .banner_content_text,
.wrapSlideMainHome .slick-active .slider_button {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  opacity: 1;
  filter: alpha(opacity=100);
}

@media (min-width: 576px) {
  .wrapSlideMainHome .rowItem {
    margin: 100px -15px 0 -15px;
    display: flex;
    align-items: center;
  }
  .wrapSlideMainHome .rowItem::after {
    display: block;
    content: "";
    clear: both;
  }
  .wrapSlideMainHome .colText,
.wrapSlideMainHome .colImg {
    padding: 0 15px;
  }
  .wrapSlideMainHome .colText {
    float: left;
  }
  .wrapSlideMainHome .colImg {
    float: right;
  }
}
@media (min-width: 1800px) {
  .wrapSlideMainHome .colText {
    width: calc(100% -  795px);
    width: -ms-calc(100% -  795px);
    width: -o-calc(100% -  795px);
  }
  .wrapSlideMainHome .colImg {
    width: 795px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate1 {
    left: 162px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate2 {
    bottom: 392px;
  }
  .wrapSlideMainHome .banner_title_content .titleMain {
    font-size: 60px;
    margin-top: 0;
    font-weight: 700;
  }
}
@media (max-width: 1800px) and (min-width: 1221px) {
  .wrapSlideMainHome {
    height: 750px;
  }
  .wrapSlideMainHome .colText {
    width: calc(100% -  640px);
    width: -ms-calc(100% -  640px);
    width: -o-calc(100% -  640px);
  }
  .wrapSlideMainHome .colImg {
    width: 640px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate1 {
    bottom: 66px;
    left: 118px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate2 {
    bottom: 332px;
  }
  .wrapSlideMainHome .banner_title_content .titleMain {
    font-size: 55px;
  }
}
@media (max-width: 1400px) {
  .wrapSlideMainHome .banner_title_content .titleMain {
    font-size: 45px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate2 {
    right: 30px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate2 img {
    height: 100px;
  }
}
@media (max-width: 1220px) {
  .wrapSlideMainHome .about_shape_thumb_affiliate1 img,
.wrapSlideMainHome .about_shape_thumb_affiliate2 img {
    width: auto;
  }
  .wrapSlideMainHome .banner_content_text {
    padding-top: 20px;
  }
  .wrapSlideMainHome .banner_title_content .titleMain {
    font-size: 35px;
  }
}
@media (max-width: 1220px) and (min-width: 992px) {
  .wrapSlideMainHome {
    height: 600px;
  }
  .wrapSlideMainHome .colText {
    width: calc(100% -  480px);
    width: -ms-calc(100% -  480px);
    width: -o-calc(100% -  480px);
  }
  .wrapSlideMainHome .colImg {
    width: 480px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate1 {
    bottom: 18px;
    left: 80px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate1 img {
    height: 183px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate2 {
    bottom: 229px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate2 img {
    height: 80px;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (min-height: 1024px) {
  .wrapSlideMainHome {
    height: 600px;
  }
  .wrapSlideMainHome .colText {
    width: calc(100% -  350px);
    width: -ms-calc(100% -  350px);
    width: -o-calc(100% -  350px);
  }
  .wrapSlideMainHome .colImg {
    width: 350px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate1 {
    bottom: 13px;
    left: 64px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate1 img {
    height: 124px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate2 {
    bottom: 163px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate2 img {
    height: 58px;
  }
  .wrapSlideMainHome .banner_title_content .titleMain {
    font-size: 35px;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-height: 575px) {
  .wrapSlideMainHome {
    height: 450px;
  }
  .wrapSlideMainHome .colText {
    width: calc(100% -  400px);
    width: -ms-calc(100% -  400px);
    width: -o-calc(100% -  400px);
  }
  .wrapSlideMainHome .colImg {
    width: 400px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate1 {
    bottom: 18px;
    left: 63px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate1 img {
    height: 140px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate2 {
    bottom: 196px;
    right: 30px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate2 img {
    height: 50px;
  }
  .wrapSlideMainHome .banner_title_content .titleMain {
    font-size: 35px;
  }
}
@media (max-width: 767px) and (min-width: 576px) and (max-height: 575px) {
  .wrapSlideMainHome {
    height: 420px !important;
  }
  .wrapSlideMainHome .colText {
    width: calc(100% -  300px);
    width: -ms-calc(100% -  300px);
    width: -o-calc(100% -  300px);
  }
  .wrapSlideMainHome .colImg {
    width: 300px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate1 {
    bottom: 7px;
    left: 53px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate1 img {
    height: 102px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate2 {
    bottom: 145px;
    right: 28px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate2 img {
    height: 33px;
  }
  .wrapSlideMainHome .banner_title_content .titleMain {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .wrapSlideMainHome {
    height: 660px;
  }
  .wrapSlideMainHome .rowItem {
    margin-top: 90px;
  }
  .wrapSlideMainHome .colImg {
    width: 360px;
    margin: auto;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate1 {
    bottom: 7px;
    left: 64px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate1 img {
    height: 141px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate2 {
    bottom: 189px;
    right: 30px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate2 img {
    height: 50px;
  }
  .wrapSlideMainHome .banner_title_content .titleMain {
    font-size: 24px;
  }
  .wrapSlideMainHome .slider_button,
.wrapSlideMainHome .banner_content_text {
    padding-top: 15px !important;
  }
  .wrapSlideMainHome .banner_content_text p {
    margin: 5px 0 0 0;
  }
  .wrapSlideMainHome .banner_content_text p:first-child {
    margin-top: 0;
  }
}
@media (max-width: 420px) {
  .wrapSlideMainHome .colImg {
    width: 300px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate1 {
    bottom: 9px;
    left: 60px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate1 img {
    height: 108px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate2 {
    bottom: 159px;
    right: 26px;
  }
  .wrapSlideMainHome .about_shape_thumb_affiliate2 img {
    height: 40px;
  }
}
.wrapAboutHome {
  position: relative;
  z-index: 5;
  background: white;
  overflow-x: hidden;
}
.wrapAboutHome .about_shape_thumb_affiliate1 img,
.wrapAboutHome .about_shape_thumb_affiliate2 img {
  width: auto;
}
.wrapAboutHome .about_shape_thumb_affiliate1 {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}
.wrapAboutHome .about_shape_thumb_affiliate2 {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  animation: ripple-blue-1 2s linear infinite;
  -webkit-animation: ripple-blue-1 2s linear infinite;
  -moz-animation: ripple-blue-1 2s linear infinite;
  -ms-animation: ripple-blue-1 2s linear infinite;
  -o-animation: ripple-blue-1 2s linear infinite;
}
.wrapAboutHome .section_content_text {
  font-size: 18px;
  color: #616161;
  margin: 30px 0 0 0;
  text-align: justify;
}
.wrapAboutHome .section_content_text b,
.wrapAboutHome .section_content_text strong {
  font-weight: 900;
}
.wrapAboutHome .single_about_signesur {
  display: flex;
  margin: 30px 0 0 0;
}
.wrapAboutHome .single_about_signesur_thumb {
  width: 100px;
  margin-right: 20px;
}
.wrapAboutHome .single_about_signesur_thumb .wrapImgResize {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
.wrapAboutHome .titlePostion {
  margin-top: 5px;
}

@media (min-width: 992px) {
  .wrapAboutHome .rowItem {
    margin: 0 -15px;
    display: flex;
    align-items: center;
  }
  .wrapAboutHome .rowItem::after {
    display: block;
    content: "";
    clear: both;
  }
  .wrapAboutHome .colText,
.wrapAboutHome .colImg {
    padding: 0 15px;
  }
  .wrapAboutHome .colText {
    float: left;
  }
  .wrapAboutHome .colImg {
    float: right;
  }
}
@media (min-width: 1800px) {
  .wrapAboutHome .colText {
    width: calc(100% -  795px);
    width: -ms-calc(100% -  795px);
    width: -o-calc(100% -  795px);
  }
  .wrapAboutHome .colImg {
    width: 795px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate1 {
    bottom: 0;
    left: 202px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate1 img {
    height: 240px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate2 {
    bottom: 550px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate2 img {
    height: 150px;
  }
}
@media (max-width: 1800px) and (min-width: 1221px) {
  .wrapAboutHome .colText {
    width: calc(100% -  640px);
    width: -ms-calc(100% -  640px);
    width: -o-calc(100% -  640px);
  }
  .wrapAboutHome .colImg {
    width: 640px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate1 {
    bottom: 0;
    left: 174px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate1 img {
    height: 217px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate2 {
    bottom: 463px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate2 img {
    height: 150px;
  }
}
@media (max-width: 1220px) and (min-width: 992px) {
  .wrapAboutHome .colText {
    width: calc(100% -  480px);
    width: -ms-calc(100% -  480px);
    width: -o-calc(100% -  480px);
  }
  .wrapAboutHome .colImg {
    width: 480px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate1 {
    bottom: 0;
    left: 116px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate1 img {
    height: 146px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate2 {
    bottom: 330px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate2 img {
    height: 74px;
  }
}
@media (max-width: 1220px) {
  .wrapAboutHome .section_content_text {
    font-size: 16px;
    margin: 15px 0 0 0;
  }
  .wrapAboutHome .section_content_text p {
    margin-bottom: 10px;
  }
  .wrapAboutHome .single_about_signesur_thumb {
    margin-right: 10px;
  }
  .wrapAboutHome .single_about_signesur {
    margin: 15px 0 0 0;
  }
  .wrapAboutHome .single_about_signesur .titleFullName {
    font-size: 24px;
  }
  .wrapAboutHome .single_about_signesur .titlePostion {
    font-size: 16px;
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .wrapAboutHome .colText {
    margin-top: 30px;
  }
  .wrapAboutHome .colImg {
    width: 575px;
    margin: auto;
  }
  .wrapAboutHome .about_shape_thumb_affiliate1 {
    bottom: 0;
    left: 147px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate1 img {
    height: 177px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate2 {
    bottom: 390px;
    left: 24px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate2 img {
    height: 115px;
  }
  .wrapAboutHome .section_content_text {
    font-size: 16px;
  }
  .wrapAboutHome .single_about_signesur_thumb {
    width: 70px;
  }
  .wrapAboutHome .single_about_signesur .titleFullName {
    font-size: 20px;
  }
  .wrapAboutHome .single_about_signesur .titlePostion {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .wrapAboutHome .colImg {
    width: 360px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate1 {
    left: 77px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate1 img {
    height: 100px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate2 {
    bottom: 205px;
    left: 15px;
  }
  .wrapAboutHome .about_shape_thumb_affiliate2 img {
    height: 65px;
  }
}
@media (max-width: 420px) {
  .wrapAboutHome .colImg {
    width: 300px;
  }
}
.counterHome {
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
.counterHome .bgColorItem {
  padding-top: 60px;
  background-color: rgba(69, 33, 137, 0.8);
}
.counterHome .colItem {
  padding-top: 30px;
}
.counterHome .counter_style {
  align-items: center;
}
.counterHome .counter_icon img {
  width: 45px;
  height: 45px;
  display: block;
}
.counterHome .counter_icon .icon {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background-color: #452189;
}
.counterHome .counter_text {
  color: #fff;
  padding-left: 15px;
}
.counterHome .counter_text .wrapNumber {
  font-size: 40px;
  font-weight: 800;
}
.counterHome .counter_text .wrapNumber > div {
  display: inline;
}
.counterHome .counter_text .titleItem {
  text-transform: capitalize;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 1300px) {
  .counterHome .counter_text .titleItem {
    font-size: 16px;
  }
}
@media (max-width: 1220px) {
  .counterHome .bgColorItem {
    padding-top: 0;
  }
  .counterHome .counter_icon img {
    height: 35px;
    width: 35px;
  }
  .counterHome .counter_icon .icon {
    width: 62px;
    height: 62px;
  }
  .counterHome .counter_text .wrapNumber {
    font-size: 30px;
  }
  .counterHome .counter_text .titleItem {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .counterHome .counter_style {
    flex-direction: column;
  }
  .counterHome .counter_icon img {
    height: 25px;
    width: 25px;
  }
  .counterHome .counter_icon .icon {
    width: 50px;
    height: 50px;
  }
  .counterHome .counter_text {
    padding: 0;
    text-align: center;
  }
  .counterHome .counter_text .wrapNumber {
    font-size: 20px;
  }
  .counterHome .counter_text .titleItem {
    font-size: 12px;
  }
}
.sweetsoft {
   overflow-x: hidden;
}
.sweetsoft .single_about_thumb {
  position: relative;
}
.sweetsoft .shape_thumb {
  position: static;
}
.sweetsoft .about_shape_thumb_affiliate1,
.sweetsoft .about_shape_thumb_affiliate2,
.sweetsoft .about_shape_thumb_affiliate3 {
  animation-duration: 3s;
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
  -ms-animation-duration: 3s;
  -o-animation-duration: 3s;
  bottom: auto;
}
.sweetsoft .about_shape_thumb_affiliate2 {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  animation-name: float-bob6;
  animation-name: float-bob6;
  -webkit-animation-name: float-bob6;
  -moz-animation-name: float-bob6;
  -ms-animation-name: float-bob6;
  -o-animation-name: float-bob6;
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  left: auto;
}
.sweetsoft .section_content_text h4 {
  font-size: 24px;
  color: #000;
  font-weight: 800;
  margin-bottom: 16px;
}
.sweetsoft .section_content_text p:last-child {
  margin: 0px;
}
.sweetsoft .wrapBtnSeeMore {
  margin-top: 30px;
}

@media (min-width: 992px) {
  .sweetsoft .colText {
    float: left;
    order: -1;
  }
  .sweetsoft .colImg {
    float: right;
  }
}
@media (max-width: 1920px) and (min-width: 1800px) {
  .sweetsoft .about_shape_thumb_affiliate1 img,
.sweetsoft .about_shape_thumb_affiliate2 img {
    height: 200px;
  }
  .sweetsoft .about_shape_thumb_affiliate1 {
    top: 186px;
    left: 85px;
  }
  .sweetsoft .about_shape_thumb_affiliate2 {
    bottom: 143px;
    right: 152px;
  }
}
@media (max-width: 1800px) and (min-width: 1221px) {
  .sweetsoft .about_shape_thumb_affiliate1 img,
.sweetsoft .about_shape_thumb_affiliate2 img {
    height: 170px;
  }
  .sweetsoft .about_shape_thumb_affiliate1 {
    top: 142px;
    left: 58px;
  }
  .sweetsoft .about_shape_thumb_affiliate2 {
    bottom: 116px;
    right: 120px;
  }
}
@media (max-width: 1220px) {
  .sweetsoft .section_content_text h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .sweetsoft .section_content_text p {
    font-size: 16px;
  }
  .sweetsoft .section_content_text p:last-child {
    margin: 0px;
  }
}
@media (max-width: 1220px) and (min-width: 992px) {
  .sweetsoft .about_shape_thumb_affiliate1 img,
.sweetsoft .about_shape_thumb_affiliate2 img {
    height: 120px;
  }
  .sweetsoft .about_shape_thumb_affiliate1 {
    top: 113px;
    left: 46px;
  }
  .sweetsoft .about_shape_thumb_affiliate2 {
    bottom: 83px;
    right: 90px;
  }
  .sweetsoft .wrapBtnSeeMore {
    margin-top: 10px;
  }
}
@media (max-width: 991px) {
  .sweetsoft .about_shape_thumb_affiliate1 img,
.sweetsoft .about_shape_thumb_affiliate2 img {
    height: 140px;
  }
  .sweetsoft .about_shape_thumb_affiliate1 {
    top: 158px;
    left: 59px;
  }
  .sweetsoft .about_shape_thumb_affiliate2 {
    bottom: 108px;
    right: 120px;
  }
}
@media (max-width: 575px) {
  .sweetsoft .about_shape_thumb_affiliate1 img,
.sweetsoft .about_shape_thumb_affiliate2 img {
    height: 90px;
  }
  .sweetsoft .about_shape_thumb_affiliate1 {
    top: 97px;
    left: 36px;
  }
  .sweetsoft .about_shape_thumb_affiliate2 {
    bottom: 56px;
    right: 127px;
  }
  .sweetsoft .section_content_text h4 {
    font-size: 16px;
  }
}
@media (max-width: 420px) {
  .sweetsoft .about_shape_thumb_affiliate1 img,
.sweetsoft .about_shape_thumb_affiliate2 img {
    height: 80px;
  }
  .sweetsoft .about_shape_thumb_affiliate1 {
    top: 80px;
    left: 31px;
  }
  .sweetsoft .about_shape_thumb_affiliate2 {
    bottom: 54px;
    right: 60px;
  }
}
.ourTeamHome {
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 5;
}
.ourTeamHome .bgColorItem {
  /*background-color: rgba(255, 255, 255, 0.8);*/
}
.ourTeamHome .wrapImg .wrapImgResize {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.ourTeamHome .showTextItem {
  display: flex;
  justify-content: space-around;
  background: #452189;
  background-image: linear-gradient(90deg, #452189 0%, #8258cd 70%);
  margin-top: -30px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 5px 5px;
}
.ourTeamHome .wrapTextItem {
  padding: 0 15px;
}
.ourTeamHome .wrapTextItem .contactInfo {
  margin-top: 5px;
}
.ourTeamHome .wrapTextItem .contactInfo,
.ourTeamHome .wrapTextItem .nameInfo {
  align-items: center;
}
.ourTeamHome .wrapTextItem .titleItem,
.ourTeamHome .wrapTextItem .position,
.ourTeamHome .wrapTextItem .emailItem,
.ourTeamHome .wrapTextItem .phoneItem {
  color: #fff;
}
.ourTeamHome .wrapTextItem .titleItem {
  font-size: 15px;
  position: relative;
  top: 5px;
}
.ourTeamHome .wrapTextItem .titleItem {
  margin: 0 0 10px 0;
}
.ourTeamHome .wrapTextItem .position {
  margin-bottom: 5px;
}
.ourTeamHome .wrapTextItem .emailItem,
.ourTeamHome .wrapTextItem .phoneItem {
  font-size: 10px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.ourTeamHome .wrapTextItem .emailItem:hover,
.ourTeamHome .wrapTextItem .phoneItem:hover {
  color: #cdb3ff;
}
.ourTeamHome .wrapTextItem .position {
  font-weight: 700;
  font-size: 10px;
}
.ourTeamHome .wrapTextItem svg {
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 2px;
  transform: translate(0, -1px);
  -webkit-transform: translate(0, -1px);
  -moz-transform: translate(0, -1px);
  -ms-transform: translate(0, -1px);
  -o-transform: translate(0, -1px);
}
.ourTeamHome .contentItem {
  position: relative;
}
.ourTeamHome .contentItem .wrapBtnSeeMore {
  position: absolute;
  bottom: 0;
  right: 0;
}
.ourTeamHome .contentItem .wrapBtnSeeMore a {
  display: block;
}
.ourTeamHome .listItem .wrapBtnSeeMore {
  display: none;
}
.ourTeamHome .colItem {
  margin-top: 30px;
}

@media (min-width: 1285px) {
  .ourTeamHome .position {
    font-size: 12px;
  }
}
@media (max-width: 1699px) {
  .ourTeamHome .wrapTextItem .titleItem {
    top: 2px;
    font-size: 14px;
  }
  .ourTeamHome .wrapTextItem .position {
    margin-bottom: 10px;
  }
}
@media (min-width: 1700px) {
  .ourTeamHome .wrapTextItem .titleItem,
.ourTeamHome .wrapTextItem .position {
    font-size: 16px;
  }
  .ourTeamHome .wrapTextItem .emailItem,
.ourTeamHome .wrapTextItem .phoneItem {
    font-size: 12px;
  }
}
@media (max-width: 1220px) and (min-width: 576px) {
  .ourTeamHome .listItem .colItem {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 1220px) {
  .ourTeamHome .listItem .rowList {
    margin: 0 -7.5px;
  }
  .ourTeamHome .listItem .colItem {
    padding: 0 7.5px;
    margin-top: 15px;
  }
}
@media (max-width: 575px) {
  .ourTeamHome .contentItem .wrapBtnSeeMore {
    display: none;
  }
  .ourTeamHome .listItem .wrapBtnSeeMore {
    display: table;
    margin: 15px auto auto auto;
  }
  .ourTeamHome .showTextItem {
    padding: 5px 15px;
    margin-top: -30px;
  }
  .ourTeamHome .wrapTextItem {
    padding: 0 15px;
  }
  .ourTeamHome .wrapTextItem .titleItem {
    font-size: 14px;
    top: 3px;
  }
  .ourTeamHome .wrapTextItem .position {
    font-size: 12px;
  }
  .ourTeamHome .wrapTextItem .emailItem,
.ourTeamHome .wrapTextItem .phoneItem {
    font-size: 12px;
  }
  .ourTeamHome .wrapTextItem svg {
    width: 12px;
    height: 12px;
  }
}
#section-quote.testimonials .container-pe-quote {
  width: 100%;
  left: 0;
  top: 90px;
  z-index: 1;
}
#section-quote.testimonials .container-pe-quote .pp-quote:after {
  display: none;
}
#section-quote.testimonials .container-pe-quote .pp-quote .wrapImgResize,
#section-quote.testimonials .container-pe-quote .pp-quote .wrapImg {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
#section-quote.testimonials .container-pe-quote .pp-quote .wrapImg {
  border: 3px solid #fff;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
#section-quote.testimonials .container-pe-quote .pp-quote.active .wrapImg, #section-quote.testimonials .container-pe-quote .pp-quote:hover .wrapImg {
  border-color: #452189;
}
#section-quote.testimonials .wrapSlideItem {
  max-width: 1024px;
  padding: 0 15px;
  margin: 30px auto auto auto;
  position: relative;
  z-index: 2;
}
#section-quote.testimonials .slideItem .contentSlide {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  opacity: 0;
  filter: alpha(opacity=0);
  transform: translate(0, 30px) rotateX(-70deg) scale(0.9);
  -webkit-transform: translate(0, 30px) rotateX(-70deg) scale(0.9);
  -moz-transform: translate(0, 30px) rotateX(-70deg) scale(0.9);
  -ms-transform: translate(0, 30px) rotateX(-70deg) scale(0.9);
  -o-transform: translate(0, 30px) rotateX(-70deg) scale(0.9);
}
#section-quote.testimonials .slideItem .wrapInfo {
  margin: 30px auto auto auto;
  display: table;
}
#section-quote.testimonials .slideItem .job,
#section-quote.testimonials .slideItem .titleItem {
  margin: 0;
}
#section-quote.testimonials .slideItem .wrapImgResize,
#section-quote.testimonials .slideItem .contentImg {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
#section-quote.testimonials .slideItem .wrapImg,
#section-quote.testimonials .slideItem .wrapText {
  display: table-cell;
  vertical-align: middle;
}
#section-quote.testimonials .slideItem .wrapImg {
  width: 80px;
}
#section-quote.testimonials .slideItem .contentImg {
  border: 5px solid #fff;
}
#section-quote.testimonials .slideItem .wrapText {
  text-align: left;
  padding-left: 10px;
}
#section-quote.testimonials .slideItem .wrapTextItem {
  line-height: 1.8;
}
#section-quote.testimonials .slideItem.slick-active .contentSlide {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translate(0, 0) rotateX(0deg) scale(1);
  -webkit-transform: translate(0, 0) rotateX(0deg) scale(1);
  -moz-transform: translate(0, 0) rotateX(0deg) scale(1);
  -ms-transform: translate(0, 0) rotateX(0deg) scale(1);
  -o-transform: translate(0, 0) rotateX(0deg) scale(1);
}

@media (max-width: 1500px) {
  #section-quote.testimonials .wrapSlideItem {
    max-width: 575px;
  }
}
@media (max-width: 1220px) {
  #section-quote.testimonials .container-pe-quote {
    display: none;
  }
  #section-quote.testimonials .wrapSlideItem {
    max-width: 100%;
    margin-top: 15px;
  }
  #section-quote.testimonials .slideItem .wrapInfo {
    margin-top: 15px;
  }
}
.NewsHome .contentItem {
  position: relative;
}
.NewsHome .colItem {
  margin-top: 30px;
}
.NewsHome .colItem .contentCol {
  height: 100%;
  background-color: #fff;
  text-align: center;
}
.NewsHome .colItem .wrapImg {
  position: relative;
}
.NewsHome .colItem .dateCreate {
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
}
.NewsHome .colItem .dateCreate .getFullYear,
.NewsHome .colItem .dateCreate .getMonth,
.NewsHome .colItem .dateCreate .getDate {
  margin: 0;
  font-weight: 700;
}
.NewsHome .colItem .dateCreate .getDate {
  display: block;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 900;
}
.NewsHome .colItem .dateCreate .getFullYear,
.NewsHome .colItem .dateCreate .getMonth {
  display: inline-block;
}
.NewsHome .colItem .wrapTextItem {
  padding: 15px;
}
.NewsHome .colItem .views {
  margin-top: 10px;
  margin-bottom: 0;
  color: #616161;
  font-size: 16px;
  display: inline-block;
}
.NewsHome .colItem .views svg {
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 5px;
  transform: translate(0, -1px);
  -webkit-transform: translate(0, -1px);
  -moz-transform: translate(0, -1px);
  -ms-transform: translate(0, -1px);
  -o-transform: translate(0, -1px);
  color: #452189;
}
.NewsHome .colItem .author {
  padding-right: 30px;
  position: relative;
}
.NewsHome .colItem .author::after {
  content: "";
  background-color: #616161;
  height: 16px;
  width: 1px;
  position: absolute;
  top: 3px;
  right: 15px;
}
.NewsHome .colItem .titleItem {
  margin: 15px 0 0 0;
}
.NewsHome .colItem .linkItem {
  font-size: 18px;
  line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 55px;
  min-height: 55px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.NewsHome .colItem .linkItem:hover {
  color: #452189;
}
.NewsHome .colItem .sumary {
  margin: 8px 0 0 0;
  color: #616161;
  line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 84px;
  min-height: 84px;
}
.NewsHome .colItem .wrapBtnDetail {
  margin-top: 20px;
}
.NewsHome .colItem .wrapBtnDetail a {
  padding: 8px 15px;
}

@media (min-width: 576px) {
  .NewsHome .wrapBtnSeeMore {
    position: absolute;
    top: 17px;
    right: 0;
  }
}
@media (min-width: 992px) {
  .NewsHome .wrapBtnSeeMore {
    top: 25px;
  }
}
@media (min-width: 1221px) {
  .NewsHome .wrapBtnSeeMore {
    top: 45px;
  }
}
@media (max-width: 1220px) {
  .NewsHome .rowList {
    margin: 0 -7.5px;
  }
  .NewsHome .colItem {
    margin-top: 15px;
    padding: 0 7.5px;
  }
  .NewsHome .colItem .wrapTextItem {
    padding: 15px;
  }
  .NewsHome .colItem .linkItem {
    font-size: 16px;
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 52px;
    min-height: 52px;
  }
  .NewsHome .colItem .author,
.NewsHome .colItem .views {
    display: block;
    font-size: 14px;
  }
  .NewsHome .colItem .author {
    padding-right: 0;
  }
  .NewsHome .colItem .author::after {
    display: none;
  }
  .NewsHome .colItem .dateCreate {
    font-size: 10px;
  }
  .NewsHome .colItem .dateCreate .getDate {
    display: block;
    font-size: 34px;
  }
  .NewsHome .colItem .sumary {
    font-size: 15px;
    line-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 72px;
    min-height: 72px;
  }
  .NewsHome .colItem .wrapBtnDetail,
.NewsHome .colItem .sumary,
.NewsHome .colItem .titleItem {
    margin-top: 10px;
  }
  .NewsHome .colItem .wrapBtnDetail a {
    padding: 8px 15px;
    font-size: 14px;
  }
  .NewsHome .colItem .wrapBtnDetail svg {
    width: 15px;
    height: auto;
  }
}
@media (max-width: 575px) {
  .NewsHome .colItem .linkItem {
    font-size: 18px;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 84px;
    min-height: unset;
  }
  .NewsHome .colItem .sumary {
    min-height: unset;
  }
  .NewsHome .wrapBtnSeeMore {
    text-align: center;
    margin-top: 15px;
  }
}
.wrapPartners .wrapSlideItem {
  margin: 0 -15px;
}
.wrapPartners .slideItem {
  padding: 0 15px;
  margin-top: 7px;
}
.wrapPartners .slideItem .wrapImg {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.wrapPartners .slideItem .wrapImg:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

@media (max-width: 1220px) {
  .wrapPartners .wrapSlideItem {
    margin: 0 -7.5px;
  }
  .wrapPartners .slideItem {
    padding: 0 7.5px;
  }
}