@charset "UTF-8";
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -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%,
  100%,
  20%,
  50%,
  80% {
    -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);
  }
}
@-webkit-keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@-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);
  }
}
@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-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);
  }
}
@-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(0);
    transform: rotate(0);
  }
}
@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(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
}
.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);
  }
}
@-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);
  }
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(-360deg)
      scale(1);
    transform: perspective(400px) translateZ(0) rotateY(-360deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg)
      scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg)
      scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -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-out;
    animation-timing-function: ease-out;
  }
  40% {
    -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-out;
    animation-timing-function: ease-out;
  }
  50% {
    -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-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -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-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(0);
    transform: perspective(400px) rotateX(0);
    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(0);
    -ms-transform: perspective(400px) rotateX(0);
    transform: perspective(400px) rotateX(0);
    opacity: 1;
  }
}
@-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(0);
    transform: perspective(400px) rotateY(0);
    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(0);
    -ms-transform: perspective(400px) rotateY(0);
    transform: perspective(400px) rotateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0);
    transform: perspective(400px) rotateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0);
    -ms-transform: perspective(400px) rotateX(0);
    transform: perspective(400px) rotateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    transform: perspective(400px) rotateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -ms-transform: perspective(400px) rotateY(0);
    transform: perspective(400px) rotateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@-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(0);
    transform: translateX(0) skewX(0);
    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(0);
    -ms-transform: translateX(0) skewX(0);
    transform: translateX(0) skewX(0);
    opacity: 1;
  }
}
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0) skewX(0);
    transform: translateX(0) skewX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0) skewX(0);
    -ms-transform: translateX(0) skewX(0);
    transform: translateX(0) skewX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@-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;
  }
}
@-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;
  }
}
@-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;
  }
}
@-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;
  }
}
@-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;
  }
}
@-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;
  }
}
@-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;
  }
}
@-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;
  }
}
@-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;
  }
}
@-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;
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-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);
  }
}
@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  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);
  }
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes slideOutDown {
  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);
  }
}
@-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);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  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);
    -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;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0);
    transform: translateX(0) rotate(0);
  }
}
@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(0) rotate(0);
    -ms-transform: translateX(0) rotate(0);
    transform: translateX(0) rotate(0);
  }
}
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0);
    transform: translateX(0) rotate(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0);
    -ms-transform: translateX(0) rotate(0);
    transform: translateX(0) rotate(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    -ms-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    -ms-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(48px);
    transform: scale(0.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    -ms-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(48px);
    -ms-transform: scale(0.475) translateX(48px);
    transform: scale(0.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-48px);
    transform: scale(0.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    -ms-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-48px);
    -ms-transform: scale(0.475) translateX(-48px);
    transform: scale(0.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    -ms-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    -ms-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    -ms-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    -ms-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(42px);
    transform: scale(0.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(42px);
    -ms-transform: scale(0.475) translateX(42px);
    transform: scale(0.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    -ms-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-42px);
    transform: scale(0.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-42px);
    -ms-transform: scale(0.475) translateX(-42px);
    transform: scale(0.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    -ms-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    -ms-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    -ms-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
  }
}
@-webkit-keyframes videoplay-anim {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes videoplay-anim {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: 0;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:after,
.slick-track:before {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.ct-row {
  padding: 90px 0;
}
.ct-row.pb-_zero-section {
  padding: 90px 0 0;
}
.bg-layer {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.bg-layer {
  position: relative;
}
.bg-layer > .container > .row {
  margin: 0;
}
.bg-layer > .container,
.bg-layer > .container-fluid {
  padding: 0;
}
.section-title h5 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 5px;
}
.section-title {
  padding-bottom: 15px;
}
p {
  margin-bottom: 15px;
}
.section-title h2.title {
  font-size: 32px;
  line-height: 42px;
}
.section-title h4 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 13px;
  color: #007c02;
}
.section-title h2.title {
  font-weight: 600;
  font-size: 50px;
  line-height: 56px;
  color: var(--gray-dark);
}
.section-title .title-header p {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: var(--gray);
}
.ct-horizontal_sep {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  display: block;
  position: relative;
}
.bg-darkgrey .ct-horizontal_sep {
  border-top-color: rgba(255, 255, 255, 0.08);
}
.bg-white .ct-horizontal_sep {
  border-top-color: #f1f1f1;
}
.border {
  border-color: #ebf0f4 !important;
}
.bg-darkgrey .border,
.bg-primary .border {
  border-color: rgba(255, 255, 255, 0.06) !important;
}
.btn.btn--square {
  border-radius: 0;
}
.btn.btn--outlined {
  background-color: transparent;
  border: 2px solid;
}
.btn.btn--outlined {
  background-color: transparent;
  border: 2px solid currentColor;
  border-color: currentColor;
}
.btn.btn--sm.btn--icon-right {
  padding-right: 35px;
}
.btn {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  line-height: normal;
  padding: 11px 32px 11px 31px;
  background: 0 0;
  border-width: 0;
  border-color: transparent;
  position: relative;
  text-transform: capitalize;
  font-weight: 800;
  overflow: hidden;
  z-index: 2;
  background-size: 200% auto;
  transition: all 0.5s ease 0s;
}
.btn:not(.btn-inline)::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  right: 0;
  left: auto;
  top: 0;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  z-index: -1;
}
.btn:not(.btn-inline):hover::before {
  right: auto;
  left: 0;
  width: 100%;
}
.btn.btn--icon-right {
  padding-right: 22px;
  transition: unset;
}
.btn.btn--icon-right i {
  padding-right: 2px;
}
.btn.btn--icon-right i {
  display: inline-block;
  vertical-align: middle;
  text-align: inherit;
  transition: 0.4s;
}
.btn.btn--icon-right i {
  text-align: right;
  margin-left: 10px;
  margin-right: 0;
}
.btn.btn--sm {
  font-size: 13px;
  padding: 10px 18px 10px 18px;
}
.btn.btn--sm i {
  font-size: 13px;
  line-height: 14px;
}
.btn.btn--md {
  font-size: 13px;
  padding: 12px 31px 12px 31px;
}
.btn.btn--md i {
  font-size: 13px;
  line-height: 15px;
  font-size: 16px;
}
.btn.btn--shape-rounded {
  border-radius: 0;
}
.btn.btn--square {
  border-radius: 0;
}
.btn.btn--outlined {
  background-color: transparent;
  border: 1px solid currentColor;
}
.btn.btn-inline {
  padding: 0;
  border: 0;
  background-color: transparent;
}
.btn.btn-inline i {
  display: inline-block;
  vertical-align: middle;
  transition: 0s;
}
.btn.btn-inline.btn--icon-right i {
  margin-left: 7px;
  transition: ease-in-out 0.3s;
}
.btn.btn-inline {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  padding: 0;
  border: 1px solid transparent;
  background-color: transparent;
  overflow: visible;
  line-height: 13px;
}
.btn.btn-inline.btn--icon-right:hover i {
  margin-left: 11px !important;
}
@-webkit-keyframes sep-anim {
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes sep-anim {
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
.ct-icon i {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.bg-darkgrey .section-title h3,
.bg-primary .section-title h3 {
  color: rgba(236, 236, 236, 0.04);
}
.ct-boxes-spacing-20px > [class*="col-"] .text-input {
  margin-bottom: 0;
}
.featured-imagebox .featured-content .featured-title h4 {
  position: relative;
  overflow: hidden;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ct-icon {
  margin-bottom: 25px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border: 1px solid transparent;
  position: relative;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  box-sizing: content-box;
  position: relative;
}
.ct-icon.ct-icon--sm {
  height: 50px;
  width: 50px;
  line-height: 50px;
}
.ct-icon.ct-icon--sm i {
  font-size: 30px;
}
.ct-icon.ct-icon--md {
  height: 76px;
  width: 76px;
  line-height: 76px;
}
.ct-icon.ct-icon--md i {
  font-size: 36px;
}
.ct-icon.ct-icon--lg {
  height: 86px;
  width: 86px;
  line-height: 86px;
}
.ct-icon.ct-icon--lg i {
  font-size: 48px;
}
.ct-icon.ct-icon--onlytxt {
  height: auto;
  width: auto;
  line-height: 1;
}
.ct-icon.ct-icon--onlytxt i {
  position: unset;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.ct-icon.ct-icon--style-rounded {
  border-radius: 50%;
}
.ct-icon.ct-icon--square {
  border-radius: 0;
}
.list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list li {
  position: relative;
  padding-bottom: 5px;
}
.list li:last-child {
  padding-bottom: 0;
}
.list.list--icon li i {
  position: absolute;
  left: auto;
  top: auto;
  font-size: 16px;
}
.list.list--icon .list-content {
  display: inline-block;
  padding-left: 30px;
}
.list.style1 li {
  padding-bottom: 15px;
}
.featured-icon-box {
  position: relative;
  margin: 15px 0;
}
.featured-icon-box .ct-icon {
  margin-bottom: 0;
}
.featured-title h3 {
  font-size: 25px;
  line-height: 32px;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: capitalize;
}
.featured-icon-box.icon-align-before-content .featured-content,
.featured-icon-box.icon-align-before-content .featured-icon {
  display: table-cell;
  vertical-align: middle;
}
.featured-icon-box.icon-align-before-content .featured-icon {
  display: table-cell;
  vertical-align: top;
}
.featured-icon-box.icon-align-before-content .featured-icon i {
  display: inline-block;
  vertical-align: middle;
}
.featured-icon-box.icon-align-before-content.icon-ver_align-top .featured-icon {
  vertical-align: top;
  padding-top: 3px;
  background-color: var(--light);
}
.featured-icon-box.icon-align-before-content .featured-content {
  padding-left: 15px;
}
.featured-icon-box.icon-align-before-content .featured-title h3 {
  margin-bottom: 5px;
}
.featured-icon-box.icon-align-before-content
  .featured-content
  .featured-desc
  p {
  margin-bottom: 0;
}
.featured-icon-box.icon-align-before-content.icon-ver_align-top
  .featured-content
  h4 {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: var(--gray);
}
.featured-icon-box.icon-align-before-content.icon-ver_align-top
  .featured-content
  h2 {
  font-weight: 600;
  font-size: 25px;
  line-height: 35px;
  color: var(--gray-dark);
}
.featured-icon-box.icon-align-top .featured-title h2 {
  color: var(--primary);
  font-size: 50px;
  line-height: 15px;
  position: relative;
  margin-bottom: 0;
}
.container {
  counter-reset: featuredbox-number;
}
.featured-icon-box.style1 {
  padding: 27px 25px 32px;
  background-color: var(--white);
  border-radius: 3px;
  box-shadow: 0 0 10px 0 rgba(43, 52, 59, 0.1);
}
.featured-icon-box.style1 .ct-icon.ct-icon--md i {
  font-size: 50px;
}
.featured-icon-box.style1:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}
.featured-icon-box.style1:hover .featured-icon {
  animation: ct-animate 0.5s ease-in-out 50ms;
}
@keyframes ct-animate {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
.featured-icon-box.style1 .featured-icon {
  position: relative;
  display: inline-block;
  margin-bottom: -50px;
  top: -50px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.featured-icon-box.style1 .featured-desc p {
  color: inherit;
}
.featured-imagebox.featured-imagebox-team.style1 .featured-title h3 {
  font-weight: 600;
  font-size: 25px !important;
  line-height: 35px;
}
.featured-icon-box.style3 {
  border: 5px solid #f2f2f2;
  padding: 37px 35px 25px;
  background-color: var(--white);
  margin-top: 10px;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.featured-icon-box.style3 ul.list {
  padding-bottom: 20px;
}
.featured-icon-box.style3 ul.list .list-content {
  padding-left: 20px;
}
.featured-imagebox-post.style3 .featured-thumbnail img {
  width: 100%;
  transform: scale(1.01);
  transition: all 0.7s ease;
}
.ct-post-thumbnail.featured-thumbnail:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: all 0.45s ease-in-out;
  -moz-transition: all 0.45s ease-in-out;
  -ms-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
  opacity: 0.8;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(35, 39, 51, 0.3);
}
.featured-icon-box.style3:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
  border: 5px solid var(--secondary);
}
.featured-icon-box.style4:hover .featured-icon .ct-icon:before {
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.featured-icon-box.style4 .featured-icon .ct-icon:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.featured-icon-box.style4 {
  background-color: var(--white);
  padding: 35px 30px 32px 30px;
  border-radius: 6px;
  margin: 15px 0 0;
  -webkit-box-shadow: 0 0 10px 0 rgba(43, 52, 59, 0.1);
  -moz-box-shadow: 0 0 10px 0 rgba(43, 52, 59, 0.1);
  box-shadow: 0 0 10px 0 rgba(43, 52, 59, 0.1);
  width: 100%;
  display: inline-block;
}
.featured-icon-box.style4 .featured-content {
  padding-left: 20px;
}
.featured-icon-box.style4 .featured-title:after {
  width: 0;
}
.featured-icon-box.style4 .featured-icon .ct-icon i {
  font-size: 50px;
}
.featured-icon-box.style4 .featured-desc:after,
.featured-icon-box.style4.active .featured-desc:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-bottom: 0 solid;
  border-left: 0 solid transparent;
  right: 12px;
  bottom: 12px;
  transition: 0.7s all ease;
}
.featured-icon-box.style4:hover .featured-desc:after {
  border-bottom: 14px solid;
  border-left: 14px solid transparent;
  transition: 0.7s all ease;
}
.featured-icon-box.style4.active .featured-desc:after {
  border-bottom: 14px solid var(--primary);
  border-left: 14px solid transparent;
  transition: 0.7s all ease;
}
.featured-icon-box.left-icon.icon-align-top .featured-icon {
  vertical-align: top;
}
ul {
  list-style-type: none;
}
.featured-icon-box.style9 {
  position: relative;
  padding: 40px 25px 35px;
  text-align: center;
  width: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 0 7px 0 rgba(43, 52, 59, 0.08);
  -moz-box-shadow: 0 0 7px 0 rgba(43, 52, 59, 0.08);
  box-shadow: 0 0 7px 0 rgba(43, 52, 59, 0.08);
}
.featured-icon-box.style9 .featured-icon {
  border: 2px dashed;
  height: 109px;
  width: 109px;
  text-align: center;
  display: block;
  margin: 0 auto;
}
.featured-icon-box.style9 p {
  color: rgba(255, 255, 255, 0.7);
  padding-top: 20px;
}
.featured-icon-box.style9 .featured-title h3 {
  color: var(--white);
  padding-top: 25px;
  font-size: 25px;
}
.featured-icon-box.style9 .featured-icon .ct-icon {
  font-size: 50px;
  height: 70px;
  width: 70px;
  line-height: 71px;
  text-align: center;
  margin-top: 25px;
}
.featured-icon-box.style9:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: 0;
}
.featured-icon-box.style9:hover:before {
  transform: translateY(0);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-transition: all 0.9s;
  -moz-transition: all 0.9s;
  -o-transition: all 0.9s;
  -ms-transition: all 0.9s;
  transition: all 0.9s;
  transform: rotateY(180deg);
  opacity: 1;
}
.featured-icon-box.style9:hover h1 {
  color: var(--white);
}
.featured-icon-box.style9 .featured-content .featured-title:before {
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.featured-icon-box.style9 .featured-title:after {
  position: absolute;
  content: "";
  border-bottom: 3px solid;
  width: 52px;
  left: 0;
  right: 0;
  margin: auto;
}
.featured-icon-box.left-icon .featured-content,
.featured-icon-box.left-icon .featured-icon,
.featured-icon-box.left-icon .featured-icon:not(.ct-icon--border) {
  display: table-cell;
  vertical-align: middle;
}
.featured-icon-box.style11 .ct-boxbg-icon {
  display: block;
  width: auto;
  position: absolute;
  top: 10px;
  right: 20px;
}
.featured-icon-box.style11 .ct-boxbg-icon i {
  color: #000;
  opacity: 0.1;
  transition: all 0.6s;
}
.featured-icon-box.style11:hover .ct-boxbg-icon i {
  font-size: 85px;
  right: -5px;
  color: var(--primary);
}
.featured-icon-box.style11 .ct-boxbg-icon a i {
  font-size: 70px;
}
.featured-icon-box.left-icon.icon-align-top .featured-icon {
  vertical-align: top;
}
.featured-icon-box.icon-align-top.style11 .featured-title h2 {
  color: var(--gray-dark);
  font-size: 50px;
  line-height: 15px;
  position: relative;
  margin-bottom: 0;
}
.featured-icon-box.icon-align-top.style11:hover {
  border-left-color: var(--gray-dark) !important;
}
.featured-icon-box.left-icon.style11 {
  padding: 42px 35px 33px 35px;
  border-left: 5px solid var(--primary);
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 0 10px 0 rgba(43, 52, 59, 0.1);
  z-index: 1;
}
.featured-icon-box.style11 .ct-icon {
  margin-bottom: 15px;
}
.featured-icon-box.style11 .featured-content {
  padding-left: 15px;
}
.featured-icon-box.style11 .featured-desc {
  padding-top: 10px;
  padding-bottom: 10px;
}
.featured-icon-box.style11:hover .featured-icon {
  transform: scale(1.2);
}
.featured-icon-box.style11 {
  margin: 0;
  text-align: left;
  width: 100%;
  position: relative;
}
.featured-icon-box.style11.bg-darkgrey p,
.featured-icon-box.style11.bg-primary p {
  color: var(--white);
}
.featured-icon-box.style12 {
  padding: 50px 55px 30px 55px;
  background-color: var(--white);
  box-shadow: 0 0 10px 0 rgba(43, 52, 59, 0.1);
}
.featured-icon-box.style12 .ct-icon.ct-icon--md i {
  font-size: 50px;
}
.featured-icon-box.style12 .featured-title h4 {
  color: var(--primary);
  font-size: 30px;
  line-height: 35px;
  padding-top: 5px;
  font-weight: 500;
}
.featured-icon-box.style12 .featured-title h2 {
  font-size: 25px;
  line-height: 35px;
  position: relative;
  margin-bottom: 0;
}
.featured-icon-box.style12 .featured-icon {
  padding-bottom: 20px;
}
.featured-icon-box.style12:hover .featured-icon {
  transform: rotateY(360deg);
  transition: 0.7s;
  transition: all 0.5s ease;
}
@keyframes ct-animate {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
.featured-icon-box.style12 .featured-desc p {
  color: inherit;
}
.featured-imagebox.featured-imagebox-team.style12 .featured-title h3 {
  font-weight: 600;
  font-size: 25px !important;
  line-height: 35px;
}
.featured-imagebox,
.featured-imagebox .featured-thumbnail {
  position: relative;
  overflow: hidden;
}
.featured-imagebox {
  margin: 15px 0;
}
.slick-container .featured-imagebox {
  margin-bottom: 0;
}
.featured-imagebox .featured-content .featured-title h3 {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.featured-imagebox .featured-content .category,
.featured-imagebox .featured-content .category a {
  font-size: 14px;
  line-height: 15px;
  display: inline-block;
}
.featured-imagebox:hover .featured-thumbnail img {
  -webkit-transform: scale(1.07) rotate(0.5deg);
  -ms-transform: scale(1.07) rotate(0.5deg);
  -moz-transform: scale(1.07) rotate(0.5deg);
  transform: scale(1.07) rotate(0.5deg);
}
.featured-imagebox .featured-title h3 {
  margin-top: 25px;
}
.ct-box-view-overlay {
  position: relative;
}
.ct-box-view-overlay:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: all 0.45s ease-in-out;
  -moz-transition: all 0.45s ease-in-out;
  -ms-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(35, 39, 51, 0.8);
}
.featured-imagebox-post.style1 {
  margin: 0;
  z-index: 1;
}
.featured-imagebox-post.style1 .featured-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  padding-top: 55px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.featured-imagebox-team.style3:hover {
  transform: translateY(0);
  opacity: 1;
}
.featured-imagebox-team.style3 .featured-content {
  position: relative;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(43, 52, 59, 0.1);
  background-color: var(--white);
  padding: 21px 10px 1px 10px;
  z-index: 1;
  text-align: center;
}
.featured-imagebox-team.style3 .featured-content h3 {
  font-size: 25px;
  line-height: 28px;
  margin-bottom: 0;
}
.featured-imagebox-team.style3 .featured-content h3 a {
  color: var(--white);
}
.featured-imagebox-team.style3 .ct-media-link a {
  height: 35px;
  width: 35px;
  line-height: 35px;
  background-color: var(--white);
  display: block;
  text-align: center;
  font-size: 18px;
}
.featured-imagebox-team.style3 {
  margin-top: 60px;
  margin-bottom: 5px;
}
.featured-imagebox-team.style3:hover ul.social-icons {
  opacity: 1;
  bottom: 90px;
}
.featured-imagebox-team.style3 ul.social-icons {
  opacity: 0;
  right: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0;
  text-align: center;
  -webkit-transition: 0.9s all ease;
  -ms-transition: 0.9s all ease;
  -moz-transition: 0.9s all ease;
  -o-transition: 0.9s all ease;
  transition: 0.9s all ease;
}
.featured-imagebox-team.style3 .featured-content:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: var(--primary);
  z-index: -1;
  transition: 0.5s;
}
.featured-imagebox-team.style4 {
  display: table;
  overflow: visible;
}
.featured-imagebox-team.style4:before {
  position: absolute;
  content: "";
  border: 1px solid #eee;
  width: 112px;
  height: 112px;
  left: 0;
  top: -50px;
  background-color: transparent;
  -webkit-transition: 0.9s all ease;
  -ms-transition: 0.9s all ease;
  -moz-transition: 0.9s all ease;
  -o-transition: 0.9s all ease;
  transition: 0.9s all ease;
  z-index: 1;
}
.featured-imagebox-team.style4:after {
  position: absolute;
  content: "";
  height: 90px;
  left: 20px;
  top: 0;
  width: 1px;
  background-color: var(--primary);
}
.featured-imagebox-team.style4 .featured-content {
  position: relative;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(43, 52, 59, 0.1);
  background-color: var(--white);
  padding: 20px 0 16px;
  z-index: 1;
  text-align: center;
}
.featured-imagebox-team.style4 .ct-media-link {
  opacity: 0;
  right: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0;
  text-align: center;
  -webkit-transition: 0.9s all ease;
  -ms-transition: 0.9s all ease;
  -moz-transition: 0.9s all ease;
  -o-transition: 0.9s all ease;
  transition: 0.9s all ease;
}
.featured-imagebox-team.style4:hover .ct-media-link {
  opacity: 1;
  bottom: 100px;
}
.featured-imagebox-team.style4 .ct-media-link ul {
  display: flex;
  justify-content: center;
}
.featured-imagebox-team.style4 .ct-media-link ul li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: var(--white);
  background-color: #00f;
}
.featured-imagebox-team.style4 .featured-content .featured-title h3 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
}
.featured-imagebox-team.style4 {
  margin-top: 80px;
  margin-bottom: 2px;
}
.featured-imagebox-team.style4 .ct-media-link a {
  border: none;
}
.featured-imagebox-team.style4:hover .featured-title h3 a {
  color: var(--white);
}
.featured-imagebox-team.style4 .featured-content:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: var(--primary);
  z-index: -1;
  transition: 0.5s;
}
.featured-imagebox-team.style4:hover .featured-content:before {
  height: 100%;
}
.featured-imagebox.style3 {
  margin-top: 15px;
}
.featured-imagebox.style3 {
  margin-bottom: 15px;
}
.featured-imagebox.style3 .featured-content .featured-title h3 {
  margin-bottom: 0;
}
.featured-imagebox.style3 .featured-content .featured-title h4 {
  margin-bottom: 8px;
}
.ct-media-link a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  font-size: 15px;
  border: 1px solid;
  color: var(--white);
}
.featured-imagebox-team.style1 {
  background-color: var(--white);
  border-bottom: 3px solid #f2f2f2;
  border-top: none;
  box-shadow: 0 0 10px 0 rgba(43, 52, 59, 0.1);
}
.featured-imagebox-team.style1:hover .ct-box-view-overlay:before {
  opacity: 0.6;
  visibility: visible;
}
.featured-imagebox-team.style1 .featured-iconbox.ct-media-link {
  position: relative;
  top: 0;
  z-index: 1;
  opacity: 0;
}
.featured-imagebox-team.style1:hover .featured-iconbox.ct-media-link {
  opacity: 1;
}
.featured-imagebox-team.style1:hover .media-block {
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  bottom: 15px;
}
.featured-imagebox-team.style1 .featured-content {
  padding-top: 18px;
  padding-bottom: 18px;
  text-align: center;
}
.featured-imagebox-team.style1 .featured-content .featured-title h3 {
  font-size: 17px;
  line-height: 22px;
  margin-bottom: 0;
  margin-top: 5px;
}
.featured-imagebox-team.style1 .featured-content .team-position {
  font-size: 14px;
  margin: 0;
}
.featured-imagebox-team.style1 .media-block {
  position: absolute;
  bottom: 0;
  width: 100%;
  opacity: 1;
  text-align: center;
  padding: 3px 0;
  top: auto;
  height: auto;
  width: calc(100% - 50px);
  right: 25px;
  -webkit-transition: -webkit-transform 0.35s;
  transition: 0.5s ease;
  -ms-transform: translate3d(0, 100%, 0);
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.featured-imagebox-team.style1 .media-block ul li a {
  color: var(--white);
  border: none;
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 15px;
  line-height: 30px;
  border-radius: 50%;
}
.featured-imagebox-post.style3 .featured-content-post {
  position: relative;
  padding: 27px 15px 27px 30px;
  margin-top: -47px;
  margin-right: 43px;
  background-color: var(--white);
}
.featured-imagebox-post.style3 .featured-content-post .cat_block-wrapper {
  position: absolute;
  top: -15px;
  padding: 2px 20px;
  display: inline-block;
  left: 30px;
  font-size: 14px;
  color: var(--white);
}
.featured-imagebox-post.style3 .featured-title {
  position: relative;
}
.featured-imagebox-post.style3 .featured-title:before {
  content: "";
  position: absolute;
  height: 100%;
  left: -30px;
  top: 0;
  width: 4px;
}
.featured-imagebox-post.style3 .featured-title h4 {
  margin-bottom: 15px;
  margin-top: 8px;
}
.featured-imagebox .featured-content .featured-title h4 a {
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
}
.featured-imagebox-post .featured-content .post-meta .ct-meta-line img {
  display: inline-block;
  min-width: auto;
  border-radius: 50%;
  margin-right: 10px;
  width: 30px;
  height: 30px;
}
.featured-imagebox-post.style3
  .featured-content
  .post-meta
  span:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: currentColor;
  margin: 0 5px 2px;
  position: absolute;
  right: -20px;
  top: 13px;
  opacity: 1;
}
.featured-imagebox-post.style3 .post-meta .ct-meta-line i {
  color: inherit;
}
.featured-imagebox-post .featured-content .post-meta span i {
  padding-right: 5px;
  font-size: 12px;
}
.featured-imagebox-post .featured-content .post-meta span {
  display: inline-block;
  position: relative;
  margin-right: 20px;
  font-size: 13px;
  line-height: 13px;
  font-style: italic;
  margin-bottom: 12px;
}
.featured-imagebox-post .featured-content .post-meta span i {
  padding-right: 5px;
  font-size: 12px;
}
.featured-imagebox-post {
  overflow: visible;
}
.featured-imagebox-post .featured-content .featured-title h3 {
  font-size: 25px;
  line-height: 27px;
}
.featured-imagebox-post .featured-content .post-meta span:last-child {
  margin-right: 0;
}
.featured-imagebox-post .featured-content .post-meta span i {
  padding-right: 5px;
  font-size: 12px;
}
.featured-imagebox-post.style1 .featured-content {
  background-color: var(--white);
  padding: 25px 30px 25px;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: -35px;
  position: relative;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  transition: all 0.5s;
  -webkit-box-shadow: 0 0 7px 0 rgba(43, 52, 59, 0.08);
  -moz-box-shadow: 0 0 7px 0 rgba(43, 52, 59, 0.08);
  box-shadow: 0 0 7px 0 rgba(43, 52, 59, 0.08);
}
.featured-imagebox-post.style1:hover .featured-content {
  -webkit-transform: translate(0, -8px);
  -moz-transform: translate(0, -8px);
  -ms-transform: translate(0, -8px);
  -o-transform: translate(0, -8px);
  transform: translate(0, -8px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.014);
}
.featured-imagebox-post.style1 .featured-content .featured-title h3 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0;
}
.featured-imagebox-post.style1 .featured-content .post-meta span {
  margin-bottom: 8px;
}
.featured-imagebox-post.style1 .featured-content .post-meta span,
.featured-imagebox-post.style1 .featured-content .post-meta span a {
  color: inherit;
}
.featured-imagebox-services.style1 {
  padding: 0 20px;
  border-radius: 3px;
  padding-top: 45px;
  overflow: visible;
  margin-bottom: 30px;
  background-color: var(--white);
  text-align: center;
  box-shadow: 0 0 10px 0 rgba(43, 52, 59, 0.1);
}
.featured-imagebox-services.style1:hover .ct-boxbg-icon {
  animation: ct-animate 0.6s ease-in-out 80ms;
}
.featured-imagebox-services.style1 .featured-thumbnail {
  margin-top: -60px;
  overflow: visible;
}
.featured-imagebox-services.style1 .featured-content {
  padding: 0 0 30px;
}
.featured-imagebox-services.style1 .cat_block-wrapper {
  position: absolute;
  top: auto;
  left: -13px;
  padding: 1px 13px;
  color: var(--white);
  z-index: 1;
  bottom: 15px;
  font-size: 12px;
  background-color: var(--primary);
  text-transform: uppercase;
}
.featured-imagebox-services.style1:hover .ct-blog-overlay-iconbox a {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.featured-imagebox-services.style1 .ct-boxbg-icon {
  display: block;
  width: auto;
  position: absolute;
  bottom: 0;
  right: 25px;
}
.featured-imagebox-services.style1 .ct-icon.ct-icon--md i {
  font-size: 78px;
  opacity: 0.1;
  margin-right: -17px;
  display: block;
  margin-top: 15px;
  padding-left: 40px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.5s ease 0s;
}
.featured-imagebox-services.style1:hover .ct-boxbg-icon i {
  opacity: 1;
  color: var(--primary);
}
.featured-imagebox-services.style1 .ct-boxbg-icon i {
  color: #888;
  opacity: 0.1;
  transition: all 0.6s;
}
.featured-imagebox-services.style1 .ct-blog-overlay-iconbox a {
  opacity: 0;
  position: absolute;
  text-align: center;
  z-index: 1;
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -17px;
  display: inline-block;
  height: 25px;
  width: 25px;
  line-height: 25px;
  color: var(--white);
  font-size: 25px;
  z-index: 2;
  -webkit-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  transition: all 0.9s ease;
  transform: scale(0);
  -webkit-transform: scale(0);
}
.featured-imagebox-services.style1:hover .ct-blog-overlay-iconbox:after,
.featured-imagebox-services.style1:hover .ct-blog-overlay-iconbox:before {
  height: 100%;
  opacity: 0.6;
}
.featured-imagebox-services.style1 .ct-blog-overlay-iconbox:after,
.featured-imagebox-services.style1 .ct-blog-overlay-iconbox:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  transition: 0.9s ease;
  z-index: 1;
  opacity: 0;
  background-color: var(--gray-dark);
}
.ct-blog-overlay-iconbox:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 44, 91, 0.69);
  transition: all 0.5s ease 0s;
}
.featured-imagebox-services.style1:hover .featured-thumbnail img {
  transform: unset;
}
.progress-bar--container {
  position: relative;
}
.progress-bar--container:not(:last-child) {
  margin-bottom: 20px;
}
.progress-bar--container .progressbar-title {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.progress-section .progress-bar--container .progressbar-title {
  font-weight: 600;
  font-size: 19px;
  color: var(--gray-dark);
}
.progress-bar--container .progress-bar-percent {
  position: absolute;
  right: 0;
  z-index: 1;
  text-shadow: none;
  font-size: 19px;
  line-height: 20px;
  font-weight: 600;
  color: var(--gray-dark);
  border-radius: 0;
  top: 0;
  overflow: hidden;
}
.progress-bar--container .progress-bar {
  display: block;
  height: 5px;
  margin-left: 2px;
  position: relative;
}
.progress-bar--container .progress-bar-inner {
  box-shadow: none;
  border-radius: 0;
  height: 15px;
  border: 1px solid var(--gray-light);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bg-primary .progress-bar--container .progress-bar-inner {
  background-color: rgba(0, 0, 0, 0.1);
}
.progress-section h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 20px;
}
.testimonials {
  position: relative;
}
.testimonials .testimonial-caption h3 {
  font-size: 22px;
  line-height: 25px;
  display: block;
  font-weight: 500;
  margin-bottom: 0;
}
.testimonial-caption label {
  margin: 0;
  line-height: 1;
}
.testimonials .testimonial-content blockquote {
  padding: 90px 0 40px 0 !important;
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 500;
  line-height: 33px;
  color: inherit;
  font-style: italic;
  background-color: transparent;
  border-left: 0;
  margin-left: 71px;
  margin-right: 71px;
  text-align: center;
}
.testimonials-nav .testimonial-avatar .testimonial-img {
  transform: scale(0.8);
  transition: 0.6s ease;
}
.testimonials-nav .testimonial-avatar .testimonial-img {
  position: relative;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.24);
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.testimonials-nav .slick-current.testimonial-avatar .testimonial-img {
  transform: scale(1);
}
.testimonials-info {
  text-align: center;
  position: relative;
  padding: 0 0 50px;
}
.testimonials-nav .slick-current.testimonial-avatar .testimonial-img:before {
  -webkit-mask: url(../images/slider-img-right.html);
  mask: url(../images/slider-img-right.html);
  -webkit-mask-box-image: url(../images/slider-img-right.html);
  position: absolute;
  content: "";
  height: 13px;
  width: 33px;
  left: -20px;
  top: 40px;
  background-color: var(--primary);
  display: block;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.testimonials-nav .slick-current.testimonial-avatar .testimonial-img:after {
  -webkit-mask: url(../images/slider-img-left.html);
  mask: url(../images/slider-img-left.html);
  -webkit-mask-box-image: url(../images/slider-img-left.html);
  position: absolute;
  content: "";
  height: 13px;
  width: 33px;
  left: auto;
  right: -20px;
  top: 40px;
  background-color: var(--primary);
  display: block;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.testimonial-avatar .testimonial-img img {
  border-radius: 0;
  width: 100px;
  height: 100px;
  margin-top: 0;
  display: block;
  margin: 0 20px;
}
.testimonials-nav {
  max-width: 370px;
  overflow: hidden;
  margin: 0 auto;
  margin-top: -47px;
  margin-bottom: 30px !important;
}
.testimonials-info:before {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  left: 0;
  top: 50px;
  bottom: -40px;
}
.star-ratings ul {
  padding: 0;
}
.star-ratings li {
  font-size: 13.8px;
  min-width: 14px;
  display: inline-block;
  color: #e0e8f0;
}
.testimonials .testimonial-content .star-ratings ul li i {
  font-size: 13px;
  color: #f4c627;
}
.star-ratings {
  line-height: 1;
}
.star-ratings ul li.active,
.star-ratings ul li.active i {
  color: #e8c433;
}
.testimonials.style1 .testimonial-content blockquote {
  padding: 10px 0 0 0 !important;
  margin-left: 71px;
  margin-right: 71px;
}
.testimonial-caption h5 {
  margin-bottom: 0;
  line-height: 15px;
  font-size: 25px;
}
.testimonials.ct-testimonial-box-view-style3 {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin: 0 15px;
}
.testimonials.ct-testimonial-box-view-style3:hover .testimonial-content {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}
.testimonials.ct-testimonial-box-view-style3
  .testimonial-content
  .testimonial-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonials.ct-testimonial-box-view-style3 .testimonial-content {
  border: 1px solid #eee;
  overflow: unset;
  text-align: left;
  position: relative;
  padding: 33px 30px 40px 34px !important;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-box-shadow: 0 0 10px 0 rgba(43, 52, 59, 0.1);
  -moz-box-shadow: 0 0 12px 0 rgba(43, 52, 59, 0.1);
  box-shadow: 0 0 10px 0 rgba(43, 52, 59, 0.1);
}
.testimonials.ct-testimonial-box-view-style3 .testimonial-content blockquote {
  font-size: 16px;
  line-height: 25px;
  font-style: normal;
  margin: 0;
  text-align: left;
}
.testimonials.ct-testimonial-box-view-style3
  .testimonial-avatar
  .testimonial-img
  img {
  border-radius: 0;
  width: 85px;
  height: 85px;
  margin-top: 0;
  z-index: 1;
  position: relative;
  margin-bottom: -40px;
  display: block;
  margin-left: 260px;
}
.testimonials.ct-testimonial-box-view-style3
  .testimonial-content
  .star-ratings
  ul {
  display: block;
  padding: 0;
  margin: 0;
}
.testimonials.ct-testimonial-box-view-style3
  .testimonials
  .testimonial-content
  blockquote {
  padding: 110px 0 40px 0 !important;
  font-size: 20px;
  position: relative;
  line-height: 32px;
  font-style: italic;
  margin: 0;
}
.testimonials.ct-testimonial-box-view-style3 .testimonial-content:before hover {
  background-color: var(--gray-dark);
}
.testimonials.ct-testimonial-box-view-style3 .testimonial-content:before {
  position: absolute;
  content: "";
  -webkit-mask-box-image: url(../images/straight-quotes.html);
  width: 50px;
  height: 50px;
  top: 56px;
  left: 32px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  mask: url(../images/straight-quotes.html);
}
.accordion .toggle:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.accordion .toggle-title a {
  display: block;
  font-weight: 500;
  font-size: 16px;
  position: relative;
}
.accordion .toggle-title a i {
  margin-right: 15px;
}
.accordion .toggle-content {
  margin-top: 15px;
}
.accordion .toggle-content.show {
  display: block !important;
}
.accordion .toggle-content p:last-child {
  margin-bottom: 0;
}
.accordion .toggle .toggle-title a:after {
  position: absolute;
  font-family: FontAwesome;
  right: 10px;
  top: 20px;
  display: inline-block;
  content: "\f175";
  border-radius: 0;
  font-size: 12px;
  line-height: 10px;
}
.accordion .toggle .toggle-title a.active:after {
  content: "\f178";
}
.wrap-form label {
  width: 100%;
  margin: 0;
}
.wrap-form span.text-input > i {
  position: absolute;
  left: 10px;
  top: 21px;
  opacity: 0.9;
  font-size: 14px;
  z-index: 1;
}
.wrap-form span.text-input {
  margin-bottom: 25px;
  display: block;
  position: relative;
}
.bg-primary .wrap-form span.text-input input,
.bg-primary .wrap-form span.text-input select,
.bg-primary .wrap-form span.text-input textarea {
  background-color: transparent;
  border: 0;
  color: var(--white);
  padding-left: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}
.bg-primary .wrap-form span.text-input input::-webkit-input-placeholder,
.bg-primary .wrap-form span.text-input select::-webkit-input-placeholder,
.bg-primary .wrap-form span.text-input textarea::-webkit-input-placeholder {
  color: var(--white);
}
.wrap-form label {
  width: 100%;
  margin: 0;
}
.ct-boxes-spacing-20px > [class*="col-"] .text-input {
  margin-bottom: 0;
}
.counter {
  background-color: #f34e3a;
  display: inline-block;
  position: absolute;
  top: 81px;
  right: 0;
  color: var(--white);
  text-align: center;
  padding: 15px 30px 15px 30px;
}
.counter h5 {
  color: var(--white-color);
  font-size: 47px;
  line-height: 50px;
  margin-bottom: 0;
}
.counter label {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.ct-tabs ul.tabs {
  padding: 0;
  margin: 0;
}
.ct-tabs ul.tabs li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}
.ct-tabs ul.tabs li:last-child {
  margin-bottom: 0;
}
.ct-tabs .content-tab .content-inner {
  display: none;
}
.ct-tabs .content-tab .content-inner.active {
  display: block;
}
.ct-boxes-spacing-20px,
.row.ct-boxes-spacing-20px {
  margin: 0 -10px;
}
.ct-boxes-spacing-20px > [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 25px;
}
.ct-pricing-plan {
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 40px 40px 40px;
  background-color: var(--white);
  text-align: center;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(43, 52, 59, 0.1);
  border-radius: 0;
}
.ct-pricing-plan:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
.ct-pricing-plan .ct-plan-icon {
  font-size: 50px;
  color: var(--primary);
}
.ct-pricing-plan .ct-plan-head .ct-plan-box-desc {
  position: relative;
  padding: 25px 0 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 33px;
}
.ct-plan-title h3 {
  font-size: 25px;
  line-height: 31px;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 18px;
}
.ct-plan-icon .ct-icon {
  margin-bottom: 0;
}
.ct-plan-icon .ct-icon i {
  display: inline-block;
  font-size: 50px;
}
.ct-plan-amount {
  position: relative;
  padding: 30px 0 9px 5px;
  margin-bottom: 0;
}
.ct-plan-amount h3 {
  font-size: 52px;
  line-height: 60px;
  display: inline-block;
  margin-bottom: 0;
  font-weight: 600;
}
.ct-plan-amount .ct-ptablebox-price {
  font-size: 60px;
  line-height: 60px;
  font-weight: 600;
  display: inline-block;
  color: #007c02;
}
.ct-plan-amount .cur_symbol {
  display: inline-block;
  font-weight: 600;
  font-size: 28px;
  line-height: 26px;
  vertical-align: super;
  color: #007c02;
}
.ct-plan-amount .pac_frequency {
  position: relative;
  font-size: 25px;
  line-height: 26px;
  font-weight: 600;
  color: #022d35;
}
.ct-plan-footer {
  text-align: center;
  padding-top: 0;
  transition: all 0.5s ease;
}
.sidebar .widget-area .widget {
  position: relative;
  margin-bottom: 35px;
}
.sidebar .widget-area .widget:last-child {
  margin-bottom: 0;
}
.sidebar .widget ul {
  margin: 0;
  padding: 0;
}
.sidebar .widget-area .widget:first-child {
  margin-top: 0;
}
.sidebar .widget--title {
  display: block;
  width: 100%;
  position: relative;
  padding-left: 12px;
  padding-top: 5px;
  font-weight: 600;
  font-size: 25px;
  line-height: 24px;
}
.sidebar .widget {
  position: relative;
  overflow: hidden;
}
.sidebar .widget:not(:first-child) {
  margin: 35px 0 35px;
}
.widget--categories li:first-child span {
  top: 10px;
}
.sidebar .widget a {
  font-weight: 400;
  font-size: 14px;
}
.widget--categories ul li a {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.widget.widget-text h4 {
  font-weight: 600;
  font-size: 25px;
  line-height: 27px;
  padding-left: 12px;
}
.widget.widget-text p {
  margin-bottom: 0;
}
.widget--categories ul li a:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  height: 5px;
  width: 5px;
  background-color: var(--primary);
}
.sidebar .widget .widget--title {
  display: block;
  padding-left: 12px;
}
body .widget .widget--title {
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
}
.sidebar .widget--categories.with-title:before {
  height: 0;
}
.sidebar .widget .widget--title:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background-color: var(--primary);
  height: 20px;
  width: 4px;
}
.sidebar .widget--categories.with-title ul > li {
  border-top: 1px solid #eee;
  padding-bottom: 10px;
  padding-top: 10px;
  position: relative;
  list-style: none;
}
.widget--categories li span {
  position: absolute;
  top: 10px;
  right: 0;
  width: 25px;
  height: 25px;
  overflow: hidden;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  padding: 3px 4px;
  background-color: var(--gray-light);
}
.widget--recent-post ul.ct-recent-post-list > li {
  padding: 16px 0 16px 10px;
}
.widget--recent-post ul.ct-recent-post-list > li > .post-detail,
.widget--recent-post ul.ct-recent-post-list > li > a {
  display: table-cell;
  vertical-align: middle;
}
.widget--recent-post ul.ct-recent-post-list > li > a {
  padding-right: 10px;
  width: 95px;
}
.sidebar .widget--recent-post.with-title:before {
  height: 0;
}
.sidebar .widget--recent-post.with-title ul > li {
  border-top: 1px solid #eee;
  padding-bottom: 10px;
  padding-top: 10px;
  list-style: none;
  display: flex;
}
.sidebar .widget--recent-post.with-title ul > li:first-child {
  border-top: none;
}
.widget--recent-post ul.ct-recent-post-list > li img {
  display: block;
  width: 75px;
  border-radius: 0;
}
.widget--recent-post ul.ct-recent-post-list > li .post-date {
  display: block;
  font-size: 14px;
  line-height: 22px;
}
.widget--recent-post ul.ct-recent-post-list li:after {
  content: " ";
  display: table;
  clear: both;
}
.widget .tagcloud a {
  display: inline-block;
  padding: 7px 21px;
  margin: 0 4px 10px 0;
  border: 1px solid #eee;
  border-radius: 0;
  font-size: 14px !important;
  background-color: var(--white);
  font-weight: 500;
}
.widget .tagcloud a:nth-last-child(-n + 2) {
  margin-bottom: 5px;
}
.sidebar .widget--tagcloud.with-title:before {
  height: 0;
}
.contact-section {
  position: relative;
  z-index: 1;
}
.contact-side {
  margin-left: 50px;
}
.steps-box {
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
  clear: both;
}
.steps-box:before {
  position: absolute;
  content: "";
  left: 10px;
  top: 12px;
  height: 135%;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.steps-box--num {
  font-size: 20px;
  line-height: 35px;
  color: #000;
  margin-right: 5px;
  font-weight: 600;
}
.steps-box.steps-box--style1 .steps-box--desc h3 {
  font-size: 23px;
  display: inline-block;
  line-height: 35px;
  margin-bottom: 0;
  color: #000;
}
.steps-box:after {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  top: 11px;
  left: 5px;
  overflow: hidden;
  z-index: 1;
  border: 3px solid var(--primary);
  background-color: var(--white);
  box-shadow: unset;
}
.row > [class*="col-"]:last-child > .steps-box:before {
  height: 100%;
}
table {
  border: 1px solid var(--grey-color);
  width: 100%;
  margin-bottom: 20px;
  color: var(--gray-dark);
}
article,
aside,
details,
footer,
header,
menu,
nav,
section {
  display: block;
}
a,
a:active,
a:focus,
a:hover {
  text-decoration: none;
  outline: 0;
}
a,
button,
input {
  outline: 0;
}
ol,
ul {
  padding: 0;
  margin: 0;
}
strong {
  font-weight: 700;
}
iframe {
  width: 100%;
  border: none;
  display: block;
}
p {
  margin: 0 0 15px;
}
::-moz-selection {
  background: var(--teal);
  color: var(--white);
  text-shadow: none;
}
::-moz-selection {
  background: var(--teal);
  color: var(--white);
  text-shadow: none;
}
::selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select,
textarea {
  font-family: inherit;
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  vertical-align: middle;
  width: 100%;
  color: var(--gray-dark);
  padding: 12px 15px 11px;
  border-radius: 0;
  font-weight: 400;
  background-color: var(--white);
  text-transform: inherit;
  border: 1px solid rgba(119, 119, 119, 0.2);
  font-size: 14px;
  outline: 0;
  line-height: inherit;
  letter-spacing: 0;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  line-height: 21px;
  font-weight: 500;
  padding: 11px 40px 11px;
  border: 2px solid transparent;
  border-radius: 0;
  color: var(--white);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
  outline: 0 !important;
  -webkit-font-smoothing: antialiased;
}
form {
  position: relative;
}
input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
input:-moz-placeholder,
input:-ms-input-placeholder,
input::-moz-placeholder,
input::-ms-input-placeholder,
input::-webkit-input-placeholde,
textarea:-moz-placeholder,
textarea::-moz-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--white);
}
menu,
ol,
ul {
  margin: 16px 0;
  padding: 0 0 0 25px;
}
body {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: var(--gray);
  font-family: Nunito, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--dark);
}
body .page {
  overflow: hidden;
  position: relative;
  z-index: 10;
}
a {
  color: var(--gray-dark);
}
a,
img {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
label {
  font-size: 13px;
}
[class^="fa"] {
  line-height: inherit;
}
.box-shadow {
  box-shadow: 0 0 9px 0 rgba(29, 33, 67, 0.1);
}
.z-index-1 {
  z-index: 1;
}
.p-50 {
  padding: 50px;
}
.pr-30 {
  padding-right: 30px;
}
.pl-10 {
  padding-left: 10px;
}
.pl-30 {
  padding-left: 30px;
}
.pt-10 {
  padding-top: 10px;
}
.pt-15 {
  padding-top: 15px;
}
.pt-30 {
  padding-top: 30px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pb-15 {
  padding-bottom: 15px;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-15 {
  margin-top: 15px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb_20 {
  margin-bottom: -20px;
}
.ml-10 {
  margin-left: 10px;
}
.mr-10 {
  margin-right: 10px;
}
.bg-darkgrey .btn.btn--fill.btn--primary:hover,
.bg-darkgrey .ct-icon--primary i,
.bg-darkgrey .text-primary h1,
.bg-darkgrey .text-primary h2,
.bg-darkgrey .text-primary h3,
.bg-darkgrey .text-primary h4,
.bg-darkgrey .text-primary h6,
.bg-darkgrey a,
.bg-darkgrey a:hover,
.bg-darkgrey a:hover i,
.btn--primary,
.btn--primary:hover,
.ct-blog-classic .post-meta .ct-meta-line i,
.ct-blog-single-content .post-meta .ct-meta-line i,
.ct-header-style-02 nav.main-menu ul.menu > li a:hover,
.ct-icon--primary:not(.ct-icon--fill) i,
.ct-plan-amount h3,
.ct-stickable-header.fixed-header .header--extra .header--search i:hover,
.ct-stickable-header.fixed-header nav.main-menu ul.menu li.active > a,
.featured-icon-box.style9 h1,
.featured-imagebox-post .featured-content .post-meta span i,
.featured-imagebox-post.style1 .featured-content .featured-title h3 a:hover,
.featured-imagebox-services.style1 .ct-blog-overlay-iconbox a:hover,
.featured-imagebox.featured-imagebox-post.style3
  .post-title.featured-title
  h4
  a:hover,
.featured-imagebox.featured-imagebox-team.style1 .featured-title h3 a:hover,
.featured-imagebox.style3 .featured-content .featured-title h3 a:hover,
.header--extra i:hover,
.list-icon-primary li i,
.text-primary,
.text-primary a,
.text-primary h1,
.text-primary h2,
.text-primary h3,
.text-primary h4,
.text-primary h6,
.text-primary i,
.text-white a:hover,
.topbar-left li i,
.widget ul.ct-timelist-block li:last-child .service-time,
:not(.bg-darkgrey) .text-primary,
:not(.bg-darkgrey) .text-primary a,
:not(.bg-darkgrey) .text-primary i,
:not(.bg-darkgrey) a.text-primary,
:not(.bg-darkgrey) i.text-primary,
a.text-primary,
a:hover,
i.text-primary,
nav.main-menu ul.menu li ul.mega-submenu li a:hover,
nav.main-menu ul.menu li ul.mega-submenu li.active > a,
nav.main-menu ul.menu li.active a,
nav.main-menu ul.menu li.active > a,
nav.main-menu ul.menu li > ul.mega-submenu li a:hover,
nav.main-menu ul.menu > li.mega-menu-item:hover > a {
  color: var(--success) !important;
}
#preloader .loader-blob:after,
#preloader .loader-blob:before,
#totop.top-visible,
.bg-darkgrey .tooltip:after,
.bg-darkgrey [data-tooltip]:after,
.bg-primary,
.bg-primary > .bg-layer,
.btn.btn--fill,
.btn.btn--fill.btn--dark:not(.btn-inline):hover,
.btn.btn--outlined.btn--primary:not(.btn-inline):hover,
.btn.btn--outlined.btn--primary:not(.btn-inline):hover:before,
.featured-icon-box.style4.active .featured-icon .ct-icon,
.featured-icon-box.style4:hover .featured-icon .ct-icon:before,
.featured-icon-box.style9.active,
.featured-icon-box.style9:before,
.featured-imagebox-post.style3 .featured-content-post .cat_block-wrapper,
.featured-imagebox-post.style3 .featured-title:before,
.featured-imagebox-team.style1 .featured-content:before,
.featured-imagebox-team.style1 .media-block,
.featured-imagebox-team.style1 .media-block .social-icons li a:hover,
.featured-imagebox-team.style4 .ct-media-link ul li a,
.header--search_content button.close-search,
.progress-bar.bg-primary,
.sidebar .widget .widget--title:before,
.slick-container .slick-arrow:hover,
.social-icons.square li > a:hover,
.testimonials.ct-testimonial-box-view-style3 .testimonial-content:before,
.text-primary .tooltip:after,
.text-primary [data-tooltip]:after,
.tooltip:after,
.widget .tagcloud a:hover,
[data-tooltip]:after,
nav.main-menu ul.menu li ul.mega-submenu li a:hover,
nav.main-menu ul.menu li ul.mega-submenu li.active > a {
  background-color: var(--primary) !important;
}
.bg-darkgrey .tooltip-top:before,
.bg-darkgrey .tooltip:before,
.bg-primary .tooltip-top:before,
.bg-primary .tooltip:before,
.bg-primary [data-tooltip]:before,
.ct-pricing-plan,
.header--search .header--search_content,
.text-primary .tooltip-top:before,
.text-primary .tooltip:before,
.tooltip-top:before,
.tooltip:before,
[data-tooltip]:before,
article.ct-blog-classic {
  border-top-color: var(--primary) !important;
}
.featured-icon-box.style9 .featured-icon,
.featured-icon-box.style9 .featured-title:after,
.featured-icon-box.style9:before {
  border-color: var(--primary);
}
.featured-icon-box.style4 .featured-desc:after,
.featured-icon-box.style4:hover .featured-desc:after,
.header--btn:before,
.header--search .header--search_content:before {
  border-bottom-color: var(--primary);
}
.bg-darkgrey,
.bg-darkgrey .ct-stickable-header.fixed-header,
.bg-darkgrey > .bg-layer,
.bg-primary .bg-primary,
.btn.btn--fill.btn--dark,
.btn.btn--fill.btn--primary:not(.btn-inline):before,
.btn.btn--outlined.btn--dark:not(.btn-inline):before,
.ct-header-style-04
  .site-header-menu-inner
  .btn-show-menu-mobile
  .menubar-box
  .menubar-inner,
.ct-header-style-04
  .site-header-menu-inner
  .btn-show-menu-mobile
  .menubar-box
  .menubar-inner:after,
.ct-header-style-04
  .site-header-menu-inner
  .btn-show-menu-mobile
  .menubar-box
  .menubar-inner:before,
.featured-icon-box.style9,
.featured-imagebox-team.style4 .ct-media-link ul li a:hover,
.testimonials.ct-testimonial-box-view-style3:hover .testimonial-content:before {
  background-color: var(--gray-dark);
}
.ct-header-style-02 .ct-stickable-header.fixed-header .header--search i,
.ct-stickable-header.fixed-header .top_bar_contact_item .social-icons li a,
.featured-icon-box.style11 a:hover,
.featured-imagebox-team.style1 .media-block .social-icons li a:hover,
.featured-imagebox-team.style1 .media-block ul li a:hover,
.featured-imagebox-team.style1 .media-block ul li a:hover i,
.header--extra {
  color: var(--gray-dark) !important;
}
.bg-darkgrey .header--search .search_btn:hover,
.btn.btn--outlined.btn--dark,
.btn.btn--outlined.btn--dark:hover,
.featured-icon-box.style1:hover .featured-icon,
.tooltip-top:before,
.tooltip:before,
:not(.bg-darkgrey) .text-primary a,
:not(.bg-darkgrey) .text-primary i,
[data-tooltip]:before {
  border-color: var(--secondary);
}
a.text-primary:hover {
  color: var(--gray-dark);
}
.bg-darkgrey .btn--primary,
.bg-darkgrey .btn--primary i,
.bg-darkgrey .btn--primary:hover,
.bg-darkgrey .btn--primary:hover i,
.bg-darkgrey .btn:not(.btn--fill).btn--primary:hover,
.bg-darkgrey .section-title h2.title,
.bg-darkgrey .section-title p,
.bg-darkgrey a,
.bg-darkgrey h1,
.bg-darkgrey h2,
.bg-darkgrey h3,
.bg-darkgrey h4,
.bg-darkgrey h6,
.bg-darkgrey i,
.bg-darkgrey span,
.bg-primary .section-title h2.title,
.bg-primary a,
.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h6,
.bg-primary i,
.bg-primary span,
.bg-primary.text-white i,
.btn--fill.btn--primary,
.btn--fill.btn--primary i,
.btn--outlined.btn--primary:hover,
.btn--outlined.btn--primary:hover i,
.btn.btn--fill.btn--dark,
.btn.btn--fill.btn--dark i,
.btn.btn--outlined.btn--dark:hover,
.btn.btn--outlined.btn--dark:hover i,
.btn.btn--outlined.btn--primary:hover,
.ct-stickable-header.fixed-header
  .header--extra
  .header--search
  button.close-search
  i,
.ct-stickable-header.fixed-header
  .header--extra
  .header--search
  button.close-search
  i:hover,
.ct-stickable-header.fixed-header
  nav.main-menu
  ul.menu
  li
  ul.mega-submenu
  li.active
  > a,
.featured-icon-box.style4.active .featured-icon .ct-icon i,
.featured-icon-box.style4:hover .featured-icon .ct-icon i,
.featured-icon-box.style9.active .featured-icon h1,
.featured-icon-box.style9:hover .featured-icon h1,
.slick-container .slick-arrow:hover,
.text-white,
.text-white .ct-social-links-wrapper ul li a,
.text-white a,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h6,
.text-white span,
.toggle .toggle-title a.active,
.widget .tagcloud a:hover,
:not(.bg-primary) .text-white span:not(.text-primary),
nav.main-menu ul.menu li ul.mega-submenu li.active > a,
nav.main-menu ul.menu li > ul.mega-submenu li a:hover {
  color: var(--white) !important;
}
.bg-darkgrey .testimonials-info .testimonial-caption label,
.bg-darkgrey .testimonials-info .testimonials .testimonial-content blockquote,
.bg-darkgrey span,
.bg-primary .testimonials-info .testimonial-caption label,
.bg-primary .testimonials-info .testimonials .testimonial-content blockquote,
.bg-primary i,
.bg-primary span,
.footer .copyright,
.second-footer .widget--text p,
.widget ul.ct-timelist-block li,
.widget ul.widget_contact_wrapper li {
  color: rgba(255, 255, 255, 0.65);
}
.bg-primary i,
.bg-primary p,
.bg-primary span {
  color: rgba(255, 255, 255, 0.95);
}
.accordion .toggle .toggle-title a.active,
.bg-darkgrey .btn.btn--fill.btn--primary:hover,
.bg-darkgrey .btn.btn--fill.btn--primary:not(.btn-inline):hover:before,
.bg-primary .btn.btn--fill.btn--dark:hover,
.bg-white,
.bg-white > .bg-layer {
  background-color: var(--white);
}
.featured-icon-box.style9.active .featured-icon,
.featured-icon-box.style9.active .featured-title:after,
.featured-icon-box.style9:hover .featured-icon,
.featured-icon-box.style9:hover .featured-title:after {
  border-color: var(--white);
}
.featured-imagebox.featured-imagebox-post:hover .btn:after,
nav.show ul.menu li ul.mega-submenu li a:hover,
nav.show ul.menu > li a:hover {
  color: var(--gray-dark);
}
.featured-icon-box.style1 .ct-icon:before {
  background-color: var(--gray-light);
}
#preloader {
  position: fixed;
  z-index: 999999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  display: flex;
  text-align: center;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
#preloader .loader-blob {
  position: relative;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  width: 2em;
  height: 2em;
}
#preloader .loader-blob:after,
#preloader .loader-blob:before {
  content: "";
  width: inherit;
  height: inherit;
  border-radius: 50%;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: loader-blob 2s infinite ease-in-out;
  animation: loader-blob 2s infinite ease-in-out;
}
#preloader .loader-blob:after {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
@-webkit-keyframes loader-blob {
  0%,
  100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
@keyframes loader-blob {
  0%,
  100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
ul.social-icons {
  margin: 0;
  padding: 0;
}
.social-icons li {
  display: inline-block;
  border: none;
  z-index: 1;
  position: relative;
}
.widget .social-icons li > a {
  display: block;
  height: 33px;
  width: 33px;
  line-height: 35px;
  font-size: 13px;
  color: var(--light);
  border-color: transparent;
  border-width: 0;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.social-icons li {
  margin: 0 2px;
}
.social-icons li:last-child {
  margin-right: 0;
}
.social-icons li a {
  display: block;
  min-width: 26px;
  text-align: center;
  font-size: 16px;
}
.ct-topbar-wrapper .top-contact li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}
.ct-header-style-02 .site-header-menu-inner.ct-stickable-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.ct-header-style-02 #site-header-menu .site-navigation .widget_info {
  position: relative;
  padding-left: 40px;
  margin-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  height: 100px;
  vertical-align: initial;
  padding-top: 10px;
}
#site-header-menu #site-navigation .menu > ul > li {
  display: inline-block;
  position: relative;
}
#site-header-menu #site-navigation .menu ul {
  padding: 0;
  margin: 0;
  float: right;
}
#site-header-menu #site-navigation .menu ul li:hover > ul {
  opacity: 1;
  display: block;
  visibility: visible;
  height: auto;
}
#site-header-menu #site-navigation .menu ul li ul > li:not(:last-child) {
  border-bottom: 1px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
#site-header-menu #site-navigation .menu ul ul > li {
  position: relative;
}
#site-header-menu #site-navigation .menu > ul li ul li a {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: var(--gray);
}
.ct-topbar-wrapper {
  line-height: 49px;
  position: relative;
}
.ct-topbar-wrapper .top-contact.text-left {
  position: relative;
  float: left;
}
.ct-topbar-wrapper .list-inline {
  display: inline-block;
  line-height: 50px;
}
.top-contact i {
  margin-right: 7px;
}
.top-contact li {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
}
.top-contact.text-left li:first-child {
  padding-left: 0;
}
.top-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  position: relative;
}
.ct-topbar-wrapper .ct-social-links-wrapper {
  margin: 0;
  position: relative;
  padding-left: 7px;
}
.ct-topbar-wrapper .social-icons li {
  margin: 0 3px;
}
.ct-topbar-wrapper .social-icons li > a {
  display: block;
  border: none;
  width: 18px;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  font-weight: 500;
  background-color: transparent;
  text-align: center;
}
.ct-topbar-wrapper .social-icons li > a {
  display: block;
  border: none;
  width: 16px;
  height: 25px;
  line-height: 25px;
  font-size: 15px;
  font-weight: 500;
  background-color: transparent;
  text-align: center;
}
.ct-topbar-wrapper .top-contact.text-left li:not(:last-child):before {
  content: "";
  height: 18px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.09);
  display: block;
  position: absolute;
  right: 0;
  top: 17px;
}
.widget_info {
  padding-left: 50px;
  position: relative;
}
.widget_info .widget_icon {
  font-size: 45px;
  margin-right: 15px;
  line-height: 50px;
}
.widget_info .widget_title {
  font-size: 19px;
  line-height: 25px;
  font-weight: 700;
  margin: 0;
}
.widget_info:after {
  content: "";
  height: 110px;
  width: 1px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  display: block;
  position: absolute;
  left: 0;
  top: -15px;
}
.widget_content {
  margin-top: 25px;
}
.widget_content .widget_title {
  font-weight: 600;
  font-size: 23px;
  line-height: 24px;
  color: var(--white);
}
.widget_info .widget_content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--white);
  font-family: inherit;
}
.tooltip-top {
  position: relative;
}
.tooltip:after,
.tooltip:before,
[data-tooltip]:after,
[data-tooltip]:before {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
    -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
    -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
    transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}
