@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1520px;
  }
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

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

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

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

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

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

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

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

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

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

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

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

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

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

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

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

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

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

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

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

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

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

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

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

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

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

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

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

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

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

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

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

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

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) 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 {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

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

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

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

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

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

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

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

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

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

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

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/*----------------------------------------------
    # All Animation style here
----------------------------------------------*/

//>>>>> Video Animation Start <<<<<//
@-webkit-keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

.ripple-effect {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #F3E7E0;
    border: 1px solid $white;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgb(255, 238, 211);
    box-shadow: 0 0 0 0 rgb(255, 217, 196);
    animation: rippleOne 2s infinite;
    .playerImg {
        width: 19px;
        height: 24px;
    }
}

//>>>>> Video Animation End <<<<<//
/*img-animation**********************/

.img-custom-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-right {
    0% {
        transform: translateX(5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes move-directions {
    0% {
        transform: translateX(0) translateY(0); // Start position
    }
    33% {
        transform: translateX(10px); // Move to the right
    }
    66% {
        transform: translateY(-10px); // Move to the top
    }
    100% {
        transform: translateY(10px); // Move to the bottom
    }
}

@keyframes zoom-in-out {
    0% {
        transform: scale(1); // Normal size
    }
    50% {
        transform: scale(1.2); // Zoom in
    }
    100% {
        transform: scale(1); // Zoom out back to normal size
    }
}

//>>>>> Preloader Animation Start <<<<<//
@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

//>>>>> Preloader Animation Start <<<<<//
@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

//>>>>> Preloader Animation End <<<<<//
//animation
@keyframes rounded {
    50% {
        transform: rotate(20deg);
    }
}

.cir36 {
    animation: cir36 20s linear infinite;
    -webkit-animation: cir36 20s linear infinite;
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(-0px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounce-x {
    -webkit-animation: bounce-x 7s infinite linear;
    animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes rotated2 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(-50%);
    }
}

// This is for Progress bar animation also has a js code 
@keyframes animate-positive {
    0% {
        width: 0;
    }
    100% {
        width: var(--progress-width);
    }
}

.reveal {
    position: relative;
    display: -ms-inline-flexbox;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    display: inline-block;
    -o-object-fit: cover;
    object-fit: cover;
    transform-origin: left;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

/*------------------- 3.10. Animation -------------------*/

.ripple-animation,
.play-btn:after,
.play-btn:before {
    animation-duration: var(--ripple-ani-duration);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-name: ripple;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    30% {
        opacity: 0.4;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes ripple2 {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    30% {
        opacity: 0.4;
    }
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

%ripple-animation {
    animation-duration: var(--ripple-ani-duration, 3s);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-name: ripple2;
}

.wave-anim {
    width: 105px;
    height: 69px;
    background-repeat: repeat;
    background-size: auto;
    animation: wave 70s linear infinite;
}

@keyframes wave {
    0% {
        background-position: top left;
    }
    100% {
        background-position: top left -2000px;
    }
}

.fancy-animation {
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    }
}

.movingX {
    animation: movingX 8s linear infinite;
}

@keyframes movingX {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50px);
    }
    100% {
        transform: translateX(0);
    }
}

.movingCar {
    animation: movingCar 25s linear infinite;
}

@keyframes movingCar {
    0% {
        transform: translateX(0) rotateY(0deg);
    }
    50% {
        transform: translateX(calc(-100vw + 108%));
    }
    51% {
        transform: translateX(calc(-100vw + 108%)) rotateY(180deg);
    }
    100% {
        transform: translateX(0) rotateY(180deg);
    }
}

.moving {
    animation: moving 8s linear infinite;
}

@keyframes moving {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-50px);
    }
    100% {
        transform: translateX(0);
    }
}

.moving2 {
    animation: moving2 8s linear infinite;
}

@keyframes moving2 {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

.moving3 {
    animation: moving3 8s linear infinite;
}

@keyframes moving3 {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0);
    }
}

.jump {
    animation: jumpAni 7s linear infinite;
}

@keyframes jumpAni {
    0% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0);
    }
}

.jump-reverse {
    animation: jumpReverseAni 7s linear infinite;
}

@keyframes jumpReverseAni {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(30px);
    }
    100% {
        transform: translateY(0);
    }
}

.spin {
    animation: spin 10s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.bg-color-ani,
.color-animate {
    animation: bgColor 6s linear infinite;
}

@keyframes bgColor {
    0% {
        background-color: #F2BA4C;
    }
    25% {
        background-color: #81F24C;
    }
    50% {
        background-color: #41F27D;
    }
    75% {
        background-color: #0500FF;
    }
    100% {
        background-color: #F2BA4C;
    }
}

@keyframes animate-positive {
    0% {
        width: 0;
    }
}

.fadein,
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
    opacity: 0;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-duration: 1.3s;
    animation-delay: 0.3s;
    animation-name: var(--animation-name);
}

.swiper-slide-active .fadein {
    --animation-name: fadein;
}

.swiper-slide-active .scalein {
    --animation-name: scalein;
}

.swiper-slide-active .slidetopleft {
    --animation-name: slidetopleft;
}

.swiper-slide-active .slidebottomright {
    --animation-name: slidebottomright;
}

.swiper-slide-active .slideinleft {
    --animation-name: slideinleft;
}

.swiper-slide-active .slideinright {
    --animation-name: slideinright;
}

.swiper-slide-active .slideinup {
    --animation-name: slideinup;
}

.swiper-slide-active .slideindown {
    --animation-name: slideindown;
}

.swiper-slide-active .rollinleft {
    --animation-name: rollinleft;
}

.swiper-slide-active .rollinright {
    --animation-name: rollinright;
}

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

@keyframes scalein {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.3);
    }
}

