@charset "UTF-8";

:root {
  --primary-color: #FF6000;
  --primary-color-lighten: #FFE6C7;
  --primary-color-darken: #FFA559;
  --secondary-color: #2B2B2B;
  --secondary-color-lighten: #454545;
  --secondary-color-darken: #000000;
  --decorate-color: #2B2B2B;
}



.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

.grabbing {
  cursor: url(../images/grabbing.png) 8 8, move;
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px;
}

.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut 0.7s both ease;
  animation: fadeOut 0.7s both ease;
}

.owl-fade-in {
  -webkit-animation: fadeIn 0.7s both ease;
  animation: fadeIn 0.7s both ease;
}

.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}

.owl-goDown-out {
  -webkit-animation: scaleToFade 0.7s ease both;
  animation: scaleToFade 0.7s ease both;
}

.owl-goDown-in {
  -webkit-animation: goDown 0.6s ease both;
  animation: goDown 0.6s ease both;
}

.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom 0.5s ease both;
  animation: scaleUpFrom 0.5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo 0.5s ease both;
  animation: scaleUpTo 0.5s ease both;
}

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes backSlideOut {
  25% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px);
  }

  75% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }

  100% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}

@keyframes backSlideOut {
  25% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px);
    transform: translateZ(-500px);
  }

  75% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
    transform: translateZ(-500px) translateX(-200%);
  }

  100% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
    transform: translateZ(-500px) translateX(-200%);
  }
}

@-webkit-keyframes backSlideIn {

  0%,
  25% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }

  75% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px);
  }

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

@keyframes backSlideIn {

  0%,
  25% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px) translateX(200%);
    transform: translateZ(-500px) translateX(200%);
  }

  75% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px);
    transform: translateZ(-500px);
  }

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

@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}

@keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}

@keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}

@keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}

@keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

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

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

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

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