.tooltip:before,
[data-tooltip]:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: 0 0;
  content: "";
}
.tooltip-top:before,
.tooltip:before,
[data-tooltip]:before {
  margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: #000;
  border-top-color: hsla(0, 0%, 20%, 0.9);
}
.tooltip-top:after,
.tooltip-top:before,
.tooltip:after,
.tooltip:before,
[data-tooltip]:after,
[data-tooltip]:before {
  bottom: 100%;
  left: 50%;
}
.tooltip-top:focus:after,
.tooltip-top:focus:before,
.tooltip-top:hover:after,
.tooltip-top:hover:before,
.tooltip:focus:after,
.tooltip:focus:before,
.tooltip:hover:after,
.tooltip:hover:before,
[data-tooltip]:focus:after,
[data-tooltip]:focus:before,
[data-tooltip]:hover:after,
[data-tooltip]:hover:before {
  -webkit-transform: translateY(-12px);
  -moz-transform: translateY(-12px);
  transform: translateY(-12px);
}
.tooltip-top:after,
.tooltip:after,
[data-tooltip]:after {
  margin-left: -60px;
}
.tooltip:after,
[data-tooltip]:after {
  z-index: 1000;
  padding: 8px;
  width: 120px;
  color: var(--white);
  content: attr(data-tooltip);
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  border-radius: 5px;
}
.tooltip:focus:after,
.tooltip:focus:before,
.tooltip:hover:after,
.tooltip:hover:before,
[data-tooltip]:focus:after,
[data-tooltip]:focus:before,
[data-tooltip]:hover:after,
[data-tooltip]:hover:before {
  visibility: visible;
  opacity: 1;
}
.slick-slide {
  border: 0;
  outline: 0;
}
.slide .slide-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slick-container .slick-arrow {
  height: 45px;
  width: 45px;
  border-radius: 5px;
  z-index: 1;
  border: 0;
  color: inherit;
  background-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 10px 0 rgba(0, 43, 92, 0.08);
  border: 0;
}
.slick-container .slick-arrow:hover {
  color: var(--white);
}
.slick-container .slick-next {
  right: 0;
}
.slick-container .slick-next:before,
.slick-container .slick-prev:before {
  font-family: FontAwesome;
  font-size: 25px;
  line-height: 1;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-container .slick-prev:before {
  content: "\f104";
  padding-right: 2px;
}
.slick-container .slick-next:before {
  content: "\f105";
  padding-left: 4px;
}
.slick-next,
.slick-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: 0;
  background: 0 0;
}
.banner-slider.slick-slider .slick-prev:before {
  content: "\e64a";
}
.banner-slider.slick-slider .slick-next:before,
.banner-slider.slick-slider .slick-prev:before {
  font-family: "Font Awesome 6 Pro";
  font-size: 40px;
  opacity: 1;
  color: var(--white);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.site-branding img.stickylogo {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 26px;
  transition: none;
}
.site-branding img {
  z-index: 1;
  max-height: 90px;
  position: relative;
  transition: none;
}
.site-branding a.home-link {
  font-weight: 400;
  font-size: 26px;
  line-height: 27px;
  color: #202020;
}
.site-branding {
  padding-right: 25px;
  float: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100px;
  line-height: 100px;
}
.ct-header-style-04 .site-branding:before {
  content: "";
  position: absolute;
  left: auto;
  right: 83%;
  top: 0;
  width: 1200px;
  height: 100px;
  background-color: var(--light);
  margin-right: 0;
  margin-left: 0;
  z-index: -1;
}
.ct-header-style-04 .header--extra .header--search a {
  text-align: left;
}
.site-header-menu .site-header-menu-inner .mega-menu-link a {
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  color: var(--white);
}
.site-header-menu nav.main-menu ul.menu > li > a {
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
}
.ct-header-style-02 .site-header-menu .ct-stickable-header {
  padding-left: 45px;
  padding-right: 45px;
}
.mega-menu-item li {
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  color: var(--white);
}
#totop,
.btn,
.featured-icon,
.featured-icon-box,
.featured-icon-box .featured-icon,
.featured-imagebox-team.style1 .featured-content:after,
button,
img {
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
#site-header-menu #site-navigation .menu ul li > a,
.accordion .toggle-title a,
.featured-title h5,
.site-branding,
.social-icons li > a,
a,
a.btn,
a.nav-link,
i.btn {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.testimonials-info:after {
  border-bottom-color: var(--gray-dark) !important;
}
.table {
  width: 100%;
  margin-bottom: 0;
  color: #212529;
}
.table td,
.table th {
  padding: 0;
  vertical-align: top;
  border-top: 1px solid var(--gray-light);
  border: 1px solid rgba(189, 182, 182, 0.2);
}
.header--extra {
  padding-left: 25px;
  position: relative;
}
.bg-darkgrey .header--extra:before {
  background-color: rgba(255, 255, 255, 0.09);
}
.header--search #searchbox {
  position: relative;
}
.header--extra .header--search {
  position: relative;
}
.bg-darkgrey .header--search .search_btn {
  background-color: transparent;
  color: inherit;
}
.bg-darkgrey .header--search .search_btn i {
  color: var(--white);
}
.header--search .search_btn i {
  position: relative;
  padding: 0;
  border: none;
  font-size: 16px;
  font-weight: 700 !important;
}
.header--search_content button.close-search {
  position: absolute;
  top: 0;
  bottom: 0;
  color: var(--white);
  right: 0;
  width: 50px;
  border-radius: 0;
  box-shadow: unset;
  border-top-left-radius: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 0;
}
.header--search .search_btn {
  font-size: 16px;
  height: 30px;
  width: 45px;
  line-height: 31px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}
.header--search_content button.close-search i {
  color: var(--white);
}
.header--search .header--search_content {
  position: absolute;
  top: 217%;
  right: -20px;
  width: 400px;
  background: var(--white);
  border-top: 3px solid;
  opacity: 0;
  padding: 20px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  transition: all ease 0.3s;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.header--search .header--search_content:before {
  position: absolute;
  right: 27px;
  top: -8px;
  width: 47px;
  height: 47px;
  text-align: center;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom-width: 8px;
  border-bottom-style: solid;
  content: " ";
}
.header--search .header--search_content.on {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.header--search #search_query_top {
  font-size: 13px;
  text-align: left;
  height: 50px;
  border: none;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  box-shadow: none !important;
  background-color: var(--gray-light);
  width: 90%;
  line-height: 50px;
}
.site-navigation {
  position: relative;
  z-index: 4;
}
@media only screen and (min-width: 1200px) {
  nav.main-menu ul.menu li ul.mega-submenu li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    padding: 6px 25px 6px 40px;
    width: max-content;
    color: var(--gray);
  }
  .bg-darkgrey
    #site-header-menu
    .site-navigation
    .main-menu
    > ul
    > li:hover
    > a:after,
  .bg-darkgrey
    #site-header-menu
    .site-navigation
    .main-menu
    > ul
    > li
    > a:hover:after {
    transform: scale(0);
    opacity: 0;
  }
  .bg-darkgrey
    #site-header-menu
    .site-navigation
    .main-menu
    > ul
    > li
    > a:after,
  .bg-darkgrey
    #site-header-menu
    .site-navigation
    .main-menu
    > ul
    > li
    > a:before {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.footer {
  position: relative;
  z-index: 1;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-image: url(../images/footer-image.html);
}
.footer-logo {
  margin-bottom: 32px;
}
.footer-logo img {
  max-height: 45px;
}
.footer .widget .widget--title {
  font-weight: 600;
  font-size: 25px;
  line-height: 24px;
  margin-bottom: 24px;
  display: inline-block;
  position: relative;
}
.widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer .ct-row-wrapper-bg-layer.bg-layer {
  opacity: 0.75;
}
.second-footer .widget-area .widget {
  padding: 23px 0 30px;
}
.second-footer .container:after {
  top: 0;
  bottom: auto;
}
.footer-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .second-footer .row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
}
.widget.widget--nav-menu ul li a {
  font-weight: 400;
}
.widget.widget--nav-menu ul li {
  display: block;
  padding: 0 0 11px 0;
  position: relative;
}
.widget ul.ct-timelist-block li {
  font-size: 14px;
  line-height: 23px;
  padding: 14px 0 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.widget ul.menu li a:hover:before {
  opacity: 1;
}
.widget ul.menu li a:before {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  content: "\f101";
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: unset;
  font-size: 10px;
}
.widget ul.menu li {
  display: inline-block;
  width: calc(45% - 2px);
  padding: 0 0 15px 0;
  position: relative;
}
.widget ul.menu li a:hover {
  padding-left: 18px;
}
.widget ul.menu li a {
  display: inline-block;
  transition: all 0.5s ease 0s;
}
.widget ul.menu li:last-child {
  padding-bottom: 0;
}
.widget ul.ct-timelist-block {
  padding: 0;
  font-size: 14px;
  margin-top: 0;
}
.widget ul.ct-timelist-block li:first-child {
  padding-top: 0;
}
.widget ul.ct-timelist-block li {
  padding: 5px 0 5px 0;
  border-bottom: 0;
}
.widget ul.ct-timelist-block li .service-time {
  float: right;
  color: rgba(255, 255, 255, 0.6);
}
ul.widget_contact_wrapper {
  padding-top: 15px !important;
}
ul.widget_contact_wrapper li {
  padding-left: 35px;
  position: relative;
  padding-bottom: 15px;
  line-height: 24px;
}
ul.widget_contact_wrapper li:last-child {
  padding-bottom: 0;
}
ul.widget_contact_wrapper li i {
  position: absolute;
  left: 0;
  top: 2px;
  line-height: 1;
  width: 1em;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}
.footer-nav-menu li:first-child {
  padding-left: 0;
}
.footer-nav-menu li {
  display: inline-block;
  padding-left: 2px;
  padding-right: 14px;
  font-size: 14px;
  padding-bottom: 0;
}
.footer-nav-menu {
  text-align: right;
}
ul.footer-nav-menu li:not(:last-child):after {
  position: absolute;
  top: 0;
  content: "|";
  padding-left: 7px;
}
.widget .social-icons li > a i {
  color: var(--white) !important;
}
.copyright {
  padding-top: 20px;
  padding-bottom: 15px;
  font-size: 14px;
  text-transform: capitalize;
}
#totop {
  font-weight: 900;
  color: var(--white);
  display: none;
  position: fixed;
  right: 34px;
  bottom: 50px;
  z-index: 999;
  height: 0;
  width: 0;
  font-size: 0;
  text-align: center;
  padding-top: 3px;
  line-height: 34px;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
}
#totop.top-visible {
  height: 40px;
  width: 40px;
  font-size: 15px;
  display: inline;
}
@keyframes jump {
  0% {
    bottom: 20px;
  }
  50% {
    bottom: 40px;
  }
  100% {
    bottom: 20px;
  }
}
#totop.top-visible {
  animation: jump 4s infinite;
}
@-webkit-keyframes float_up_down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes float_up_down {
  0% {
    transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(30px);
    transform: translateY(30px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.ct-page-title-row-6 {
  background: url(https://media.licdn.com/dms/image/v2/D4D12AQEkuNOiTdMZpQ/article-inline_image-shrink_1000_1488/article-inline_image-shrink_1000_1488/0/1692131194856?e=1740614400&v=beta&t=j6nK4y00091XaOmYZEXKQvFFaOheQAGK3dMGcWRMLmE);
  background-position: center top !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
.ct-page-title-row-inner {
  width: 100%;
  height: 270px;
  text-align: center;
  background-color: transparent;
  padding: 225px 0 250px;
  text-align: center;
  vertical-align: middle;
}
.page-title-heading h2 {
  font-weight: 600;
  text-transform: capitalize;
  font-size: 58px;
  line-height: 65px;
}
article.ct-blog-classic {
  margin-bottom: 40px;
  padding-bottom: 0;
}
article.ct-blog-classic:last-child {
  margin-bottom: 15px;
}
article.ct-blog-classic .ct-post-featured-wrapper {
  position: relative;
  overflow: hidden;
}
.ct-blog-classic blockquote {
  display: block;
  padding: 120px 40px 6px;
  position: relative;
  border-left: none;
  color: #343c5c;
  margin: 30px 0 30px 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  min-height: 100px;
  border: 1px solid var(--primary);
  border-radius: 0;
  font-style: normal;
  background-color: transparent;
  text-align: center;
}
.ct-blog-classic blockquote cite {
  font-size: 16px;
  margin-top: -10px;
  position: relative;
  font-weight: 600;
  color: var(--gray);
  font-style: normal;
}
.ct-blog-classic .list.list--icon .list-content {
  display: block;
  padding-left: 25px;
  padding-bottom: 5px;
}
.ct-blog-classic blockquote cite:before {
  content: "— ";
}
.ct-blog-classic .post-meta,
.ct-blog-single-content .post-meta {
  padding-bottom: 8px;
  display: block;
  position: relative;
}
.ct-blog-classic .post-meta {
  position: relative;
}
.ct-blog-classic .post-meta .ct-meta-line img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 5px;
}
.ct-blog-classic .post-meta .ct-meta-line,
.ct-blog-single-content .post-meta .ct-meta-line {
  font-size: 13px;
  color: #888;
  line-height: 15px;
  display: inline-block;
  padding-right: 20px;
  position: relative;
}
.ct-blog-classic .post-meta .ct-meta-line:not(:last-child):after,
.ct-blog-single-content .post-meta .ct-meta-line:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: currentColor;
  margin: 0 10px 2px;
  position: absolute;
  right: 0;
  bottom: 3px;
  opacity: 0.2;
}
article.ct-blog-classic .ct-post-featured-wrapper .ct-post-featured img {
  width: 100%;
  transform: scale(1.01);
  transition: all 0.7s ease;
}
.ct-blog-classic .post-meta .ct-meta-line i,
.ct-blog-single-content .post-meta .ct-meta-line i {
  padding-right: 7px;
  font-size: 13px;
}
.ct-blog-classic .entry-content {
  position: relative;
}
.ct-blog-classic .btn {
  line-height: 1;
}
.ct-blog-single-content .post-meta {
  display: block;
  margin-top: 20px;
  display: block;
  padding-bottom: 9px;
}
#map {
  display: block;
  height: 400px;
  width: 100%;
}
#map iframe {
  height: 100%;
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.banner-slider.slick-slider .slick-next,
.banner-slider.slick-slider .slick-prev {
  font-size: 0;
  opacity: 0;
  visibility: hidden;
  width: 50px;
  height: 50px;
  line-height: 50px;
  padding-right: 3px;
  text-align: center;
  position: absolute;
  display: block;
  z-index: 1;
  margin: 0 20px;
  background: 0 0;
  border: none;
  top: 50%;
}
.banner-slider.slick-slider .slick-next {
  right: 0;
  left: auto;
  padding-right: 0;
  padding-left: 3px;
}
.banner-slider.slick-slider:hover .slick-next,
.banner-slider.slick-slider:hover .slick-prev {
  opacity: 1;
  visibility: visible;
}
.banner-slider.slick-slider .slick-next:before,
.banner-slider.slick-slider .slick-prev:before {
  font-family: "Font Awesome 6 Pro";
  font-size: 40px;
  opacity: 1;
  color: var(--white);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.banner-slider.slick-slider .slick-prev:before {
  content: "\f104";
}
.banner-slider.slick-slider .slick-next:before {
  content: "\f105";
}
.slide {
  height: 825px;
  align-items: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.slide .slide-content--headings {
  padding: 0;
  position: relative;
  transition: all 0.4s;
  transition-delay: 1.5s;
  margin-top: 100px;
}
.fade-main {
  padding-left: 10px;
  margin: 185px 20px 99px -85px;
}
.fade-in-main {
  padding-left: 10px;
  margin: 18px 40px 99px 0;
}
.slide .slide-content--headings h2 {
  z-index: 9;
  height: auto;
  width: 100%;
  justify-content: center;
  text-align: center;
  line-height: 75px;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 90px;
  transform-origin: 50% 50%;
  opacity: 1;
  transform: translate(0, 0);
  visibility: visible;
  position: relative;
}
.slide .slide-content--headings > div h2.bg-circle {
  display: inline-block;
  width: auto;
}
.slide .slide-content--headings > div h2.bg-circle:before {
  z-index: -1;
  position: absolute;
  content: "";
  background-color: var(--primary);
  color: #fff;
  width: 100px;
  height: 100px;
  min-height: 0;
  min-width: 0;
  left: -35px;
  top: -25px;
  overflow: hidden;
  border-radius: 100px;
  transform-origin: 50% 50%;
  opacity: 1;
  transform: translate(0, 0);
  visibility: visible;
}
.slide .banner-slider--style1 .slide-content--headings h3 {
  padding: 20px 0 20px;
}
.slide .slide-content--headings h3 {
  font-size: 34px;
  color: var(--primary);
  line-height: 15px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: left;
}
.slide .slide-content--headings p {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
  font-weight: 400;
  color: #fff;
  padding: 20px 0;
}
.slide .justify-content-end .slide-content--headings p {
  font-size: 18px;
  line-height: 28px;
}
.slide .slide-content .ct-icon.base_prettyphoto .ct-icon i {
  font-size: 12px;
}
.slide .slide-content .ct-icon.base_prettyphoto {
  overflow: visible;
}
.slide .slide-content .ct-icon.base_prettyphoto .ct-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 130%;
  height: 130%;
  opacity: 0.4;
  background-color: inherit;
}
.slide .slide-content--headings {
  transition: all 0.5s ease;
}
.slide-content--headings .ct-icon {
  border: 2px solid;
  color: var(--white);
  margin: 10px 5px 10px 30px;
}
@media only screen and (max-width: 1400px) {
  .slide .slide-content--headings h2 {
    font-size: 55px;
    line-height: 60px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .slide .slide-content--headings.padding-left-space {
    padding-left: 0;
    margin-top: 0;
  }
}
@media only screen and (max-width: 1200px) {
  .slide .btn {
    font-size: 14px;
  }
  .slide .slide-content--headings.padding-left-space {
    padding-left: 0;
  }
  .fade-main {
    padding-left: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-slider .slide {
    height: 460px;
  }
  .slide .slide-content--headings h3 {
    font-size: 22px;
  }
  .slide .slide-content--headings h2 {
    font-size: 56px;
    line-height: 56px;
    width: 100%;
    padding: 0;
  }
  .slide .slide-content--headings h3 {
    font-size: 22px;
    line-height: 32px;
  }
  .slide .justify-content-end .slide-content--headings h2,
  .slide .slide-content--headings h2 {
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 0;
  }
  .slide .justify-content-end .slide-content--headings p {
    display: block;
    font-size: 13px;
    line-height: 22px;
    display: block;
    height: auto;
  }
  .slide .justify-content-end .btn.btn--md:not(.btn-inline) {
    padding: 9px 15px 8px 15px;
    font-size: 10px;
  }
  .slide .slide-content--headings :not(.fbox) p {
    margin-bottom: 40px;
    height: 0;
  }
}
@media only screen and (max-width: 991px) {
  .slide .slide-content--headings {
    margin-top: 0;
  }
  .banner-slider--classic
    .slide
    .slide-content--headings
    h3.header--round::after {
    position: relative;
    text-align: center !important;
  }
  .slide-content--headings .fade-main {
    display: none;
  }
  .slide-content--headings .fade-in-main {
    display: none;
  }
  .slide .slide-content--headings :not(.fbox) p {
    margin-bottom: 0;
    height: 14px;
  }
}
@media only screen and (max-width: 777px) {
  .slide .slide-content--headings p {
    display: none;
  }
  .slide .slide-content--headings :not(.fbox) p {
    width: 75% !important;
  }
}
@media only screen and (max-width: 767px) {
  .slide .slide-content--headings p {
    display: none !important;
  }
  .slide .slide-content--headings {
    text-align: center;
  }
  .banner-slider .slide {
    height: 360px;
  }
  .slide-content--headings .pl-30.pt-10.pb-10 {
    padding: 0;
  }
  .slide .justify-content-end .slide-content--headings h2,
  .slide .justify-content-end .slide-content--headings p {
    width: 100%;
  }
  .banner-slider--classic
    .slide
    .slide-content--headings
    h3.header--round::after {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .banner-slider .slide {
    height: 320px;
  }
  .slide .justify-content-end .slide-content--headings h2,
  .slide .slide-content--headings h2 {
    font-size: 40px;
    line-height: 45px;
  }
  .slide .btn {
    font-size: 13px;
  }
  .slide .btn.btn--md:not(.btn-inline) {
    margin-top: 10px;
  }
  .slide .justify-content-end .slide-content--headings h2 {
    font-size: 34px;
    line-height: 40px;
  }
  .slide .justify-content-end .slide-content--headings p {
    display: none;
  }
  .slide .slide-content--headings h3 {
    padding: 0;
    margin-bottom: 0;
  }
  .slide .banner-slider--style1 .slide-content--headings h3 {
    padding: 15px 0 15px;
  }
}
@media only screen and (max-width: 400px) {
  .banner-slider .slide {
    height: 300px;
  }
  .slide .justify-content-end .slide-content--headings h2,
  .slide .slide-content--headings h2 {
    font-size: 32px;
    line-height: 35px;
    font-weight: 700;
  }
  .slide .btn.base_prettyphoto span:last-child {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .banner-slider .slide {
    height: 600px;
  }
  .slide .slide-content--headings h2 {
    font-size: 55px;
    line-height: 60px;
    margin-bottom: 0;
  }
  .slide .slide-content--headings h3 {
    font-size: 25px;
  }
  .slide .slide-content--headings p {
    font-size: 13px;
    line-height: 23px;
  }
  @keyframes imageAnimation {
    0% {
      animation-timing-function: ease-in;
    }
    8% {
      transform: scale(1.02);
      animation-timing-function: ease-out;
    }
    17% {
      transform: scale(1.04);
      animation-timing-function: ease-out;
    }
    22% {
      transform: scale(1.02);
    }
    25% {
      -transform: scale(1.1);
    }
  }
  .slide-content--headings h2,
  .slide-content--headings h3 {
    color: var(--white);
  }
}
nav.main-menu .mega-menu-item.megamenu-fw {
  position: static;
}
nav.main-menu .megamenu-fw .mega-submenu {
  left: auto;
}
nav.main-menu .megamenu-fw .mega-submenu .row {
  margin: 0;
}
nav.main-menu .mega-menu-item.megamenu-fw .mega-submenu {
  left: 0;
  right: 0;
}
nav.main-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
nav.main-menu ul li {
  position: relative;
}
nav.main-menu {
  margin-bottom: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border: none;
  z-index: 9;
}
nav.main-menu li ul.mega-submenu {
  position: absolute;
  display: block;
  width: 250px;
  opacity: 0;
  border: 0;
  margin-top: 1px;
  visibility: hidden;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  background: var(--gray-dark);
  border-radius: 0;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 43, 92, 0.08);
  box-shadow: 0 0 10px 0 rgba(0, 43, 92, 0.08);
  transform: translate(0, 10px);
  transition: 0.2s ease-in;
}
nav.main-menu ul.menu > li {
  position: relative;
  display: inline-block;
  z-index: 11;
}
nav.main-menu ul.menu li ul.mega-submenu li a {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  display: block;
  padding: 13px 20px 12px 20px;
  text-align: left;
  color: var(--white);
  width: auto;
  text-transform: capitalize;
  margin: 8px 15px 10px 15px;
  border-top: 1px solid rgba(0, 43, 92, 0.04);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
@media (min-width: 1200px) {
  nav.main-menu li.mega-menu-item ul.mega-submenu li ul {
    left: 100%;
    top: 0;
    border-top: 0;
  }
  nav.main-menu ul.menu > li > a {
    display: block;
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 0 25px;
    position: relative;
  }
  nav.main-menu ul.menu > li.active > a:before,
  nav.main-menu ul.menu > li:hover > a:before {
    transform: 0;
  }
  nav.main-menu
    li.mega-menu-item
    ul.mega-submenu
    li.mega-menu-item
    > a.mega-menu-link:before {
    font-family: FontAwesome;
    float: right;
    content: "\f105";
    margin-top: 0;
    right: 24px;
    position: absolute;
  }
  nav.main-menu li.mega-menu-item:hover > ul.mega-submenu {
    opacity: 1;
    visibility: visible;
    height: auto;
    transform: translate(0, 0);
    padding: 8px 0;
  }
  nav.main-menu li.mega-menu-item:last-child > ul.mega-submenu {
    right: 0;
  }
  nav.main-menu ul.menu > li > a:not(:last-child):after {
    position: absolute;
    content: "\f107";
    font-family: FontAwesome;
    font-size: 14px;
    margin: 2px 0 0 3px;
    opacity: 0.7;
    color: inherit;
  }
}
@media (max-width: 1200px) {
  .menubar {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9;
  }
  .menubar-box {
    display: block;
    width: 30px;
    height: 24px;
  }
  .menubar-inner,
  .menubar-inner:after,
  .menubar-inner:before {
    position: absolute;
    width: 30px;
    height: 3px;
    transition-timing-function: ease;
    transition-duration: 0.15s;
    transition-property: transform;
    border-radius: 4px;
    background-color: var(--white);
  }
  .menubar--squeeze .menubar-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-duration: 0.1s;
  }
  .menubar-inner:after,
  .menubar-inner:before {
    display: block;
    content: "";
  }
  .menubar-inner:after {
    bottom: -8px;
  }
  .menubar-inner:before {
    top: -8px;
  }
  .menubar--squeeze.is-active .menubar-inner {
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: rotate(45deg);
  }
  .menubar--squeeze.is-active .menubar-inner:before {
    top: 0;
    transition: top 0.1s ease, opacity 0.1s ease 0.14s;
    opacity: 0;
  }
  .menubar--squeeze.is-active .menubar-inner:after {
    bottom: 0;
    transition: bottom 0.1s ease,
      transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
    transform: rotate(-90deg);
  }
  nav.main-menu li ul.mega-submenu {
    transform: unset;
    display: none;
  }
  nav.main-menu {
    display: none;
    max-height: 10000px;
    position: absolute;
    box-shadow: 0 0 10px 0 rgba(0, 43, 92, 0.08);
    z-index: 100;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--gray-dark);
    border-top: 3px solid var(--primary);
  }
  nav.main-menu.show {
    display: block;
    max-height: 10000px;
  }
  nav.main-menu ul.menu,
  nav.main-menu ul.menu > li {
    display: block;
    position: relative;
  }
  nav.main-menu ul.menu > li > a {
    display: block;
    font-size: 16px;
    padding: 15px 15px;
    line-height: 20px;
    text-transform: capitalize;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: left;
    color: var(--white);
  }
  nav.main-menu ul.menu li ul.mega-submenu li.active > a,
  nav.main-menu ul.menu li ul.mega-submenu li:hover > a {
    color: inherit;
  }
  nav.main-menu ul.menu > li:first-child > a {
    border-top: none;
  }
  nav.main-menu ul.menu li > ul.mega-submenu li a:hover {
    background-color: transparent;
    color: inherit;
  }
  nav.main-menu li.mega-menu-item a.mega-menu-link:after {
    font-family: FontAwesome;
    content: "\f105";
    float: right;
    font-size: 16px;
    margin-left: 10px;
  }
  nav.main-menu li.mega-menu-item a.mega-menu-link:last-child:after {
    content: unset;
  }
  nav.main-menu ul.menu li ul.mega-submenu li:not(:first-child) a {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  nav.main-menu ul.menu li ul.mega-submenu li a {
    border-bottom: 0;
  }
  nav.main-menu li.mega-menu-item.on > a.mega-menu-link:after {
    content: "\f107";
  }
  nav.main-menu ul.menu li.mega-menu-item ul.mega-submenu {
    width: 100%;
    background-color: transparent;
    float: none;
    border: none;
    padding: 0 0 0 15px;
    -moz-box-shadow: 0 0 0;
    -webkit-box-shadow: 0 0 0;
    -o-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
    -moz-border-radius: 0 0 0;
    -webkit-border-radius: 0 0 0;
    -o-border-radius: 0 0 0;
    border-radius: 0 0 0;
  }
  nav.main-menu ul.menu li.mega-menu-item ul.mega-submenu.active {
    position: relative;
    visibility: visible;
    top: 0;
    width: 100%;
    opacity: 1;
    z-index: 1;
    display: block;
    background-color: transparent;
    box-shadow: unset;
  }
  nav.main-menu ul.menu ul.mega-submenu li.mega-menu-item.on > ul.mega-submenu {
    display: inline-block;
    margin-top: -10px;
  }
}
@media only screen and (max-width: 1600px) and (min-width: 1401px) {
  .ct-header-style-02 .site-header-menu .ct-stickable-header {
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1400px) {
  .header.ct-header-style-02 {
    background: linear-gradient(90deg, #007c02, #10b981, #34d399) !important;
  }
  .ct-header-style-04 .site-branding:before {
    display: none;
  }
  .featured-imagebox-services.style1 {
    margin-top: 20px;
  }
  .top_bar_contact_item.top_bar_social {
    display: none;
  }
  header .container {
    max-width: 100%;
  }
  .site-header-menu .site-navigation {
    height: 100px;
  }
  .widget_info {
    display: none !important;
  }
  nav.main-menu ul.menu li > ul.mega-submenu li a:hover {
    color: var(--primary);
  }
  .ct-header-style-02 .menubar-inner,
  .ct-header-style-02 .menubar-inner:after,
  .ct-header-style-02 .menubar-inner:before {
    background-color: var(--white);
  }
  .ct-row .container,
  .ct-row .container-fluid,
  footer .container {
    max-width: 100%;
  }
  .ct-row .container,
  .ct-row .container-fluid,
  footer .container {
    padding: 0;
  }
  .ct-row .container > .row,
  footer .container .row {
    margin: 0;
  }
}
@media only screen and (max-width: 1400px) and (min-width: 1171px) {
  .ct-header-style-02 .site-header-menu .ct-stickable-header {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    width: 1230px;
    max-width: 1230px;
  }
  .widget_info:after {
    display: none;
  }
  #site-header-menu #site-navigation .menu > ul > li > a {
    display: block;
    margin: 0;
    padding: 0 18px 0 18px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    height: 102px;
    line-height: 102px;
  }
  #site-header-menu #site-navigation .menu > ul > li > a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
  }
  #site-header-menu #site-navigation .menu ul ul {
    position: absolute;
    display: block;
    width: 250px;
    opacity: 0;
    border: 0;
    visibility: hidden;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    background: var(--gray-dark);
    border-radius: 0;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 43, 92, 0.08);
    box-shadow: 0 0 10px 0 rgba(0, 43, 92, 0.08);
    transform: translate(0, 10px);
    transition: 0.2s ease-in;
  }
  #site-header-menu #site-navigation .menu > ul ul li a {
    margin: 0;
    display: block;
    padding: 15px 20px;
    position: relative;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
  }
  .menu {
    float: none;
  }
  .ct-stickable-header.fixed-header .site-branding img.stickylogo {
    opacity: 1;
  }
  .ct-stickable-header.fixed-header .site-branding img.standardlogo {
    opacity: 0;
  }
  .header #site-header-menu .site-navigation ul.menu > li > a {
    display: inline-block;
    margin: 0;
    padding: 0 20px 0 20px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    height: 100px;
    line-height: 100px !important;
  }
  .ct-stickable-header.fixed-header {
    z-index: 111;
    background-color: var(--white);
    box-shadow: 0 0 10px 0 rgba(0, 43, 92, 0.08);
  }
  .ct-stickable-header.fixed-header .site-navigation ul.menu > li > a,
  .ct-stickable-header.fixed-header .widget_content .widget_title,
  .ct-stickable-header.fixed-header .widget_info .widget_content p {
    color: #000 !important;
  }
  .fixed-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
  }
  .ct-stickable-header.fixed-header .header--search:before {
    top: 0;
    left: 35px;
    z-index: 9;
    background-color: rgba(9, 0, 0, 0.1);
  }
  .ct-header-style-02
    #site-header-menu
    .fixed-header
    .site-navigation
    .widget_info {
    border-left: 1px solid rgba(41, 40, 45, 0.1);
  }
  .ct-stickable-header.fixed-header .widget_info:after {
    top: 0;
    left: 0;
    z-index: 9;
    height: 95px;
    background-color: rgba(9, 0, 0, 0.1);
  }
  .ct-header-style-02 {
    /* position: absolute; */
    left: 0;
    right: 0;
    z-index: 2;
  }
  .ct-header-style-02 #site-header-menu .site-navigation {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  .ct-header-style-02 .header--btn .btn {
    border-width: 2px;
    line-height: 1;
    overflow: visible;
    margin-left: 15px;
    padding: 10px 25px 10px 25px;
    font-size: 16px;
  }
  .ct-header-style-02 #site-header-menu .site-navigation .widget_info {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
  .ct-header-style-02 .header--btn .btn:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    z-index: 1;
    bottom: 0;
    left: 28px;
    border: 10px solid transparent;
    border-bottom: 0;
    border-top-color: rgba(32, 64, 102, 0.92);
    margin-bottom: -10px;
    border-right: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .ct-header-style-02 .header--btn .btn:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    bottom: 0;
    left: 27px;
    border: 13px solid transparent;
    border-bottom: 0;
    border-top-color: var(--white);
    border-right: 0;
    margin-bottom: -15px;
  }
  .ct-header-style-02 .header--btn .btn:hover:before {
    border-top-color: var(--white);
  }
}
@media all and (max-width: 1200px) {
  .widget_info:after {
    content: unset;
  }
  .ct-topbar-wrapper,
  .header--search:before,
  .widget_content,
  .widget_info .widget_icon,
  .widget_info:after,
  a#header--btn {
    display: none;
  }
  .ct-header-style-02 .header--extra .header--search a {
    margin-right: 30px;
  }
  .ct-header-style-04 .header--extra .header--search a {
    margin-right: 30px;
  }
  .ct-header-style-02 .site-header-menu .ct-stickable-header {
    padding-left: 0;
    padding-right: 0;
  }
  .testimonials.ct-testimonial-box-view-style3
    .testimonial-avatar
    .testimonial-img
    img {
    margin: 0 auto;
  }
  .testimonials.ct-testimonial-box-view-style3 .testimonial-content {
    margin-top: -40px;
  }
  .ct-page-title-row-inner {
    height: auto;
    padding: 150px 0 157px;
  }
  .menubar-inner:after,
  .menubar-inner:before {
    height: 2px;
  }
}
@media (min-width: 992px) {
  .sidebar .sidebar-right {
    flex: 29.914%;
    max-width: 29.914%;
  }
  .sidebar .sidebar-right {
    padding-left: 20px;
  }
}
@media (max-width: 992px) {
  .ct-tabs .content-tab .content-inner.active {
    margin-top: 50px;
  }
  .counter {
    position: relative;
    top: 20px;
    right: 0;
    width: 100%;
  }
  .featured-imagebox-services.style1 {
    margin-top: 10px;
  }
  .featured-imagebox img {
    text-align: center;
    margin: 0 auto;
  }
  .featured-imagebox img {
    min-width: 100%;
  }
  .section-title h3 {
    font-size: 70px;
    line-height: 90px;
  }
  .section-title h2.title {
    font-size: 33px !important;
    line-height: 38px !important;
  }
  .page-title-heading h2 {
    font-size: 38px;
    line-height: 40px;
    margin-bottom: 5px;
  }
  .page-title-heading p {
    margin-bottom: 8px;
  }
  .ct-page-title-row-inner {
    padding: 65px 0;
  }
  .bg-layer > .container > .row > [class*="col-lg"] {
    padding: 0;
  }
  .container {
    max-width: 100% !important;
  }
  h1 {
    font-size: 50px;
    line-height: 60px;
  }
  h2 {
    font-size: 36px;
    line-height: 46px;
  }
  h3 {
    font-size: 32px;
    line-height: 42px;
  }
  h4 {
    font-size: 24px;
    line-height: 34px;
  }
  h5 {
    font-size: 19px;
    line-height: 22px;
  }
  h6 {
    font-size: 17px;
    line-height: 20px;
  }
  .ct-row {
    padding: 60px 0;
  }
  .ct-row.sidebar {
    padding: 60px 0;
  }
  .ct-row.pb-_zero-section {
    padding: 0 0 30px;
  }
  .sm-pb-30 {
    padding-bottom: 30px !important;
  }
  .sm-mt-20 {
    margin-top: 20px !important;
  }
  .sm-mb-30 {
    margin-bottom: 30px !important;
  }
  .sm-ml-0 {
    margin-left: 0 !important;
  }
  .second-footer .row {
    padding: 40px 0 25px;
  }
  .second-footer .widget-area .widget {
    padding: 20px 0 20px;
  }
  #map {
    height: 264px;
  }
  .sidebar .sidebar-right {
    margin-top: 50px !important;
    order: 1;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .section-title h2.title {
    font-size: 33px;
    line-height: 38px;
    margin-bottom: 15px;
  }
  .slick-container .slick-arrow {
    display: none;
    visibility: hidden;
  }
  .xs--mt-20 {
    margin-top: 20px !important;
  }
  .section-title h3 {
    font-size: 45px;
    line-height: 55px;
  }
  .testimonials.style1 .testimonial-content blockquote {
    margin-left: 0;
    margin-right: 0;
  }
  .slick-container .slick-arrow {
    display: none;
    visibility: hidden;
  }
  .copyright {
    text-align: center;
    display: block !important;
  }
  .footer-nav-menu {
    text-align: center;
  }
  ul.footer-nav-menu li:not(:last-child):after {
    padding-top: 25px;
  }
}
@media (max-width: 575px) {
  .header--extra .header--search {
    display: none;
  }
  h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0;
  }
  .second-footer .widget-area:nth-child(2) {
    margin-top: 0;
  }
  .featured-icon-box.style4 .featured-title h3 {
    padding-left: 0;
  }
  .featured-icon-box.style4 .featured-title h3:before {
    content: unset;
  }
}
@media only screen and (max-width: 375px) {
  .table thead th {
    vertical-align: top;
    border-bottom: 2px solid var(--gray-light);
  }
}
.widget.style1 ul.ct-timelist-block li,
.widget.style1 ul.ct-timelist-block li .service-time {
  color: inherit;
}
.widget.style1 ul.ct-timelist-block li {
  font-size: 14px;
  line-height: 23px;
  padding: 14px 0 14px 0;
  border-bottom: 1px solid rgba(111, 108, 108, 0.07);
}
.widget ul.ct-timelist-block li.selected {
  font-weight: 800;
}
.widget ul.ct-timelist-block li.selected .service-time {
  color: green;
}
select {
  padding: 15px;
}
.ct-pricing-plan .list {
  min-height: 98px;
}
.interval-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.interval-switch span {
  margin: 0 5px;
  vertical-align: middle;
}
.ct-switch {
  position: relative;
  display: inline-block;
  width: 71px;
  height: 34px;
  margin: 0;
}
.ct-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.ct-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray-light);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.ct-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
input:checked + .ct-slider {
  background-color: var(--primary);
}
input:focus + .ct-slider {
  box-shadow: 0 0 1px var(--primary);
}
input:checked + .ct-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.ct-slider.round {
  border-radius: 34px;
}
.ct-slider.round:before {
  border-radius: 50%;
}
.announcement .featured-content h5 {
  margin-bottom: 0;
  font-size: 16px;
  color: var(--gray);
}
.announcement .featured-content {
  line-height: 1;
}
.announcement .featured-icon {
  vertical-align: middle !important;
}
.ct-pricing-plan {
  height: 100%;
}
.page-item.active .page-link {
  background-color: var(--primary);
  border-color: var(--primary);
}
.page-link {
  color: var(--primary);
}