@keyframes slideinup {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideinright {
    0% {
        opacity: 0;
        transform: translateX(180px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideindown {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideinleft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slidebottomright {
    0% {
        opacity: 0;
        transform: translateX(120px) translateY(120px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slidetopleft {
    0% {
        opacity: 0;
        transform: translateX(-100px) translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

.spin2 {
    animation: spin2 10s linear infinite;
}

@keyframes spin2 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(-360deg);
    }
}

/*animation bubble****************/

.animation-bubble {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.animation-bubble div[class^=bubble-] {
    height: 1px;
    width: 1px;
    position: absolute;
    background: url(../img/shape/star.html) no-repeat center center;
    background-size: cover;
    border-radius: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

@media (max-width: 1024px) {
    .animation-bubble> :nth-child(even) {
        display: none;
    }
}

.bubble-1 {
    bottom: -5px;
    left: 68%;
    animation: bubble-animation 4.5s infinite ease-in -6.57s;
}

.bubble-2 {
    bottom: -71px;
    left: 97%;
    animation: bubble-animation 4.5s infinite ease-in -5.07s;
}

.bubble-3 {
    bottom: -71px;
    left: 43%;
    animation: bubble-animation 4.5s infinite ease-in -6.73s;
}

.bubble-4 {
    bottom: -3.8px;
    left: 82%;
    animation: bubble-animation 4.5s infinite ease-in -4.04s;
}

.bubble-5 {
    bottom: -73.4px;
    left: 29%;
    animation: bubble-animation 4.5s infinite ease-in -3.11s;
}

.bubble-6 {
    bottom: -71px;
    left: 41%;
    animation: bubble-animation 4.5s infinite ease-in -5.95s;
}

.bubble-7 {
    bottom: -79.4px;
    left: 14%;
    animation: bubble-animation 4.5s infinite ease-in -3.68s;
}

.bubble-8 {
    bottom: -115.4px;
    left: 90%;
    animation: bubble-animation 4.5s infinite ease-in -3.89s;
}

.bubble-9 {
    bottom: -44.6px;
    left: 33%;
    animation: bubble-animation 4.5s infinite ease-in -1.09s;
}

.bubble-10 {
    bottom: -6.2px;
    left: 59%;
    animation: bubble-animation 4.5s infinite ease-in -0.96s;
}

@keyframes bubble-animation {
    0% {
        transform: translate3d(-50%, 0, 0);
        height: 1px;
        width: 1px;
    }
    100% {
        transform: translate3d(-50%, -280px, 0);
        height: 30px;
        width: 30px;
    }
}

@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes icon-anim {
    0% {
        top: 26px;
        right: 90px;
    }
    25% {
        top: 86px;
        right: 110px;
    }
    100% {
        top: 26px;
        right: 90px;
    }
}

.img-shine {
	position: relative; 

	&::before{
		background-color: rgba(255,255,255,.3);
		bottom: 0;
		content: "";
		left: 50%;
		position: absolute;
		right: 51%;
		top: 0;
		opacity: 1;
		pointer-events: none;
		transition: all 500ms linear;
		z-index: 22;
	}
	&:hover { 
            &::before {
                left: 0;
                right: 0;
                opacity: 0;
                transition: all 500ms linear;
            } 
    }
}

.reveal {
    position: relative;
    display: -ms-inline-flexbox;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    display: inline-block;
    -o-object-fit: cover;
    object-fit: cover;
    transform-origin: left;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

// Splitting text animation area start here ***
.splt-txt {
    .whitespace {
        width: 8px;
    }
    &.animated {
        .char {
            -webkit-animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
            animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
            -webkit-animation-delay: calc(30ms * var(--char-index));
            animation-delay: calc(30ms * var(--char-index));
        }
    }
}


@mixin scale-animations {
    @keyframes scaleUp {
      0% {
        transform: scale(1);
      }
      100% {
        transform: scale(1.1);
      }
    }
  
    animation: scaleUp 0.5s ease-in-out forwards;
}

// animation: jump 48s infinite linear;

@keyframes jump {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40% {
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes jump2 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40% {
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}


// animation: scaleAnimation 2s ease-in-out infinite;

@keyframes scaleAnimation {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    40% {
      -webkit-transform: scale(0.5);
      transform: scale(0.5);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
@media (min-width: 992px) {
.mouse-cursor {
	position: fixed;
	left: 0;
	top: 0;
	pointer-events: none;
	border-radius: 50%;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	visibility: hidden;
}

.cursor-inner {
	width: 6px;
	height: 6px;
	z-index: 10000001;
	background-color: #FF5D32;
	-webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	-o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
	margin-left: -35px;
	margin-top: -35px;
	width: 70px;
	height: 70px;
	background-color: #FF5D32;
	opacity: 0.3;
}

.cursor-outer {
	margin-left: -12px;
	margin-top: -12px;
	width: 30px;
	height: 30px;
	border: 1px solid #FF5D32;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 10000000;
	opacity: 0.5;
	-webkit-transition: all 0.08s ease-out;
	-o-transition: all 0.08s ease-out;
	transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
	opacity: 0;
}
}
.tp-home #sp-main-body {
  padding: 0;
}
.gt-btn.style3 {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  border-radius: 999px;
  background: #3366FF;
  padding: 12px 30px;
}
.gt-btn.style3:hover {
	 color: #fff;
}
.gt-btn.style3::before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: #FF5D32;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.gt-btn.style3:hover::before {
  top: -96%;
}
.header-modules .btn-wrapper {
	margin-top: 3px;
}
#sp-slide-show h3 {
	font-size: 80px;
  font-style: normal;
}
#sp-slide-show h3 span {
	color: #168C83;
}
#sp-slide-show h3 span.btn-link {
  color: #fff;
  background-color: #168C83;
  text-decoration: none;
  font-size: 30px;
  padding: 15px 40px;
  border-radius: 30px;
}
#sp-slide-show h3 span.btn-link:hover {
  background-color:#3366ff;
}
#sp-about-us {
	background:#f6f7ef;
	padding: 20px 0;
}
#sp-about-us .about-thumb .thumb1 {
  position: relative;
  z-index: 3;
}
#sp-about-us .about-thumb {
  position: relative;
  margin-top: 25px;
}
#sp-about-us .about-thumb .shape {
  position: absolute;
  top: -25px;
  right: 55px;
  z-index: 1;
}
#sp-about-us .title-content .sub-title{
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 10px;
  color: #212529;	
}
#sp-about-us .about-content h4 {
  color: #252525;
  font-family: "Epilogue", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 29.28px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.about-content .content p {
	margin:0;
}
.about-content .about-contact-wrap {
  display: flex;
  gap: 45px;
}
.about-content .about-contact-wrap .contact-info {
  display: flex;
  gap: 15px;
}
#sp-about-us .title-content h3 {
	font-size: 48px;
  font-weight: 700;
  line-height: 122%;
  color: #252525;
  letter-spacing: -1.8px;
  margin: 0px;
  padding: 0;
}
#sp-intro {
	padding:40px 0;
}
#sp-intro .sp-module-title {
	text-align:center;
	max-width: 540px;
	margin: 0 auto;
}
#sp-intro .sp-module-title .title-left {
	display: block;
	font-family: "Jost", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 10px;
  color:#212529;
  position: relative;
}
#sp-intro .sp-module-title .title-left::before {
  position: absolute;
  content: "";
  background-image: url(../images/subTitle1_1.png);
  width: 20px;
  height: 20px;
  left: 31%;
  top: 5px;
}
#sp-intro .sp-module-title .title-right {
	font-size: 48px;
  font-weight: 700;
  line-height: 122%;
  color:#252525;
  letter-spacing: -1.8px;
  margin: 0px;
  padding: 0;
}
#sp-intro .jt-inner {
  background-color:#fff;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid #E9E9E9;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}
