/* Mixins
------------------------------------------------------- */
/* General settings
------------------------------------------------------- */
/*
'none'
'bounceIn'
'bounceInUp'
'bounceInDown'
'bounceInLeft'
'bounceInRight'
'elastic'
'fadeIn'
'fadeInUp'
'fadeInUpSmall'
'fadeInUpBig'
'fadeInDown'
'fadeInDownBig'
'fadeInLeft'
'fadeInLeftBig'
'fadeInRight'
'fadeInRightBig'
'flipInX'
'flipInY'
'lightSpeedIn'
'rotateIn'
'rotateInUpLeft'
'rotateInUpRight'
'rotateInDownLeft'
'rotateInDownRight'
'rollIn'
'slideInUp'
'slideInDown'
'slideInLeft'
'slideInRight'
'wipeInLeftTop'
'zoomIn'
'zoomInUp'
'zoomInDown'
'zoomInLeft'
'zoomInRight'
*/
/* Block animation
------------------------------------------------------- */
/*!
https://daneden.github.io/animate.css/
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2014 Daniel Eden
*/
@import "swiper.min.css";
[data-animation^=animated] {
  visibility: hidden;
}

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

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

.animated.fast {
  animation-duration: 0.5s;
}

.animated.slow {
  animation-duration: 2s;
}
@keyframes elastic {
  0%, 100% {
    transform: scale3d(1, 1, 1);
  }
  25% {
    transform: scale3d(1, 1.2, 1);
  }
  50% {
    transform: scale3d(1, 0.85, 1);
  }
  75% {
    transform: scale3d(1, 1.05, 1);
  }
}
@keyframes elastic-inner {
  0% {
    opacity: 0;
    transform: translate3d(0, -25px, 0);
  }
  25% {
    transform: translate3d(0, 10px, 0);
  }
  50% {
    transform: translate3d(0, -6px, 0);
  }
  75% {
    transform: translate3d(0, 2px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.elastic {
  animation-name: elastic;
  transition-timing-function: cubic-bezier(0.2, 0.6, 0.3, 1);
  transform-origin: center top;
}

.elastic > * {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition: none;
  animation: elastic-inner 0.5s ease-out;
}
@keyframes wipeInLeftTop {
  0% {
    transform: scale(0, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes wipeInLeftTop-inner {
  0% {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.wipeInLeftTop {
  animation-name: wipeInLeftTop;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: left top;
}

.wipeInLeftTop > * {
  opacity: 0;
  animation: wipeInLeftTop-inner 0.35s ease-out forwards;
}

.wipeInLeftTop > *:first-child {
  animation-delay: 0.05s;
}

.wipeInLeftTop > *:nth-child(2) {
  animation-delay: 0.1s;
}

.wipeInLeftTop > *:nth-child(3) {
  animation-delay: 0.15s;
}

.wipeInLeftTop > *:nth-child(4) {
  animation-delay: 0.2s;
}

.wipeInLeftTop > *:nth-child(5) {
  animation-delay: 0.25s;
}

.wipeInLeftTop > *:nth-child(6) {
  animation-delay: 0.3s;
}

.wipeInLeftTop > *:nth-child(7) {
  animation-delay: 0.35s;
}

.wipeInLeftTop > *:nth-child(8) {
  animation-delay: 0.4s;
}

.wipeInLeftTop > *:nth-child(9) {
  animation-delay: 0.45s;
}

.wipeInLeftTop > *:nth-child(10) {
  animation-delay: 0.5s;
}

.wipeInLeftTop > *:nth-child(11) {
  animation-delay: 0.55s;
}

.wipeInLeftTop > *:nth-child(12) {
  animation-delay: 0.6s;
}

.wipeInLeftTop > *:nth-child(12) {
  animation-delay: 0.65s;
}

.wipeInLeftTop > *:nth-child(12) {
  animation-delay: 0.7s;
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
  opacity: 1;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  0% {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
  animation-duration: 0.75s;
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  100% {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  100% {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
  animation-duration: 0.75s;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpSmall {
  animation-name: fadeInUpSmall;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownSmall {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
}
.fadeOutDownSmall {
  animation-name: fadeOutDownSmall;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transition-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transition-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
  animation-duration: 0.75s;
}
@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  100% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  0% {
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    transform: translateY(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    transform: translateX(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    transform: translateX(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    transform: translateY(0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    transform: translateY(100%);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    transform: translateX(-100%);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    transform: translateX(100%);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    transform: translateY(-100%);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

.animate-spin {
  animation: spin 2s infinite linear;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* Bootstrap Grid
------------------------------------------------------- */
/*!
 * Bootstrap Grid v4.0.0-beta.2 (https://getbootstrap.com)
 * Copyright 2011-2017 The Bootstrap Authors
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.333333%;
  }

  .offset-sm-2 {
    margin-left: 16.666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.333333%;
  }

  .offset-sm-5 {
    margin-left: 41.666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.333333%;
  }

  .offset-sm-8 {
    margin-left: 66.666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.333333%;
  }

  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.333333%;
  }

  .offset-md-2 {
    margin-left: 16.666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.333333%;
  }

  .offset-md-5 {
    margin-left: 41.666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.333333%;
  }

  .offset-md-8 {
    margin-left: 66.666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.333333%;
  }

  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.333333%;
  }

  .offset-lg-2 {
    margin-left: 16.666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.333333%;
  }

  .offset-lg-5 {
    margin-left: 41.666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.333333%;
  }

  .offset-lg-8 {
    margin-left: 66.666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.333333%;
  }

  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.333333%;
  }

  .offset-xl-2 {
    margin-left: 16.666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.333333%;
  }

  .offset-xl-5 {
    margin-left: 41.666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.333333%;
  }

  .offset-xl-8 {
    margin-left: 66.666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.333333%;
  }

  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
/* Swiper
------------------------------------------------------- */
/* Main stylesheet
------------------------------------------------------- */
/* TABLE OF CONTENTS:

1. Reset tags
2. Default tag's settings
3. Form fields settings
4. Grid
5. Sections
6. Other


-------------------------------------------------------------- */
/* 1. Reset tags
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, input, textarea, button,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, address, section, video, audio {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  font-weight: inherit;
  font-style: inherit;
  border: 0;
  outline: 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

html {
  font-size: 100%;
  /*62.5%;*/
  /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units
   http://clagnut.com/blog/348/#c790 */
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%;
  /* www.456bereastreet.com/archive/201012/
     controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow-y: scroll !important;
  overflow-x: hidden;
  height: 100%;
}

/* 2. Default tag's settings
-------------------------------------------------------------- */
/* Font Family */
body {
  font-family: "Ubuntu", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Ubuntu", sans-serif;
}

.section-purchase h6,
.title-big i,
.title i,
.section-header .des {
  font-family: "Playfair Display", sans-serif;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%;
  /* www.456bereastreet.com/archive/201012/
     controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow-y: scroll !important;
  overflow-x: hidden;
  height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Next rule make text bolder in Mozilla on MacOS */
  /*text-rendering: optimizeLegibility;*/
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.65em;
  text-decoration: none;
  text-transform: none;
  background-color: #ffffff;
}

h1 {
  font-size: 3.75em;
  font-weight: 700;
  font-style: normal;
  line-height: 1em;
  text-decoration: none;
  text-transform: none;
  letter-spacing: -0.9px;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 2.75em;
  font-weight: 700;
  font-style: normal;
  line-height: 0.944em;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 1.44em;
  margin-bottom: 0.62em;
}

h3 {
  font-size: 2.125em;
  font-weight: 700;
  font-style: normal;
  line-height: 0.944em;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 1.44em;
  margin-bottom: 0.62em;
}

h4 {
  font-size: 1.5em;
  font-weight: 700;
  font-style: normal;
  line-height: 1em;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 1.44em;
  margin-bottom: 0.62em;
}

h5 {
  font-size: 1.125em;
  font-weight: 700;
  font-style: normal;
  line-height: 1.15em;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 1.44em;
  margin-bottom: 0.62em;
}

h6 {
  font-size: 1em;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1em;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 1.44em;
  margin-bottom: 0.62em;
}

p {
  margin: 0 0 15px;
}

article, aside, details, figcaption, figure, footer, header, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  -webkit-hyphens: auto;
          hyphens: auto;
}

li > ol, li > ul, dl > dd {
  margin-bottom: 0;
}

li > p {
  margin-bottom: 0;
}

li > p + p {
  margin-top: 0.5em;
}

ol, ul {
  padding-left: 1.5em;
}

ol li {
  margin: 8px 0;
}

ul li {
  margin: 9px 0;
}

/* Links */
a {
  text-decoration: none;
  background: transparent;
}

a,
a:hover,
a:focus,
a:active {
  outline: 0;
}

a img {
  border: none;
}

a,
button,
input[type=button],
input[type=submit] {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
  display: block;
}

:active, :focus {
  outline: 0;
}

/* Tables */
table {
  border-collapse: collapse;
}

table th + th, table th + td, table td + th, table td + td {
  border-left: 1px solid #ddd;
}

table th, table td {
  border: 1px solid #ddd;
}

table > p {
  margin: 0 !important;
}

table td, table th {
  padding: 0.8em 1em 0.7em;
}

table th {
  font-size: 1em;
  font-weight: 700;
  font-style: normal;
  text-align: left;
}

caption {
  font-weight: 700;
  text-align: center;
}

/* Blockquotes*/
blockquote {
  position: relative;
  text-align: left;
  padding: 0 0 0 1.8em;
}

blockquote p {
  margin: 0;
  font-size: 1.118em;
  line-height: 1.45em;
  font-weight: 400;
}

blockquote > cite, blockquote > p > cite {
  display: block;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 700;
  font-style: normal;
  margin-top: 0.85em;
}

/* Other tags */
dd {
  margin-left: 1.5em;
}

dt, b, strong {
  font-weight: bold;
}

dfn, em, i {
  font-style: italic;
}

pre, code, kbd, tt, var, samp {
  font-family: "Courier New", Courier, monospace;
  font-size: 1em;
  letter-spacing: 0;
}

pre {
  overflow: auto;
  max-width: 100%;
}

code {
  overflow: auto;
  max-width: 100%;
  padding: 0 1em;
  border: 1px solid #888;
  background-color: #f7f7f7;
  display: inline-block;
  vertical-align: middle;
  word-wrap: break-word;
}

pre > code {
  display: block;
  vertical-align: top;
  padding: 1em;
}

abbr, acronym {
  border-bottom: 1px dotted;
  cursor: help;
}

mark, ins {
  background-color: transparent;
  text-decoration: none;
}

sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: 0.5ex;
}

small {
  font-size: 80%;
}

big {
  font-size: 120%;
}

[hidden], template {
  display: none;
}

hr {
  height: 0;
  border: none;
  border-top: 1px solid #eee;
  margin: 6.7857em 0;
  -ms-box-sizing: content-box;
  box-sizing: content-box;
}

/* Images */
img {
  max-width: 100%;
  /*	width: auto; */
  /* Only height: auto; not both! */
  height: auto;
  vertical-align: top;
}

figure {
  border: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

figure figcaption {
  position: absolute;
  z-index: 1;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
  font-style: normal;
  transition: all 0.3s ease;
  margin-bottom: 0;
  text-align: center;
  padding: 13px 10px;
}

figure:hover figcaption {
  margin-bottom: -5em;
}

svg:not(:root) {
  overflow: hidden;
}

/* Audio and Video */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

iframe, video, embed {
  max-width: 100%;
  min-height: 100px;
  vertical-align: top;
}
#chat-application-iframe{
  min-height: auto;
}

/* Fontello icons */
[class^=icon-]:before, [class*=" icon-"]:before {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-style: inherit;
  display: inline-block;
  vertical-align: top;
  width: auto;
  margin: 0;
}

/* 3. Form fields settings
-------------------------------------------------------------- */
/* Common rules */
form {
  margin-bottom: 0;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 1em;
  /* Corrects font size not being inherited in all browsers */
  margin: 0;
  /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  vertical-align: baseline;
  /* Improves appearance and consistency in all browsers */
}

button {
  overflow: visible;
}

input[placeholder]::placeholder,
textarea[placeholder]::placeholder {
  text-overflow: ellipsis;
}

input[placeholder],
textarea[placeholder] {
  text-overflow: ellipsis;
}

textarea, textarea.wp-editor-area,
select, option,
input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=search],
input[type=password],
input[type=checkbox],
input[type=radio] {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5em;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
  /* Addresses excess padding in IE8/9 */
}

input[type=number],
input[type=search] {
  -webkit-appearance: none;
  /* Addresses appearance set to searchfield in S5, Chrome */
  -webkit-appearance: textfield;
}

/*input[type="search"]::-webkit-search-cancel-button,*/
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
  border: 0;
  padding: 0;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=search]:focus,
select:focus,
textarea:focus,
textarea.wp-editor-area:focus {
  outline: none;
}

input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=password],
input[type=search],
select,
textarea,
textarea.wp-editor-area {
  -webkit-appearance: none;
  outline: none;
  resize: none;
}

/* Required fields */
label.required:after {
  content: "*";
  display: none;
  vertical-align: text-top;
  font-size: 80%;
  color: #da6f5b;
}

/* Field set */
fieldset {
  padding: 1em 1.5em;
  margin: 1.5em 0.2em;
  border: 1px solid #ddd;
  position: relative;
}

fieldset legend {
  position: absolute;
  z-index: 1;
  top: -0.6em;
  left: 1.5em;
  background-color: #fff;
  font-weight: 400;
  font-style: italic;
  padding: 0 0.2em;
  letter-spacing: 0;
}

/* Buttons */
button,
input[type=button],
input[type=reset],
input[type=submit],
.splash-button {
  -webkit-appearance: none;
  cursor: pointer;
  display: inline-block;
  font-size: 11px;
  line-height: 14px;
  font-weight: 700;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  padding: 1.95em 5.1em;
  letter-spacing: 1.75px;
  height: auto;
  text-transform: uppercase;
  border-width: 0 !important;
  border-radius: 5px;
  /*@include box-shadow(0 0 13px 0 rgba(0, 0, 0, 0.075));*/
}

/* Text fields */
input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=password],
input[type=search],
select,
textarea {
  padding: 1.05em 2.25em 0.99em;
  border: 1px solid #ddd;
  border-radius: 4px;
}

textarea {
  overflow: auto;
  /* Removes default vertical scrollbar in IE6/7/8/9 */
  vertical-align: top;
  /* Improves readability and alignment in all browsers */
  min-height: 13em;
}

/* Select container (dropdown) */
select {
  text-overflow: ellipsis;
  white-space: nowrap;
}

select::-ms-expand {
  display: none;
}

/* Hide all select fields while page loading */
select {
  visibility: hidden;
}

/* 4. Grid
-------------------------------------------------------------- */
.container {
  max-width: 1390px;
}

.text-align-center {
  text-align: center;
}

.text-align-left {
  text-align: left;
}

.text-align-right {
  text-align: right;
}

/* 5. Sections
-------------------------------------------------------------- */
/* Section Header */
.section-header {
  background-image: url(../img/section-header-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.section-header .top-over {
  position: absolute;
  top: 44px;
  z-index: 9;
  padding: 0 60px;
}

.section-header h1 {
  margin: 0 0 0.3em;
}

.section-header h1 > span {
  display: inline-block;
}

.transform-middle {
  transform: translateY(-50%);
  position: absolute;
  top: 54%;
  left: 0;
  z-index: 2;
  padding: 0;
}

.section-header .des {
  margin-bottom: 2em;
}

.transform-middle .splash-button {
  background-color: #fe3b3b !important;
  color: #ffffff !important;
}

.transform-middle .splash-button:hover {
  color: #222333 !important;
}

.transform-middle .splash-button:after {
  background-color: #ffffff !important;
}

.section-header .top-over .splash-button {
  padding: 1.5em 2.1em;
  vertical-align: middle;
}

.section-header .splash-button:before {
  font-weight: 400;
  font-size: 1.55em;
  margin-right: 7px;
}

.transform-bottom {
  position: absolute;
  bottom: 2.5em;
  left: 0;
  z-index: 10;
}

/* Section Services */
.services-item {
  position: relative;
  padding-top: 4em;
}

.services-item:before {
  width: 43%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  background: #fe3b3b;
}

.section-services [class*=col] + [class*=col] .services-item:before {
  background: #3a84ca;
}

.section-services [class*=col] + [class*=col] + [class*=col] .services-item:before {
  background: #fec645;
}

.services-title {
  font-weight: 500;
  letter-spacing: -1.3px;
  line-height: 1.05em;
  margin: 0.6em 0 0.62em 0;
}

.services-title > span {
  display: inline-block;
}

.services-subtitle {
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  color: #6f6f70;
  letter-spacing: 3px;
  margin: 0;
}

/* Section Counters */
.counter-item {
  position: relative;
  padding-top: 3.3em;
}

.counter-item:before {
  width: 48%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  background: #e03968;
}

.section-counters [class*=col] + [class*=col] .counter-item:before {
  background: #006fec;
}

.section-counters [class*=col] + [class*=col] + [class*=col] .counter-item:before {
  background: #fabc6e;
}

.section-counters [class*=col] + [class*=col] + [class*=col] + [class*=col] .counter-item:before {
  background: #89c07a;
}

.counter-num {
  font-weight: 700;
  font-size: 3.75em;
  letter-spacing: -1.5px;
  line-height: 1.05em;
  margin: 0;
}

.counter-title {
  font-size: 1.125em;
  margin: 1.1em 0 1.15em 0;
  letter-spacing: -0.7px;
}

.counter-des {
  font-size: 14px;
  line-height: 22px;
}

/* Section Features */
.features-item {
  background: #ffffff;
  -ms-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.06);
  padding: 5.2em 1em 4.3em;
  height: 100%;
  position: relative;
  top: 0;
  transition: all 0.3s ease;
  display: grid;
}

.section-features-big .features-item,
.section-features-extra .features-item {
  display: inline-block;
  height: 100%;
  width: 100%;
}

.features-item-wrap {
  padding-bottom: 30px;
  display: inline-block;
  height: 100%;
  width: 100%;
}

.features-item:hover {
  top: -10px;
  -ms-box-shadow: 0px 0px 13px 13px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 13px 13px rgba(0, 0, 0, 0.06);
}

.features-title {
  font-weight: 500;
  margin: 1.8em 0 0;
}

.features-title > span {
  display: inline-block;
  width: 100%;
}

.features-icon {
  font-size: 3.3em;
}

.features-info {
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: -0.1px;
  margin: 3px 0 0 0;
}

.features-info span {
  display: block;
}

/* Section Features Extra */
.section-features-extra .features-item {
  -ms-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.04);
  padding: 1.8em 0.5em 2.4em;
}

.section-features-extra .features-item:hover {
  -ms-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.03);
}

/* Section Features Big */
.section-features-big .features-icon {
  font-size: 4.1em;
}

.section-features-big .features-item {
  padding: 5.9em 1em 3.1em;
}

.section-features-big .features-title {
  font-weight: 500;
  margin: 1.55em 0 0;
  font-size: 1.25em;
}

.section-features-big .des {
  font-size: 15px;
  line-height: 26px;
}

/* Section Reviews */
.reviews-item {
  margin-bottom: 30px;
}

.reviews-item .des {
  font-size: 1.125em;
  margin: 1.55em 0 0.55em;
  width: 100%;
}

.reviews-title {
  font-size: 15px;
  font-weight: 500;
  margin: 0.85em 0 1.4em;
}

/* Section Support */
.support-item {
  margin: 0;
  padding: 65px 0;
}

.reviews-title {
  font-size: 15px;
  font-weight: 500;
  margin: 0.85em 0 1.4em;
}

.section-support {
  background-image: url(../img/bg-footer.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.support-title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  margin: 0;
  vertical-align: middle;
  letter-spacing: 2.1px;
}

.support-icon {
  font-weight: 400;
  font-size: 40px;
  vertical-align: middle;
  margin-right: 16px;
}

.section-support [class*=col] + [class*=col] {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

/* Section Copyright */
.section-copyright {
  padding: 5.2em 0;
}

.socials-items a {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0.9em;
}

/*  */
/* 6. Other
-------------------------------------------------------------- */
/* Extra bg */
.extra-bg-dark {
  background-color: #262738 !important;
}

/* Alter bg */
.alter-bg-dark {
  background-color: #27293c;
}

.alter-bg-dark-2 {
  background-color: #1d1e2b !important;
}

.image-bg-dark {
  background-image: url(../img/dark-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

/* Spaces */
.margin-top-large {
  margin-top: 10.55em;
}

.margin-top-big {
  margin-top: 9.2em;
}

.margin-top-middle {
  margin-top: 7em;
}

.margin-top-med {
  margin-top: 4.3em;
}

.margin-top-small {
  margin-top: 2.55em;
}

.margin-bottom-large {
  margin-bottom: 10.55em;
}

.margin-top-large- {
  position: relative;
  top: -13.3em;
}

.margin-top-small- {
  position: relative;
  top: -3em;
  margin-bottom: -3em;
}

.padding-top-large {
  padding-top: 10.55em;
}

.padding-top-big {
  padding-top: 9.2em;
}

.padding-top-middle {
  padding-top: 6em;
}

.padding-bottom-large {
  padding-bottom: 10.55em;
}

.padding-bottom-big {
  padding-bottom: 9.2em;
}

.padding-bottom-middle {
  padding-bottom: 6em;
}

.padding-bottom-med {
  padding-bottom: 4.3em;
}

.padding-bottom-small {
  padding-bottom: 2.55em;
}

/* Info */
.title {
  font-size: 2.75em;
  font-weight: 500;
  margin: 0.48em 0 0;
  letter-spacing: -1.4px;
}

.subtitle {
  font-size: 17px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
}

.des {
  font-size: 16px;
  line-height: 28px;
  display: inline-block;
  margin: 20px 0;
}

.section-header .des {
  font-size: 17px;
}

.title-big > span,
.title > span,
.des > span {
  display: inline-block;
  width: 100%;
}

.title-big > i {
  font-weight: 400;
}

.section-info .title-big {
  margin: 0.6em 0 0.1em;
}

.title.med {
  font-size: 2.188em;
}

/* Menu */
.menu {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0 1.5em 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}

.menu li {
  display: inline-block;
  margin: 0;
}

.menu a {
  padding: 0 0.85em;
}

/* Scroll To */
a.scroll-to {
  font-size: 2.4em;
  color: #797d86 !important;
}

a.scroll-to:hover {
  color: #ffffff !important;
}

/* Portfolio - isotope */
.portfolio.col1 .isotope-item {
  width: 100%;
}

.portfolio.col2 .isotope-item {
  width: 50%;
}

.portfolio.col3 .isotope-item {
  width: 33.33%;
}

.portfolio.col4 .isotope-item {
  width: 25%;
}

.portfolio.col5 .isotope-item {
  width: 20%;
}

.portfolio.col6 .isotope-item {
  width: 16.66%;
}

.portfolio_wrap {
  position: relative;
  margin-right: -30px;
}

.portfolio .isotope-item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 0 30px 30px 0;
  margin: 0;
}

.isotope {
  margin-right: -30px;
  transition-duration: 0.8s;
  transition-property: height, width;
}

.isotope-item .img {
  position: relative;
  overflow: hidden;
  display: block;
}

.isotope-item .img:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  opacity: 0;
}

.isotope-item .img:hover:before {
  background-image: none;
  background: rgba(29, 30, 43, 0.4);
  opacity: 1;
}

.demo .portfolio .isotope-item .img:before {
  background-color: rgba(22, 29, 44, 0.95);
}

.demo .portfolio .isotope-item .img:hover:before {
  opacity: 1;
}

.iso_filters {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 2.55em 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 2.2px;
}

.iso_filters li {
  display: inline-block;
}

.iso_filters li a {
  color: #a7a8b5;
  padding: 0 2.25em;
  text-transform: uppercase;
}

.portfolio_title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: -0.2px;
  margin: 1.8em 0 1em;
}

.portfolio_title b {
  font-weight: 700;
}

.isotope-item.cooming-soon .portfolio_title {
  color: #7d7d81;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: -15px;
}

.isotope-item.cooming-soon .portfolio_title > span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.img.with_info {
  color: #ffffff !important;
  position: relative;
  top: 10px;
  -ms-box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.img.with_info:hover {
  top: 0;
  -ms-box-shadow: 0px 0px 15px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 15px rgba(0, 0, 0, 0.1);
}

.hover-info {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 100;
  opacity: 0;
  transition: all 0.3s ease;
}

.demo.section-portfolio .isotope-item.cooming-soon {
  margin-top: 10px !important;
}

.isotope-item .img:hover .hover-info {
  opacity: 1;
}

.hover-info .list {
  float: left;
  text-align: left;
  margin: 0 0 28px;
  list-style: none;
  font-size: 15px;
  width: 100%;
  padding: 0 34px;
  letter-spacing: -0.75px;
  color: #d3d3df;
}

.hover-info .list li {
  position: relative;
  margin: 3px 0;
}

.hover-info .list li:before {
  content: "";
  display: inline-block;
  background: #fec001;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  height: 5px;
  width: 5px;
  left: 0;
  margin: 0 12px 0 0;
  vertical-align: middle;
}

.img.with_info .arrow-button {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  transition: all 0.3s ease;
}

.img.with_info .arrow-button:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 86px 86px;
  border-color: transparent transparent #fe3b3b transparent;
  z-index: -1;
}

.img.with_info .arrow-icon {
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/arrow.png);
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin: -6px 0 0 -15px;
}

/* Slider */
.swiper {
  overflow: hidden;
}

.swiper.slider_pagination {
  padding-bottom: 30px;
}

.swiper .swiper-pagination {
  display: block;
  text-align: center;
  z-index: 9;
  bottom: 10px;
  width: 100%;
  top: auto;
  left: 0;
  height: 20px;
}

.swiper .swiper-pagination .swiper-pagination-bullet {
  vertical-align: bottom;
  border: 2px solid #e7e7e7;
  background-color: transparent;
  width: 9px;
  height: 9px;
  display: inline-block;
  margin: 0;
  opacity: 1;
  border-radius: 50%;
}

.swiper .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 8px;
}

/* Section Purchase */
.section-purchase h6 {
  font-size: 1em;
  font-weight: 400;
  color: #505050;
  margin: 1em 0 1.4em 0;
}

.section-purchase .title {
  font-size: 2.25em;
  line-height: 1.15em;
}

.section-purchase .title span {
  font-weight: 300;
}

.section-purchase .splash-button {
  margin-top: 3em;
  margin-bottom: 2em;
  border: 1px solid #ededed !important;
  background: transparent !important;
  color: #1a202d;
  padding: 1.95em 3.9em;
}

.section-purchase .splash-button:before {
  font-size: 1.5em;
  font-weight: 400;
  margin: 0 10px 0 0;
}

/* Go anim */
#canvas {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#canvas.start {
  opacity: 0;
  transition: all 0.3s ease;
}

#canvas.ready {
  opacity: 1;
}

/* HOVER ANIMATE BUTTON */
.splash-button {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.splash-button:after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: #2e61eb;
}

.splash-button:hover:after {
  width: 100%;
}

/*LOADER*/
#loader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 1000;
  transition: 0.3s ease opacity;
}

#loader:before,
#loader:after {
  content: "";
  width: 80px;
  height: 80px;
  border: 2px solid #fe3b3b;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: loaderCircleAnim;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

#loader:after {
  animation-delay: 1s;
}

@keyframes loaderCircleAnim {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  10% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  80% {
    width: 60px;
    height: 60px;
    opacity: 0.1;
  }
  100% {
    width: 70px;
    height: 70px;
    opacity: 0;
  }
}
/* Colors stylesheet
------------------------------------------------------- */
body {
  color: #898885;
}

a {
  color: #fe3b3b;
}

a:hover {
  color: #222333;
}

h1, h2, h3, h4, h5, h6,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: #222333;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  color: #fe3b3b;
}

button,
input[type=button],
input[type=reset],
input[type=submit],
.splash-button {
  background-color: #fe3b3b;
  color: #ffffff;
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover,
.splash-button:hover {
  background-color: #fe3b3b;
  color: #ffffff;
}

.splash-button:after {
  background-color: #fe3b3b;
}

.menu a {
  color: #222333;
}

.menu a:hover,
.menu li.active a {
  color: #fe3b3b;
}

.alter-bg {
  background-color: #fafafa;
}

.subtitle {
  color: #fe3b3b;
}

.features-icon {
  color: #fe3b3b;
}

.reviews-item .des {
  color: #222333;
}

.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper .swiper-pagination .swiper-pagination-bullet:hover {
  border-color: #222333;
  background-color: #222333;
}

.section-purchase .splash-button:hover {
  color: #ffffff;
}

.dark-color {
  background-color: #222333;
}

body .dark-color {
  color: #ceced3;
}

.dark-color a {
  color: #fe3b3b;
}

.dark-color a:hover {
  color: #ffffff;
}

.dark-color h1, .dark-color h2, .dark-color h3, .dark-color h4, .dark-color h5, .dark-color h6,
.dark-color h1 a, .dark-color h2 a, .dark-color h3 a, .dark-color h4 a, .dark-color h5 a, .dark-color h6 a {
  color: #ffffff;
}

.dark-color h1 a:hover, .dark-color h2 a:hover, .dark-color h3 a:hover, .dark-color h4 a:hover, .dark-color h5 a:hover, .dark-color h6 a:hover {
  color: #fe3b3b;
}

.dark-color button,
.dark-color input[type=button],
.dark-color input[type=reset],
.dark-color input[type=submit],
.dark-color .splash-button {
  background-color: #ffffff;
  color: #222333;
}

.dark-color button:hover,
.dark-color input[type=button]:hover,
.dark-colorinput[type=reset]:hover,
.dark-color input[type=submit]:hover,
.dark-color .splash-button:hover {
  background-color: #ffffff;
  color: #ffffff;
}

.dark-color .menu a {
  color: #ffffff;
}

.dark-color .menu a:hover,
.dark-color .menu li.active a {
  color: #fe3b3b;
}

.dark-color .iso_filters li a.current,
.dark-color .iso_filters li a:hover {
  color: #ffffff;
}

.dark-color .reviews-item .des {
  color: #ffffff;
}

.dark-color .support-title a:hover {
  color: #222333;
}

.dark-color .socials-items a {
  color: #ffffff;
}

.dark-color .socials-items a:hover {
  color: #fe3b3b;
}

.dark-color .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.dark-color .swiper .swiper-pagination .swiper-pagination-bullet:hover {
  border-color: #ffffff;
  background-color: #ffffff;
}

/* Responsive
------------------------------------------------------- */
@media (max-width: 1679px) {
  .section-header .top-over {
    top: 20px;
  }

  h1 {
    font-size: 3em;
  }

  .section-header {
    height: 120vh;
  }

  .section-header .des span {
    display: inline;
    width: auto;
  }

  .transform-bottom {
    bottom: 2.5em;
  }

  .section-features-big .features-item {
    padding: 4.9em 1em 2.1em;
  }

  /* Spaces */
  .margin-top-large {
    margin-top: 9.55em;
  }

  .margin-top-big {
    margin-top: 8.2em;
  }

  .margin-top-middle {
    margin-top: 6em;
  }

  .margin-bottom-large {
    margin-bottom: 9.55em;
  }

  .margin-top-large- {
    position: relative;
    top: -12.3em;
  }

  .padding-top-large {
    padding-top: 9.55em;
  }

  .padding-top-big {
    padding-top: 8.2em;
  }

  .padding-top-middle {
    padding-top: 6em;
  }

  .padding-bottom-large {
    padding-bottom: 9.55em;
  }

  .padding-bottom-big {
    padding-bottom: 8.2em;
  }

  .padding-bottom-middle {
    padding-bottom: 6em;
  }
}
@media (max-width: 1439px) {
  .container {
    max-width: 1200px;
  }

  h1 {
    font-size: 2.8em;
  }

  h2 {
    font-size: 2.5em;
  }

  h3 {
    font-size: 2em;
  }

  .section-header .top-over {
    padding: 0 40px;
  }

  .section-header h1 {
    margin: 0 0 0.3em;
    font-size: 2.4em;
  }

  .section-header .des {
    font-size: 16px;
  }

  .section-header .des {
    margin-bottom: 1.8em;
  }

  button, input[type=button], input[type=reset], input[type=submit], .splash-button {
    padding: 1.7em 4.1em;
  }

  .section-features-big .des span {
    display: inline;
    width: auto;
  }

  .section-features-big .des {
    font-size: 15px;
    line-height: 24px;
  }

  .section-features-big .features-item {
    padding: 3.9em 1em 1.2em;
  }

  .section-copyright {
    padding: 3.2em 0;
  }
}
@media (max-width: 1279px) {
  .container {
    max-width: 960px;
  }

  h1 {
    font-size: 2.7em;
  }

  h2 {
    font-size: 2.4em;
  }

  h3 {
    font-size: 1.8em;
  }

  h4 {
    font-size: 1.4em;
  }

  .title {
    font-size: 2.5em;
  }

  .section-header .des {
    font-size: 15px;
  }

  .services-item {
    padding-top: 3em;
  }

  .iso_filters {
    margin: 1.55em 0;
  }

  .portfolio_title {
    margin: 1.3em 0 0.5em;
  }

  .counter-item {
    padding-top: 2.8em;
  }

  .features-item {
    padding: 4.2em 1em 3.3em;
  }

  .features-title {
    margin: 1.3em 0 0;
    font-size: 1em;
  }

  .section-features-extra .features-item {
    padding: 1.8em 0.5em 1.85em;
  }

  .section-features-big .features-item {
    padding: 3.5em 1em 1em;
  }

  .support-item {
    padding: 55px 0;
  }

  .support-title {
    letter-spacing: 1px;
  }

  /* Spaces */
  .margin-top-large {
    margin-top: 8em;
  }

  .margin-top-big {
    margin-top: 7em;
  }

  .margin-top-middle {
    margin-top: 5em;
  }

  .margin-top-small {
    margin-top: 2.55em;
  }

  .margin-bottom-large {
    margin-bottom: 8em;
  }

  .margin-top-large- {
    position: relative;
    top: -9em;
  }

  .margin-top-small- {
    position: relative;
    top: -3em;
    margin-bottom: -3em;
  }

  .padding-top-large {
    padding-top: 8em;
  }

  .padding-top-big {
    padding-top: 7em;
  }

  .padding-top-middle {
    padding-top: 4.5em;
  }

  .padding-bottom-large {
    padding-bottom: 8em;
  }

  .padding-bottom-big {
    padding-bottom: 7em;
  }

  .padding-bottom-middle {
    padding-bottom: 4.5em;
  }

  .padding-bottom-small {
    padding-bottom: 2.55em;
  }

  .hover-info .list {
    padding: 0 15px;
    font-size: 14px;
  }

  .hover-info .list li {
    margin: 0;
  }

  .hover-info .list li:before {
    margin: 0 5px 0 0;
  }
}
@media (max-width: 1023px) {
  body {
    font-size: 15px;
  }

  .container {
    max-width: 720px;
  }

  .section-header {
    height: 140vh;
  }

  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 2.2em;
  }

  h3 {
    font-size: 1.5em;
  }

  h4 {
    font-size: 1.3em;
  }

  .title {
    font-size: 2.4em;
  }

  .section-header .top-over {
    padding: 0 25px;
  }

  .section-header .top-over {
    top: 22px;
  }

  .section-header h1 {
    margin: 0 0 0.1em;
    font-size: 2.35em;
  }

  .section-header .des {
    font-size: 15px;
    line-height: 22px;
  }

  button, input[type=button], input[type=reset], input[type=submit], .splash-button {
    padding: 1.6em 3.3em;
  }

  .transform-bottom {
    bottom: 2em;
  }

  .services-item:before {
    width: 50%;
  }

  .iso_filters li a {
    padding: 0 1.5em;
  }

  .portfolio_title {
    margin: 1em 0 0;
    font-size: 15px;
  }

  .features-item {
    padding: 3.2em 1em 2.3em;
  }

  .features-title > span {
    display: inline;
  }

  .section-features-extra .features-item img {
    height: 60px;
  }

  .section-features-extra .features-item {
    padding: 1.3em 0.3em 1.35em;
  }

  .section-features-extra .features-item .features-info {
    font-size: 11px;
    letter-spacing: -0.5px;
  }

  .section-features-big .features-item {
    padding: 3em 0.8em 0.5em;
  }

  .section-features-big .features-title {
    margin: 1.3em 0 0;
    font-size: 1.1em;
  }

  .section-features-big .des {
    font-size: 14px;
    line-height: 20px;
  }

  .reviews-item .des {
    line-height: 1.4em;
  }

  .support-item {
    padding: 45px 0;
  }

  .support-title {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .section-copyright {
    padding: 2.2em 0;
  }

  /* Spaces */
  .margin-top-large {
    margin-top: 6em;
  }

  .margin-top-big {
    margin-top: 5em;
  }

  .margin-top-middle {
    margin-top: 4em;
  }

  .margin-top-small {
    margin-top: 2em;
  }

  .margin-bottom-large {
    margin-bottom: 6em;
  }

  .margin-top-large- {
    position: relative;
    top: -7em;
  }

  .margin-top-small- {
    position: relative;
    top: -2.5em;
    margin-bottom: -2.5em;
  }

  .padding-top-large {
    padding-top: 6em;
  }

  .padding-top-big {
    padding-top: 5em;
  }

  .padding-top-middle {
    padding-top: 4em;
  }

  .padding-bottom-large {
    padding-bottom: 6em;
  }

  .padding-bottom-big {
    padding-bottom: 5em;
  }

  .padding-bottom-middle {
    padding-bottom: 4em;
  }

  .padding-bottom-small {
    padding-bottom: 2em;
  }

  .section-header .des {
    font-size: 14px;
  }

  .section-header h1 {
    font-size: 2em;
  }

  .hover-info .list {
    padding: 0 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 17px;
  }

  .img.with_info .arrow-button:before {
    border-width: 0 0 53px 53px;
  }

  .img.with_info .arrow-icon {
    width: 15px;
    height: 10px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
  }

  .title {
    font-size: 2.1em;
  }

  .section-features-extra .features-item img {
    height: auto;
  }

  .section-header .top-over {
    top: 30px;
    position: relative;
  }

  .transform-middle {
    transform: none;
    position: relative;
    top: 0;
  }

  .top-over .col-12 {
    text-align: center;
    padding-bottom: 15px;
  }

  .menu a {
    padding: 0 0.5em;
  }

  .section-header {
    height: 100%;
  }

  #canvas {
    display: none;
  }

  .transform-middle .text-align-left img,
.transform-middle .text-align-right img {
    max-width: 80%;
    margin: 50px 0;
  }

  .transform-bottom {
    position: relative;
  }

  .services-item {
    padding-top: 3em;
    margin-bottom: 3em;
  }

  .services-title {
    letter-spacing: -0.3px;
    line-height: 1.2em;
  }

  .title-big > span, .title > span, .des > span {
    display: inline;
    width: auto;
  }

  .iso_filters li a {
    padding: 0 1.1em;
  }

  .portfolio.col4 .isotope-item {
    width: 50%;
  }

  .counter-item {
    padding-top: 2.8em;
    padding-bottom: 2.8em;
  }

  .features-title {
    font-size: 1.2em;
  }

  .reviews-item .des {
    font-size: 1.1em;
    margin: 1.1em 0 0.3em;
  }

  .support-item {
    padding: 30px 0;
  }

  .section-features-extra .features-item .features-info {
    font-size: 13px;
    letter-spacing: 0;
  }

  /* Spaces */
  .margin-top-large {
    margin-top: 5em;
  }

  .margin-top-big {
    margin-top: 4em;
  }

  .margin-top-middle {
    margin-top: 3em;
  }

  .margin-top-small {
    margin-top: 2em;
  }

  .margin-bottom-large {
    margin-bottom: 5em;
  }

  .margin-top-large- {
    position: relative;
    top: -6em;
  }

  .margin-top-small- {
    position: relative;
    top: -2em;
    margin-bottom: -2em;
  }

  .padding-top-large {
    padding-top: 5em;
  }

  .padding-top-big {
    padding-top: 4em;
  }

  .padding-top-middle {
    padding-top: 3em;
  }

  .padding-bottom-large {
    padding-bottom: 5em;
  }

  .padding-bottom-big {
    padding-bottom: 4em;
  }

  .padding-bottom-middle {
    padding-bottom: 3em;
  }

  .padding-bottom-small {
    padding-bottom: 2em;
  }

  .hover-info .list {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 479px) {
  body {
    font-size: 14px;
  }

  .container {
    width: 100%;
  }

  h1 {
    font-size: 2em;
    line-height: 1.2em;
  }

  h2 {
    font-size: 1.8em;
  }

  h3 {
    font-size: 1.4em;
  }

  h4 {
    font-size: 1.2em;
  }

  .title {
    font-size: 2em;
  }

  .menu {
    margin: 0.5em 0 1.8em;
  }

  .transform-middle .text-align-left img, .transform-middle .text-align-right img {
    max-width: 80%;
    margin: 40px 0;
  }

  .transform-middle .text-align-center {
    padding: 0 30px;
  }

  .section-header .top-over {
    margin-bottom: 10px;
  }

  .transform-bottom {
    bottom: 1.2em;
  }

  .isotope {
    margin-right: -20px;
  }

  .portfolio .isotope-item {
    padding: 0 20px 20px 0;
  }

  .counter-title {
    font-size: 1.25em;
    margin: 1.1em 0 1.15em 0;
    letter-spacing: -0.2px;
  }

  .section-features-big .features-title {
    font-size: 1.2em;
  }

  .reviews-item {
    margin-bottom: 40px;
  }

  .support-icon {
    font-size: 35px;
  }

  .hover-info .list {
    font-size: 11px;
    line-height: 16px;
    margin: 0 0 16px;
  }

  .portfolio.col4 .isotope-item {
    width: 100%;
  }

  .hover-info .list {
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 25px;
    padding: 0 20px;
  }
}