@-webkit-keyframes bounce {

  0%,
  100%,
  20%,
  53%,
  80% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {

  0%,
  100%,
  20%,
  53%,
  80% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-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: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

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

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

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

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

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

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

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

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

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

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

@-webkit-keyframes shake {

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

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

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

@keyframes shake {

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

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

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

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

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

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

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

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

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

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

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

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes jello {
  11.1% {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes jello {
  11.1% {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {

  0%,
  100%,
  20%,
  40%,
  60%,
  80% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {

  0%,
  100%,
  20%,
  40%,
  60%,
  80% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes bounceInDown {

  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {

  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInLeft {

  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {

  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInRight {

  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {

  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInUp {

  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

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

@keyframes bounceInUp {

  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

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

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

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

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

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

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

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

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

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

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

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

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

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

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

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

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

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

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

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

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

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

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

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

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

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

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

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

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

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

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

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

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

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

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

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

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

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

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

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

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

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

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

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

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

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

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

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

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

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

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

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

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

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

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

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

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

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

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

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

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

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

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

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

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

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

@-webkit-keyframes hinge {
  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: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -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: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  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: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -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: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

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

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

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

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 0;
  }
}

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

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

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

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

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

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

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

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

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

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

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

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

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

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

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

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

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

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

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

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

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

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

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

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

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

.m-0 {
  margin: 0 !important;
}

.m-t-0 {
  margin-top: 0 !important;
}

.m-t-5 {
  margin-top: 5px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.m-t-35 {
  margin-top: 35px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.m-t-50 {
  margin-top: 50px !important;
}

.m-t-55 {
  margin-top: 55px !important;
}

.m-t-60 {
  margin-top: 60px !important;
}

.m-t-65 {
  margin-top: 65px !important;
}

.m-t-70 {
  margin-top: 70px !important;
}

.m-t-75 {
  margin-top: 75px !important;
}

.m-t-80 {
  margin-top: 80px !important;
}

.m-t-85 {
  margin-top: 85px !important;
}

.m-t-90 {
  margin-top: 90px !important;
}

.m-t-95 {
  margin-top: 95px !important;
}

.m-t-100 {
  margin-top: 100px !important;
}

.m-t-105 {
  margin-top: 105px !important;
}

.m-t-110 {
  margin-top: 110px !important;
}

.m-t-115 {
  margin-top: 115px !important;
}

.m-t-120 {
  margin-top: 120px !important;
}

.m-t-125 {
  margin-top: 125px !important;
}

.m-t-130 {
  margin-top: 130px !important;
}

.m-t-135 {
  margin-top: 135px !important;
}

.m-t-140 {
  margin-top: 140px !important;
}

.m-b-0 {
  margin-bottom: 0 !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.m-b-35 {
  margin-bottom: 35px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.m-b-50 {
  margin-bottom: 50px !important;
}

.m-b-55 {
  margin-bottom: 55px !important;
}

.m-b-60 {
  margin-bottom: 60px !important;
}

.m-b-65 {
  margin-bottom: 65px !important;
}

.m-b-70 {
  margin-bottom: 70px !important;
}

.m-b-75 {
  margin-bottom: 75px !important;
}

.m-b-80 {
  margin-bottom: 80px !important;
}

.m-b-85 {
  margin-bottom: 85px !important;
}

.m-b-90 {
  margin-bottom: 90px !important;
}

.m-b-95 {
  margin-bottom: 95px !important;
}

.m-b-100 {
  margin-bottom: 100px !important;
}

.m-b-105 {
  margin-bottom: 105px !important;
}

.m-b-110 {
  margin-bottom: 110px !important;
}

.m-b-115 {
  margin-bottom: 115px !important;
}

.m-b-120 {
  margin-bottom: 120px !important;
}

.m-b-125 {
  margin-bottom: 125px !important;
}

.m-b-130 {
  margin-bottom: 130px !important;
}

.m-b-135 {
  margin-bottom: 135px !important;
}

.m-b-140 {
  margin-bottom: 140px !important;
}

.p-0 {
  padding: 0 !important;
}

.p-t-0 {
  padding-top: 0 !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.p-t-55 {
  padding-top: 55px !important;
}

.p-t-60 {
  padding-top: 60px !important;
}

.p-t-65 {
  padding-top: 65px !important;
}

.p-t-70 {
  padding-top: 70px !important;
}

.p-t-75 {
  padding-top: 75px !important;
}

.p-t-80 {
  padding-top: 80px !important;
}

.p-t-85 {
  padding-top: 85px !important;
}

.p-t-90 {
  padding-top: 90px !important;
}

.p-t-95 {
  padding-top: 95px !important;
}

.p-t-100 {
  padding-top: 100px !important;
}

.p-t-105 {
  padding-top: 105px !important;
}

.p-t-110 {
  padding-top: 110px !important;
}

.p-t-115 {
  padding-top: 115px !important;
}

.p-t-120 {
  padding-top: 120px !important;
}

.p-t-125 {
  padding-top: 125px !important;
}

.p-t-130 {
  padding-top: 130px !important;
}

.p-t-135 {
  padding-top: 135px !important;
}

.p-t-140 {
  padding-top: 140px !important;
}

.p-b-0 {
  padding-bottom: 0 !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.p-b-55 {
  padding-bottom: 55px !important;
}

.p-b-60 {
  padding-bottom: 60px !important;
}

.p-b-65 {
  padding-bottom: 65px !important;
}

.p-b-70 {
  padding-bottom: 70px !important;
}

.p-b-75 {
  padding-bottom: 75px !important;
}

.p-b-80 {
  padding-bottom: 80px !important;
}

.p-b-85 {
  padding-bottom: 85px !important;
}

.p-b-90 {
  padding-bottom: 90px !important;
}

.p-b-95 {
  padding-bottom: 95px !important;
}

.p-b-100 {
  padding-bottom: 100px !important;
}

.p-b-105 {
  padding-bottom: 105px !important;
}

.p-b-110 {
  padding-bottom: 110px !important;
}

.p-b-115 {
  padding-bottom: 115px !important;
}

.p-b-120 {
  padding-bottom: 120px !important;
}

.p-b-125 {
  padding-bottom: 125px !important;
}

.p-b-130 {
  padding-bottom: 130px !important;
}

.p-b-135 {
  padding-bottom: 135px !important;
}

.p-b-140 {
  padding-bottom: 140px !important;
}

@media (max-width: 991px) {
  .m-0 {
    margin: 0 !important;
  }

  .m-t-sm-0 {
    margin-top: 0 !important;
  }

  .m-t-sm-5 {
    margin-top: 5px !important;
  }

  .m-t-sm-10 {
    margin-top: 10px !important;
  }

  .m-t-sm-15 {
    margin-top: 15px !important;
  }

  .m-t-sm-20 {
    margin-top: 20px !important;
  }

  .m-t-sm-25 {
    margin-top: 25px !important;
  }

  .m-t-sm-30 {
    margin-top: 30px !important;
  }

  .m-t-sm-35 {
    margin-top: 35px !important;
  }

  .m-t-sm-40 {
    margin-top: 40px !important;
  }

  .m-t-sm-45 {
    margin-top: 45px !important;
  }

  .m-t-sm-50 {
    margin-top: 50px !important;
  }

  .m-t-sm-55 {
    margin-top: 55px !important;
  }

  .m-t-sm-60 {
    margin-top: 60px !important;
  }

  .m-t-sm-65 {
    margin-top: 65px !important;
  }

  .m-t-sm-70 {
    margin-top: 70px !important;
  }

  .m-t-sm-75 {
    margin-top: 75px !important;
  }

  .m-t-sm-80 {
    margin-top: 80px !important;
  }

  .m-t-sm-85 {
    margin-top: 85px !important;
  }

  .m-t-sm-90 {
    margin-top: 90px !important;
  }

  .m-t-sm-95 {
    margin-top: 95px !important;
  }

  .m-t-sm-100 {
    margin-top: 100px !important;
  }

  .m-t-sm-105 {
    margin-top: 105px !important;
  }

  .m-t-sm-110 {
    margin-top: 110px !important;
  }

  .m-t-sm-115 {
    margin-top: 115px !important;
  }

  .m-t-sm-120 {
    margin-top: 120px !important;
  }

  .m-t-sm-125 {
    margin-top: 125px !important;
  }

  .m-t-sm-130 {
    margin-top: 130px !important;
  }

  .m-t-sm-135 {
    margin-top: 135px !important;
  }

  .m-t-sm-140 {
    margin-top: 140px !important;
  }

  .m-b-sm-0 {
    margin-bottom: 0 !important;
  }

  .m-b-sm-5 {
    margin-bottom: 5px !important;
  }

  .m-b-sm-10 {
    margin-bottom: 10px !important;
  }

  .m-b-sm-15 {
    margin-bottom: 15px !important;
  }

  .m-b-sm-20 {
    margin-bottom: 20px !important;
  }

  .m-b-sm-25 {
    margin-bottom: 25px !important;
  }

  .m-b-sm-30 {
    margin-bottom: 30px !important;
  }

  .m-b-sm-35 {
    margin-bottom: 35px !important;
  }

  .m-b-sm-40 {
    margin-bottom: 40px !important;
  }

  .m-b-sm-45 {
    margin-bottom: 45px !important;
  }

  .m-b-sm-50 {
    margin-bottom: 50px !important;
  }

  .m-b-sm-55 {
    margin-bottom: 55px !important;
  }

  .m-b-sm-60 {
    margin-bottom: 60px !important;
  }

  .m-b-sm-65 {
    margin-bottom: 65px !important;
  }

  .m-b-sm-70 {
    margin-bottom: 70px !important;
  }

  .m-b-sm-75 {
    margin-bottom: 75px !important;
  }

  .m-b-sm-80 {
    margin-bottom: 80px !important;
  }

  .m-b-sm-85 {
    margin-bottom: 85px !important;
  }

  .m-b-sm-90 {
    margin-bottom: 90px !important;
  }

  .m-b-sm-95 {
    margin-bottom: 95px !important;
  }

  .m-b-sm-100 {
    margin-bottom: 100px !important;
  }

  .m-b-sm-105 {
    margin-bottom: 105px !important;
  }

  .m-b-sm-110 {
    margin-bottom: 110px !important;
  }

  .m-b-sm-115 {
    margin-bottom: 115px !important;
  }

  .m-b-sm-120 {
    margin-bottom: 120px !important;
  }

  .m-b-sm-125 {
    margin-bottom: 125px !important;
  }

  .m-b-sm-130 {
    margin-bottom: 130px !important;
  }

  .m-b-sm-135 {
    margin-bottom: 135px !important;
  }

  .m-b-sm-140 {
    margin-bottom: 140px !important;
  }

  .p-0 {
    padding: 0 !important;
  }

  .p-t-sm-0 {
    padding-top: 0 !important;
  }

  .p-t-sm-5 {
    padding-top: 5px !important;
  }

  .p-t-sm-10 {
    padding-top: 10px !important;
  }

  .p-t-sm-15 {
    padding-top: 15px !important;
  }

  .p-t-sm-20 {
    padding-top: 20px !important;
  }

  .p-t-sm-25 {
    padding-top: 25px !important;
  }

  .p-t-sm-30 {
    padding-top: 30px !important;
  }

  .p-t-sm-35 {
    padding-top: 35px !important;
  }

  .p-t-sm-40 {
    padding-top: 40px !important;
  }

  .p-t-sm-45 {
    padding-top: 45px !important;
  }

  .p-t-sm-50 {
    padding-top: 50px !important;
  }

  .p-t-sm-55 {
    padding-top: 55px !important;
  }

  .p-t-sm-60 {
    padding-top: 60px !important;
  }

  .p-t-sm-65 {
    padding-top: 65px !important;
  }

  .p-t-sm-70 {
    padding-top: 70px !important;
  }

  .p-t-sm-75 {
    padding-top: 75px !important;
  }

  .p-t-sm-80 {
    padding-top: 80px !important;
  }

  .p-t-sm-85 {
    padding-top: 85px !important;
  }

  .p-t-sm-90 {
    padding-top: 90px !important;
  }

  .p-t-sm-95 {
    padding-top: 95px !important;
  }

  .p-t-sm-100 {
    padding-top: 100px !important;
  }

  .p-t-sm-105 {
    padding-top: 105px !important;
  }

  .p-t-sm-110 {
    padding-top: 110px !important;
  }

  .p-t-sm-115 {
    padding-top: 115px !important;
  }

  .p-t-sm-120 {
    padding-top: 120px !important;
  }

  .p-t-sm-125 {
    padding-top: 125px !important;
  }

  .p-t-sm-130 {
    padding-top: 130px !important;
  }

  .p-t-sm-135 {
    padding-top: 135px !important;
  }

  .p-t-sm-140 {
    padding-top: 140px !important;
  }

  .p-b-sm-0 {
    padding-bottom: 0 !important;
  }

  .p-b-sm-5 {
    padding-bottom: 5px !important;
  }

  .p-b-sm-10 {
    padding-bottom: 10px !important;
  }

  .p-b-sm-15 {
    padding-bottom: 15px !important;
  }

  .p-b-sm-20 {
    padding-bottom: 20px !important;
  }

  .p-b-sm-25 {
    padding-bottom: 25px !important;
  }

  .p-b-sm-30 {
    padding-bottom: 30px !important;
  }

  .p-b-sm-35 {
    padding-bottom: 35px !important;
  }

  .p-b-sm-40 {
    padding-bottom: 40px !important;
  }

  .p-b-sm-45 {
    padding-bottom: 45px !important;
  }

  .p-b-sm-50 {
    padding-bottom: 50px !important;
  }

  .p-b-sm-55 {
    padding-bottom: 55px !important;
  }

  .p-b-sm-60 {
    padding-bottom: 60px !important;
  }

  .p-b-sm-65 {
    padding-bottom: 65px !important;
  }

  .p-b-sm-70 {
    padding-bottom: 70px !important;
  }

  .p-b-sm-75 {
    padding-bottom: 75px !important;
  }

  .p-b-sm-80 {
    padding-bottom: 80px !important;
  }

  .p-b-sm-85 {
    padding-bottom: 85px !important;
  }

  .p-b-sm-90 {
    padding-bottom: 90px !important;
  }

  .p-b-sm-95 {
    padding-bottom: 95px !important;
  }

  .p-b-sm-100 {
    padding-bottom: 100px !important;
  }

  .p-b-sm-105 {
    padding-bottom: 105px !important;
  }

  .p-b-sm-110 {
    padding-bottom: 110px !important;
  }

  .p-b-sm-115 {
    padding-bottom: 115px !important;
  }

  .p-b-sm-120 {
    padding-bottom: 120px !important;
  }

  .p-b-sm-125 {
    padding-bottom: 125px !important;
  }

  .p-b-sm-130 {
    padding-bottom: 130px !important;
  }

  .p-b-sm-135 {
    padding-bottom: 135px !important;
  }

  .p-b-sm-140 {
    padding-bottom: 140px !important;
  }
}

@media (max-width: 767px) {
  .m-0 {
    margin: 0 !important;
  }

  .m-t-xs-0 {
    margin-top: 0 !important;
  }

  .m-t-xs-5 {
    margin-top: 5px !important;
  }

  .m-t-xs-10 {
    margin-top: 10px !important;
  }

  .m-t-xs-15 {
    margin-top: 15px !important;
  }

  .m-t-xs-20 {
    margin-top: 20px !important;
  }

  .m-t-xs-25 {
    margin-top: 25px !important;
  }

  .m-t-xs-30 {
    margin-top: 30px !important;
  }

  .m-t-xs-35 {
    margin-top: 35px !important;
  }

  .m-t-xs-40 {
    margin-top: 40px !important;
  }

  .m-t-xs-45 {
    margin-top: 45px !important;
  }

  .m-t-xs-50 {
    margin-top: 50px !important;
  }

  .m-t-xs-55 {
    margin-top: 55px !important;
  }

  .m-t-xs-60 {
    margin-top: 60px !important;
  }

  .m-t-xs-65 {
    margin-top: 65px !important;
  }

  .m-t-xs-70 {
    margin-top: 70px !important;
  }

  .m-t-xs-75 {
    margin-top: 75px !important;
  }

  .m-t-xs-80 {
    margin-top: 80px !important;
  }

  .m-t-xs-85 {
    margin-top: 85px !important;
  }

  .m-t-xs-90 {
    margin-top: 90px !important;
  }

  .m-t-xs-95 {
    margin-top: 95px !important;
  }

  .m-t-xs-100 {
    margin-top: 100px !important;
  }

  .m-t-xs-105 {
    margin-top: 105px !important;
  }

  .m-t-xs-110 {
    margin-top: 110px !important;
  }

  .m-t-xs-115 {
    margin-top: 115px !important;
  }

  .m-t-xs-120 {
    margin-top: 120px !important;
  }

  .m-t-xs-125 {
    margin-top: 125px !important;
  }

  .m-t-xs-130 {
    margin-top: 130px !important;
  }

  .m-t-xs-135 {
    margin-top: 135px !important;
  }

  .m-t-xs-140 {
    margin-top: 140px !important;
  }

  .m-b-xs-0 {
    margin-bottom: 0 !important;
  }

  .m-b-xs-5 {
    margin-bottom: 5px !important;
  }

  .m-b-xs-10 {
    margin-bottom: 10px !important;
  }

  .m-b-xs-15 {
    margin-bottom: 15px !important;
  }

  .m-b-xs-20 {
    margin-bottom: 20px !important;
  }

  .m-b-xs-25 {
    margin-bottom: 25px !important;
  }

  .m-b-xs-30 {
    margin-bottom: 30px !important;
  }

  .m-b-xs-35 {
    margin-bottom: 35px !important;
  }

  .m-b-xs-40 {
    margin-bottom: 40px !important;
  }

  .m-b-xs-45 {
    margin-bottom: 45px !important;
  }

  .m-b-xs-50 {
    margin-bottom: 50px !important;
  }

  .m-b-xs-55 {
    margin-bottom: 55px !important;
  }

  .m-b-xs-60 {
    margin-bottom: 60px !important;
  }

  .m-b-xs-65 {
    margin-bottom: 65px !important;
  }

  .m-b-xs-70 {
    margin-bottom: 70px !important;
  }

  .m-b-xs-75 {
    margin-bottom: 75px !important;
  }

  .m-b-xs-80 {
    margin-bottom: 80px !important;
  }

  .m-b-xs-85 {
    margin-bottom: 85px !important;
  }

  .m-b-xs-90 {
    margin-bottom: 90px !important;
  }

  .m-b-xs-95 {
    margin-bottom: 95px !important;
  }

  .m-b-xs-100 {
    margin-bottom: 100px !important;
  }

  .m-b-xs-105 {
    margin-bottom: 105px !important;
  }

  .m-b-xs-110 {
    margin-bottom: 110px !important;
  }

  .m-b-xs-115 {
    margin-bottom: 115px !important;
  }

  .m-b-xs-120 {
    margin-bottom: 120px !important;
  }

  .m-b-xs-125 {
    margin-bottom: 125px !important;
  }

  .m-b-xs-130 {
    margin-bottom: 130px !important;
  }

  .m-b-xs-135 {
    margin-bottom: 135px !important;
  }

  .m-b-xs-140 {
    margin-bottom: 140px !important;
  }

  .p-0 {
    padding: 0 !important;
  }

  .p-t-xs-0 {
    padding-top: 0 !important;
  }

  .p-t-xs-5 {
    padding-top: 5px !important;
  }

  .p-t-xs-10 {
    padding-top: 10px !important;
  }

  .p-t-xs-15 {
    padding-top: 15px !important;
  }

  .p-t-xs-20 {
    padding-top: 20px !important;
  }

  .p-t-xs-25 {
    padding-top: 25px !important;
  }

  .p-t-xs-30 {
    padding-top: 30px !important;
  }

  .p-t-xs-35 {
    padding-top: 35px !important;
  }

  .p-t-xs-40 {
    padding-top: 40px !important;
  }

  .p-t-xs-45 {
    padding-top: 45px !important;
  }

  .p-t-xs-50 {
    padding-top: 50px !important;
  }

  .p-t-xs-55 {
    padding-top: 55px !important;
  }

  .p-t-xs-60 {
    padding-top: 60px !important;
  }

  .p-t-xs-65 {
    padding-top: 65px !important;
  }

  .p-t-xs-70 {
    padding-top: 70px !important;
  }

  .p-t-xs-75 {
    padding-top: 75px !important;
  }

  .p-t-xs-80 {
    padding-top: 80px !important;
  }

  .p-t-xs-85 {
    padding-top: 85px !important;
  }

  .p-t-xs-90 {
    padding-top: 90px !important;
  }

  .p-t-xs-95 {
    padding-top: 95px !important;
  }

  .p-t-xs-100 {
    padding-top: 100px !important;
  }

  .p-t-xs-105 {
    padding-top: 105px !important;
  }

  .p-t-xs-110 {
    padding-top: 110px !important;
  }

  .p-t-xs-115 {
    padding-top: 115px !important;
  }

  .p-t-xs-120 {
    padding-top: 120px !important;
  }

  .p-t-xs-125 {
    padding-top: 125px !important;
  }

  .p-t-xs-130 {
    padding-top: 130px !important;
  }

  .p-t-xs-135 {
    padding-top: 135px !important;
  }

  .p-t-xs-140 {
    padding-top: 140px !important;
  }

  .p-b-xs-0 {
    padding-bottom: 0 !important;
  }

  .p-b-xs-5 {
    padding-bottom: 5px !important;
  }

  .p-b-xs-10 {
    padding-bottom: 10px !important;
  }

  .p-b-xs-15 {
    padding-bottom: 15px !important;
  }

  .p-b-xs-20 {
    padding-bottom: 20px !important;
  }

  .p-b-xs-25 {
    padding-bottom: 25px !important;
  }

  .p-b-xs-30 {
    padding-bottom: 30px !important;
  }

  .p-b-xs-35 {
    padding-bottom: 35px !important;
  }

  .p-b-xs-40 {
    padding-bottom: 40px !important;
  }

  .p-b-xs-45 {
    padding-bottom: 45px !important;
  }

  .p-b-xs-50 {
    padding-bottom: 50px !important;
  }

  .p-b-xs-55 {
    padding-bottom: 55px !important;
  }

  .p-b-xs-60 {
    padding-bottom: 60px !important;
  }

  .p-b-xs-65 {
    padding-bottom: 65px !important;
  }

  .p-b-xs-70 {
    padding-bottom: 70px !important;
  }

  .p-b-xs-75 {
    padding-bottom: 75px !important;
  }

  .p-b-xs-80 {
    padding-bottom: 80px !important;
  }

  .p-b-xs-85 {
    padding-bottom: 85px !important;
  }

  .p-b-xs-90 {
    padding-bottom: 90px !important;
  }

  .p-b-xs-95 {
    padding-bottom: 95px !important;
  }

  .p-b-xs-100 {
    padding-bottom: 100px !important;
  }

  .p-b-xs-105 {
    padding-bottom: 105px !important;
  }

  .p-b-xs-110 {
    padding-bottom: 110px !important;
  }

  .p-b-xs-115 {
    padding-bottom: 115px !important;
  }

  .p-b-xs-120 {
    padding-bottom: 120px !important;
  }

  .p-b-xs-125 {
    padding-bottom: 125px !important;
  }

  .p-b-xs-130 {
    padding-bottom: 130px !important;
  }

  .p-b-xs-135 {
    padding-bottom: 135px !important;
  }

  .p-b-xs-140 {
    padding-bottom: 140px !important;
  }
}

.disable-hover {
  pointer-events: none;
}

::-moz-selection {
  background: #8e8e8e;
  color: #fff !important;
}

::-moz-selection,
::-webkit-selection,
::selection {
  background: #8e8e8e;
  color: #fff !important;
}

.relative {
  position: relative;
}

@media (max-width: 375px) {
  .hidden-xxs {
    display: none;
  }
}

a {
  color: var(--primary-color);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

a:hover,
a:focus {
  outline: 0;
  text-decoration: none;
  color: var(--primary-color);
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
  color: #222;
}

p,
ul,
ol,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
blockquote {
  margin: 0 0 20px;
}

h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 10px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  line-height: 1.2;
  font-weight: 600;
  color: var(--primary-color);
}

.page-index h1,
.page-index .h1,
.page-index h2,
.page-index .h2,
.page-index h3,
.page-index .h3,
.page-index h4,
.page-index .h4,
.page-index h5,
.page-index .h5,
.page-index h6,
.page-index .h6 {
  color: #5e5e5e;
}

h1,
.h1 {
  font-size: 32px;
}

h2,
.h2 {
  font-size: 26px;
}

h3,
.h3 {
  font-size: 18px;
}

h4,
.h4 {
  font-size: 16px;
}

h5,
.h5 {
  font-size: 14px;
}

h6,
.h6 {
  font-size: 12px;
}

h1.text-uppercase,
.h1.text-uppercase {
  letter-spacing: 7px;
  margin-right: -7px;
}

h2.text-uppercase,
.h2.text-uppercase,
h3.text-uppercase,
.h3.text-uppercase {
  letter-spacing: 5px;
  margin-right: -5px;
}

h4.text-uppercase,
.h4.text-uppercase {
  letter-spacing: 3px;
  margin-right: -3px;
}

h5.text-uppercase,
.h5.text-uppercase,
h6.text-uppercase,
.h6.text-uppercase {
  letter-spacing: 1px;
  margin-right: -1px;
}

.lead {
  line-height: 1.8;
  font-weight: 400;
  font-size: 16px;
}



blockquote {
  border: 0;
  background: #f8f8f8;
  font-style: italic;
  font-size: 16px;
  padding: 25px;
}

hr {
  margin: 15px 0;
}

.bottom-line,
.bottom-line2 {
  position: relative;
}

.bottom-line:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.bottom-line2:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  border-bottom: 2px solid #eee;
}

/* .bottom-line:after {
  position: absolute;
  content: "";
  display: block;
  width: 300px;
  height: 50px;
  background: url(../images/title-line.svg) no-repeat;
  background-size: contain;
  margin: 0.5rem 0;
} */

.bottom-line2:after {
  content: "";
  display: block;
  width: 35px;
  border-bottom: 2px solid var(--primary-color);
  margin: 20px auto 10px 0;
  z-index: 1;
  position: relative;
}

.bottom-line.text-right:after {
  margin: 20px 0 25px auto;
}

.bottom-line.text-center:after {
  margin: 20px auto 25px;
}

.dash-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dash-list>li {
  margin: 0 0 5px;
}

.dash-list>li:before {
  display: inline-block;
  content: "-";
  margin-right: 12px;
}

.color-white {
  color: #fff !important;
}

.color-white-dark {
  color: #f8f8f8 !important;
}

.color-white-darken {
  color: #f5f5f5 !important;
}

.color-gray {
  color: #777 !important;
}

.color-gray-light {
  color: #999 !important;
}

.color-gray-lighter {
  color: #eee !important;
}

.color-black {
  color: #000 !important;
}

.color-black-light {
  color: #222 !important;
}

.color-black-lighter {
  color: #333 !important;
  margin-bottom: 3rem;
  font-size: 24px;
}

.color-brand {
  color: #27CBC0 !important;
}

.color-brand-hvr {
  color: #1fa098 !important;
}

.color-deep-blue {
  color: #1b77c4 !important;
}

.color-facebook {
  color: #3b5998 !important;
}

.color-twitter {
  color: #00aced !important;
}

.color-google {
  color: #dd4b39 !important;
}

.color-linkedin {
  color: #007bb6 !important;
}

.color-youtube {
  color: #b00 !important;
}

.color-instagram {
  color: #517fa4 !important;
}

.color-pinterest {
  color: #cb2027 !important;
}

.color-flickr {
  color: #ff0084 !important;
}

.color-tumblr {
  color: #32506d !important;
}

.color-forusquare {
  color: #0072b1 !important;
}

.color-dribbble {
  color: #ea4c89 !important;
}

.color-vine {
  color: #00bf8f !important;
}

.color-skype,
.color-wordpress,
.color-behance {
  color: var(--primary-color) !important;
}

.color-soundcloud {
  color: #ff7e30 !important;
}

.color-stumbleupon {
  color: #ff5c30 !important;
}

.color-deviantart {
  color: #6a8a7b !important;
}

.color-yahoo {
  color: #ab47ac !important;
}

.color-digg {
  color: #75788d !important;
}

.color-github {
  color: #3f91cb !important;
}

.color-lastfm {
  color: #f34320 !important;
}

.color-deep {
  color: #0b223c !important;
}

.color-vk {
  color: #2b587a !important;
}

[class*=color-] :not(.btn) {
  color: inherit;
}

[class*=color-] a:not(.btn) {
  color: inherit !important;
}

.text-shadow {
  text-shadow: 5px 5px 20px #3a3a3a;
}

.text-xxxxs {
  font-size: 10px;
}

.text-xxxs {
  font-size: 11px;
}

.text-xxs {
  font-size: 12px;
}

.text-xs {
  font-size: 15px;
}

.text-ms {
  font-size: 17px;
  line-height: 1.2;
}

.text-md {
  font-size: 30px;
}

.text-xl {
  font-size: 40px;
}

.text-xxl {
  font-size: 48px;
}

.text-xxxl {
  font-size: 56px;
}

.text-xxxxl {
  font-size: 64px;
}

.text-xxxxxl {
  font-size: 72px;
}

.text-super-xl {
  font-size: 90px;
}

@media (max-width: 1023px) {
  .text-super-xl {
    font-size: 72px;
  }
}

@media (max-width: 767px) {
  .text-xl {
    font-size: 24px;
  }

  .text-xxl {
    font-size: 32px;
  }

  .text-xxxl {
    font-size: 36px;
  }

  .text-xxxxl {
    font-size: 40px;
  }

  .text-xxxxxl {
    font-size: 44px;
  }

  .text-super-xl {
    font-size: 48px;
  }
}

@media (max-width: 568px) {
  .text-super-xl {
    font-size: 34px;
  }
}

@media (max-width: 320px) {
  .text-super-xl {
    font-size: 26px;
  }
}

.text-100 {
  font-weight: 100 !important;
}

.text-200 {
  font-weight: 200 !important;
}

.text-300 {
  font-weight: 300 !important;
}

.text-400 {
  font-weight: 400 !important;
}

.text-500 {
  font-weight: 500 !important;
}

.text-600 {
  font-weight: 600 !important;
}

.text-700 {
  font-weight: 700 !important;
}

.text-800 {
  font-weight: 800 !important;
}

.text-900 {
  font-weight: 900 !important;
}

.alert {
  border: 0;
  border-radius: 2px;
  padding: 20px;
}

.alert-brand {
  background: #27CBC0;
  color: #17756f;
}

.alert-brand .alert-link {
  color: #12605b;
}

.progress {
  background-color: #ccc;
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 4px;
  margin-bottom: 20px;
  overflow: visible;
}

.progress-bar {
  position: relative;
  background: #2a56c7;
  background: -webkit-gradient(linear, left top, right top, from(#2a56c7), to(#06a5c0));
  background: linear-gradient(to right, #2a56c7 0%, #06a5c0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2a56c7", endColorstr="#06a5c0", GradientType=1);
  border-radius: 28px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #333;
}

.progress-title {
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
  font-weight: 700;
  margin: 0 0 10px;
  padding: 0;
}

.progress-bar>span {
  position: absolute;
  padding: 4px 0;
  display: block;
  top: -27px;
  right: 0;
  opacity: 0;
  line-height: 12px;
  font-size: 12px;
}

.progress-bar.progress-bar-success {
  background-color: #5cb85c;
}

.progress-bar.progress-bar-info {
  background-color: #5bc0de;
}

.progress-bar.progress-bar-warning {
  background-color: #f0ad4e;
}

.progress-bar.progress-bar-danger {
  background-color: #d9534f;
}

.label {
  padding: 0.2em 0.6em 0.4em;
}

.label-base {
  background: #27CBC0;
}

.form-control {
  border: 2px solid #d4d4d4;
  border-radius: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #999;
  height: 39px;
  font-size: 14px;
}

.form-control:focus {
  border-color: var(--primary-color);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control.form-transparent {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.form-control.form-circle {
  border-radius: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.input-lg {
  height: 47px;
  font-size: 14px;
}

.input-sm {
  height: 38px;
  font-size: 13px;
}

.search-form {
  position: relative;
}

.search-form:after {
  position: absolute;
  top: 0;
  right: 10px;
  font-family: "FontAwesome";
  line-height: 40px;
  content: "";
  font-size: 14px;
  color: #777;
  opacity: 0.5;
  -webkit-font-smoothing: antialiased;
}

input.form-control.form-transparent::-webkit-input-placeholder,
input.form-control.form-transparent::-moz-placeholder,
input.form-control.form-transparent:-moz-placeholder,
input.form-control.form-transparent:-ms-input-placeholder {
  color: #fff !important;
}

.search-form-inner input::-webkit-input-placeholder,
.search-form-inner input:focus::-webkit-input-placeholder,
.search-form-inner input::-moz-placeholder,
.search-form-inner input:focus::-moz-placeholder,
.search-form-inner input:-moz-placeholder,
.search-form-inner input:focus:-moz-placeholder,
.search-form-inner input:-ms-input-placeholder,
.search-form-inner input:focus:-ms-input-placeholder {
  color: #fff !important;
}

table th {
  font-weight: 600;
  color: #222;
}

.table>thead>tr>th {
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  padding: 10px;
}

.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
  border-top: 1px solid #eee;
  padding: 10px;
}

.table-bordered {
  border: 1px solid #eee;
}

.table-bordered>thead>tr>th,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>tbody>tr>td,
.table-bordered>tfoot>tr>td {
  border-color: #eee;
}

@media screen and (max-width: 767px) {
  .table-responsive {
    border: 0;
    margin-bottom: 0;
  }
}

.btn {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 11px;
  border-width: 2px;
  border-radius: 0;
  padding: 10px 24px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn.btn-round {
  border-radius: 2px;
}

.btn.btn-circle {
  border-radius: 30px;
}

.btn:focus,
.btn.focus {
  outline: 0;
}

.btn.active.focus,
.btn.active:focus {
  outline: 0;
}

.btn:active.focus,
.btn:active:focus {
  outline: 0;
}

.btn-lg {
  padding: 13px 31px;
  font-size: 13px;
}

.btn-sm {
  padding: 9px 19px;
  font-size: 11px;
}

.btn-xs {
  padding: 8px 18px;
  font-size: 10px;
}

.btn.navbar-btn {
  font-weight: 700 !important;
  font-size: 10px;
  padding: 6px 20px !important;
  margin: 24px 15px;
}

.header-small .btn.navbar-btn {
  margin: 17px 15px;
}

.btn.btn-deepblue {
  background-color: #0d2849;
  border-color: #0d2849;
  color: #fff;
}

.btn.btn-deepblue:hover,
.btn.btn-deepblue:focus {
  background-color: rgba(15, 48, 86, 0.7);
  border-color: #fff;
  color: #fff;
}

.btn.btn-line-blue {
  background: var(--primary-color);
  background: -webkit-gradient(linear, left top, left bottom, from(var(--secondary-color)), to(var(--secondary-color)));
  background: linear-gradient(to bottom, var(--secondary-color), var(--secondary-color) 100%);
  border-color: #fff;
  color: #fff;
}

.btn.btn-line-blue:hover,
.btn.btn-line-blue:focus {
  background: #2763cb;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(64%, var(--primary-color)), to(var(--primary-color)));
  background: linear-gradient(to bottom, var(--primary-color) 64%, var(--primary-color) 100%);
  border-color: var(--primary-color);
  color: #fff;
}

.btn.btn-base.btn-outline {
  background: transparent;
  border-color: #27CBC0;
  color: #27CBC0;
}

.btn.btn-base.btn-outline:hover,
.btn.btn-base.btn-outline:focus {
  background: #27CBC0;
  color: #fff;
}

.btn.btn-base.btn-link {
  background: transparent;
  border: 0;
  padding: 0;
  color: #27CBC0;
}

.btn.btn-base.btn-link:hover,
.btn.btn-base.btn-link:focus {
  background-color: transparent;
  text-decoration: none;
  color: #23b6ac;
}

.btn.btn-base.btn-fade {
  background: transparent;
  border-color: rgba(39, 203, 192, 0.5);
  color: rgba(39, 203, 192, 0.5);
}

.btn.btn-base.btn-fade:hover,
.btn.btn-base.btn-fade:focus {
  background: transparent;
  border-color: #27cbc0;
  color: #27cbc0;
}

.btn.btn-gray {
  background-color: #efefef;
  border-color: #efefef;
  color: #333;
}

.btn.btn-gray:hover,
.btn.btn-gray:focus {
  background-color: #ddd;
  border-color: #ddd;
  color: #333;
}

.btn.btn-gray.btn-outline {
  background: transparent;
  border-color: #f5f5f5;
  color: #f5f5f5;
}

.btn.btn-gray.btn-outline:hover,
.btn.btn-gray.btn-outline:focus {
  background: #f5f5f5;
  color: #333;
}

.btn.btn-gray.btn-link {
  background: transparent;
  border: 0;
  padding: 0;
  color: #f5f5f5;
}

.btn.btn-gray.btn-link:hover,
.btn.btn-gray.btn-link:focus {
  background-color: transparent;
  text-decoration: none;
  color: #e8e8e8;
}

.btn.btn-gray.btn-fade {
  background: transparent;
  border-color: rgba(245, 245, 245, 0.5);
  color: rgba(245, 245, 245, 0.5);
}

.btn.btn-gray.btn-fade:hover,
.btn.btn-gray.btn-fade:focus {
  background: transparent;
  border-color: #f5f5f5;
  color: #f5f5f5;
}

.btn.btn-dark {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

.btn.btn-dark:hover,
.btn.btn-dark:focus {
  background-color: #262626;
  border-color: #262626;
  color: #fff;
}

.btn.btn-dark.btn-outline {
  background: transparent;
  border-color: #333;
  color: #333;
}

.btn.btn-dark.btn-outline:hover,
.btn.btn-dark.btn-outline:focus {
  background: #333;
  color: #fff;
}

.btn.btn-dark.btn-link {
  background: transparent;
  border: 0;
  padding: 0;
  color: #333;
}

.btn.btn-dark.btn-link:hover,
.btn.btn-dark.btn-link:focus {
  background-color: transparent;
  text-decoration: none;
  color: #262626;
}

.btn.btn-dark.btn-fade {
  background: transparent;
  border-color: rgba(51, 51, 51, 0.5);
  color: rgba(51, 51, 51, 0.5);
}

.btn.btn-dark.btn-fade:hover,
.btn.btn-dark.btn-fade:focus {
  background: transparent;
  border-color: #333;
  color: #333;
}

.btn.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: #333;
}

.btn.btn-white:hover,
.btn.btn-white:focus {
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  color: #333;
}

.btn.btn-white.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn.btn-white.btn-outline:hover,
.btn.btn-white.btn-outline:focus {
  background: #fff;
  color: #333;
}

.btn.btn-white.btn-link {
  background: transparent;
  border: 0;
  padding: 0;
  color: #fff;
}

.btn.btn-white.btn-link:hover,
.btn.btn-white.btn-link:focus {
  background-color: transparent;
  text-decoration: none;
  color: #f2f2f2;
}

.btn.btn-white.btn-fade {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
}

.btn.btn-white.btn-fade:hover,
.btn.btn-white.btn-fade:focus {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn.btn-primary {
  background-color: #337ab7;
  border-color: #337ab7;
  color: #fff;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background-color: #2d6da3;
  border-color: #2d6da3;
  color: #fff;
}

.btn.btn-primary.btn-outline {
  background: transparent;
  border-color: #337ab7;
  color: #337ab7;
}

.btn.btn-primary.btn-outline:hover,
.btn.btn-primary.btn-outline:focus {
  background: #337ab7;
  color: #fff;
}

.btn.btn-primary.btn-link {
  background: transparent;
  border: 0;
  padding: 0;
  color: #337ab7;
}

.btn.btn-primary.btn-link:hover,
.btn.btn-primary.btn-link:focus {
  background-color: transparent;
  text-decoration: none;
  color: #2d6da3;
}

.btn.btn-primary.btn-fade {
  background: transparent;
  border-color: rgba(51, 122, 183, 0.5);
  color: rgba(51, 122, 183, 0.5);
}

.btn.btn-primary.btn-fade:hover,
.btn.btn-primary.btn-fade:focus {
  background: transparent;
  border-color: #337ab7;
  color: #337ab7;
}

.btn.btn-success {
  background-color: #5cb85c;
  border-color: #5cb85c;
  color: #fff;
}

.btn.btn-success:hover,
.btn.btn-success:focus {
  background-color: #4cae4c;
  border-color: #4cae4c;
  color: #fff;
}

.btn.btn-success.btn-outline {
  background: transparent;
  border-color: #5cb85c;
  color: #5cb85c;
}

.btn.btn-success.btn-outline:hover,
.btn.btn-success.btn-outline:focus {
  background: #5cb85c;
  color: #fff;
}

.btn.btn-success.btn-link {
  background: transparent;
  border: 0;
  padding: 0;
  color: #5cb85c;
}

.btn.btn-success.btn-link:hover,
.btn.btn-success.btn-link:focus {
  background-color: transparent;
  text-decoration: none;
  color: #4cae4c;
}

.btn.btn-success.btn-fade {
  background: transparent;
  border-color: rgba(92, 184, 92, 0.5);
  color: rgba(92, 184, 92, 0.5);
}

.btn.btn-success.btn-fade:hover,
.btn.btn-success.btn-fade:focus {
  background: transparent;
  border-color: #5cb85c;
  color: #5cb85c;
}

.btn.btn-info {
  background-color: #5bc0de;
  border-color: #5bc0de;
  color: #fff;
}

.btn.btn-info:hover,
.btn.btn-info:focus {
  background-color: #46b8da;
  border-color: #46b8da;
  color: #fff;
}

.btn.btn-info.btn-outline {
  background: transparent;
  border-color: #5bc0de;
  color: #5bc0de;
}

.btn.btn-info.btn-outline:hover,
.btn.btn-info.btn-outline:focus {
  background: #5bc0de;
  color: #fff;
}

.btn.btn-info.btn-link {
  background: transparent;
  border: 0;
  padding: 0;
  color: #5bc0de;
}

.btn.btn-info.btn-link:hover,
.btn.btn-info.btn-link:focus {
  background-color: transparent;
  text-decoration: none;
  color: #46b8da;
}

.btn.btn-info.btn-fade {
  background: transparent;
  border-color: rgba(91, 192, 222, 0.5);
  color: rgba(91, 192, 222, 0.5);
}

.btn.btn-info.btn-fade:hover,
.btn.btn-info.btn-fade:focus {
  background: transparent;
  border-color: #5bc0de;
  color: #5bc0de;
}

.btn.btn-warning {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
  color: #fff;
}

.btn.btn-warning:hover,
.btn.btn-warning:focus {
  background-color: #eea236;
  border-color: #eea236;
  color: #fff;
}

.btn.btn-warning.btn-outline {
  background: transparent;
  border-color: #f0ad4e;
  color: #f0ad4e;
}

.btn.btn-warning.btn-outline:hover,
.btn.btn-warning.btn-outline:focus {
  background: #f0ad4e;
  color: #fff;
}

.btn.btn-warning.btn-link {
  background: transparent;
  border: 0;
  padding: 0;
  color: #f0ad4e;
}

.btn.btn-warning.btn-link:hover,
.btn.btn-warning.btn-link:focus {
  background-color: transparent;
  text-decoration: none;
  color: #eea236;
}

.btn.btn-warning.btn-fade {
  background: transparent;
  border-color: rgba(240, 173, 78, 0.5);
  color: rgba(240, 173, 78, 0.5);
}

.btn.btn-warning.btn-fade:hover,
.btn.btn-warning.btn-fade:focus {
  background: transparent;
  border-color: #f0ad4e;
  color: #f0ad4e;
}

.btn.btn-danger.btn-outline {
  background: transparent;
  border-color: #d9534f;
  color: #d9534f;
}

.btn.btn-danger.btn-outline:hover,
.btn.btn-danger.btn-outline:focus {
  background: #d9534f;
  color: #fff;
}

.btn.btn-danger.btn-link {
  background: transparent;
  border: 0;
  padding: 0;
  color: #d9534f;
}

.btn.btn-danger.btn-link:hover,
.btn.btn-danger.btn-link:focus {
  background-color: transparent;
  text-decoration: none;
  color: #d43f3a;
}

.btn.btn-danger.btn-fade {
  background: transparent;
  border-color: rgba(217, 83, 79, 0.5);
  color: rgba(217, 83, 79, 0.5);
}

.btn.btn-danger.btn-fade:hover,
.btn.btn-danger.btn-fade:focus {
  background: transparent;
  border-color: #d9534f;
  color: #d9534f;
}

.btn-list .btn {
  margin-top: 5px;
  margin-bottom: 5px;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.breadcrumb a {
  color: #999;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
  color: #27CBC0;
}

.breadcrumb>li+li:before {
  color: #999;
  padding: 0 8px;
}

.breadcrumb>.active {
  color: var(--primary-color) !important;
  opacity: 1;
}

.box-icon,
.box-icon-left,
.box-icon-right {
  padding: 0;
  /*height: 40px;*/
}

.box-icon .icon-box-icon,
.box-icon-left .icon-box-icon,
.box-icon-right .icon-box-icon {
  font-size: 34px;
  color: var(--primary-color);
  margin: 0 0 10px;
}

.box-icon p:last-child,
.box-icon-left p:last-child,
.box-icon-right p:last-child {
  margin: 0;
}

.box-icon-left {
  position: relative;
  padding: 1rem;
  text-align: center;
}

.box-icon-left .icon-box-icon {
  height: 44px;
  width: 30px;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
}

.box-icon-right {
  position: relative;
  padding: 35px 50px 35px 0;
  text-align: right;
}

.box-icon-right .icon-box-icon {
  position: absolute;
  height: 44px;
  width: 30px;
  right: 0;
  top: 35px;
  text-align: center;
  line-height: 40px;
  font-size: 26px;
}

@media (max-width: 767px) {

  .box-icon-left,
  .box-icon-right {
    padding: 35px;
    text-align: center;
  }

  .box-icon-left .icon-box-icon,
  .box-icon-right .icon-box-icon {
    left: 0;
    top: 35px;
  }
}

.icon-preview {
  border: 1px solid #f5f5f5;
  display: block;
  width: 25%;
  float: left;
  padding: 10px;
  font-size: 13px;
  margin: -1px 0 0 -1px;
}

.icon-preview .icons {
  margin-right: 5px;
}

.fa-icons>div {
  border: 1px solid #f5f5f5;
  margin: -1px 0 0 -1px;
  padding: 0;
  font-size: 13px;
}

.fa-icons>div>i {
  border-right: 1px solid #f5f5f5;
  display: inline-block;
  margin-right: 5px;
  min-width: 40px;
  min-height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
}

.screenshots .screenshot {
  background: #f8f8f8;
  border-radius: 2px;
  padding: 10px;
  margin: 0 0 30px;
}

.screenshots .screenshot img {
  border-radius: 2px;
  width: 100%;
}

body:after {
  background: rgba(5, 24, 44, 0.85);
  position: fixed;
  height: 1px;
  width: 1px;
  bottom: 0;
  right: 0;
  left: 0;
  top: -1px;
  z-index: 1035;
  content: " ";
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: opacity 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  cursor: pointer;
}

body.off-canvas-cart-open:after {
  visibility: visible;
  height: 100%;
  width: 100%;
  opacity: 1;
  top: 0;
}

.off-canvas-cart-open .off-canvas-cart {
  -webkit-transform: translateX(-425px);
  transform: translateX(-425px);
}

.off-canvas-cart {
  background: #fff;
  position: fixed;
  right: -425px;
  top: 0;
  height: 100%;
  width: 425px;
  z-index: 1040;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.off-canvas-cart-header {
  text-align: right;
  padding: 22px 50px;
}

.off-canvas-cart-header>a {
  font-size: 21px;
}

.off-canvas-cart-wrapper {
  width: auto;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

.off-canvas-cart-content-wrap {
  padding: 0 50px 265px;
}

.off-canvas-cart-item {
  display: table;
  border-bottom: 1px solid #f5f5f5;
  padding: 20px 0;
  vertical-align: auto;
}

.off-canvas-cart-item:first-child {
  border-top: 1px solid #f5f5f5;
}

.off-canvas-cart-item:last-child {
  border: 0;
}

.off-canvas-cart-item-title,
.off-canvas-cart-item-trash,
.off-canvas-cart-item-thumbnail {
  display: table-cell;
  vertical-align: middle;
}

.off-canvas-cart-item-trash {
  width: 12%;
}

.off-canvas-cart-item-thumbnail {
  width: 22%;
}

.off-canvas-cart-item-thumbnail img {
  width: 100%;
}

.off-canvas-cart-item-title {
  padding: 0 0 0 20px;
  width: 66%;
}

.off-canvas-cart-footer {
  background: #fff;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}

.off-canvas-cart-info {
  background: #f8f8f8;
  padding: 20px 50px;
}

.off-canvas-cart-control {
  padding: 50px;
}

.off-canvas-cart-control .btn:not(:last-child) {
  margin-bottom: 15px;
}

@media (max-width: 736px) {
  .off-canvas-cart-content-wrap {
    padding-bottom: 20px;
  }

  .off-canvas-cart-footer {
    position: static;
  }
}

@media (max-width: 425px) {
  .off-canvas-cart {
    right: -100%;
    width: 100%;
  }

  .off-canvas-cart-open .off-canvas-cart {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  .off-canvas-cart-header,
  .off-canvas-cart-content-wrap,
  .off-canvas-cart-control {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.page-loader {
  background: #fff;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9998;
}

.loader {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  text-indent: -9999em;
  background-color: transparent;
  border: 5px solid #eee;
  border-radius: 50%;
}

.loader:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  padding: 2px;
  border-width: 2px;
  border-style: solid;
  border-color: #27CBC0 transparent transparent;
  border-radius: 50%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  animation: ringrotate 0.8s infinite cubic-bezier(0.5, 0.49, 0.49, 0.49);
  -webkit-animation: ringrotate 0.8s infinite cubic-bezier(0.5, 0.49, 0.49, 0.49);
}

@keyframes ringrotate {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes ringrotate {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

.dropdown-menu {
  background-color: #222;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  min-width: 180px;
  font-size: 12px;
  padding: 10px 0;
  z-index: 1031;
}

.dropdown-menu .divider {
  background: #363636;
  margin: 10px 0;
}

.dropdown-menu li>a {
  background: none !important;
  padding: 10px 24px 10px 20px;
  color: rgba(255, 255, 255, 0.5);
}

.dropdown-menu li>a:hover,
.dropdown-menu li>a:focus {
  color: #fff;
}

.dropdown-menu .open>a {
  color: #fff;
}

.dropdown-menu .open>a:hover,
.dropdown-menu .open>a:focus {
  color: #fff;
}

.counter {
  padding: 20px 0;
}

.counter-title {
  font-size: 40px;
}

.counter-content {
  margin: 0;
}

.team-item {
  text-align: center;
}

.team-photo {
  position: relative;
  overflow: hidden;
}

.team-photo>img {
  width: 100%;
}

.team-photo:after {
  background: transparent;
  position: absolute;
  display: block;
  content: " ";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out 0;
  transition: all 0.3s ease-in-out 0;
}

.team-social {
  position: absolute;
  padding: 20px;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out 0;
  transition: all 0.3s ease-in-out 0;
}

.team-social>div {
  display: table;
  height: 100%;
  width: 100%;
}

.team-social>div>div {
  vertical-align: middle;
  display: table-cell;
}

.team-social a {
  display: inline-block;
  padding: 0 15px;
  font-size: 24px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out 0;
  transition: all 0.3s ease-in-out 0;
}

.team-social a:hover {
  opacity: 0.7;
}

.team-inner {
  margin: 25px 0;
}

.team-name {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
}

.team-role {
  font-size: 13px;
}

.team-item:hover .team-photo:after {
  background: rgba(39, 203, 192, 0.9);
}

.team-item:hover .team-social {
  opacity: 1;
}

.team-item.team-item-dark:hover .team-photo:after {
  background: rgba(51, 51, 51, 0.9);
}

.team-item.team-item-white:hover .team-photo:after {
  background: rgba(255, 255, 255, 0.9);
}

.team-item-white .team-social a {
  color: #333;
}

.nav-tabs {
  border-bottom: 1px solid #eee;
}

.nav-tabs>li.active>a {
  border: 1px solid #eee;
  border-bottom-color: transparent;
  color: #777;
}

.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
  border: 1px solid #eee;
  border-bottom-color: transparent;
  color: #777;
}

.nav-tabs+.tab-content {
  border: 1px solid #eee;
  border-top: 0;
  padding: 20px 15px;
}

.nav-tabs+.tab-content :last-child {
  margin-bottom: 0;
}

.nav-text-tabs {
  border-bottom: 2px solid #eee;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-text-tabs>li {
  display: inline-block;
}

.nav-text-tabs>li>a {
  position: relative;
  display: block;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  color: #777;
}

.nav-text-tabs>li>a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  bottom: 10px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: -2px;
  left: 0;
}

.nav-text-tabs>li.active>a {
  color: var(--primary-color);
}

.nav-text-tabs>li.active>a:after {
  opacity: 1;
}

.nav-text-tabs+.tab-content {
  padding: 20px 0;
}

@media (max-width: 527px) {
  .nav-text-tabs>li {
    border-top: 1px solid #eee;
    text-align: center;
    display: block;
  }

  .nav-text-tabs>li>a {
    padding: 20px 15px;
  }

  .nav-text-tabs>li>a:after {
    content: none;
  }
}

.panel-heading a {
  position: relative;
  display: block;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-height: 1.5em;
  max-height: 70px;
  height: auto;
}

.panel-title {
  font-size: 15px;
  font-weight: 600;
}

.panel-default>.panel-heading {
  border: 0;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid #dadada;
  padding: 20px 15px;
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
  border-top-color: #eee;
}

.panel-heading a:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  margin-top: -5px;
  font-family: "FontAwesome";
  font-size: 11px;
  line-height: 1;
}

.panel-heading a.collapsed:after {
  content: "";
}

.panel-group .panel {
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.panel-group .panel+.panel {
  margin-top: 0;
}

.panel-group .panel:last-child {
  border-bottom: 1px solid #eee;
}

.testimonial-image {
  text-align: center;
}

.testimonial-image img {
  border-radius: 100%;
  margin-right: 15px;
  max-width: 75px;
  display: inline-block;
  vertical-align: middle;
}

.testimonial-image .cd-author-info {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
}

.testimonial {
  text-align: center;
  border: 0;
  padding: 0;
  margin: 35px 0 0;
  font-size: 16px;
}

.slider-testimonial.owl-theme .owl-controls .owl-buttons div {
  background: none;
  padding: 0;
  margin: 0;
  opacity: 1;
  font-size: 20px;
}

.slider-testimonial.owl-theme .owl-controls .owl-buttons div.owl-prev {
  position: absolute;
  left: 0;
  top: 50%;
  margin: -10px 0 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.slider-testimonial.owl-theme .owl-controls .owl-buttons div.owl-next {
  position: absolute;
  right: 0;
  top: 50%;
  margin: -10px 0 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.slider-testimonial.owl-theme .owl-controls .owl-buttons div.owl-prev:hover,
.slider-testimonial.owl-theme .owl-controls .owl-buttons div.owl-next:hover {
  opacity: 0.7;
}

.slider-testimonial .owl-item {
  padding: 0 100px;
}

.slider-testimonial .owl-pagination {
  margin: 30px 0 0;
}

.slider-testimonial .owl-page span {
  background: #fff;
  -webkit-box-shadow: 0 0 0 3px transparent;
  box-shadow: 0 0 0 3px transparent;
  border-radius: 50%;
  display: block;
  height: 10px;
  width: 10px;
  opacity: 0.5;
  zoom: 1;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.slider-testimonial .owl-page.active span {
  background: transparent;
  -webkit-box-shadow: 0 0 0 3px #fff;
  box-shadow: 0 0 0 3px #fff;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 1;
  zoom: 1;
}

.owl-controls-brand .owl-page span {
  background: #27CBC0;
}

.owl-controls-brand .owl-page.active span {
  background: transparent;
  -webkit-box-shadow: 0 0 0 3px #27cbc0;
  box-shadow: 0 0 0 3px #27cbc0;
}

@media (max-width: 767px) {

  .testimonial-image .cd-author-info,
  .testimonial-image img {
    display: block;
    margin: 0 auto 15px;
    text-align: center;
  }
}

.pagination {
  display: block;
}

.pagination>li {
  display: inline-block;
}

.pagination>li>a,
.pagination>li>span {
  display: block;
  border: 1px solid #d8d8d8;
  border-radius: 0 !important;
  padding: 8px 15px;
  float: none;
  color: #777;
}

.pagination>li>a:hover,
.pagination>li>a:focus {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.pagination>li>span:hover,
.pagination>li>span:focus {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.pagination>.active>a,
.pagination>.active>span {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.pagination>.active>a:hover,
.pagination>.active>a:focus {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.pagination>.active>span:hover,
.pagination>.active>span:focus {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
  border-radius: 0;
}

.pagination.btn-deepblue>li>a,
.pagination.btn-deepblue>li>span {
  display: block;
  border: 1px solid #d8d8d8;
  border-radius: 0;
  padding: 8px 15px;
  float: none;
  color: #777;
}

.pagination.btn-deepblue>li>a:hover,
.pagination.btn-deepblue>li>a:focus {
  background: #011f39;
  border-color: #011f39;
  color: #fff;
}

.pagination.btn-deepblue>li>span:hover,
.pagination.btn-deepblue>li>span:focus {
  background: #011f39;
  border-color: #011f39;
  color: #fff;
}

.pagination.btn-deepblue>.active>a,
.pagination.btn-deepblue>.active>span {
  background: #011f39;
  border-color: #011f39;
  color: #fff;
}

.pagination.btn-deepblue>.active>a:hover,
.pagination.btn-deepblue>.active>a:focus {
  background: #011f39;
  border-color: #011f39;
  color: #fff;
}

.pagination.btn-deepblue>.active>span:hover,
.pagination.btn-deepblue>.active>span:focus {
  background: #011f39;
  border-color: #011f39;
  color: #fff;
}

.pagination.btn-deepblue>li:first-child>a,
.pagination.btn-deepblue>li:first-child>span {
  border-radius: 0;
}

.pager li>a,
.pager li>span {
  border: 2px solid #eee;
  border-radius: 3px;
  padding: 8px 15px;
  float: none;
  line-height: 1.42857143;
  color: #777;
}

.pager li>a:hover,
.pager li>a:focus {
  background: #27CBC0;
  border-color: #27CBC0;
  color: #fff;
}

.pager li>span:hover,
.pager li>span:focus {
  background: #27CBC0;
  border-color: #27CBC0;
  color: #fff;
}

.feature {
  margin: 35px 0;
}

.feature img {
  width: 100%;
  margin: 0 0 25px;
}

.feature.feature-circle {
  text-align: center;
}

.feature.feature-circle img {
  width: auto;
  border-radius: 50%;
}

.feature .box-shadow {
  -webkit-box-shadow: 0 6px 32px -15px #000;
  box-shadow: 0 6px 32px -15px #000;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.feature .box-shadow:hover {
  opacity: 0.5;
}

.demo-img {
  padding: 0 20px;
}

.maps-container {
  height: 450px;
}

#map {
  height: 100% !important;
  width: 100%;
}

.client {
  text-align: center;
  opacity: 0.7;
  -webkit-transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
}

.client:hover,
.client:focus {
  opacity: 1;
}

.clients-carousel {
  text-align: center;
}

.clients-carousel .owl-item a {
  -webkit-transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  opacity: 0.7;
}

.clients-carousel .owl-item a:hover,
.clients-carousel .owl-item a:focus {
  opacity: 1;
}

.clients-bordered .client {
  padding: 70px 10px;
}

.clients-bordered .client:not(:last-child) {
  border-right: 1px solid #eee;
}

@media (max-width: 991px) {
  .clients-bordered .client:nth-child(3n) {
    border: 0;
  }
}

@media (max-width: 767px) {
  .clients-bordered .client:nth-child(3n) {
    border-right: 1px solid #eee;
  }

  .clients-bordered .client:nth-child(2n) {
    border: 0;
  }
}

.pricing-table {
  background: #fff;
  -webkit-box-shadow: 0 0 1px 1px #eee;
  box-shadow: 0 0 1px 1px #eee;
  position: relative;
  text-align: center;
}

.pricing-title,
.pricing-action {
  padding: 25px 0;
}

.pricing-title h6 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
}

.pricing-price {
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  padding: 20px 0;
}

.pricing-price .price-unit {
  text-transform: uppercase;
  font-size: 54px;
  color: #222;
}

.price-unit>span {
  vertical-align: top;
  letter-spacing: 2px;
  line-height: 3.5;
  font-size: 22px;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features ul li {
  border-bottom: 1px solid #f5f5f5;
  padding: 8px 0;
}

.pricing-features ul li:nth-child(odd) {
  background: #f8f8f8;
}

.pricing-table {
  margin: 10px 0 0;
}

.pricing-table.best-value {
  z-index: 1;
  margin: 0;
}

.pricing-table.best-value .pricing-title,
.pricing-table.best-value .pricing-action {
  padding: 30px 0;
}

@media (max-width: 767px) {
  .pricing-table.best-value {
    margin: 10px 0 0;
  }
}

.pie-chart {
  position: relative;
  text-align: center;
  padding: 40px 0;
}

.pie-chart .chart {
  position: relative;
  display: block;
  height: 180px;
  width: 180px;
  margin: 0 auto 25px;
}

.pie-chart .chart>canvas {
  position: absolute;
  left: 0;
  top: 0;
  height: 100% !important;
  width: 100% !important;
}

.pie-chart .chart-text {
  vertical-align: middle;
  line-height: 180px;
  font-size: 22px;
  color: #222;
}

.pie-chart .chart-text .fa,
.pie-chart .chart-text [class*=ti-] {
  line-height: 180px;
}

.pie-chart .chart-title h5 {
  margin: 0 0 15px;
}

.pie-chart .chart-title> :last-child {
  margin-bottom: 0;
}

.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  margin: -23px 0 0;
  font-size: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  height: 46px;
  width: 46px;
  line-height: 46px;
  text-align: center;
  border-radius: 3px;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
}

.owl-prev {
  left: 23px;
}

.owl-next {
  right: 23px;
}

.owl-carousel:hover .owl-prev,
.owl-carousel:hover .owl-next {
  opacity: 0.6;
}

.owl-pagination {
  text-align: center;
  margin: 10px 0 0;
  display: block;
}

.owl-pagination+.owl-buttons .owl-prev,
.owl-pagination+.owl-buttons .owl-next {
  margin-top: -35.5px;
}

.owl-page {
  display: inline-block;
  position: relative;
  margin: 0 5px;
}

.owl-page span {
  background: #27CBC0;
}

.owl-page.active span {
  background: transparent;
  -webkit-box-shadow: 0 0 0 3px #27cbc0;
  box-shadow: 0 0 0 3px #27cbc0;
}

.carousel-controls-white .owl-prev,
.carousel-controls-white .owl-next {
  color: #fff;
}

.carousel-pagination-white .owl-page span {
  background: #fff;
}

.carousel-pagination-white .owl-page.active span {
  background: transparent;
  -webkit-box-shadow: 0 0 0 3px #fff;
  box-shadow: 0 0 0 3px #fff;
}

.image-slider {
  padding: 0;
  margin: 0;
}

.image-slider .owl-item {
  padding: 0;
  margin: 0;
}

.image-slider .owl-pagination {
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.image-slider .owl-page span {
  background: #fff;
}

.image-slider .owl-page.active span {
  background: transparent;
  -webkit-box-shadow: 0 0 0 3px #fff;
  box-shadow: 0 0 0 3px #fff;
}

.image-slider .owl-buttons .owl-prev,
.image-slider .owl-buttons .owl-next {
  margin-top: -23px;
}

.images-carousel {
  width: auto;
  margin: 0 -5px;
}

.images-carousel .owl-item {
  padding: 0 5px;
}

.box-carousel {
  width: auto;
  margin: 0 -15px;
}

.box-carousel .owl-item {
  padding: 0 15px;
}



.header {
  background-color: var(--primary-color) !important;
  background-size: cover;
  position: relative;
  z-index: 1030;
  -webkit-box-shadow: inset 0 -1px 0 #f5f5f5;
  box-shadow: inset 0 -1px 0 #f5f5f5;
  -webkit-transition: height 0.3s ease-out, background 0.3s ease-out, box-shadow 0.3s ease-out;
  -webkit-transition: height 0.3s ease-out, background 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  transition: height 0.3s ease-out, background 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  transition: height 0.3s ease-out, background 0.3s ease-out, box-shadow 0.3s ease-out;
  transition: height 0.3s ease-out, background 0.3s ease-out, box-shadow 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
}

.header.header-fixed {
  position: fixed;
  z-index: 1030;
  right: 0;
  left: 0;
}

.inner-header {
  position: relative;
  z-index: 1;
  float: left;
}

.inner-brand {
  display: table-cell;
  vertical-align: middle;
  height: auto;
  padding-top: 5px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.inner-brand .brand-light {
  display: block;
}

.menu-extras {
  padding: 0 0 0 15px;
  margin: 0 0 0 15px;
  -webkit-box-shadow: -1px 0 0 rgba(245, 245, 245, 0.12);
  box-shadow: -1px 0 0 rgba(245, 245, 245, 0.12);
  -webkit-transition: box-shadow 0.3s ease-out 0.125s;
  -webkit-transition: -webkit-box-shadow 0.3s ease-out 0.125s;
  transition: -webkit-box-shadow 0.3s ease-out 0.125s;
  transition: box-shadow 0.3s ease-out 0.125s;
  transition: box-shadow 0.3s ease-out 0.125s, -webkit-box-shadow 0.3s ease-out 0.125s;
}

.menu-extras .menu-item {
  float: left;
}

.menu-extras>.menu-item>div>a {
  position: relative;
  display: block;
  line-height: 20px;
  font-size: 18px;
  color: #fff;
  padding: 33px 10px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.header-white .menu-extras>.menu-item>div>a {
  position: relative;
  display: block;
  line-height: 20px;
  font-size: 14px;
  color: #333;
  padding: 6px 10px 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.menu-extras>.menu-item>div>a:hover,
.menu-extras>.menu-item>div>a:focus {
  color: #34cfef;
}

.cart-badge {
  position: absolute;
  background: #04bcdf;
  background: -webkit-gradient(linear, left top, left bottom, from(#04bcdf), to(#256acd));
  background: linear-gradient(to bottom, #04bcdf 0%, #256acd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#04bcdf", endColorstr="#256acd", GradientType=0);
  border-radius: 100%;
  height: 18px;
  width: 18px;
  top: 50%;
  left: 23px;
  margin-top: -18px;
  margin-left: 3px;
  text-align: center;
  line-height: 18px;
  font-weight: 700;
  font-size: 8px;
  color: #fff;
}

.cart-badge.white {
  position: absolute;
  background: #000;
  border-radius: 100%;
  height: 17px;
  width: 17px;
  top: 50%;
  left: 23px;
  margin-top: -13px;
  margin-left: 1px;
  text-align: center;
  line-height: 17px;
  font-weight: 400;
  font-size: 8px;
  color: #fff;
}

.main-nav {
  position: relative;
}

.inner-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner-nav>li {
  padding-bottom: 1rem;
  margin-right: 2rem;
}

.inner-nav>li>a {
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 20px;
  font-weight: 400;
  font-size: 15px;
  display: block;
  padding: 33px 12px;
}

.submenu,
.submenu-mega>li>ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.submenu {
  position: absolute;
  background: rgba(5, 24, 44, 0.8);
  padding: 0;
  min-width: 200px;
  opacity: 0;
  z-index: 1030;
  visibility: hidden;
  text-align: left;
  font-size: 15px;
}

/* 下拉式選單 css setting */
.submenu.white {
  position: absolute;
  top: 100%;
  background: white;
  padding: 0;
  min-width: 200px;
  opacity: 0;
  z-index: 1030;
  visibility: hidden;
  text-align: left;
  font-size: 15px;
  border: 1px solid #d9d9d9;
  margin-top: -1px;
}

.submenu-open>.submenu {
  visibility: visible;
  opacity: 1;
}

.submenu .submenu {
  left: 100%;
  top: 0;
}

.submenu-mega {
  display: table;
  width: 100%;
  padding: 0;
  right: 0;
  left: 0;
}

.submenu-mega>li {
  display: table-cell;
  padding: 15px 10px;
  width: 25%;
}

.submenu-mega>li:not(:last-child) {
  border-right: 1px solid rgba(51, 51, 51, 0.5);
}

.submenu .has-submenu>a:after {
  position: absolute;
  content: "";
  display: block;
  right: 14px;
  top: 50%;
  margin-top: -7px;
  font-family: "FontAwesome";
  text-rendering: auto;
  font-size: 10px;
}

.submenu li {
  position: relative;
}

.submenu-title {
  position: relative;
  display: block;
  line-height: 1.5;
  padding: 12px 27px 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.submenu li a {
  position: relative;
  display: block;
  line-height: 1.5;
  padding: 12px 27px 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.submenu.white li a {
  position: relative;
  display: block;
  line-height: 1.5;
  padding: 12px 27px 12px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.submenu li:last-child>a {
  border: 0;
}

.submenu-title,
.submenu-mega li a {
  border: 0;
}

.submenu-title {
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.8;
  font-weight: 700;
  font-size: 11px;
}

.submenu li a>.fa,
.submenu li a>.icons {
  text-align: center;
  margin-right: 6px;
  width: 22px;
}

.inner-nav>li>a {
  color: #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.inner-nav>li>a.active {
  color: #222;
}

.inner-nav>li>a:hover,
.inner-nav>li>a:focus {
  color: #34cfef;
}

.inner-nav>li.submenu-open>a {
  color: #34cfef;
}

.header-white .inner-nav>li>a {
  color: #000;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.submenu li>a {
  color: white;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.submenu.white li>a {
  color: black;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.submenu-title {
  color: #fff;
}

.submenu li>a:hover,
.submenu li>a:focus {
  background: var(--primary-color);
  color: #fff;
}

.submenu li.submenu-open>a {
  background: var(--primary-color);
  color: #fff;
}

.main-nav-toggle {
  border-left: 1px solid #f5f5f5;
  display: none;
  float: right;
  padding: 33px 0 33px 15px;
  margin-left: 15px;
}

.nav-icon-toggle {
  position: relative;
  height: 20px;
  width: 20px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.nav-icon-toggle span {
  background: #000;
  position: absolute;
  display: block;
  height: 1px;
  width: 100%;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.nav-icon-toggle span:nth-child(1) {
  top: 3px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.nav-icon-toggle span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.nav-icon-toggle span:nth-child(3) {
  top: 16px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.nav-icon-toggle span.deepblue {
  background: #fff;
  position: absolute;
  display: block;
  height: 1px;
  width: 100%;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.nav-icon-toggle.open span:nth-child(1) {
  top: 2px;
  left: 3px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-icon-toggle.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-icon-toggle.open span:nth-child(3) {
  top: 16px;
  left: 3px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header.header-black {
  background: rgba(5, 24, 44, 0.8);
  -webkit-box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
  -webkit-transition: height 0.3s ease-out, background 0.3s ease-out, box-shadow 0 ease-out;
  -webkit-transition: height 0.3s ease-out, background 0.3s ease-out, -webkit-box-shadow 0 ease-out;
  transition: height 0.3s ease-out, background 0.3s ease-out, -webkit-box-shadow 0 ease-out;
  transition: height 0.3s ease-out, background 0.3s ease-out, box-shadow 0 ease-out;
  transition: height 0.3s ease-out, background 0.3s ease-out, box-shadow 0 ease-out, -webkit-box-shadow 0 ease-out;
}

@media (min-width: 1120px) {
  .inner-nav>li>a , .inner-nav>li>span{
    height: 106px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.5rem!important;
  }


  .main-nav.collapse {
    display: block !important;
    overflow: visible !important;
    height: auto !important;
    padding-bottom: 0;
  }

  .main-nav.collapse.white {
    display: block !important;
    overflow: visible !important;
    height: auto !important;
    padding-bottom: 0 !important;
    text-align: center;
    margin: 0 !important;
  }

  .inner-nav>li{
    padding-bottom: 0;
  }

  .header-small .main-nav-toggle,
  .header-small .inner-nav>li>a,
  .header-small .menu-extras .menu-item a {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .header-small .inner-nav>li.active>a {
    color: #00daff;
  }

  .header-white.header-small .inner-nav>li.active>a {
    color: #00daff;
  }

  .header.header-transparent {
    background: transparent;
    -webkit-box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    -webkit-transition: height 0.3s ease-out, background 0.3s ease-out, box-shadow 0 ease-out;
    -webkit-transition: height 0.3s ease-out, background 0.3s ease-out, -webkit-box-shadow 0 ease-out;
    transition: height 0.3s ease-out, background 0.3s ease-out, -webkit-box-shadow 0 ease-out;
    transition: height 0.3s ease-out, background 0.3s ease-out, box-shadow 0 ease-out;
    transition: height 0.3s ease-out, background 0.3s ease-out, box-shadow 0 ease-out, -webkit-box-shadow 0 ease-out;
  }

  .header.header-black {
    background: rgba(5, 24, 44, 0.8);
    -webkit-box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    -webkit-transition: height 0.3s ease-out, background 0.3s ease-out, box-shadow 0 ease-out;
    -webkit-transition: height 0.3s ease-out, background 0.3s ease-out, -webkit-box-shadow 0 ease-out;
    transition: height 0.3s ease-out, background 0.3s ease-out, -webkit-box-shadow 0 ease-out;
    transition: height 0.3s ease-out, background 0.3s ease-out, box-shadow 0 ease-out;
    transition: height 0.3s ease-out, background 0.3s ease-out, box-shadow 0 ease-out, -webkit-box-shadow 0 ease-out;
  }

  .header.header-white {
    background: #fff;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: height 0.3s ease-out, background 0.3s ease-out, box-shadow 0 ease-out;
    -webkit-transition: height 0.3s ease-out, background 0.3s ease-out, -webkit-box-shadow 0 ease-out;
    transition: height 0.3s ease-out, background 0.3s ease-out, -webkit-box-shadow 0 ease-out;
    transition: height 0.3s ease-out, background 0.3s ease-out, box-shadow 0 ease-out;
    transition: height 0.3s ease-out, background 0.3s ease-out, box-shadow 0 ease-out, -webkit-box-shadow 0 ease-out;
  }

  .header.header-transparent .brand-light {
    display: inline;
  }

  .header.header-transparent .brand-dark {
    display: none;
  }

  .header.header-transparent .menu-extras {
    -webkit-box-shadow: -1px 0 0 rgba(255, 255, 255, 0.1);
    box-shadow: -1px 0 0 rgba(255, 255, 255, 0.1);
    -webkit-transition: box-shadow 0 ease-out;
    -webkit-transition: -webkit-box-shadow 0 ease-out;
    transition: -webkit-box-shadow 0 ease-out;
    transition: box-shadow 0 ease-out;
    transition: box-shadow 0 ease-out, -webkit-box-shadow 0 ease-out;
  }

  .header.header-white .menu-extras {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: box-shadow 0 ease-out;
    -webkit-transition: -webkit-box-shadow 0 ease-out;
    transition: -webkit-box-shadow 0 ease-out;
    transition: box-shadow 0 ease-out;
    transition: box-shadow 0 ease-out, -webkit-box-shadow 0 ease-out;
  }

  .header.header-transparent .inner-nav>li>a,
  .header.header-transparent .menu-extras .menu-item a {
    color: #fff;
  }

  .header.header-white .inner-nav>li>a,
  .header.header-white .menu-extras .menu-item a {
    color: #FFF;
    padding-top: 7px;
    padding-bottom: 3px;
    font-weight: bold;
  }

  .header.header-transparent .inner-nav>li>a:hover,
  .header.header-transparent .inner-nav>li>a:focus {
    color: #00daff;
  }

  .header.header-transparent .inner-nav>li.active>a,
  .header.header-transparent .inner-nav>li.submenu-open>a {
    color: #00daff;
  }

  .header.header-transparent .menu-extras .menu-item a:hover,
  .header.header-transparent .menu-extras .menu-item a:focus {
    color: #00daff;
  }

  .header.js-stick .inner-nav>li>a:hover,
  .header.js-stick .inner-nav>li>a:focus {
    color: #00daff;
  }

  .header.js-stick .inner-nav>li.active>a,
  .header.js-stick .inner-nav>li.submenu-open>a {
    color: #00daff;
  }

  .header.js-stick .menu-extras .menu-item a:hover,
  .header.js-stick .menu-extras .menu-item a:focus {
    color: #00daff;
  }

  .header.js-stick.header-white .inner-nav>li.active>a,
  .header.js-stick.header-white .inner-nav>li.active>a {
    color: var(--secondary-color-darken);
    font-weight: bold;

  }

  .header.js-stick.header-white .inner-nav>li>a:hover,
  .header.js-stick.header-white .inner-nav>li>a:focus {
    color: var(--secondary-color-darken);
  }

  .header.js-stick.header-white .inner-nav>li.submenu-open>a {
    color: var(--secondary-color-darken);
  }

  .header.js-stick.header-white .menu-extras .menu-item a:hover,
  .header.js-stick.header-white .menu-extras .menu-item a:focus {
    color: var(--primary-color);
  }
}

.header-search-form {
  background: rgba(5, 24, 44, 0.85);
  display: inline-block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header-search-form.opened {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.header-search-form-clouse {
  text-align: center;
  font-size: 24px;
  padding: 0 0 40px;
}

.form-close-btn {
  color: #fff;
}

.form-close-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}

.search-form-inner {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.search-form-inner input {
  background: transparent;
  width: 100%;
  border: none;
  text-align: center;
  font-size: 48px;
  color: #fff;
  text-align: center;
}

.search-form-inner input:focus {
  border-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

@media (max-width: 1024px) {
  .search-form-inner input {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .search-form-inner input {
    font-size: 24px;
  }
}

.module,
.module-sm,
.module-xs {
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  position: relative;
  padding: 40px 0;
}

@media (min-width: 768px) {

  .module,
  .module-sm,
  .module-xs {
    padding: 100px 0;
  }
}

.module.divider-top,
.module-sm.divider-top,
.module-xs.divider-top {
  border-top: 1px solid #eee;
}

.module.divider-bottom,
.module-sm.divider-bottom,
.module-xs.divider-bottom {
  border-bottom: 1px solid #eee;
}

.module.parallax,
.module-sm.parallax,
.module-xs.parallax {
  background-color: transparent;
}

.module-sm {
  padding: 70px 0;
}

.module-xs {
  padding: 35px 0;
}

.module-header {
  margin: 0 0 70px;
}

.module-header.title {
  margin: 0 0 5rem;
}

.module-header h1,
.module-header .h1,
.module-header h2,
.module-header .h2,
.module-header h3,
.module-header .h3,
.module-header h4,
.module-header .h4,
.module-header h5,
.module-header .h5,
.module-header h6,
.module-header .h6 {
  margin-bottom: 10px;
  font-weight: bold;
}

.no-gutter {
  margin-right: 0;
  margin-left: 0;
}

.no-gutter>[class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

.pull-image .container {
  position: relative;
}

.pull-image .container>div[class*=col-] {
  position: absolute;
}

.pull-image .vertical-middle {
  position: relative;
  top: 50%;
  z-index: 2;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.pull-image .pull-image-right {
  right: 0;
}

@media (max-width: 990px) {
  .pull-image .container div[class*=col-] {
    position: relative;
    top: 0;
    -webkit-transform: none;
    transform: none;
  }
}

.side-background {
  position: relative;
  padding: 0;
}

.side-background .background-container {
  position: absolute;
  overflow: hidden;
  height: 100%;
  padding: 0;
  top: 0;
}

.side-background .background-side {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  z-index: 0;
  background-position: 50% 50% !important;
  -o-object-fit: cover;
  object-fit: cover;
}

.side-background .background-side.start-top {
  background-position: 0 0 !important;
}

.side-background .background-side.start-bottom {
  background-position: 100% 0 !important;
}

.side-background .content-side {
  padding-top: 140px;
  padding-bottom: 140px;
}

.module-hero {
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  position: relative;
  padding: 0;
  height: 250px;
  overflow: hidden;
}

.module-hero.parallax {
  background-color: transparent;
}

.hero-caption {
  position: relative;
  display: table;
  height: 100%;
  width: 80%;
  margin: 0 auto;
  z-index: 2;
}

.hero-text {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  height: 100%;
}

.fullheight {
  height: 100vh;
}

@media (max-width: 991px) {
  .module-hero {
    padding: 100px 0;
  }
}

.animated-background {
  -webkit-animation: animated-background 800s linear infinite;
  animation: animated-background 800s linear infinite;
  background-repeat: repeat-x !important;
}

@-webkit-keyframes animated-background {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -50000px 0;
  }
}

@keyframes animated-background {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -50000px 0;
  }
}

.bg-white {
  background-color: #fff !important;
}

.bg-white-dark {
  background-color: #f8f8f8 !important;
}

.bg-white-dark-line {
  background: url(../images/line-01.png) 0 0 #f8f8f8;
}

.bg-white-dark-line2 {
  background: url(../images/line-02.png) 0 0 #f8f8f8;
}

.bg-white-darken {
  background-color: #f5f5f5 !important;
}

.bg-gray {
  background-color: #777 !important;
}

.bg-gray-light {
  background-color: #999 !important;
}

.bg-gray-lighter {
  background-color: #eee !important;
}

.bg-black {
  background-color: #000 !important;
}

.bg-black-light {
  background-color: #222 !important;
}

.bg-black-lighter {
  background-color: #333 !important;
}

.bg-brand {
  background-color: var(--primary-color) !important;
}

.bg-brand-hvr {
  background-color: #1fa098 !important;
}

.bg-facebook {
  background-color: #3b5998 !important;
}

.bg-flickr {
  background-color: #ff0084 !important;
}

.bg-tumblr {
  background-color: #32506d !important;
}

.bg-forusquare {
  background-color: #0072b1 !important;
}

.bg-github {
  background-color: #3f91cb !important;
}

.bg-lastfm {
  background-color: #f34320 !important;
}

.bg-vk {
  background-color: #2b587a !important;
}

.bg-black-alfa-5:before,
.bg-black-alfa-10:before,
.bg-black-alfa-15:before,
.bg-black-alfa-20:before,
.bg-black-alfa-25:before,
.bg-black-alfa-30:before,
.bg-black-alfa-35:before,
.bg-black-alfa-40:before,
.bg-black-alfa-45:before,
.bg-black-alfa-50:before,
.bg-black-alfa-55:before,
.bg-black-alfa-60:before,
.bg-black-alfa-65:before,
.bg-black-alfa-70:before,
.bg-black-alfa-75:before,
.bg-black-alfa-80:before,
.bg-black-alfa-85:before,
.bg-black-alfa-90:before,
.bg-black-alfa-95:before {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  content: "";
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.05);
}

.bg-black-alfa-10:before {
  background: rgba(0, 0, 0, 0.1);
}

.bg-black-alfa-15:before {
  background: rgba(0, 0, 0, 0.15);
}

.bg-black-alfa-20:before {
  background: rgba(0, 0, 0, 0.2);
}

.bg-black-alfa-25:before {
  background: rgba(0, 0, 0, 0.25);
}

.bg-black-alfa-30:before {
  background: rgba(0, 0, 0, 0.3);
}

.bg-black-alfa-35:before {
  background: rgba(0, 0, 0, 0.35);
}

.bg-black-alfa-40:before {
  background: rgba(0, 0, 0, 0.4);
}

.bg-black-alfa-45:before {
  background: rgba(0, 0, 0, 0.45);
}

.bg-black-alfa-50:before {
  background: rgba(0, 0, 0, 0.5);
}

.bg-black-alfa-55:before {
  background: rgba(0, 0, 0, 0.55);
}

.bg-black-alfa-60:before {
  background: rgba(0, 0, 0, 0.6);
}

.bg-black-alfa-65:before {
  background: rgba(0, 0, 0, 0.65);
}

.bg-black-alfa-70:before {
  background: rgba(0, 0, 0, 0.7);
}

.bg-black-alfa-75:before {
  background: rgba(0, 0, 0, 0.75);
}

.bg-black-alfa-80:before {
  background: rgba(0, 0, 0, 0.8);
}

.bg-black-alfa-85:before {
  background: rgba(0, 0, 0, 0.85);
}

.bg-black-alfa-90:before {
  background: rgba(0, 0, 0, 0.9);
}

.bg-black-alfa-95:before {
  background: rgba(0, 0, 0, 0.95);
}

.bg-white-alfa-5:before,
.bg-white-alfa-10:before,
.bg-white-alfa-15:before,
.bg-white-alfa-20:before,
.bg-white-alfa-25:before,
.bg-white-alfa-30:before,
.bg-white-alfa-35:before,
.bg-white-alfa-40:before,
.bg-white-alfa-45:before,
.bg-white-alfa-50:before,
.bg-white-alfa-55:before,
.bg-white-alfa-60:before,
.bg-white-alfa-65:before,
.bg-white-alfa-70:before,
.bg-white-alfa-75:before,
.bg-white-alfa-80:before,
.bg-white-alfa-85:before,
.bg-white-alfa-90:before,
.bg-white-alfa-95:before {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  content: "";
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.05);
}

.bg-white-alfa-10:before {
  background: rgba(255, 255, 255, 0.1);
}

.bg-white-alfa-15:before {
  background: rgba(255, 255, 255, 0.15);
}

.bg-white-alfa-20:before {
  background: rgba(255, 255, 255, 0.2);
}

.bg-white-alfa-25:before {
  background: rgba(255, 255, 255, 0.25);
}

.bg-white-alfa-30:before {
  background: rgba(255, 255, 255, 0.3);
}

.bg-white-alfa-35:before {
  background: rgba(255, 255, 255, 0.35);
}

.bg-white-alfa-40:before {
  background: rgba(255, 255, 255, 0.4);
}

.bg-white-alfa-45:before {
  background: rgba(255, 255, 255, 0.45);
}

.bg-white-alfa-50:before {
  background: rgba(255, 255, 255, 0.5);
}

.bg-white-alfa-55:before {
  background: rgba(255, 255, 255, 0.55);
}

.bg-white-alfa-60:before {
  background: rgba(255, 255, 255, 0.6);
}

.bg-white-alfa-65:before {
  background: rgba(255, 255, 255, 0.65);
}

.bg-white-alfa-70:before {
  background: rgba(255, 255, 255, 0.7);
}

.bg-white-alfa-75:before {
  background: rgba(255, 255, 255, 0.75);
}

.bg-white-alfa-80:before {
  background: rgba(255, 255, 255, 0.8);
}

.bg-white-alfa-85:before {
  background: rgba(255, 255, 255, 0.85);
}

.bg-white-alfa-90:before {
  background: rgba(255, 255, 255, 0.9);
}

.bg-white-alfa-95:before {
  background: rgba(255, 255, 255, 0.95);
}

.bg-brand-alfa-5:before,
.bg-brand-alfa-10:before,
.bg-brand-alfa-15:before,
.bg-brand-alfa-20:before,
.bg-brand-alfa-25:before,
.bg-brand-alfa-30:before,
.bg-brand-alfa-35:before,
.bg-brand-alfa-40:before,
.bg-brand-alfa-45:before,
.bg-brand-alfa-50:before,
.bg-brand-alfa-55:before,
.bg-brand-alfa-60:before,
.bg-brand-alfa-65:before,
.bg-brand-alfa-70:before,
.bg-brand-alfa-75:before,
.bg-brand-alfa-80:before,
.bg-brand-alfa-85:before,
.bg-brand-alfa-90:before,
.bg-brand-alfa-95:before {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  content: "";
  left: 0;
  top: 0;
  background: rgba(39, 203, 192, 0.05);
}

.bg-brand-alfa-10:before {
  background: rgba(39, 203, 192, 0.1);
}

.bg-brand-alfa-15:before {
  background: rgba(39, 203, 192, 0.15);
}

.bg-brand-alfa-20:before {
  background: rgba(39, 203, 192, 0.2);
}

.bg-brand-alfa-25:before {
  background: rgba(39, 203, 192, 0.25);
}

.bg-brand-alfa-30:before {
  background: rgba(39, 203, 192, 0.3);
}

.bg-brand-alfa-35:before {
  background: rgba(39, 203, 192, 0.35);
}

.bg-brand-alfa-40:before {
  background: rgba(39, 203, 192, 0.4);
}

.bg-brand-alfa-45:before {
  background: rgba(39, 203, 192, 0.45);
}

.bg-brand-alfa-50:before {
  background: rgba(39, 203, 192, 0.5);
}

.bg-brand-alfa-55:before {
  background: rgba(39, 203, 192, 0.55);
}

.bg-brand-alfa-60:before {
  background: rgba(39, 203, 192, 0.6);
}

.bg-brand-alfa-65:before {
  background: rgba(39, 203, 192, 0.65);
}

.bg-brand-alfa-70:before {
  background: rgba(39, 203, 192, 0.7);
}

.bg-brand-alfa-75:before {
  background: rgba(39, 203, 192, 0.75);
}

.bg-brand-alfa-80:before {
  background: rgba(39, 203, 192, 0.8);
}

.bg-brand-alfa-85:before {
  background: rgba(39, 203, 192, 0.85);
}

.bg-brand-alfa-90:before {
  background: rgba(39, 203, 192, 0.9);
}

.bg-brand-alfa-95:before {
  background: rgba(39, 203, 192, 0.95);
}

.bg-white-dark-alfa-5:before,
.bg-white-dark-alfa-10:before,
.bg-white-dark-alfa-15:before,
.bg-white-dark-alfa-20:before,
.bg-white-dark-alfa-25:before,
.bg-white-dark-alfa-30:before,
.bg-white-dark-alfa-35:before,
.bg-white-dark-alfa-40:before,
.bg-white-dark-alfa-45:before,
.bg-white-dark-alfa-50:before,
.bg-white-dark-alfa-55:before,
.bg-white-dark-alfa-60:before,
.bg-white-dark-alfa-65:before,
.bg-white-dark-alfa-70:before,
.bg-white-dark-alfa-75:before,
.bg-white-dark-alfa-80:before,
.bg-white-dark-alfa-85:before,
.bg-white-dark-alfa-90:before,
.bg-white-dark-alfa-95:before {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  content: "";
  left: 0;
  top: 0;
  background: rgba(248, 248, 248, 0.05);
}

.bg-white-dark-alfa-10:before {
  background: rgba(248, 248, 248, 0.1);
}

.bg-white-dark-alfa-15:before {
  background: rgba(248, 248, 248, 0.15);
}

.bg-white-dark-alfa-20:before {
  background: rgba(248, 248, 248, 0.2);
}

.bg-white-dark-alfa-25:before {
  background: rgba(248, 248, 248, 0.25);
}

.bg-white-dark-alfa-30:before {
  background: rgba(248, 248, 248, 0.3);
}

.bg-white-dark-alfa-35:before {
  background: rgba(248, 248, 248, 0.35);
}

.bg-white-dark-alfa-40:before {
  background: rgba(248, 248, 248, 0.4);
}

.bg-white-dark-alfa-45:before {
  background: rgba(248, 248, 248, 0.45);
}

.bg-white-dark-alfa-50:before {
  background: rgba(248, 248, 248, 0.5);
}

.bg-white-dark-alfa-55:before {
  background: rgba(248, 248, 248, 0.55);
}

.bg-white-dark-alfa-60:before {
  background: rgba(248, 248, 248, 0.6);
}

.bg-white-dark-alfa-65:before {
  background: rgba(248, 248, 248, 0.65);
}

.bg-white-dark-alfa-70:before {
  background: rgba(248, 248, 248, 0.7);
}

.bg-white-dark-alfa-75:before {
  background: rgba(248, 248, 248, 0.75);
}

.bg-white-dark-alfa-80:before {
  background: rgba(248, 248, 248, 0.8);
}

.bg-white-dark-alfa-85:before {
  background: rgba(248, 248, 248, 0.85);
}

.bg-white-dark-alfa-90:before {
  background: rgba(248, 248, 248, 0.9);
}

.bg-white-dark-alfa-95:before {
  background: rgba(248, 248, 248, 0.95);
}

.multi-columns-row .first-in-row,
.multi-columns-row .col-xs-6:nth-child(2n+3),
.multi-columns-row .col-xs-4:nth-child(3n+4),
.multi-columns-row .col-xs-3:nth-child(4n+5),
.multi-columns-row .col-xs-2:nth-child(6n+7),
.multi-columns-row .col-xs-1:nth-child(12n+13) {
  clear: left;
}

@media (min-width: 768px) {

  .multi-columns-row .col-xs-6:nth-child(2n+3),
  .multi-columns-row .col-xs-4:nth-child(3n+4),
  .multi-columns-row .col-xs-3:nth-child(4n+5),
  .multi-columns-row .col-xs-2:nth-child(6n+7),
  .multi-columns-row .col-xs-1:nth-child(12n+13) {
    clear: none;
  }

  .multi-columns-row .col-sm-6:nth-child(2n+3),
  .multi-columns-row .col-sm-4:nth-child(3n+4),
  .multi-columns-row .col-sm-3:nth-child(4n+5),
  .multi-columns-row .col-sm-2:nth-child(6n+7),
  .multi-columns-row .col-sm-1:nth-child(12n+13) {
    clear: left;
  }
}

@media (min-width: 992px) {

  .multi-columns-row .col-sm-6:nth-child(2n+3),
  .multi-columns-row .col-sm-4:nth-child(3n+4),
  .multi-columns-row .col-sm-3:nth-child(4n+5),
  .multi-columns-row .col-sm-2:nth-child(6n+7),
  .multi-columns-row .col-sm-1:nth-child(12n+13) {
    clear: none;
  }

  .multi-columns-row .col-md-6:nth-child(2n+3),
  .multi-columns-row .col-md-4:nth-child(3n+4),
  .multi-columns-row .col-md-3:nth-child(4n+5),
  .multi-columns-row .col-md-2:nth-child(6n+7),
  .multi-columns-row .col-md-1:nth-child(12n+13) {
    clear: left;
  }
}

@media (min-width: 1200px) {

  .multi-columns-row .col-md-6:nth-child(2n+3),
  .multi-columns-row .col-md-4:nth-child(3n+4),
  .multi-columns-row .col-md-3:nth-child(4n+5),
  .multi-columns-row .col-md-2:nth-child(6n+7),
  .multi-columns-row .col-md-1:nth-child(12n+13) {
    clear: none;
  }

  .multi-columns-row .col-lg-6:nth-child(2n+3),
  .multi-columns-row .col-lg-4:nth-child(3n+4),
  .multi-columns-row .col-lg-3:nth-child(4n+5),
  .multi-columns-row .col-lg-2:nth-child(6n+7),
  .multi-columns-row .col-lg-1:nth-child(12n+13) {
    clear: left;
  }
}

.row-height {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.col-height {
  display: table-cell;
  float: none;
  height: 100%;
}

.col-top {
  vertical-align: top;
}

.col-middle {
  vertical-align: middle;
}

.col-bottom {
  vertical-align: bottom;
}

@media (min-width: 480px) {
  .row-xs-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .col-xs-height {
    display: table-cell;
    float: none;
    height: 100%;
  }

  .col-xs-top {
    vertical-align: top;
  }

  .col-xs-middle {
    vertical-align: middle;
  }

  .col-xs-bottom {
    vertical-align: bottom;
  }
}

@media (min-width: 992px) {
  .row-md-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .col-md-height {
    display: table-cell;
    float: none;
    height: 100%;
  }

  .col-md-top {
    vertical-align: top;
  }

  .col-md-middle {
    vertical-align: middle;
  }

  .col-md-bottom {
    vertical-align: bottom;
  }
}

@media (min-width: 1200px) {
  .row-lg-height {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .col-lg-height {
    display: table-cell;
    float: none;
    height: 100%;
  }

  .col-lg-top {
    vertical-align: top;
  }

  .col-lg-middle {
    vertical-align: middle;
  }

  .col-lg-bottom {
    vertical-align: bottom;
  }
}

.career-tags {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: #27CBC0;
  list-style: none;
  padding: 0;
}

.career-tags>li {
  display: inline-block;
}

@media (max-width: 767px) {

  .page-content+.sidebar,
  .sidebar+.page-content {
    margin: 70px 0 0;
  }
}

.filters {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.filters>li {
  display: inline-block;
  padding: 0 15px 35px;
}

.filters>li>a {
  border-bottom: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  padding: 1px 0;
  opacity: 0.6;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.filters>li>a:hover,
.filters>li>a.current {
  border-color: #333;
  opacity: 1;
}

.works-grid.works-grid-gutter {
  margin-left: -4px;
  margin-right: -4px;
}

.works-grid.works-grid-gutter .work-item {
  padding: 0 4px 8px;
}

.works-grid .work-item {
  width: 50%;
}

.works-grid.works-grid-3 .work-item {
  width: 33.333333%;
}

.works-grid.works-grid-4 .work-item {
  width: 25%;
}

.works-grid.works-grid-5 .work-item {
  width: 20%;
}

.work-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.work-overlay {
  border: none;
  background-color: #ff6000;
  background-image: linear-gradient(45deg, #ff6000 0%, #ffa559 100%);
  position: absolute;
  opacity: 0;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
}

.work-wrapper>img {
  width: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
}

.work-caption {
  -webkit-transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  position: absolute;
  padding: 40px;
  width: 100%;
  opacity: 0;
  bottom: 0;
}

.work-title,
.work-category {
  color: #fff;
}

.work-title {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
}

.work-category {
  text-transform: lowercase;
  font-style: italic;
  font-size: 13px;
  opacity: 0.7;
}

.work-link {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  z-index: 2;
}

.work-item:hover .work-wrapper img,
.pdt-list-item:hover .work-wrapper img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.work-item:hover .work-overlay,
.pdt-list-item:hover .work-overlay {
  opacity: 0.5;
}

.work-item:hover .work-caption,
.pdt-list-item:hover .work-caption {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.works-grid-dark .work-overlay {
  background: rgba(51, 51, 51, 0.9);
}

.works-grid-white .work-overlay {
  background: rgba(255, 255, 255, 0.9);
}

.works-grid-white .work-title,
.works-grid-white .work-category {
  color: #222;
}

@media (max-width: 1023px) {

  .works-grid .work-item,
  .works-grid.works-grid-3 .work-item,
  .works-grid.works-grid-4 .work-item,
  .works-grid.works-grid-5 .work-item {
    width: 50%;
  }
}

@media (max-width: 568px) {

  .works-grid .work-item,
  .works-grid.works-grid-3 .work-item,
  .works-grid.works-grid-4 .work-item,
  .works-grid.works-grid-5 .work-item {
    width: 100%;
  }
}

.portfolio-info {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}

.portfolio-info>li:not(:last-child) {
  border-bottom: 1px solid #eee;
  padding: 0 0 8px;
  margin: 0 0 8px;
}

.portfolio-info h5 {
  display: inline-block;
  margin: 0 8px 0 0;
}

.portfolio-info .social-icons {
  display: inline-block;
}

.tags a {
  background: #f8f8f8;
  display: inline-block;
  border-radius: 2px;
  padding: 8px 12px;
  margin: 0 0 6px;
  font-size: 11px;
  color: #777;
}

.tags a:hover,
.tags a:focus {
  background: #27CBC0;
  color: #fff;
}

.comments .bottom-line:after,
.comment-form .bottom-line:after {
  margin-bottom: 35px;
}

.comments,
.comment-form {
  margin-bottom: 70px;
}

.comment {
  position: relative;
}

.comment:last-child .comment-content {
  margin-bottom: 0;
}

.comment-content {
  position: relative;
}

.comment:before,
.comment:after {
  content: " ";
  display: table;
}

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

.comment:after,
.comment-content:after {
  clear: both;
}

.comment-avatar {
  position: relative;
  max-width: 70px;
  margin: 5px 0 0;
  float: left;
  z-index: 1;
}

.comment-avatar:after {
  position: absolute;
  background: #f5f5f5;
  content: "";
  height: 2px;
  width: 20px;
  top: 34px;
  left: 70px;
  z-index: -1;
}

.comment-avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.comment-content {
  position: relative;
  background: #f5f5f5;
  border-radius: 2px;
  margin: 0 0 35px 90px;
  padding: 30px;
}

.comment-meta {
  font-size: 12px;
  opacity: 0.7;
}

.comment-content> :last-child {
  margin-bottom: 0;
}

.comment-tools {
  position: absolute;
  padding: 0 30px;
  z-index: 1;
  top: 25px;
  right: 0;
}

.comment-tools a {
  color: #999;
  margin: 0 0 0 15px;
}

.comment-tools a:hover,
.comment-tools a:focus {
  color: #27CBC0;
}

@media (min-width: 768px) {
  .comment-reply {
    margin-left: 90px;
  }
}

@media (max-width: 767px) {

  .blog-content+.sidebar,
  .sidebar+.blog-content {
    margin: 70px 0 0;
  }
}

.product-slider {
  padding-right: 100px;
}

.product-slider .item img {
  display: block;
  width: 100%;
  height: auto;
}

.product-slider .owl-controls {
  position: absolute;
  right: 0;
  top: 0;
  width: 90px;
}

.product-slider .owl-controls .item-link {
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  margin: 0 2px;
  outline: none;
  opacity: 0.6;
}

.product-slider .owl-controls .item-link:focus {
  outline: none;
}

.product-slider .owl-controls .active .item-link {
  opacity: 1;
}

.product-slider .owl-pagination {
  margin: 0;
}

.product-slider .owl-controls .owl-page {
  margin: 0;
}

.product-slider .owl-controls .owl-page span {
  display: none;
}

@media (max-width: 767px) {
  .product-slider {
    padding: 0 0 30px;
  }

  .product-slider .owl-controls {
    position: static;
    text-align: left;
    width: auto;
    margin: 5px 0 0;
  }

  .product-slider .owl-controls .owl-pagination {
    text-align: left;
  }

  .product-slider .owl-controls .item-link {
    font-size: 0;
    margin: 0 5px 0 0;
  }
}

.product-description .star-rating {
  margin-right: 15px;
}

.sale-text {
  text-decoration: line-through;
  display: inline-block;
  margin-right: 20px;
  opacity: 0.2;
}

.star-rating {
  font-family: FontAwesome;
  color: #27CBC0;
}

.star-rating-1:after {
  content: "    ";
}

.star-rating-2:after {
  content: "    ";
}

.star-rating-3:after {
  content: "    ";
}

.star-rating-4:after {
  content: "    ";
}

.star-rating-5:after {
  content: "    ";
}

.reviews .comment-content {
  margin-left: 0;
}

.reviews .comment-content p {
  margin-bottom: 10px;
}

.coupon {
  border-top: 1px solid #eee;
  padding: 20px;
}

.cart-with-coupon {
  border: 1px solid #eee;
  border-radius: 2px;
  margin: 0 0 50px;
}

.cart-table {
  margin: 0;
}

.cart-table>thead>tr>th,
.cart-table>tbody>tr>th,
.cart-table>tfoot>tr>th,
.cart-table>thead>tr>td,
.cart-table>tbody>tr>td,
.cart-table>tfoot>tr>td {
  vertical-align: middle;
  padding: 20px;
}

.cart-table .col-trash {
  padding-left: 40px;
  text-align: center;
}

.cart-table .cart-thumbnail {
  max-width: 90px;
}

.cart-table .col-quantity .form-control {
  display: inline-block;
  text-align: center;
  max-width: 60px;
  padding: 0 0 0 12px;
}

.cart-table .col-remove {
  width: 75px;
}

.cart-table .col-thumbnail {
  width: 130px;
}

.cart-table .col-price,
.cart-table .col-subtotal,
.cart-table .col-quantity {
  text-align: center;
}

.payment {
  border: 1px solid #eee;
  border-radius: 2px;
  margin: 0 0 25px;
}

.payment-table {
  border: 0;
  margin: 0;
}

.payment-table>tbody>tr>td {
  border: 0;
  border-top: 1px solid #eee;
  padding: 20px;
}

.payment-table>tbody>tr:first-child>td {
  border: 0;
}

.totals {
  border: 1px solid #eee;
  border-radius: 2px;
  margin: 0 0 25px;
}

.totals .total,
.totals .subtotal {
  padding: 20px;
}

.totals .total>.row:not(:last-child),
.totals .subtotal>.row:not(:last-child) {
  margin-bottom: 20px;
}

.totals .total {
  border-top: 1px solid #eee;
}

.totals-table {
  border: 0;
  margin: 0;
}

.totals-table>tbody>tr>td {
  padding: 0 20px 20px;
  border: 0;
}

.totals-table>tbody>tr:first-child>td {
  padding: 20px;
}

.totals-table>tbody>tr:last-child>td {
  border-top: 1px solid #eee;
  padding: 20px;
}

.shop-filters {
  border-bottom: 2px solid #f5f5f5;
  padding: 0 0 35px;
  margin: 0 0 35px;
}

.shop-item {
  margin: 0 0 35px;
}

.shop-item-title {
  text-align: center;
}

.shop-item-title h5 {
  margin-bottom: 10px;
}

.shop-item-title h5:last-child {
  margin-bottom: 0;
}

.shop-item-photo {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.shop-item-photo img {
  width: 100%;
}

.shop-item-photo:after {
  background: transparent;
  position: absolute;
  display: block;
  content: " ";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out 0;
  transition: all 0.3s ease-in-out 0;
}

.shop-item-tools {
  position: absolute;
  padding: 20px;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out 0;
  transition: all 0.3s ease-in-out 0;
}

.shop-item-tools>div {
  display: table;
  height: 100%;
  width: 100%;
}

.shop-item-tools>div>div {
  vertical-align: middle;
  display: table-cell;
  text-align: center;
}

.shop-item-tools a {
  border: 2px solid #fff;
  border-radius: 2px;
  display: inline-block;
  text-align: center;
  line-height: 36px;
  font-size: 18px;
  height: 40px;
  width: 40px;
  color: #fff;
  margin: 0 5px;
}

.shop-item-tools a:hover,
.shop-item-tools a:focus {
  opacity: 0.7;
}

.shop-item:hover .shop-item-photo:after {
  background: rgba(39, 203, 192, 0.8);
}

.shop-item:hover .shop-item-tools {
  opacity: 1;
}

.widget> :last-child {
  margin-bottom: 0;
}

.widget .recent-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget .recent-posts>li {
  padding: 10px 0;
}

.widget .recent-posts>li:before {
  content: " ";
  display: table;
}

.widget .recent-posts>li:after {
  content: " ";
  display: table;
  clear: both;
}

.widget .recent-posts>li:first-child {
  border: 0;
  padding-top: 0;
}

.widget .recent-posts a {
  text-decoration: none;
}

.widget .recent-posts a:hover,
.widget .recent-posts a:focus {
  color: #00b5fe;
}

.widget-posts-image {
  float: left;
  width: 80px;
}

.widget-posts-body {
  margin-left: 90px;
}

.widget-posts-title {
  margin: 2px 0;
}

.widget-posts-title a {
  color: #bcceda;
}

.widget-posts-meta {
  font-size: 12px;
  opacity: 0.7;
}

.twitter-feed ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.twitter-feed ul li:before {
  position: relative;
  top: 6px;
  float: left;
  display: inline-block;
  content: "";
  font-family: "FontAwesome";
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 13px;
}

.twitter-feed .user,
.twitter-feed .timePosted,
.twitter-feed .interact {
  display: none;
}

.twitter-feed p {
  position: relative;
  padding-left: 20px;
}

.icons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icons-list>li {
  border-top: 1px solid #eee;
  padding: 10px 0;
}

.icons-list>li.active a {
  color: #00a7ea;
}

.icons-list>li:first-child {
  border: 0;
  padding-top: 0;
}

.icons-list a {
  color: #616161;
}

.icons-list a:hover,
.icons-list a:focus {
  color: #00a7ea;
}

.icons-list a>.fa,
.icons-list a>.icons {
  padding-left: 5px;
}

.widget address {
  line-height: 1.8;
}

address.map-background {
  background: none;
}

.map-background {
  background: url(../images/map-white.png) no-repeat left center;
}

.links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-list>li {
  margin: 0 0 15px;
}

.links-list>li a {
  text-decoration: none;
}

.widget .links-list a:hover {
  opacity: 0.7;
}

.links-list.white {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-list.white>li {
  margin: 0 0 5px;
  border-bottom: 1px solid #333;
}

.links-list.white>li a {
  text-decoration: none;
}

.widget .links-list.white a:hover {
  opacity: 0.7;
}

.widget .top-rated {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget .top-rated>li {
  border-top: 1px solid #eee;
  padding: 10px 0;
  display: table;
  width: 100%;
}

.widget .top-rated>li:first-child {
  padding-top: 0;
  border: 0;
}

.widget .top-rated .top-rated-body,
.widget .top-rated .top-rated-image {
  display: table-cell;
  vertical-align: middle;
}

.widget .top-rated .top-rated-body {
  padding: 0 0 0 14px;
}

.widget .top-rated .top-rated-image {
  width: 70px;
}

.gallery {
  margin-left: -4px;
  margin-right: -4px;
}

.gallery .gallery-item {
  -webkit-transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  padding: 0 4px 8px;
  width: 50%;
}

.gallery .gallery-item.gallery-item-big {
  width: 100% !important;
}

.gallery .gallery-item:hover {
  opacity: 0.7;
}

.gallery.gallery-3 .gallery-item {
  width: 33.333%;
}

.gallery.gallery-4 .gallery-item {
  width: 25%;
}

.gallery.gallery-6 .gallery-item {
  width: 16.66666667%;
}



.header-small .inner-brand {
  padding-top: 5px;
}

.bg-in-black {
  background-color: #07192e;
  border-bottom: 1px solid #153356;
  background: #10325a;
  background: -webkit-gradient(linear, left top, left bottom, from(#10325a), color-stop(99%, #07192e));
  background: linear-gradient(to bottom, #10325a 0%, #07192e 99%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#10325a", endColorstr="#07192e", GradientType=0);
}

.bg-in-deepblue {
  background-color: #07192e;
}

.bg-in-white {
  background-color: #f3f3f3;
}

.news-box {
  position: relative;
}

.btn-news {
  position: absolute;
  bottom: -20px;
  right: 20px;
}

.news-bg {
  background: url(../images/news-bg.jpg) center bottom;
  background-size: cover;
}

.set-line {
  position: relative;
}

.title-box-set {
  position: absolute;
  left: 50%;
  display: block;
  background-color: #0b2646;
  margin-left: -145px;
  z-index: 1;
  padding: 0 10px;
}

.title-line-box {
  position: absolute;
  height: 1px;
  display: block;
  width: 100%;
  background-color: #00aced;
  top: 15px;
}

.map-background ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.map-background ul li {
  padding-bottom: 9px;
}

.map-background ul li i {
  float: left;
  width: 25px;
  height: 25px;
  display: block;
  line-height: 25px;
}

.add-info {
  margin-left: 30px;
}

.post-content-bg {
  background-color: #f8f8f8;
}

.set-email a {
  color: #666;
}

footer.white a.btn-back {
  color: #fff;
  border-radius: 3px;
}

.btn-back {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #636363;
  padding: 5px 10px;
}

.maplist {
  background: -webkit-gradient(linear, left top, right top, from(#3561f1), to(#04d0e8));
  background: linear-gradient(to right, #3561f1 0%, #04d0e8 100%);
  padding: 10px;
}

.maplist h4 {
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.mapunder {
  min-height: 100px;
}

ul.list-unstyled.samp li {
  padding: 5px 5px 5px 15px;
  background: #fff;
  font-weight: 600;
}

ul.list-unstyled.samp li a:hover {
  color: #00aced !important;
  opacity: 1;
}

ul.list-unstyled.samp li ul {
  padding-left: 0;
  margin-left: 30px;
}

ul.list-unstyled.samp li ul li {
  padding-left: 0;
  background: none;
  font-weight: 400;
  list-style-type: circle;
}

.widget.ft-add-info p {
  margin-bottom: 5px;
}

.off-canvas-cart {
  color: #333;
}

.off-canvas-cart a {
  color: #333;
}

.header.header-white .menu-extras .menu-item a.set-icon {
  color: #fff;
}

.header.header-white .menu-extras .menu-item a:hover.set-icon {
  color: #fff;
  opacity: 0.8;
}

.sitemapbg {
  background: url(../images/sitemap-bg.jpg) center center no-repeat;
}

.callout-dark {
  z-index: 10;
  position: relative;
  border-radius: 3px;
}

.heading-title.heading-arrow-bottom:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #07192e;
  left: 50%;
  margin-left: -22px;
  bottom: -20px;
}

.pdt-name-box .product-type {
  text-align: center;
}

.pdt-name-box.white {
  display: flex;
  width: 100%;
  padding: 8px;
  min-height: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.work-title {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.work-title:hover {
  color: var(--primary-color);
}

.work-title.white {
  color: #373737;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.work-title.white:hover {
  color: var(--primary-color);
}

.fw-normal {
  font-weight: 400;
}

.ftinfo-right {
  padding-top: 66px;
}

.bg-contact {
  background: url(../images/contact-bg.jpg) center right;
}

.bg-contact2 {
  background: url(../images/contact2-bg.jpg) center center;
}

.w150 {
  width: 150px;
}

.img-width {
  width: 100% !important;
}


.box-icon-left .icon-box-icon.circle-bg {
  background-color: var(--primary-color);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding-top: 5px;
  margin: 15px auto;
}

.bg-ab-r {
  background: url(../images/about-2-r.jpg) right center;
}

a.contact-set {
  color: #333 !important;
}

.fs14 {
  font-size: 14px;
}

.btn-sm.min140 {
  min-width: 140px;
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .webeditor table {
    width: 100%;
    overflow-x: auto;
  }

  .webeditor table img {
    display: block;
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .inner-nav {
    display: block;
  }
}

@media (max-width: 480px) {
  .flexslider.white {
    position: relative;
    height: 100vh;
    margin: 0;
  }

  .header-white .menu-extras>.menu-item>div>a {
    line-height: 31px;
  }

  .text-md {
    font-size: 20px;
  }

  .set-line {
    position: initial;
  }

  .title-box-set {
    position: inherit;
    margin-left: 0;
  }

  .title-line-box {
    display: none;
  }

  .menu-extras {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }

  .header-white .menu-extras>.menu-item>div>a {
    padding: 0 12px;
  }

  .header-small .inner-brand {
    padding-top: 7px;
  }

  .submenu.white {
    border: 0;
  }

  .submenu.white li a {
    border-bottom: 1px solid black;
  }

  .ftinfo-right {
    padding-top: 0;
    text-align: left;
  }

  .widget {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

.webeditor img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media print {
  a[href]:after {
    content: none !important;
  }
}



.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: var(--primary-color);
}

.has-error .form-control {
  border-color: var(--primary-color);
}

.slick-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: black;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.slick-lightbox .slick-loading .slick-list {
  background-color: transparent;
}

.slick-lightbox .slick-prev {
  left: 15px;
}

.slick-lightbox .slick-next {
  right: 15px;
}

.slick-lightbox-hide {
  opacity: 0;
}

.slick-lightbox-hide.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-hide-init {
  position: absolute;
  top: -9999px;
  opacity: 0;
}

.slick-lightbox-hide-init.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-lightbox-slick-item {
  text-align: center;
  overflow: hidden;
}

.slick-lightbox-slick-item:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  display: block;
  text-align: center;
}

.slick-lightbox-slick-item-inner {
  display: inline-block;
  vertical-align: middle;
  max-width: 90%;
  max-height: 90%;
}

.slick-lightbox-slick-img {
  margin: 0 auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.slick-lightbox-slick-caption {
  margin: 10px 0 0;
  color: white;
}

.slick-lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
}

.slick-lightbox-close:focus {
  outline: none;
}

.slick-lightbox-close:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "×";
}

body .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 50px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

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

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

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

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

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

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

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

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

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

[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;
}

/*
 * slick theme.scss
*/
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./../images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  opacity: 0;
  position: absolute;
  display: block;
  height: 35px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  color: #fff;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  outline: none;
  padding: 10px;
  border: 2px solid var(--primary-color-lighten);
  background-color: var(--primary-color);
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background-color: var(--primary-color-darken);
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  font-weight: bold;
}

.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  line-height: 8px;
  color: var(--main-color);
  font-weight: bold;
}

.slick-slider:hover .slick-prev,
.slick-slider:hover .slick-next {
  opacity: 1;
}

.slick-prev,
.slick-next {
  z-index: 1;
}

.slick-prev:before,
.slick-next:before {
  color: var(--main-color);
}

.slick-prev {
  left: 20px;
}

[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: 25px;
}

[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 20px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  z-index: 2;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 32px;
  line-height: 20px;
  text-align: center;
  color: white;
  opacity: 0.25;
}

.slick-dots li.slick-active button:before {
  color: white;
  opacity: 0.75;
}

.slick-initialized a:focus,
.slick-initialized img:focus,
.slick-initialized .slick-slide:focus,
.slick-initialized .slider-item:focus {
  outline: none;
}

.slick-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: black;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.slick-lightbox .slick-loading .slick-list {
  background-color: transparent;
}

.slick-lightbox .slick-prev {
  left: 15px;
}

.slick-lightbox .slick-next {
  right: 15px;
}

.slick-lightbox-hide {
  opacity: 0;
}

.slick-lightbox-hide.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-hide-init {
  position: absolute;
  top: -9999px;
  opacity: 0;
}

.slick-lightbox-hide-init.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-lightbox-slick-item {
  text-align: center;
  overflow: hidden;
}

.slick-lightbox-slick-item:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  display: block;
  text-align: center;
}

.slick-lightbox-slick-item-inner {
  display: inline-block;
  vertical-align: middle;
  max-width: 90%;
  max-height: 90%;
}

.slick-lightbox-slick-img {
  margin: 0 auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.slick-lightbox-slick-caption {
  margin: 10px 0 0;
  color: white;
}

.slick-lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
}

.slick-lightbox-close:focus {
  outline: none;
}

.slick-lightbox-close:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "×";
}

/* Breadcrumb 麵包屑 */
.custom-breadcrumb a:hover {
  color: var(--primary-color) !important;
  text-decoration: none;
}



.jh-breadcrumb {
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 0;
  font-size: 15px;
  padding: 8px 15px 8px 0;
}

.jh-breadcrumb ol {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.jh-breadcrumb li {
  font-size: 15px;
}

.jh-breadcrumb li a {
  font-weight: 500;
  color: #2aa4a5;
}

.jh-breadcrumb li:not(:last-child):after {
  content: "/";
  font-weight: normal;
  font-family: FontAwesome;
  padding-right: 7px;
  padding-left: 7px;
  color: #cccccc;
  text-decoration: none;
}

.jh-breadcrumb li .active {
  color: var(--primary-color);
}

.custom-breadcrumb {
  display: inline-block;
}

/* Pagination 分頁
 * #############################
*/
.jh-pagination-wraper {
  display: inline-block;
  width: auto;
  margin: auto;
}

.pagination {
  float: left;
  display: block;
  vertical-align: middle;
}

ul.pagination-numbers,
.pagination .pagination-numbers,
.pagination-numbers {
  display: inline-block;
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 0;
  text-align: right;
  width: 100%;
}

.pagination-numbers li {
  display: inline-block;
  float: left;
  list-style: outside none none;
  margin-bottom: 0;
  padding: 0 4px;
}

.pagination-numbers li a {
  border: 1px solid #eee;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  float: left;
  font-size: 12px;
  font-weight: 400;
  height: 34px;
  line-height: 33px;
  padding: 0 12px;
  transition: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  -o-transition: all 0.2s linear 0s;
  -webkit-transition: all 0.2s linear 0s;
  color: #282828;
  border-radius: 99px;
  background-color: #ccc;
}

.pagination-numbers li a:hover,
.pagination-numbers li a.active {
  color: #fff;
  border-radius: 99px;
  background-image: linear-gradient(141deg, #069ee3 41.97%, #0670b9 41.97%);
}

/**
 * Skipped minification because the original files appears to be already minified.
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:focus,
a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:focus,
a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
}

.rounded-right,
.rounded-top {
  border-top-right-radius: 0.25rem !important;
}

.rounded-bottom,
.rounded-right {
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom,
.rounded-left {
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive:before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9:before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9:before {
  padding-top: 56.25%;
}

.embed-responsive-4by3:before {
  padding-top: 75%;
}

.embed-responsive-1by1:before {
  padding-top: 100%;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column,
.flex-row {
  -webkit-box-direction: normal !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse,
.flex-row-reverse {
  -webkit-box-direction: reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  -ms-grid-row-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  -ms-grid-row-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  -ms-grid-row-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-column,
  .flex-sm-row {
    -webkit-box-direction: normal !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column,
  .flex-md-row {
    -webkit-box-direction: normal !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column,
  .flex-lg-row {
    -webkit-box-direction: normal !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xl-column,
  .flex-xl-row {
    -webkit-box-direction: normal !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  top: 0;
}

.fixed-bottom,
.fixed-top {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  bottom: 0;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
}

.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:focus,
a.text-primary:hover {
  color: #0062cc !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:focus,
a.text-secondary:hover {
  color: #545b62 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:focus,
a.text-success:hover {
  color: #1e7e34 !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:focus,
a.text-info:hover {
  color: #117a8b !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:focus,
a.text-warning:hover {
  color: #d39e00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:focus,
a.text-danger:hover {
  color: #bd2130 !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:focus,
a.text-light:hover {
  color: #dae0e5 !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:focus,
a.text-dark:hover {
  color: #1d2124 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.ab_collapsepanel {
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0);
  box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0);
  background-color: transparent;
  border-color: transparent;
}

ul.list-menu-left .ab_collapsepanel ul {
  padding-left: 0;
  margin-left: -30px;
}

.no-child a:after {
  display: none;
}

.list-menu-left li {
  position: relative;
}

.list-menu-left li.has_child a:after {
  position: absolute;
  top: 10px;
  right: 0;
}

.list-menu-left li.has_child>a:after {
  content: "+";
}

.list-menu-left li.has_child a[aria-expanded=true]:after {
  content: "-";
}

.submenu .has-submenu>a:after {
  content: "+";
}

.panel-heading a:after {
  content: "+";
}

.panel-heading a.collapsed:after {
  content: "+";
}

.panel-heading a[aria-expanded=true]:after {
  content: "-";
}

.bg-skype {
  background-color: #17a3eb;
}

.bg-youtube {
  background-color: #b00;
}

.bg-twitter {
  background-color: #0b97c4;
}

.bg-instagram {
  background-color: #e1306c;
}

.bg-line {
  background-color: #00c300;
}

.bg-qq {
  background-color: #000000;
}

.center_row {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mr-2 {
  margin-right: 2rem;
}

.product-custom-slider.slider-small2big .slider-for .news-image:hover {
  cursor: pointer;
  opacity: 0.85;
}

.row-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 768px) {
  .row-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media all and (min-width: 320px) {
  .row-list .sidebar {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media (min-width: 768px) {
  .row-list .sidebar {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.row-list .blog-content {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}



.contact-webeditor ul {
  list-style-type: none;
}

::-moz-selection {
  background-color: var(--primary-color);
  color: white;
}

::selection {
  background-color: var(--primary-color);
  color: white;
}

.footer-slogan {
  color: white;
}

.sidebar__title {
  color: black;
}

.flex-nav-prev a,
.flex-nav-next a {
  background-color: hsla(var(--hue), var(--saturation), var(--light), 0.5);
}

.flex-nav-prev a:hover,
.flex-nav-next a:hover {
  background-color: hsla(var(--hue), var(--saturation), var(--light), 1);
}



.product-type {
  font-weight: normal;
}

.relative-product__carousel .icon {
  width: 30px;
  height: 30px;
}

.relative-product .product-type {
  font-size: 15px;
  color: #929292;
}

.page-pdt .product-title,
.page-search .product-title {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5em;
  max-height: 46px;
  height: auto;
}

.page-pdt .works-grid-wrapper>.row,
.page-search .works-grid-wrapper>.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page-news .post-title {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5em;
  max-height: 60px;
  height: auto;
}

.page-news .multi-columns-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page-news:not(.page-news-detail) .post-meta time+p {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5em;
  max-height: 138px;
  height: auto;
}

.post .post-content .post-meta p {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5em;
  max-height: 60px;
  height: auto;
}

.index-slider__btn {
  margin-top: 20px;
  font-size: 12px;
}

.disable-select {
  user-select: none;
  /* supported by Chrome and Opera */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
}

.bg-black-alfa-40:before {
  background: transparent;
}

.index-news {
  background: #fff;
}

.index-image-block {
  background: #fff !important;
}

.news-box .post-preview {
  overflow: hidden;
}

.news-box .post-preview img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news-box:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.page-pdt-detail .btn-line-blue {
  width: 100%;
}

.bg-contact {
  background: #fff !important;
}

@media (max-width: 767px) {
  .row-list .sidebar {
    margin-top: 40px;
  }
}

.page-contact .m-5 {
  margin: 0 !important;
  padding: 40px 0;
}

@media (min-width: 768px) {
  .page-contact .m-5 {
    padding: 100px 0;
  }
}










/* 【Maintain Css Setting】 */
/* 全站共用 css setting */


body {
  font-family: '微軟正黑體', Arial;
  line-height: 1.8;
  font-size: 15px;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-overflow-style: scrollbar;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
  border: 0;
}




/* top bar css setting  */
.top-bar {
  color: #fff;
  background: #000;
  border: 0;
  font-size: 12px;
  padding: 2px 0;
}

.top-bar .row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.top-bar.top-bar-black .col-sm-7,
.top-bar.top-bar-black .col-sm-3 {
  width: fit-content !important;
}

/* info */
.top-bar-info i {
  color: #FFF;
}


.top-bar-black a,
.top-bar-black span {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #FFF;
}

.top-bar-black a:hover,
.top-bar-black a:focus {
  color: rgba(255, 255, 255, 0.85);
}

.top-bar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-bar-list>li {
  display: inline-block;
}

.top-bar-list>li:not(:first-child) {
  margin-left: 10px;
}

.top-bar-list.list-icons>li .fa,
.top-bar-list.list-icons>li .icons {
  margin-right: 5px;
}

.list-dividers li:not(:last-child) a {
  border-right: 1px solid #f5f5f5;
  padding-right: 10px;
}

.top-bar-black .list-dividers li:not(:last-child) a {
  border-right: 1px solid #fff;
  line-height: 2.5;
}

@media (min-width:992px) {
  .top-bar .container {
    width: 1400px;
  }

  .top-bar-info a {
    margin: 0 3rem 0 1rem;
  }

  .top-bar-info .email-link .disable-select {
    margin: 0 0 0 1rem;
  }

  .top-bar-info .email-link .fa {
    margin-left: 1rem;
  }

  .top-bar-info li:first-child {
    position: relative;
  }

  .top-bar-info li:first-child::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 10px;
    background-color: #fff;
    top: 50%;
    margin-top: -5px;
    right: 0;
    transform: rotate(25deg);
  }
}

@media (max-width: 991px) {
  .top-bar .container {
    width: 100%;
  }
}

.top-bar-info ul {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  font-size: 14px;
  padding-top: 3px;
  padding-left: 0;
}

@media all and (min-width: 320px) {
  .top-bar-info ul {
    margin: 6px 0;
  }
}

@media (min-width: 768px) {
  .top-bar-info ul {
    margin: 0;
  }
}

.top-bar-info ul li {
  margin-right: 14px;
}

.seo-title h1 {
  color: #FFF;
  font-size: 14px;
  margin-bottom: 0;
  text-transform: uppercase;
  word-break: break-word;
}

@media (max-width:480px) {
  .top-bar .row {
    display: block !important;
  }

  .seo-title {
    padding: 1rem 0;
    text-align: center;
  }

  .top-bar-info ul {
    justify-content: center;
  }
}





/* header css setting */
/* new header style */
@media screen and (min-width:1120px) and (max-width:1350px) {
  .inner-nav>li {
    margin-right: 0.5rem;
  }
}


@media (min-width:992px) {
  header .container {
    width: 100%;
  }
}

/* new header rwd */
@media (max-width: 1119px) {
  .header .container {
    width: 100%;
  }

  .main-nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    background: #fff;
    border-bottom: 1px solid #f5f5f5;
    max-height: 340px;
    width: 100%;
    left: 0;
    top: 100%;
  }

  .main-nav.bg-deep-blue {
    position: absolute;
    background: rgba(5, 24, 44, 0.8);
    border-bottom: 1px solid #0c1a2b;
    max-height: 340px;
    width: 100%;
    left: 0;
    top: 100%;
  }

  .main-nav.in {
    overflow-y: auto;
  }

  .pc-logo {
    display: none !important;
  }

  .mobile-logo {
    display: block !important;
  }

  .mobile-logo img {
    width: 180px;
    margin-top: 10px;
  }

  .inner-nav {
    float: none !important;
    padding: 10px 15px;
    display: block;
  }

  .inner-nav>li {
    display: block;
    float: none;
  }

  .inner-nav>li>a {
    position: relative;
    padding: 10px 0;
  }

  .header-white .menu-extras>.menu-item>div>a {
    padding: 0 12px;
    line-height: 32px;
  }

  .submenu a,
  .inner-nav>li:not(:last-child)>a {
    border-bottom: 1px solid #f5f5f5;
  }

  .submenu a,
  .header-white .inner-nav>li:not(:last-child)>a {
    border-bottom: 1px solid #333;
  }

  .submenu {
    background: transparent;
    display: none;
    margin: 0;
  }

  .submenu .submenu,
  .submenu.submenu-mega {
    background: transparent;
    display: none;
    margin: 0;
  }

  .submenu-open>.submenu {
    position: static;
    display: block !important;
  }

  .submenu {
    padding: 0 0 0 15px;
  }

  .submenu li a {
    padding: 10px 4px 10px 0;
  }

  .submenu-title {
    padding: 15px 0 10px;
  }

  .submenu-mega>li {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
  }

  .submenu-mega>li:not(:last-child) {
    border: 0;
  }

  .submenu .has-submenu>a:after,
  .submenu.submenu-mega li a:after {
    right: 0;
  }

  .has-submenu>a:after {
    position: absolute;
    content: ">";
    display: block;
    right: 0;
    top: 50%;
    margin-top: -9px;
    font-family: "FontAwesome";
    text-rendering: auto;
    font-size: 10px;
  }

  .has-submenu .submenu li>a {
    border-bottom: 1px solid #f5f5f5;
    color: #999;
  }

  .submenu-title {
    background: none;
    color: #0cabde;
  }

  .submenu li>a:hover,
  .submenu li>a:focus {
    background: none;
    color: #0cabde;
  }

  .submenu li.submenu-open>a {
    background: none;
    color: #0cabde;
  }

  .inner-nav .only-link>a{
    font-weight: bold;
  }
}

/* 主選單選項 */
.inner-nav>.has-submenu.active a {
  color: var(--secondary-color) !important;
}

.inner-nav>.has-submenu a:hover,
.inner-nav>.has-submenu a:focus {
  color: var(--secondary-color);
}

.inner-nav>.has-submenu>a {
  font-weight: bold;
}

.inner-nav>li>span {
  font-weight: bold !important;
  color: #000 !important;
}

/* @media (max-width: 1024px) {
  img.inner-brand {
    width: 80px;
    margin-top: 10px;
  }

  .inner-nav>li>a {
    padding: 15px 10px;
  }
} */


/* 詢問車 */
.iq {
  float: none;
  display: block;
  width: 280px;
  background-color: #fff !important;
}

@media screen and (max-width: 996px) {
  .iq {
    float: none;
    display: block;
    width: 100%;
    position: relative;
  }
}


.iw .row {
  border-bottom: 1px solid hsla(0, 0%, 77%, 1.00);
  margin: 0 0 1rem;
  padding-bottom: 7px;
}

.in_all {
  font-family: Arial, "微軟正黑體";
  font-size: 14px;
  text-align: center;
  margin: 2rem;
  padding: 1rem;
  display: block;
  background: var(--primary-color) !important;
  padding-bottom: 10px;
  padding-top: 10px;
  color: white;
  opacity: 0.95;
  color: #FFF !important;
}

.in_all:hover {
  background: var(--secondary-color) !important;
}

.del_0 img {
  width: 25px !important;
  height: auto;
}

.del_0 {
  float: right;
}

.iw .col-md-9 a {
  font-size: 14px;
}

.iw span {
  color: hsla(0, 0%, 29%, 1.00);
  font-family: Arial, "微軟正黑體";
  font-size: 14px;
}

.addInquiryCart {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: linear-gradient(to bottom, var(--secondary-color), var(--secondary-color) 100%);
  border-color: #fff;
  color: #fff;
  margin-bottom: 5px;
  padding: 9px 19px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-width: 2px;
  border-radius: 0;
  line-height: 1.5;
}

.addInquiryCart:hover,
.addInquiryCart:focus {
  box-shadow: inset 0 0 0 2em var(--primary-color);
  color: #fff;
}

@media (max-width:480px) {
  nav .inner-nav>li>span {
    padding: 15px 10px !important;
  }
}

/* 語系 */
.inner-nav>li>.lang-choose {
  cursor: pointer;
  color: #FFF !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 20px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.inner-nav>li>.lang-choose:hover{
  color: #000!important;
}

/* 搜尋鈕 */
.searchBtn .icon {
  width: 20px;
  height: 20px;
}

.searchBtn,
.header__search .searchMenuClose {
  cursor: pointer;
}

a.searchBtn .icon {
  width: 20px;
  height: 20px;
  fill: #FFF;
}

.header__search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease 0s, opacity 0.3s ease 0s, visibility 0s ease 0.3s, -webkit-transform 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
  z-index: 3400;
}

.header__search.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease 0s, transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.header__search:before {
  content: "";
  height: 30%;
  display: inline-block;
  vertical-align: middle;
}

.header__search .searchform {
  width: 90%;
  max-width: 600px;
  margin: auto;
  position: relative;
}

.header__search .searchform input[type=search] {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 19px;
}

.header__search .searchform button[type=submit],
.header__search .searchform button[type=button] {
  position: absolute;
  left: 0;
  padding: 4px 15px;
  font-size: 23px;
  background-color: var(--primary-color);
  color: #fff;
}

.header__search .searchform button[type=submit] .icon,
.header__search .searchform button[type=button] .icon {
  width: 15px;
  height: 15px;
  fill: #fff;
}

.header__search .searchform button[type=submit]:hover,
.header__search .searchform button[type=button]:hover {
  background-color: var(--secondary-color);
}

.header__search .searchMenuClose {
  position: absolute;
  top: -30px;
  right: 10px;
  opacity: 1;
  z-index: 100;
  width: 18px;
  height: 18px;
  display: inline-block;
  line-height: 1;
}

.header__search .searchMenuClose .icon {
  fill: #fff;
}

.header__search .searchMenuClose .icon:hover {
  opacity: 0.5;
}

.header__search .searchMenuClose:hover {
  color: var(--primary-color);
}

/* rwd */
@media (min-width:992px) {
  .inner-nav>li>a {
    white-space: nowrap !important;
  }
}

@media screen and (min-width:992px) and (max-width:1120px) {
  .inner-nav>li {
    margin-right: 1rem;
  }
}

@media (max-width:991px) {
  .inner-nav>.has-submenu>a:hover {
    color: var(--primary-color) !important;
  }

  img.inner-brand {
    width: 180px;
  }

  .has-submenu .submenu li a:hover {
    color: var(--primary-color) !important;
  }

  a.searchBtn .icon {
    fill: var(--secondary-color-darken);
  }
}












/* footer Css Setting */
.footer.white {
  position: relative;
  padding: 0;
  background-image: url("../images/footer-bg.jpg");
  background-size: cover;
  background-position: center;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-brand img {
  height: 80px;
}

.footer.white h3 {
  color: var(--primary-color-darken);
  letter-spacing: 0.3rem;
}

.footer-address ul {
  list-style-type: none;
  padding-left: 0;
}

.footer-address ul .icon {
  color: var(--primary-color-lighten);
}

.footer-address ul li {
  line-height: 1.8;
  color: #fff;
}

footer.white a,
footer.white p {
  color: var(--primary-color-lighten);
}

footer.white a:hover {
  color: var(--primary-color);
}

.footer-sitemap {
  font-size: 14px;
  letter-spacing: 0.8px;
  line-height: 1.65;
  padding: 2px 0;
}

.footer-sitemap a {
  color: var(--primary-color-lighten);
}

.footer-sitemap .icon {
  width: 17px;
  height: 17px;
  fill: var(--primary-color-lighten);
  margin-right: 7px;
  vertical-align: text-top;
}

.footer-sitemap .sitemap {
  margin-top: 3px;
}

.copyright {
  padding: 20px 0;
  color: #fff;
}

@media all and (min-width: 320px) {
  .copyright {
    border-top: 1px solid #333;
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  .copyright {
    text-align: right;
    margin-top: 0;
    border: none;
  }
}


.footer-sitemap .copy-text,
.footer-sitemap .sitemap {
  display: inline-block;
  text-transform: uppercase;
}

@media all and (min-width: 320px) {
  .footer>.container {
    padding: 70px 15px 30px;
  }
}

@media (min-width: 768px) {
  .footer>.container {
    padding: 30px 0 0px;
  }
}

.footer .widget-title {
  border-color: #333;
}

.footer .subfooter {
  border-top: 1px solid #fff;
  padding-top: 70px;
  margin-top: 70px;
}

.footer .widget .recent-posts>li {
  border-color: #333;
}

.footer.parallax {
  background-color: transparent;
}

.footer a:hover,
.footer a:focus {
  text-decoration: none;
  color: var(--primary-color);
}

footer.white {
  color: #333;
}

.footer.black a:hover,
.footer.black a:focus {
  text-decoration: none;
  color: #11b3ea;
}

.scroll-top {
  border-radius: 2px;
  border: 2px solid #fff;
  padding: 6px 13px;
  font-size: 18px;
  opacity: 0.5;
}

a:hover.scroll-top {
  color: #fff;
  opacity: 1;
}

.scroll-top.white {
  position: absolute;
  bottom: 5px;
  right: 10px;
  border-radius: 2px;
  border: 2px solid #333;
  padding: 3px 13px;
  font-size: 18px;
  opacity: 1;
}

a:hover.scroll-top.white {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.footer .list-inline {
  margin-left: -15px;
}

.footer .list-inline>li {
  padding-left: 15px;
  padding-right: 15px;
}

.footer .list-inline>li a {
  text-decoration: none;
}

.footer-minimal {
  padding: 140px 0;
}

@media (max-width: 767px) {
  .footer .scroll-top {
    display: block;
    width: 35px;
    padding: 0 11px 0 0;
    float: right;
  }
}

/* 社群媒體 */
.social-icons {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icons>li {
  display: inline-block;
  padding: 0 2px;
}

.social-icons.info>li {
  margin-right: 20px;
}

.social-icons.info>li i {
  margin-right: 5px;
}

.social-icons>li>a {
  display: block;
  margin: 0 8px 8px 0;
  text-align: center;
  line-height: 32px;
  font-size: 14px;
  height: 32px;
  width: 32px;
  color: #777;
}

.social-icons>li>a i {
  font-size: 15px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.social-icons>li>a:hover,
.social-icons>li>a:focus {
  background: #27CBC0;
  color: #fff;
}

.social-icons>li>a:hover i,
.social-icons>li>a:focus i {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.social-icons-lg>li>a {
  line-height: 48px;
  font-size: 16px;
  height: 48px;
  width: 48px;
}

.social-icons-md>li>a {
  line-height: 40px;
  height: 40px;
  width: 40px;
}

.social-icons-round>li>a {
  border-radius: 2px;
}

.social-icons-circle>li>a {
  border-radius: 100%;
}

.social-icons-colored>li>a {
  color: #fff;
}

.social-icons-colored>li>a:hover,
.social-icons-colored>li>a:focus {
  opacity: 0.85;
}

.social-icons-simple>li>a {
  display: inline;
  background: none;
  margin: 0 10px 10px 0;
}

.social-icons-simple>li>a:hover,
.social-icons-simple>li>a:focus {
  background: none;
  color: inherit;
}







/* cookies css setting */
.advbox {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  color: white;
  background-color: #ff6000;
  background-image: linear-gradient(60deg, #ff6000 0%, #ffa559 46%);
}

.advpic {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 20px;
  padding-bottom: 11px;
}

.advbox__read-policy-link {
  color: #fff !important;
  border: #FFF solid 1px;
  padding: 0.8rem;
  line-height: 48px;
}

.advbox__read-policy-link:hover {
  color: #000 !important;
  border: #000 solid 1px;
}

.btn:hover {
  color: #FFF !important;
}

.advpic button {
  background-color: var(--secondary-color-darken);
  margin-left: 2rem;
}

.advpic button:hover {
  background-color: var(--secondary-color-lighten) !important;
}

/* rwd */
@media (max-width:576px) {
  .advpic button {
    margin: 1rem 0;
  }
}



/* title css setting */
.title-01 {
  color: #000;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}


.divider-line {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: bolder;
  letter-spacing: 0.3rem;
  font-size: 32px;
  color: var(--secondary-color-darken) !important;
  margin-bottom: 1.5rem !important;
}

.divider-line::before {
  display: block;
  content: " ";
  opacity: 1;
  height: 30px;
  width: 100%;
  background: url("../images/title-icon.png") no-repeat center;
  background-size: contain;
  margin-bottom: 1.5rem;
}



/* btn css setting */
.btn-default {
  background-color: var(--primary-color);
  color: #fff;
  border: 0;
}

.btn-default:hover {
  background-color: var(--primary-color-darken);
  color: #fff;
}

.btn.btn-base {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}

.btn.btn-base:hover,
.btn.btn-base:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.btn.btn-danger {
  background-color: #d9534f;
  border-color: #d9534f;
  color: #fff;
}

.btn.btn-danger:hover,
.btn.btn-danger:focus {
  background-color: #b54e4e;
  border-color: #b54e4e;
  color: #fff;
}



/* 側邊欄 css setting */
ul.list-menu-left {
  padding: 0;
  margin: 0;
  list-style: none;
}

ul.list-menu-left li {
  padding: 0;
  margin: 0;
  list-style: none;
  padding: 10px 10px 10px 30px;
  border-bottom: 1px solid #dadada;
}

ul.list-menu-left li i {
  font-size: 10px;
}

ul.list-menu-left li a {
  color: #333;
}

ul.list-menu-left li.active a,
ul.list-menu-left li a:hover {
  color: var(--primary-color);
}

/* 第三層 */
ul.list-menu-left li ul li:last-child {
  border-bottom: none;
}

.well {
  margin-bottom: 0;
}




/* index banner css setting */
.flex-slider a:hover,
.flex-container a:hover {
  outline: none;
}

.slides {
  margin: 0;
  padding: 0;
  list-style: none;
}

.slides>li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides>li {
  display: none;
  -webkit-backface-visibility: hidden;
}

.flexslider .slides img {
  width: 100%;
  display: block;
}

.flexslider .slides:after {
  content: " ";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .flexslider .slides {
  display: block;
}

* html .flexslider .slides {
  height: 1%;
}

.no-js .flexslider .slides>li:first-child {
  display: block;
}

.flexslider {
  position: relative;
  height: 70vh;
  margin: 0;
}

.flexslider.white {
  position: relative;
  height: 60vh;
  margin: 0;
}

.flexslider .slides {
  height: 100% !important;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.flexslider .slides li {
  background-position: center center;
  background-repeat: no-repeat;
  height: 100% !important;
  width: 100%;
  padding: 0;
  margin: 0;
  background-size: cover;
}

.flex-nav-prev {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 0;
  margin-top: -10px;
}

.flex-nav-next {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 0;
  margin-top: -10px;
  left: auto;
  right: 0;
}

.flex-nav-prev a,
.flex-nav-next a {
  display: block;
  font-size: 30px;
  color: #fff;
  padding: 0 20px;
  background-color: rgba(11, 11, 11, 0.45);
}

.flex-nav-prev a:hover {
  padding-left: 15px;
}

.flex-nav-next a:hover {
  padding-right: 15px;
}

.flex-control-nav {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.flex-control-nav>li {
  display: inline-block;
  position: relative;
  margin: 0 5px;
}

.flex-control-nav>li>a {
  text-indent: -9999px;
  background: #fff;
  -webkit-box-shadow: 0 0 0 3px transparent;
  box-shadow: 0 0 0 3px transparent;
  border-radius: 50%;
  display: block;
  height: 10px;
  width: 10px;
  opacity: 0.5;
  zoom: 1;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.flex-control-nav>li>a.flex-active {
  background: transparent;
  -webkit-box-shadow: 0 0 0 3px #fff;
  box-shadow: 0 0 0 3px #fff;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 1;
  zoom: 1;
}

/* banner word */
.index-slider__title {
  font-size: 24px;
  line-height: 30px;
  text-shadow: 2px 2px 3px #000;
}

@media (min-width: 768px) {
  .index-slider__title {
    font-size: 32px;
    line-height: 52px;
  }
}

.index-slider__description {
  font-size: calc(2rem + 0.3vw);
  margin-top: 10px;
}


/* index banner hover */
@media (max-width: 480px) {
  .flexslider.white {
    position: relative;
    height: 30vh;
    margin: 0;
  }
}

/* rwd */
@media (max-width:576px) {
  .index-slider__title {
    font-size: 16px;
  }
}











/* index pdt css setting */
.index-product {
  position: relative;
  background: #fff;
  padding: 80px;
  border-bottom: none !important;
}

.index-product .product-title {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5em;
  max-height: 46px;
  height: auto;
}

.page-index .box-icon-left {
  margin: 1rem;
  transition: 0.08s ease-in;
  z-index: 1;
  position: relative;
  display: block;
  overflow: hidden;
}


.page-index .box-icon-left::before {
  content: "";
  position: absolute;
  background: var(--secondary-color);
  left: -40px;
  top: 0;
  height: 100%;
  width: 0%;
  transform: skewX(45deg);
  z-index: -1;
  transition: all 0.7s;

}

.page-index .work-item:hover .box-icon-left::before {
  width: 160%;
}

.page-index .work-item:hover .product-title>a {
  color: #FFF;
}

/* hover */
@media (max-width:767px) {
  .page-index .box-icon-left::before {
    left: -60px;
  }
}










/* index feature css setting */
.index-feature {
  background-image: url(../images/feature-bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 100px;
}

.index-feature .index-feature-block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* 主內容 */
.index-feature .fea-main-title {
  color: #FFF !important;
}

.fea-main-intro {
  width: 800px;
  margin-bottom: 70px;
}

.fea-main-intro p {
  font-size: 16px;
  line-height: 35px;
  color: var(--primary-color-lighten);
  text-shadow: 2px 2px 3px #000;
}

/* 三大優點 */
.index-feature-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.fea-item-part {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fea-item-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: transparent;
  border-radius: 1rem;
  padding: 2rem;
}

.fea-item-card:hover {
  background-color: #161616A6;
  -webkit-backdrop-filter: blur(15px) brightness(1.15);
  backdrop-filter: blur(15px) brightness(1.15);
  border-radius: 1rem;
  transition: all .5s;
}

.secondAnimation {
  --hoverContorno: #4d4d4d;
}

.secondAnimation:hover,
.secondAnimation:focus {
  -webkit-animation: cardAnimacion 1.4s;
  animation: cardAnimacion 1.4s;
  box-shadow: 0 0 0 0.8em rgba(255, 255, 255, 0);
  border-radius: 1rem;
}

@-webkit-keyframes cardAnimacion {
  0% {
    box-shadow: 0 0 0 0 var(--hoverContorno);
  }
}

@keyframes cardAnimacion {
  0% {
    box-shadow: 0 0 0 0 var(--hoverContorno);
  }
}

/* icon */
.fea-item-card i {
  font-size: 28px;
  color: #FFF;
  margin-bottom: 2rem;
}

/* 標題內文 */
.fea-item-title {
  color: var(--primary-color-darken) !important;
  text-align: center;
  font-size: 21px;
  line-height: 28px;
  text-transform: uppercase;
}

.fea-item-card p {
  color: #FFF;
  line-height: 24px;
  text-align: center;
}

/* hover */
.fea-item-part:hover .fea-item-card i {
  color: var(--primary-color) !important;
}

/* rwd */
@media (max-width:991px) {
  .fea-main-intro {
    width: fit-content;
    padding: 0 3rem;
  }
}

@media (max-width:576px) {
  .module-header.title {
    margin-bottom: 2rem;
  }

  .fea-main-intro {
    text-align: center;
    padding: 0 3rem;
  }
}








/* index intro css setting */
.intro-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.intro-block {
  padding: 0;
}


@media (min-width:992px) {
  .intro-block {
    height: 635px;
  }
}

.intro-box.pic {
  width: 100%;
  height: 100%;
}

.intro-block.word {
  background-image: url(../images/intro-word-bg-1.jpg)!important;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.intro-block.word .intro-box {
  padding: 50px;
}

.intro-box.pic img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

/* play btn */
.intro-box.pic {
  position: relative;
}

#btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.stroke-solid {
  stroke-dashoffset: 0;
  stroke-dashArray: 300;
  stroke-width: 4px;
  transition: stroke-dashoffset 1s ease, opacity 1s ease;
}

.icon {
  transform: scale(0.8);
  transform-origin: 50% 50%;
  transition: transform 200ms ease-out;
}

.btn-play-link:hover .stroke-solid {
  opacity: 1;
  stroke-dashoffset: 300;
}

.btn-play-link:hover .icon {
  transform: scale(1.3);
}



/* index news css setting */

.index-news {
  padding: 80px;
}

.post {
  margin: 0 0 70px;
}

.post .post-title {
  font-size: 23px;
  margin-bottom: 10px;
}

.post .post-content {
  border-bottom: 5px solid transparent;
  padding: 30px 0 0;
  transition: all 0.3s;
}

.post:hover .post-content {
  border-bottom: 5px solid var(--primary-color);
}

.post.format-quote .post-content {
  padding: 30px 25px;
}

.post-meta {
  list-style: none;
  margin: 0 0 5px;
  padding: 0;
}

.post-meta time {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  /* color: var(--primary-color); */
  color: #000;
  padding: 3px 10px;
  margin-bottom: 6px;
  background-color: var(--primary-color-darken);
}

.post-meta>li+li:before {
  content: "/ ";
  padding: 0 5px;
}

.page-news-detail .post-meta time,
.page-news-detail .post-meta i {
  font-size: 15px;
}

.page-news-detail .post-meta i {
  color: var(--primary-color);
}

.post-columns .post {
  background: #f8f8f8;
  margin: 0 0 5rem;
}

.post-columns .post .post-title {
  font-size: 20px;
}

.post-columns .post .post-content {
  padding: 30px 25px;
}

.post-columns .post .post-content> :last-child {
  margin-bottom: 0;
}

.post-thumbnail .post-content {
  padding: 0;
}

@media (max-width: 767px) {
  .post-thumbnail .post-content {
    padding: 30px 0 0;
  }
}

.post.format-quote {
  background: #1d78c4;
  color: #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  padding: 0;
}

.post.format-quote blockquote {
  background: #1d78c4;
  color: #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  padding: 0;
}

.post.format-quote:hover {
  opacity: 0.9;
}

.post.format-quote blockquote {
  font-style: normal;
  font-size: 17px;
  padding: 30px 25px;
}

.post.format-quote blockquote:hover {
  opacity: 0.9;
}

.post.format-quote blockquote footer,
.post.format-quote blockquote small,
.post.format-quote blockquote .small {
  color: #fff;
  font-weight: 600;
}

.post.format-quote blockquote footer:before,
.post.format-quote blockquote small:before,
.post.format-quote blockquote .small:before {
  content: none;
}

.post.format-quote blockquote:before {
  font-family: "FontAwesome";
  font-size: 24px;
  display: block;
  content: "";
  margin: 0 0 20px;
}

/* rwd */
@media (max-width:576px) {
  .index-news {
    padding: 80px 0;
  }
}





/* pdt css setting */

.pdt-name-box {
  margin: 1rem 0;
  transition: 0.08s ease-in;
  z-index: 1;
  position: relative;
  display: block;
  overflow: hidden;
}

.pdt-list-item:hover .product-title {
  color: #fff;
}

.pdt-name-box::before {
  content: "";
  position: absolute;
  background: var(--secondary-color);
  left: -40px;
  top: 0;
  height: 100%;
  width: 0%;
  transform: skewX(45deg);
  z-index: -1;
  transition: all 0.7s;
}

.pdt-list-item:hover .pdt-name-box::before {
  width: 160%;
}

.pdt-list-item:hover .product-type {
  color: #fff;
}

.img-responsive {
  width: 280px;
}

.swiper-container .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-container .swiper-slide__title {
  font-size: 17px;
  margin-top: 40px;
}

.swiper-container .swiper-slide__title.line-height-limit {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5em;
  max-height: 52px;
  height: auto;
}

.swiper-container .carousel-button-next,
.swiper-container .carousel-button-prev {
  position: absolute;
  top: 35%;
  z-index: 2;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.swiper-container .carousel-button-next .icon,
.swiper-container .carousel-button-prev .icon {
  fill: #fff;
  background-color: var(--secondary-color);
  border: 1px solid var(--primary-color);
  padding: 5px;
}

.swiper-container .carousel-button-next:hover .icon,
.swiper-container .carousel-button-prev:hover .icon {
  fill: var(--primary-color-darken);
  background-color: rgba(255, 255, 255, 0.999);
}

.swiper-container .carousel-button-next.swiper-button-disabled .icon,
.swiper-container .carousel-button-prev.swiper-button-disabled .icon {
  fill: #fff;
  background-color: var(--primary-color);
}

.swiper-container .carousel-button-next {
  right: 10px;
}

.swiper-container .carousel-button-prev {
  left: 10px;
}







/* pdt detail css setting */
.row.m-t-70.center_row h2,
.relative-product h4 {
  text-align: center;
}

.relative-product h4 {
  margin-bottom: 3rem;
  font-weight: bold;
  font-size: 24px;
}

.download_in .container {
  max-width: 100%;
}

.download_in .title01 {
  padding: 30px 0;
  text-align: center;
}

.itemLink {
  font-size: 14px;
  white-space: nowrap;
  color: gray;
  padding-left: 32px;
  float: right;
  display: flex;
}

.dl-list {
  padding: 15px;
  background-color: white;
  border: 1px solid #eee;
}

.dl-list li {
  padding: 8px 8px 20px;
  list-style-position: inside;
  color: #292929;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: #000 1px dotted;
}

@media (min-width: 768px) {
  .dl-list li {
    flex-wrap: unset;
  }
}

.dl-list li::before {
  display: inline-block;
  width: 20px;
  vertical-align: top;
}

@media (min-width: 768px) {
  .dl-list li::before {
    content: "•";
  }
}

.dl-list li:not(:last-child) {
  border-bottom: 1px dashed #d6d6d6;
}

.dl-list a {
  color: #333;
  font-family: Arial, "微軟正黑體", serif;
}

.dl-list a:hover {
  color: #333;
  font-family: Arial, "微軟正黑體", serif;
}

.itemLink img {
  width: 15px;
  height: 15px;
  margin-right: 4px;
}

.itemTitle {
  width: 80%;
  display: inline-block;
}

@media all and (min-width: 320px) {
  .itemTitle {
    margin-bottom: 10px;
  }
}

@media (min-width: 768px) {
  .itemTitle {
    margin-bottom: 0;
  }
}

.itemLink {
  display: inline-block;
  background: var(--primary-color);
  padding: 10px 17px;
  border-width: 0;
  color: #fff !important;
}

.itemLink:hover {
  display: inline-block;
  background-color: var(--secondary-color);
  padding: 10px 17px;
  color: white;
}

@media screen and (max-width: 480px) {
  .dl-list li {
    display: flex !important;
    justify-content: center !important;
  }

  .dl-list a {
    text-align: center;
  }

  .itemTitle {
    width: 80%;
    display: inline-block;
  }
}

/* rwd */
@media (max-width:767px) {
  .product-description {
    margin: 50px 0 20px 0;
  }
}







/* ab css setting */















/* contact css setting */
.contact-map {
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.page-contact .contact-info-list {
  list-style: none;
  padding: 0;
}

.page-contact .contact-info-list li {
  margin: 1rem 0;
}

.invalid-feedback {
  color: var(--primary-color);
}

@media (max-width:992px) {
  .page-contact form {
    margin: 50px 0;
  }
}



/* inquirycart css setting */
.rwd-table {
  background: #fff;
  overflow: hidden;
}

.rwd-table tr:nth-of-type(2n) {
  background: #fff;
}

.rwd-table th,
.rwd-table td {
  margin: 0.5em 1em;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 16px;
  padding-top: 16px;
}

.rwd-table {
  min-width: 100%;
  margin-bottom: 50px;
}

.rwd-table th {
  display: none;
}

.rwd-table td {
  display: block;
}

.rwd-table td:before {
  content: attr(data-th) "  ";
  font-weight: bold;
  width: 100%;
  display: block;
}

.rwd-table th,
.rwd-table td {
  text-align: left;
}

.rwd-table th,
.rwd-table td:before {
  color: #313131;
  font-weight: bold;
}

@media (min-width: 768px) {
  .rwd-table td:before {
    display: none;
  }

  .rwd-table th,
  .rwd-table td {
    display: table-cell;
    padding: 0.25em 0.5em;
  }

  .rwd-table th:first-child,
  .rwd-table td:first-child {
    padding-left: 0;
    width: 150px;
  }

  .rwd-table th:last-child,
  .rwd-table td:last-child {
    padding-right: 0;
  }

  .rwd-table th,
  .rwd-table td {
    padding: 1em !important;
  }
}

@media (max-width:767px) {

  /* 補充 */
  .rwd-table th {
    display: none !important;
  }

  .rwd-table tr:last-child {
    display: block !important;
    width: 100% !important;
  }

  .rwd-table th:first-child,
  .rwd-table td:first-child {
    width: 100% !important;
  }
}




@media screen and (max-width: 996px) {
  .iqw .dropdown-menu {
    right: auto;
    left: 0 !important;
    width: 100%;
  }

  .iq {
    float: none;
    display: block;
    width: 100%;
    position: relative;
  }

  .iq a {
    text-decoration: none !important;
    border-bottom: 0px none white;
  }
}







/* news css setting */
.page-news .module.section_news {
  background-image: url(../images/news-page-bg-1.jpg);
  background-position: center;
  background-size: cover;
}












/* gdpr css setting */
.gdpr-title {
  margin-bottom: 2rem;
}

.gdpr-word {
  margin-bottom: 1rem;
}

.gdpr-list {
  list-style: inside;
}

.gdpr-link {
  color: red;
}







/* search css setting */
.page-search .pdt-nofind {
  width: 500px;
}

/* rwd */
@media (max-width:767px) {

  .section_search .title-01,
  .section_search .lead {
    text-align: center;
  }
}







/* done css setting */
.section_done .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.done-word {
  text-align: center;
  margin-bottom: 50px;
}

.section_done .done-pic {
  width: 500px;
}

/* rwd */
@media (max-width:576px) {
  .done-word {
    font-size: 16px;
  }
}







/* 404 css setting */
.wrong-word-block {
  margin-top: 3rem;
}

.section_404 .no-page-pic {
  width: 500px;
}

.wrong-word-block h5 {
  font-size: 22px
}

/* rwd */
@media (max-width:576px) {
  .wrong-word-block h5 {
    font-size: 14px
  }
}







/* inquiry css setting */
.inq-empty-block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.iqy-empty-pic {
  margin: 2rem 0;
}

.inq-empty-word {
  margin-bottom: 2rem;
}

.inq-empty-block .back {
  margin: 2rem 0;
}


.inquiry-done-block .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.inq-done-word {
  margin-bottom: 3rem;
}

.iqy-empty-pic {
  width: 500px;
}

.inq-done-pic {
  margin: 2rem 0;
  width: 500px;
}

/* rwd */
@media (max-width:576px) {
  .inq-done-word {
    font-size: 14px;
    text-align: center;
  }
}










/* sitemap css setting */
.section_sitemap .row {
  display: flex;
  flex-wrap: wrap;
}

.sitemap h2 {
  border-top: 0;
  color: #fff;
  border-left: 7px solid #000;
  background-color: #FF6000;
  padding: 10px;
  font-size: 18px;
}

.sitemap {
  margin-bottom: 25px;
}

.sitemap h2 a {
  color: #fff;
}

.sitemap1 {
  list-style: none;
  padding: 0;
}

.sitemap1 li {
  margin: 1rem 0;
}

.sitemap1 li a {
  color: #000;
  padding-left: 15px;
}

.sitemap1 li a:hover {
  color: #FF6000;
}

.sitemap1 li ul {
  list-style: none;

}







/* 客製 catalogs css setting */
.catalog-main-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}