#sp-intro .jt-inner .jt-imagecover {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #F6F8F0;
  text-align: center;
  line-height: 60px;
  margin-bottom: 35px !important;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#sp-intro .jt-inner:hover .jt-imagecover {
  background: #FF5D32;
  transform: rotateY(360deg);
  transition: all 0.5s ease-out;
}
#sp-intro .owl-carousel .owl-item img {
  display: initial;
}
#sp-intro .jtcs_item_wrapper .jt-title {
	font-size: 24px;
  font-weight: 600;
  line-height: 122%;
  margin-bottom: 10px;
}
#sp-intro .owl-carousel .owl-stage-outer {
  overflow: inherit;
}
#sp-slider-link {
	background:#FF5D32;
    padding: 8px 0;
}
#sp-slider-link .animated-scroller {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  text-wrap: nowrap;
  gap: 80px;
}

#sp-slider-link a{
  color: #252525;
  font-family: Epilogue;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 58.56px;
}
#sp-slider-link p {
	margin:0;
}
#sp-slider-link p:nth-child(2n+1) a{
	-webkit-text-stroke-color: var(--Gray-900,#252525);
  font-family: Epilogue,sans-serif;
  -webkit-text-stroke-width: 1px;
  font-weight: 700;
  color: transparent;
  font-size: 48px;
  font-style: normal;
  line-height: 58.56px;
}
#sp-pro-form {
	background: #f6f7ef;
  padding: 20px 0 40px;
}
#sp-pro-form .sp-module-title {
	font-size: 48px;
  font-weight: 700;
  line-height: 122%;
  color:#252525;
  letter-spacing: -1.8px;
  margin: 0px 0 40px;
  padding: 0;
}
#sp-pro-form .sp-module-title .title-right {
	color:#168C83;
}
#sp-pro-form input[type="text"] {
  margin-bottom: 20px;
  padding: 16px 30px;
  border-radius: 999px;
  width: 100%;
  background: #fff;
  border: 1px solid #fff;
  color: #444;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
#sp-pro-form .form-select {
  margin-bottom: 20px;
  padding: 16px 30px;
  border-radius: 999px;
  width: 100%;
  height: auto;
  border: 1px solid #fff;
  color: #444;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
#sp-pro-form .rsform-type-submitbutton {
	position: relative;
}
#sp-pro-form .rsform-submit-button  {
 background: none;
  border: none;
  position: absolute;
  right: 10px;
  top: -67px;
}

#sp-pro-form .rsform-submit-button::after {
  content: "\f1d8";
  position: relative;
  color: #252525;
  font-family: "Font Awesome 6 free";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.contact-info-items {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.contact-info-items .icon {
  width: 55px;
  height: 55px;
  background-color: #fff;
  text-align: center;
  line-height: 55px;
  border-radius: 999px;
  color: #252525;
}
.contact-info-items .content p {
  margin: 0;
  display: block;
  color:  #252525;
  font-family: Epilogue;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-top: 6px;
}
#sp-work {
	padding:40px 0;
}
#sp-work .sp-module-title {
	text-align:center;
	max-width: 540px;
	margin: 0 auto;
	margin-bottom: 80px;
}
#sp-work .sp-module-title .title-left {
	display: block;
	font-family: "Jost", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 10px;
  color:#212529;
  position: relative;
}
#sp-work .sp-module-title .title-left::before {
  position: absolute;
  content: "";
  background-image: url(../images/subTitle1_1.png);
  width: 20px;
  height: 20px;
  left: 31%;
  top: 5px;
}
#sp-work .sp-module-title .title-right {
	font-size: 48px;
  font-weight: 700;
  line-height: 122%;
  color:#252525;
  letter-spacing: -1.8px;
  margin: 0px;
  padding: 0;
}
#sp-work .p-relative {
  position: relative;
}
.tp-step-shape-1 {
  position: absolute;
  top: 30%;
  left: 22%;
  transform: translateY(-30%);
}
.tp-step-shape-2 {
  position: absolute;
  top: 30%;
  left: 48%;
  transform: translateY(-30%);
}
.tp-step-shape-3 {
  position: absolute;
  top: 30%;
  right: 22%;
  transform: translateY(-30%);
}
.tp-step-item-thumb {
	margin-bottom: 20px;
}
.tp-step-item-thumb img {
  border-radius: 50%;
  border: 15px solid #eaf4ec;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.tp-step-item:hover .tp-step-item-thumb img {
  border-color: #3366FF;
}
.tp-step-item-thumb span {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #1F2220;
  background-color: #fff;
}
.tp-step-item:hover .tp-step-item-thumb span {
  color: #fff;
  background-color: #168C83;
}
.tp-step-item-content p {
  line-height: 22px;
  color: #828282;
}
#sp-design {
  text-align: center;

}
#sp-bottom4 i {
	margin-right:10px;
	color: #FF5D32;
}

#sp-contact-intro {
	background: #f6f7ef;
   padding: 20px 0 ;
}
.tp-cta-6-wrapper {
  border-radius: 10px;
  padding: 32px 60px;
  background-color: #168C83;
}
.tp-cta-6-title {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1.44px;
  color: #fff;
}
.tp-cta-6-call a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.6px;
  color: #fff;
}
.tp-btn {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  display: inline-block;
  padding: 18px 40px 18px;
  color:#fff;
  background-color:#0F625B ;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.btn-text-flip span {
  position: relative;
  display: inline-block;
  padding: 0;
  transition: transform 0.5s;
  transform-origin: 50% 0;
  transform-style: preserve-3d;
}
.btn-text-flip span::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  content: attr(data-text);
  transition: color 0.5s;
  transform: rotateX(-90deg);
  transform-origin: 50% 0;
  text-align: center;
  color: #fff;
}
.btn-text-flip:hover span {
  transform: rotateX(90deg) translateY(-12px);
}
.tp-cta-6-btn {
	margin-right:20px;
}
#sp-feature-project {
	background: #f6f7ef;
   padding: 50px 0 ;
}
#sp-feature-project .sp-module-title {
	margin-bottom: 30px;
	
}
#sp-feature-project .sp-module-title .title-left {
	display: block;
	font-family: "Jost", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 10px;
  color:#212529;
  position: relative;
  padding-left:25px;
}
#sp-feature-project .sp-module-title .title-left::before {
  position: absolute;
  content: "";
  background-image: url(../images/subTitle1_1.png);
  width: 20px;
  height: 20px;
  left:0%;
  top: 5px;
}
#sp-feature-project .sp-module-title .title-right {
	font-size: 48px;
  font-weight: 700;
  line-height: 122%;
  color:#252525;
  letter-spacing: -1.8px;
  margin: 0px;
  padding: 0;
}
#sp-feature-project .main-thumb {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  animation-name: img-anim-left !important;
}
#sp-feature-project .main-thumb a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
#sp-feature-project .main-thumb img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  
}
#sp-feature-project .thumb-content {
  padding: 50px 15px ;
  border-radius: 20px;
  border: 1px solid #e9e9e9;
  background: #fff;
  max-width: 352px;
  margin: -80px auto auto;
  position: relative;
  text-align: center;
}
#sp-feature-project .thumb-content h5 {
	margin:0;
}
#sp-feature-project .thumb-content h5  a.jt-title{
  color: #252525;
  font-family: Epilogue,sans-serif;
  font-size: 24px;
  font-weight: 600;
  display: inline-block;
  line-height: 122%;
  -webkit-transition: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  -ms-transition: all 0.2s linear 0s;
  -o-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  -webkit-transform: scale(1,1);
  -moz-transform: scale(1,1);
  -ms-transform: scale(1,1);
  -o-transform: scale(1,1);
  transform: scale(1,1);
}
#sp-feature-project .jt-inner:hover .thumb-content h5  a.jt-title {
  color: #FF5D32;
  transition: all 0.2s linear 0s;
  -webkit-transform: scale(1.2,1.2);
  -moz-transform: scale(1.2,1.2);
  -ms-transform: scale(1.2,1.2);
  -o-transform: scale(1.2,1.2);
  transform: scale(1.2,1.2);
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
#sp-feature-project .jtcs_more_cat {
  position: absolute;
  right: 0;
  top: 27px;
}
#sp-feature-project .sp-module   {
  position: relative;
}
#sp-feature-project .jtcs_more_cat a {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  border-radius: 999px;
  background: #FF5D32;
  padding: 12px 30px;
  text-decoration: none;
}
#sp-feature-project .jtcs_more_cat a::before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: #3366FF;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
#sp-feature-project .jtcs_more_cat a:hover::before {
  top: -96%;
}
#sp-feature-project .jtcs_more_cat a::after {
  content: "\f101";
  position: relative;
  color: #fff;
  font-family: "Font Awesome 6 free";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
section#sp-contact-form {
	background:#f6f7ef;
	padding:40px 0 80px;
	color:#fff;
	position: relative;
}
section#sp-contact-form::after {

  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left:0;
  height: 30%;
  background:#fff;
  width:100%;
}
#sp-contact-form .container-inner {
  position: relative;
  z-index: 1;
}
#sp-contact-form .sp-module {
	padding:40px 40px;
  border-radius: 20px;
  background-color: #040404;
}
#sp-contact-form .rsform  h2 {
	margin-bottom:40px;
  text-align: center;
}
#sp-contact-form .form-select {
  padding: 16px 30px;
  width: 100%;
  border-radius: 999px;
  background-color: #031A18;
  border: none;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  height: auto;
}
#sp-contact-form .form-control {
  padding: 16px 30px;
  width: 100%;
  border-radius: 999px;
  background-color: #031A18;
  border: none;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  height: auto;
}
#sp-contact-form input::placeholder {
  color: #fff;

}
#sp-contact-form .rsform-type-freetext h3 {
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	margin: 30px 0;
}
#sp-contact-form  .rsform-type-freetext {
	margin: 30px 0;
}
#sp-contact-form .rsform-type-submitbutton .formControls {
	text-align: center;
	margin-top: 20px;
}
#sp-contact-form .rsform-submit-button {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  border-radius: 999px;
  background: #FF5D32;
  padding: 12px 30px;
  text-decoration: none;
  border: none;
}
#sp-contact-form .rsform-submit-button::before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: #3366FF;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
#sp-contact-form .rsform-submit-button:hover::before {
  top: -96%;
}
#sp-contact-form .rsform-submit-button::after {
  content: "\f101";
  position: relative;
  color: #fff;
  font-family: "Font Awesome 6 free";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
#sp-contact-form .rsform-type-button .formControls {
	text-align: center;
	margin-top:30px;
}
#sp-contact-form .rsform-button {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  border-radius: 999px;
  background: #FF5D32;
  padding: 12px 30px;
  text-decoration: none;
  border: none;
}
#sp-contact-form .rsform-button::before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: #3366FF;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
#sp-contact-form .rsform-button:hover::before {
  top: -96%;
}
section#sp-panner {
	padding:80px 30px 30px;
	position: relative;
}

.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  border-radius: 10px;
  padding: 19px 11px 19px 11px;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item {
	padding: 0px 9px;
	margin-bottom: 5px;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a {
	position: relative;
	font-size: 16px;
    line-height: 30px;
	font-weight: 500;
	transition: all 0.4s ease-in-out;
	padding:0;
	position: relative;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a:hover {
  padding-left: 27px;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a::before {
  content: "\f83e";
  position: absolute;
  font-family: "Font Awesome 6 free";
  top: 7px;
  left: 0px;
  text-align: center;
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  color: #FF5D32;
  font-weight: 900;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a:hover::before {
  visibility: visible;
  opacity: 1;
  left: 0;
}
.sp-megamenu-parent > li.active > a {
	position: relative;
}
.sp-megamenu-parent > li > a::before {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  background: #3366FF;
  width: 0%;
  margin-top: 30px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  z-index: 5;
  bottom: 20px;
}
.sp-megamenu-parent > li.active > a::before,.sp-megamenu-parent > li > a:hover::before {
  width: 100%;
}
@media (min-width: 1281px) {
#sp-header {
  position: absolute;
  left: 0;
  right: 0;
  background: none;
  box-shadow: none;
  top: 90px;
}
}
#sp-header .container-inner {
  border-radius: 120px;
  background: #fff;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 0px 15px 0px 30px;
}
#sp-header.header-sticky {
	background:#fff;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
}
#sp-header.header-sticky .container-inner {
	box-shadow: none;
}
#sppb-addon-7ca568a1-3981-4636-9b46-04705e159f9b .sppb-addon-openstreetmap {
  border-radius: 20px;
}
.contract-details {
  border-radius: 20px;
  background: #f6f8f0;
  padding: 58px 40px;
}
.contract-details h4 {
  color: #525252;
  font-family: Epilogue,sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 20px;
}
.contract-details p {
  color: #737373;
  margin-bottom: 60px;
  font-size: 18px;
  line-height: 28px;
}
.contract-details .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 41px;
  column-gap: 79px;
}
.contract-details .content .content-item {
  display: flex;
  gap: 20px;
}
 .contract-details .content .content-item span {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #dee7de;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  color: #FF5D32;
}
.contract-details .content .content-item .contact-inner h4 {
  margin-bottom: 10px;
}
.contract-details .content .content-item .contact-inner a {
  color: #737373;
  font-family: Jost,sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  display: block;
  margin-bottom: 0;
}
.contract-details .content .content-item .contact-inner p {
  color: #737373;
  font-family: Jost,sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  display: block;
  margin-bottom: 0;
}
.contact-left-items {
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #e9e9e9;
}
.thumb img {
  border-radius: 20px;
}
.contact-form .form-control {
	margin-bottom: 20px;
  color: #252525;
  padding: 16px 30px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e9e9e9;
  color: #444;
  font-family: Jost,sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.contact-form .btn-primary.validate {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  border-radius: 999px;
  background: #168C83 ;
  padding: 12px 30px;
  text-decoration: none;
  border: none;
}
.contact-form .btn-primary.validate::before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: #3366FF;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.contact-form .btn-primary.validate:hover::before {
  top: -96%;
}
.contact-form .btn-primary.validate::after {
  content: "\f101";
  position: relative;
  color: #fff;
  font-family: "Font Awesome 6 free";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.alert.alert-error {
  color: #fff;
  background-color: #168C83;
  border-color: #168C83;
}
#sp-counter {
	background:#168C83 ;
	padding:30px 0;
	color: #fff;
}
#sp-counter .title-content .sub-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  font-family: Jost,sans-serif;
  font-style: normal;
  display: inline-block;
}
#sp-counter .title-content h3 {
	font-family: Epilogue,sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1.8px;
}
#sp-counter .title-content h3 span.title-yellow{
  color: #FF5D32;
  display: block;
}
#sp-counter .sppb-addon-single-image-container {
  margin-left: auto;
  margin-right: auto;
  width: 85px;
  height: 85px;
  line-height: 85px;
  border-radius: 60px;
  background: rgba(255,255,255,.1);
  text-align: center;	
}
#sp-counter .sppb-column:hover .sppb-addon-single-image-container{
  transform: rotateY(360deg);
  transition: .5s ease-out;
}
#sp-counter .sppb-animated-number-title {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 17px;
}
#sp-counter .sppb-animated-number {
  text-align: center;
  font-family: Epilogue,sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 58.56px;
}
#box-counter .sppb-row-column:nth-child(1), #box-counter .sppb-row-column:nth-child(2), #box-counter .sppb-row-column:nth-child(3)  {
	border-right: 2px solid #e9e9e9;
}
#sp-work-about {
	padding:40px 0;
}
#sp-work-about .sp-module-title {
	text-align:center;
	max-width: 540px;
	margin: 0 auto;
	margin-bottom: 80px;
}
#sp-work-about .sp-module-title .title-left {
	display: block;
	font-family: "Jost", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 10px;
  color:#212529;
  position: relative;
}
#sp-work-about .sp-module-title .title-left::before {
  position: absolute;
  content: "";
  background-image: url(../images/subTitle1_1.png);
  width: 20px;
  height: 20px;
  left: 31%;
  top: 5px;
}
#sp-work-about .sp-module-title .title-right {
	font-size: 48px;
  font-weight: 700;
  line-height: 122%;
  color:#252525;
  letter-spacing: -1.8px;
  margin: 0px;
  padding: 0;
}
#sp-work-about .p-relative {
  position: relative;
}
.tp-service-5-ptb {
	padding-bottom:50px;
}
.tp-about-thumb-wrap  {
  position: relative;
}
.tp-about-icon {
  right: 100px;
  top: 60px;
  z-index: 2;
  position: absolute;
}
.tp-about-icon-space {
  border-radius: 50%;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 20px 30px 0 rgba(3, 4, 28, 0.1);
}
.tp-rotate-infinite {
  -webkit-animation: rotate-infinite 15s linear infinite;
  animation: rotate-infinite 15s linear infinite;
}
.position-middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}

.tp-about-thumb img {
  border-radius: 10px;
}
.img-custom-anim-top {
  padding-right: 160px;
}
.tp-about-thumb-2.img-custom-anim-top {
  bottom: 40px;
  right: 50px;
  position: absolute;
  padding: 0;
}
.tp-about-thumb-2 img {
  border-radius: 10px;
}
.tp-about-breadcrumb-ptb .tp-btn {
	background:#3366FF;
}
.tp-section-title-pre {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  display: inline-block;
  color: #FF5D32;
}
.tp-section-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2.4px;
  color: #252525;
}
.tp-about-heading {
	margin-bottom: 35px;
}
.tp-about-list {
  margin-bottom: 60px;
}
.tp-about-list ul {
  display: block;
  margin: 0px;
  padding: 0px;
}
.tp-about-list ul li {
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}
.tp-about-list ul li span {
  display: inline-block;
  height: 25px;
  width: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
  margin-right: 12px;
  background-color: #168C83;
  box-shadow: 0px 1px 2px rgba(197, 188, 237, 0.6);
  color: #fff;
}
.tp-service-5-item-icon i {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 80px;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #FF5D32;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(23, 22, 49, 0.1);
  font-size: 36px;
}
.tp-service-5-item:hover .tp-service-5-item-icon i {
  color: #fff;
  background-color: #FF5D32;
}
.tp-service-5-item-title {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.36px;
}
.tp-service-5-item-icon {
  margin-right: 20px;
}
.sp-simpleportfolio .sp-simpleportfolio-img , .sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay-wrapper {
	border-radius: 20px;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns {
	display:none;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-vertical-middle > div {
  vertical-align: bottom;
  padding-left: 30px;
  padding-bottom: 30px;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay-wrapper .sp-simpleportfolio-overlay {
	text-align: left;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-vertical-middle .sp-simpleportfolio-tags {
  color: #fff;
  background: #3366FF;
  border-radius: 5px 5px 0 0;
  display: inline-block;
  padding: 5px 10px 6px 20px;
  font-size: 18px;
  line-height: 28px;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-vertical-middle > div .sp-simpleportfolio-title a{
	color: #241442;
  background: #fff;
  padding: 10px 15px 10px 25px;
  border-radius: 0 5px 5px;
  font-family: Epilogue,sans-serif;
  font-size: 24px;
  font-weight: 600;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-vertical-middle > div .sp-simpleportfolio-title a:hover {
	color: #FF5D32;
}
.sppb-panel-custom .sppb-panel-heading .sppb-panel-title .number {
  margin-right: 20px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 43px;
  text-align: center;
  background-color: #FF5D32;
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.sppb-panel-custom .sppb-panel-heading .sppb-panel-title {
	color: #252525;
  font-family: Epilogue,sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.sppb-accordion-icon-position-right .sppb-accordion-icon-wrap i {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  background-color: #f6f8f0;
  color: #252525;
  font-size: 16px;
  display: inline-block;
  margin-top: 4px;
}
.sppb-panel.sppb-panel-custom {
  padding: 13px 20px 13px 20px;
}
.sppb-panel-custom .sppb-panel-body {
	border: none !important;
}
.service-card {
  border-radius: 20px;
  border: 1px solid #D4DCED;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.service-card .content {
	padding: 30px ;
  text-align: center;
}
.service-details-wrapper.style1 .content .thumb-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.single-sidebar-widget , .single-contact-widget ,.single-download-widget {
  padding: 20px;
  border-radius: 20px;
  background-color: #F6F8F0;
  margin-bottom: 30px;
}
.download-box {
  padding: 20px 30px;
  border-radius: 20px;
  border: 1px solid #004540;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.checklist-boxes .box {
  margin-bottom: 20px;
}
.download-box .download {
  display: flex;
  align-items: center;
  gap: 15px;
}
.checklist-boxes .box a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background-color: #fff;
  padding: 10px 30px;
}
.addtocart-button svg {
	color:#fff;
}
.vm-addtocart-button-wrapper .btn.btn-primary {
  margin:0;
  border-radius:50px;
  padding:10px 22px;
  display: flex;
  align-items: center;
  gap:8px;
  border:0px;
  font-size: 16px;
  justify-content: center;
  background:#FF5D32;
}

.vm-addtocart-button-wrapper .btn.btn-primary:hover {
	background:#168c83;
}
.sppb-panel-custom .sppb-panel-heading {
  border-bottom:1px solid #eeee;
}
.category-view .product-container {
  border:1px solid #eee;
  border-radius:10px;
  padding:30px 10px;
  position: relative;
}
.category-view .product-container:hover .vme-allbuttons-container.vme-is-list {
    opacity: 1;
    visibility: visible;
}
.vm-product-rating-container , .category-view .vm-product-s-desc , .category-view .quantity-box{
	display: none !important;
}
.category-view .vm-product-title a{
	color: #000;
	font-weight: 500;
	padding-top: 20px;
    display: block;
    min-height: 80px;
}
.category-view .vm-product-title a:hover {
	color: #FF5D32;
}
.category-view .product-price .vm-price-value {
  color: #000;
  font-weight: 500;
  display: block;
  text-align: center;
  font-size: 18px;
}
.category-view .vm-addtocart-button-wrapper  {
  display: flex;
  justify-content: center;
}
.vm-products-type-title , .vm-category-title {
  display: none;
}
.btn {
  margin:0;
  border-radius:50px;
  padding:10px 22px;
  border:0px;
  font-size: 16px;

}
#sp-left .cf_flt_wrapper {
  box-shadow: 0 0 .5rem rgba(17,17,17,.1);
  border-radius:.5rem;
  
  margin-bottom: 30px;
}
#sp-left .cf_flt_wrapper .cf_wrapper_inner {
	padding: 1.5rem;
}
#sp-left .cf_flt_header {
	font-size:16px;
	padding: 1.5rem;
	border-radius: .5rem .5rem 0 0;
	background: #f1f1f1;
	line-height: 1;
    font-weight: 600;
}
#sp-left .headexpand {
  float: right;
}
#sp-left .form-horizontal {
  display: flex;
  gap:10px;
  justify-content: center;
  align-items: center;
}
#sp-left .cf_wrapper_input_text_1 input[type="search"] {
  width: 100%;
}
#sp-left .cf_resetAll_link {
  border-radius:50px;
  padding:10px 22px;
  border:0px;
  font-size: 16px;
  background:#FF5D32;
  color: #fff;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#sp-left .cf_resetAll_link:hover {
	background:#168c83;
}
#sp-left .cf_filtering_slide_container {
  --track-height: 5px;
  --track-color_behind: #FF5D32;
  --track-color: #FF5D32;
  --knob-dimensions: 20px;
  --knob-background: #FF5D32;
  --knob-focus-color: #168c83;
}
.orderby-displaynumber {
  background:#f1f1f1;
  padding:10px 10px !important;
  border-radius:.5rem;
  border:none !important;
}
.productdetails-view .vm-page-title {
  font-size: 18px;
  font-weight: 500;
}
.vm-product-details-container .vm-price-value .PricesalesPrice {
  margin:0;
}
.product-price .vm-price-value, .vm-prices-info {
  align-items: start;
}
.box-caterogy {
	margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.btn-vme-round > span {
  line-height: 1;
  font-size: 14px;
}
.productdetails .btn-vme-round > span, .productdetails-view .btn-vme-round > span, .vm-productdetails .btn-vme-round > span, .vme-compare-buttons .btn-vme-round > span {
  font-size: 18px;
}
.vme-list-inline {
  margin:0;
  padding-top: 20px;
}
.btn-vme-round {
  color: #000;
  background:none;
}
.btn-vme-round > i {
  background:none;
  color: #fff;
}
.btn-vme-round:hover > i {
  background:none;
  color: #fff;
}
.vme-allbuttons-container.vme-is-list {
  margin: 0;
  top: 20px;
  bottom: auto;
  left: auto;
    right: 20px;
    flex-direction: column;
    align-items: self-end;
    row-gap: 1rem;
	position: absolute;
	z-index: 9;
	display: flex;
	opacity: 0;
    visibility: hidden;
	
	-webkit-transition:all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    transition:all 0.5s ease-out;
}
.vme-is-list .vme-list-inline > li {
  display: block;
  text-align: center;
  padding:0;
  width: 40px;
  height: 40px;
  border-radius:100%;
  background:#168c83;
  margin:3px 0;
  line-height: 40px;
}

.has-vme-tooltip:hover .vme-tooltip {
	transform: translateX(-70%);
}
.vme-is-list .vme-list-inline > li svg {
  color: #fff;
}
#sp-left .sp-module ul.cf_filters_list > li {
  padding:10px 0;
}
.cf_filters_list li .cf_sel_opt {
  font-weight: normal;
  font-size: 15px;
}
.cf_filters_list li .cf_option {
  font-size: 15px;
}
[data-rlta-element="container"][data-rlta-state="ready"][data-rlta-theme="neutral"][data-rlta-positioning="top"] > [data-rlta-element="button-list"] > [data-rlta-element="button"]:not([data-rlta-state="closed"]) {
  border:none;
  color: #000;
}
[data-rlta-element="container"][data-rlta-state="ready"][data-rlta-theme="neutral"][data-rlta-positioning="top"] > [data-rlta-element="button-list"] {
  margin-bottom: 0;
}
[data-rlta-element="container"][data-rlta-state="ready"][data-rlta-type="accordions"] > [data-rlta-element="button"] > [data-rlta-element="heading"], [data-rlta-element="container"][data-rlta-state="ready"][data-rlta-type="tabs"] > [data-rlta-element="button-list"] > [data-rlta-element="button"] > [data-rlta-element="heading"] {
    font-size: 34px;
  }
  [data-rlta-element="container"][data-rlta-state="ready"][data-rlta-theme="neutral"][data-rlta-positioning="top"] > [data-rlta-element="button-list"] > [data-rlta-element="button"] {
  
  background: none;
  border: none;
  box-shadow: none;
  color: #ababab;
}
[data-rlta-element="container"][data-rlta-state="ready"][data-rlta-theme="neutral"][data-rlta-type="tabs"] > [data-rlta-element="button-list"] > [data-rlta-element="button"]:hover {
  background: none;
  border: none;
  box-shadow: none;
  color: #000;
}
.related-products {
	padding:40px 0;
}
.related-products .category-view.vmxproduct .prod-row .product-box .browseImage {
  background:#fff;
}
.related-products h3.sp-module-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
  padding-bottom: 30px;
  text-align: center;
}
.related-products .category-view.vmxproduct .prod-row .product-box .browseImage {
  background:none;
  padding:0;
  border-radius:0px;
}
.related-products .category-view.vmxproduct .prod-row .product-box.style_1 {
  text-align: center;
  border-radius: 10px;
  box-shadow: none;
  padding:30px 10px;
  border: 1px solid #eee;
  position: relative;
}
.related-products .category-view.vmxproduct .prod-row .product-box .Title a {
  color: #000;
  font-weight: 500;
}
.related-products .category-view.vmxproduct .prod-row .product-box .Title a:hover {
  color: #FF5D32;
}
.related-products .category-view.vmxproduct .prod-row .product-box .Price {
	color: #000;
  font-weight: 500;
  font-size: 18px;
}
.related-products .category-view.vmxproduct .product-actions .addtocart-button {
  margin:0;
  border-radius:50px;
  padding:10px 22px;
  display: flex;
  align-items: center;
  gap:8px;
  border:0px;
  font-size: 16px;
  justify-content: center;
  background: #FF5D32;
}
.related-products .category-view.vmxproduct .product-actions .addtocart-button svg {
  color: #fff;
}
.related-products .category-view.vmxproduct .product-actions .addtocart-button:hover {
	background:#168c83;
}
.related-products .category-view.vmxproduct .vm-addtocart-button-col {
  width: 100%;
  flex:inherit;
  text-align: center;
  display: flex;
  justify-content: center;

}
.related-products .category-view.vmxproduct .prod-row .product-box.style_1 div.quick_btn {

  padding:10px 15px;
  border-radius:50px;
  display: flex;
  align-items: center;
  gap:8px;
  border:0px;
  font-size: 16px;
  justify-content: center;
  color: #fff;
}

.related-products .category-view.vmxproduct .prod-row .product-box.style_1:hover div.quick_btn {
    visibility: visible;
    opacity: 1;
	background:#000;
}
.related-products.category-view.vmxproduct .prod-row .product-box.style_1 div.quick_btn a {
	color: #fff;
	font-size: 14px;
	font-weight: normal;
}
.related-products .category-view.vmxproduct .prod-row .product-box.style_1:hover div.quick_btn a {
	color: #fff;
}
.related-products .category-view.vmxproduct .prod-row .product-box.style_1:hover .vme-allbuttons-container.vme-is-list {
    opacity: 1;
    visibility: visible;
}
.related-products .category-view.vmxproduct .prod-row .product-box .product-actions > div , .related-products .category-view.vmxproduct .product-actions .addtocart-bar
,.related-products .category-view.vmxproduct .prod-row .product-box.style_1 .product-actions .addtocart_button2{
  position: inherit;
}
.related-products .owl-carousel .owl-nav button.owl-next {
	right: -55px;
}
.related-products .owl-carousel .owl-nav button.owl-prev {
	left: -55px;
}
.related-products .owl-carousel .owl-nav button.owl-next, .related-products .owl-carousel .owl-nav button.owl-prev {
	height: 50px;
    width: 50px;
	border:1px solid #000;
    border-radius:100%;
	opacity: 1;
	background-image:none;
}
.related-products .owl-carousel .owl-nav .owl-prev.disabled , .related-products .owl-carousel .owl-nav .owl-next.disabled {
  opacity: 0.3;
  visibility: initial;
  background-image:none;
}
.related-products .owl-carousel .owl-nav button.owl-next::before, .related-products .owl-carousel .owl-nav button.owl-prev::before {
	font-family: "Font Awesome 6 Free";
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  color: #000;
  opacity: 0.75;
}
.related-products .owl-carousel .owl-nav button.owl-next::before {
  content: "";
}
.related-products .owl-carousel .owl-nav button.owl-prev::before {
  content: "";
}
.related-products div.quick_btn a {
  font-size: 14px;
}
.productdetails .quantity-box {
	border: 1px solid #000;
    border-radius: 50px;
}
.productdetails .quantity-input {
	border: none !important;
}
.category-view.vmxproduct .prod-row .product-box .product-actions .addtocart-button:hover {
  background:#168c83;
}
.vm-customfields-wrap {
  margin-bottom:0px;
}
.category-view .vm-subcategory-title  {
  border: none !important;
  color: #000;
  font-weight: 500 !important;
  font-size: 18px;
  margin: 0;
}
.category-view .vm-subcategory-title:hover {
  color: #0066CC;
}
.vm-product-details-container .btn-vme-round {
  display: flex;

}
.normalstock .bi-square-fill {
  font-weight: bold;
}
@media (max-width: 991px) {
	#sp-footer, #sp-bottom {
	  text-align: center;
	}
	#sp-footer #sp-footer2 {
	  text-align: center;
	}
	#sp-feature-project .jtcs_more_cat {
	  position: inherit;
	  
	}
	#sp-work .sp-module-title .title-left::before , #sp-intro .sp-module-title .title-left::before, #sp-work-about .sp-module-title .title-left::before{
	  left: 22%;
	}
	#sp-pro-form , #sp-about-us{
	  padding: 20px 10px;
	}
	.about-content .about-contact-wrap {
	  display: grid;
	  justify-content: center;
	}
	#sp-panner .sppb-carousel-extended-item img , #sp-panner .sppb-carousel-extended-list .sppb-carousel-extended-outer-stage{
	  height: auto !important;
	}
	#sp-slide-show h3 {
	  font-size: 30px;
	}
	.tp-cta-6-wrapper {
	  padding: 32px 20px;
	  display: inherit !important;
	}
	.tp-cta-6-wrap  {
		display: grid !important;
		  justify-content: center;
		  text-align: center;
	}
	.tp-cta-6-btn {
	  margin-right: 0;
	}
	.tp-cta-6-title {
		text-align: center;
	}
  .sp-page-title {
  padding: 40px 0;
}
.sp-contact-info li {
  
  white-space: inherit;
}
#sp-header .container-inner {
  border-radius: 0;
  background: none;
  box-shadow: none;
}
.gt-btn.style3 {
  font-size: 14px;
  padding: 12px 15px;
}
}
.tp-title .sp-page-title-heading {
  display: none;
}
.tp-title  .tp-breadcrumb-title .sp-page-title-heading {
  display: block;
}
#sp-header .container-inner {
  position: relative;
}
#sp-header .is_ajaxsearch .search_class {
  padding:10px 22px;
  border:1px solid #ff5d32;
  border-radius:50px;
  margin-left: 10px;
  font-size: 18px;
  line-height: 22px;
  display: inline-block;
  text-decoration:none;
  background:#ff5d32;
  color: #fff;
}
#sp-header .is_ajaxsearch .form-inline input {
  border:1px solid #cecece;
  border-radius:30px;
  margin-left: 10px;
  color: #2a3467;
  height: auto;
  padding:10px 22px !important;
}
.sp-megamenu-parent > li .sp-menu-badge.sp-menu-badge-right {
  margin-left: 0;
  position: absolute;
  right: 14px;
  text-transform: none;
  top: 8px;
  letter-spacing: 0;
}
.sp-custom-login a , .myshortlist_cart_button{
  font-size: 23px;
  color: #000;
}
#sp-header .jb-cart-icon .fa {
  font-size: 20px;
  padding-right: 0;
}
#header-actions .jb-cart-button .btn {
  margin: 0;
  border-radius: 50px !important;
  padding: 10px 22px !important;
  font-size: 16px;
}
#header-actions .jb-cart-summary-wrap {
  padding-bottom: 15px;
}
.img-fluid {
  max-height: 380px;
}

.vmpayment .vmpayment_description {
	font-size: 16px;
}