/* Slider */
@import url(./../fonts/stylesheet.css);
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.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);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.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;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

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

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

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

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    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);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

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

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

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

@keyframes tada {
  from {
    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);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    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);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

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

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

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

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

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

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  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);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

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

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

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    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);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes flip {
  from {
    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;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    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;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

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

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

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

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

@keyframes zoomInDown {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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 {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

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

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

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

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

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

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

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

* {
  font-family: "Gotham", "Gotham-Book";
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-size: 1vw;
}

.clear {
  clear: both;
}

.hidden {
  display: none;
}

.icon {
  color: red;
  fill: red;
}

.container {
  max-width: 100rem;
  margin: 0 auto;
}

.mobile_active h4 {
  visibility: hidden;
}
.mobile_active p {
  visibility: hidden;
}
.mobile_active .about_cards_item_inner {
  opacity: 1;
  transition: 0.3s;
}
.mobile_active .about_cards_item_inner .about_cards_item_inner_text {
  display: block;
  visibility: visible;
  color: #f0f0f0;
  font-size: 10px;
  line-height: 13px;
  font-weight: 300;
  text-align: left;
  margin-top: 10px;
  padding: 0 10px 0 10px;
}

.slick-next {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.slick-prev {
  display: none !important;
}

.slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: absolute;
  bottom: -2.6041666667rem;
  width: 100%;
}
.slick-dots li {
  list-style: none;
  margin-right: 1.0416666667rem;
  cursor: pointer;
  border-radius: 50%;
  background: #929292;
  width: 0.78125rem;
  height: 0.78125rem;
}
.slick-dots li button {
  background: none;
  border: none;
}
.slick-dots .slick-active {
  background: #f0f0f0;
  border: 2px solid #111;
}

.arrow-4 {
  position: relative;
  cursor: pointer;
  margin: 20px;
  width: 66px;
  height: 30px;
  margin: 0 auto;
  margin-top: 3.125rem;
}

#price {
  cursor: pointer;
}

.arrow-4-left {
  position: absolute;
  background-color: transparent;
  top: 10px;
  left: -3px;
  width: 40px;
  height: 10px;
  display: block;
  transform: rotate(35deg);
  float: right;
  border-radius: 2px;
}

.arrow-4-left:after {
  content: "";
  background-color: #000;
  width: 40px;
  height: 5px;
  display: block;
  float: right;
  border-radius: 6px 10px 10px 6px;
  transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
  z-index: -1;
}

.arrow-4-right {
  position: absolute;
  background-color: transparent;
  top: 10px;
  left: 29px;
  width: 40px;
  height: 10px;
  display: block;
  transform: rotate(-35deg);
  float: right;
  border-radius: 2px;
}

.arrow-4-right:after {
  content: "";
  background-color: #000;
  width: 40px;
  height: 5px;
  display: block;
  float: right;
  border-radius: 10px 6px 6px 10px;
  transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
  z-index: -1;
}

.open .arrow-4-left:after {
  transform-origin: center center;
  transform: rotate(-70deg);
}

.open .arrow-4-right:after {
  transform-origin: center center;
  transform: rotate(70deg);
}

.title {
  font-size: 3.75rem;
  font-weight: 500;
  text-align: center;
  margin-top: 7.8125rem;
  text-transform: uppercase;
  line-height: 3.75rem;
}

.whitetext {
  color: #f0f0f0;
}

.header_contacts {
  text-align: right;
  padding-top: 2.2916666667rem;
  padding-right: 2.2916666667rem;
  font-size: 1.25rem;
  width: 97%;
}
.header_contacts a {
  text-decoration: none;
  color: #111;
  font-size: 1.25rem;
  font-weight: 500;
}

.gray {
  filter: grayscale(100%);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu_overlay {
  z-index: 300;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.6s all;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.menu_overlay.active {
  opacity: 1;
  visibility: visible;
}

.preview_box {
  width: 100%;
  margin-top: 1.7708333333rem;
  position: relative;
  z-index: 100;
}
.preview_box .flex_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
.preview_box .flex_row .main {
  margin: 0 auto;
}
.preview_box .flex_row .main .light_gradient {
  position: absolute;
  width: 50%;
  right: 0;
  box-sizing: border-box;
  top: 13.0208333333rem;
  z-index: 1;
}
.preview_box .flex_row .main .light_gradient img {
  width: 100%;
  height: 100%;
}
.preview_box .flex_row .main .background_row {
  position: relative;
  width: 89.7395833333rem;
  background-color: #111;
  height: 46.875rem;
  padding-left: 5.2083333333rem;
  overflow: hidden;
  display: flex;
}
.preview_box .flex_row .main .background_row .scrolling {
  display: none;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #f0f0f0;
  text-align: center;
  text-transform: uppercase;
}
.preview_box .flex_row .main .background_row .background_left {
  width: 50%;
  margin-top: 10.4166666667rem;
}
.preview_box .flex_row .main .background_row .background_left .background_logo {
  width: 34.2708333333rem;
}
.preview_box .flex_row .main .background_row .background_left .background_logo img {
  width: 100%;
  height: 100%;
}
.preview_box .flex_row .main .background_row .background_left .background_left_descr h1 {
  text-transform: uppercase;
  font-size: 7.1354166667rem;
  color: #f0f0f0;
  font-weight: 400;
}
.preview_box .flex_row .main .background_row .background_left .background_left_descr p {
  margin-top: 1.0416666667rem;
  font-weight: 300;
  font-size: 1.875rem;
  color: #f0f0f0;
  text-transform: uppercase;
}
.preview_box .flex_row .main .background_row .background_right {
  width: 50%;
  height: 100%;
  position: relative;
  padding-bottom: 2.6041666667rem;
  padding-top: 2.6041666667rem;
}
.preview_box .flex_row .main .background_row .background_right .gradient {
  position: absolute;
  top: -15%;
  left: -15%;
  width: 130%;
  height: 130%;
}
.preview_box .flex_row .main .background_row .background_right .gradient img {
  width: 100%;
  height: 100%;
}
.preview_box .flex_row .main .background_row .background_right .background_right_lamp {
  position: relative;
  width: 90%;
  height: auto;
  z-index: 10;
}
.preview_box .flex_row .main .background_row .background_right .background_right_lamp .design {
  position: absolute;
  right: 10%;
  bottom: 35%;
  display: flex;
  align-items: center;
  color: #f0f0f0;
  font-size: 1.1458333333rem;
}
.preview_box .flex_row .main .background_row .background_right .background_right_lamp .design span {
  display: block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 100%;
  background-color: #f0f0f0;
}
.preview_box .flex_row .main .background_row .background_right .background_right_lamp .pr {
  position: absolute;
  right: 8%;
  bottom: 55%;
  display: flex;
  align-items: center;
  color: #f0f0f0;
  font-size: 1.1458333333rem;
}
.preview_box .flex_row .main .background_row .background_right .background_right_lamp .pr span {
  display: block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 100%;
  background-color: #f0f0f0;
}
.preview_box .flex_row .main .background_row .background_right .background_right_lamp .movie {
  position: absolute;
  right: 0%;
  bottom: 91%;
  display: flex;
  align-items: center;
  color: #f0f0f0;
  font-size: 1.1458333333rem;
}
.preview_box .flex_row .main .background_row .background_right .background_right_lamp .movie span {
  display: block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 100%;
  background-color: #f0f0f0;
}
.preview_box .flex_row .main .background_row .background_right .background_right_lamp .smm {
  position: absolute;
  left: 20%;
  bottom: 35%;
  display: flex;
  align-items: center;
  color: #f0f0f0;
  font-size: 1.1458333333rem;
}
.preview_box .flex_row .main .background_row .background_right .background_right_lamp .smm span {
  display: block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 100%;
  background-color: #f0f0f0;
}
.preview_box .flex_row .main .background_row .background_right .background_right_lamp .web {
  position: absolute;
  left: 2%;
  bottom: 65%;
  display: flex;
  align-items: center;
  color: #f0f0f0;
  font-size: 1.1458333333rem;
}
.preview_box .flex_row .main .background_row .background_right .background_right_lamp .web span {
  display: block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 100%;
  background-color: #f0f0f0;
}
.preview_box .flex_row .main .background_row .background_right .background_right_lamp .mind {
  position: absolute;
  left: 2%;
  bottom: 91%;
  display: flex;
  align-items: center;
  color: #f0f0f0;
  font-size: 1.1458333333rem;
}
.preview_box .flex_row .main .background_row .background_right .background_right_lamp .mind span {
  display: block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 100%;
  background-color: #f0f0f0;
}
.preview_box .flex_row .main .background_row .background_right .background_right_lamp img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.aside {
  position: fixed;
  right: -2.0833333333rem;
  top: 40%;
  z-index: 100;
  margin-right: 3.6458333333rem;
}
.aside li {
  height: 2.6041666667rem;
  width: 2.6041666667rem;
  list-style-type: none;
  margin-bottom: 2.1875rem;
}
.aside li img {
  width: 100%;
  height: 100%;
}

.mobile_aside {
  display: none;
}

.about {
  font-size: 2.8645833333rem;
  height: auto;
  line-height: 3.125rem;
  width: 100%;
  text-align: center;
  padding-bottom: 2.96875rem;
}
.about h3 {
  margin-top: 8.59375rem;
  font-size: 3.75rem;
  line-height: 3.75rem;
  text-transform: uppercase;
}
.about_open_modal {
  background-color: #fff;
  color: #000;
  font-size: 2.6041666667rem;
  height: auto;
  padding: 1.5625rem 0;
  width: 35rem;
  margin: 0 auto;
  margin-top: 3.125rem;
  cursor: pointer;
  border: 2px solid #000;
  border-radius: 1.0416666667rem;
  margin-bottom: 3.125rem;
}
.about_arrow {
  height: 2.96875rem;
  width: 2.96875rem;
  margin: 0 auto;
  margin-top: 2.0833333333rem;
}
.about_arrow img {
  width: 100%;
  height: 100%;
}
.about_descr {
  margin-top: 4.6875rem;
}
.about_descr h2 {
  width: 100%;
  font-size: 3.75rem;
  margin: 0 auto;
}
.about_descr p {
  display: block;
  font-size: 2.8645833333rem;
  width: 80%;
  text-align: center;
  margin: 0 auto;
  margin-top: 1.5625rem;
  font-weight: 200;
}
.about_descr span {
  width: 60%;
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 2.8645833333rem;
  font-weight: 200;
}
.about .mobile_abouttitle {
  display: none;
}
.about_image {
  width: 50%;
}
.about_image img {
  width: 100%;
}
.about_slider_wrapper {
  height: auto;
  width: 89%;
  margin: 0 auto;
  margin-top: 2.4479166667rem;
  background: url(./../images/images/PRO.png) no-repeat 9.7395833333rem;
  background-size: contain;
  display: flex;
  align-items: center;
}
.about_slider {
  margin: 0 auto;
  width: 50%;
  height: auto;
}
.about_slider .slick-track {
  align-items: center;
  display: flex;
}
.about_slider_item {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  font-weight: 300;
}
.about_slider_item_descr {
  width: 100%;
  height: auto;
  padding-right: 1.9270833333rem;
  line-height: 2.0833333333rem;
  font-size: 2.03125rem;
  text-align: left;
}
.about_slider_item_image {
  width: 50%;
  height: auto;
}
.about_slider_item_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .click_to_view {
  text-align: center;
  font-size: 1.1458333333rem;
  margin-top: 2.6041666667rem;
  margin-bottom: 0;
  line-height: 1;
  opacity: 0;
}
.about_cards {
  display: flex;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  padding: 0 5.7291666667rem;
  justify-content: center;
  padding-top: 2.96875rem;
}
.about_cards_item {
  position: relative;
  width: 20.8333333333rem;
  height: 20.8333333333rem;
  margin: 0 auto;
  margin-bottom: 1.0416666667rem;
  padding-top: 3.6458333333rem;
  background-color: #111;
  line-height: 2.0833333333rem;
  cursor: pointer;
}
.about_cards_item:nth-child(4) {
  margin-right: 0;
}
.about_cards_item:nth-child(8) {
  margin-right: 0;
}
.about_cards_item:nth-child(12) {
  margin-right: 0;
}
.about_cards_item_image {
  width: 7.2916666667rem;
  height: 7.2916666667rem;
  margin: 0 auto;
}
.about_cards_item_image img {
  width: 100%;
  height: 100%;
}
.about_cards_item h4 {
  font-size: 2.34375rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 2.0833333333rem;
}
.about_cards_item p {
  font-size: 1.25rem;
  font-weight: 400;
}
.about_cards_item_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #404040;
  opacity: 0.93;
  padding-top: 4.1145833333rem;
  opacity: 0;
  transition: 0.3s;
}
.about_cards_item_inner h5 {
  font-size: 2.34375rem;
  font-weight: 400;
  color: #f0f0f0;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .about_cards :hover h4 {
    visibility: hidden;
  }
  .about_cards :hover p {
    visibility: hidden;
  }
  .about_cards :hover .about_cards_item_inner {
    opacity: 1;
    transition: 0.3s;
  }
  .about_cards :hover .about_cards_item_inner_text {
    display: block;
    visibility: visible;
    color: #f0f0f0;
    font-size: 1.1458333333rem;
    font-weight: 300;
    text-align: left;
    line-height: 1.3020833333rem;
    margin-top: 2.1875rem;
    padding: 0 2.34375rem 0 2.34375rem;
  }
}
.about_cards_white {
  background-color: #eeeeee;
}
.about_works {
  width: 100%;
  margin: 0 auto;
}
.about_works_title {
  font-size: 3.75rem;
  font-weight: 500;
  text-transform: uppercase;
  width: 60%;
  margin: 0 auto;
}
.about_works_descr {
  width: 60%;
  margin: 0 auto;
  margin-top: 4.9479166667rem;
  font-size: 2.6041666667rem;
  text-align: center;
  font-weight: 300;
  line-height: 2.6041666667rem;
}
.about_works_quote {
  width: 87%;
  background-color: #eeeeee;
  padding: 3.125rem 4.6875rem;
  line-height: 1.5625rem;
  margin: 0 auto;
  margin-top: 4.9479166667rem;
  text-align: center;
}
.about_works_quote :nth-child(1) {
  margin-bottom: 1.5625rem;
}
.about_works_quote :nth-child(3) {
  margin-top: 1.5625rem;
}
.about_works_quote p {
  font-size: 2.0833333333rem;
  line-height: 2.0833333333rem;
}
.about_works_quote hr {
  width: 80%;
  margin: 0 auto;
  background-color: #111;
  height: 3px;
}
.about_price {
  text-align: center;
  transition: 3s;
}
.about_price_arrow {
  transform: unset;
  cursor: pointer;
  transition: 1s;
}
.about_price_arrow.active {
  transform: rotate(180deg);
  transition: 1s;
}
.about_price h6 {
  margin-top: 4.9479166667rem;
  font-size: 2.65625rem;
  font-weight: 400;
}
.about_price p {
  font-size: 1.25rem;
}
.about_price_list {
  width: 86%;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  height: 0;
  display: none;
}
.about_price_list :last-child {
  border: none;
}
.about_price_list_disclamer {
  position: unset;
  right: 0;
  bottom: 0;
  font-size: 2.0833333333rem !important;
  line-height: 2.0833333333rem;
  margin: 0.78125rem 0;
}
.about_price_list_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #777675;
  padding: 2.0833333333rem 0;
  padding-bottom: 1.0416666667rem;
  line-height: 1.5625rem;
  align-items: center;
  cursor: pointer;
}
.about_price_list_item_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
}
.about_price_list_item_wrapper_title {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: left;
  max-width: 90%;
}
.about_price_list_item_wrapper_drop {
  width: 2.6041666667rem;
  height: auto;
  transition: 1s;
}
.about_price_list_item_wrapper_drop img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about_price_list_item_wrapper_drop.active {
  transition: 1s;
  transform: rotate(180deg);
}
.about_price_list_item_descr {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  opacity: 0;
  height: 0;
}
.about_price_list_item_descr_inner {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  padding: 1.0416666667rem 0;
}
.about_price_list_item_descr_inner span {
  font-size: 1.25rem;
}
.about_price_list_item_descr_inner.active {
  display: block;
  height: auto;
  transition: 1s;
  opacity: 1;
}
.about_price_list_item_descr.active {
  display: block;
  height: auto;
  transition: 1s;
  opacity: 1;
}
.about_price_list.active {
  padding-top: 1.8229166667rem;
  display: block;
  height: auto;
  transition: 3s;
  opacity: 1;
}

footer {
  position: relative;
  padding: 5.7291666667rem 8.8541666667rem;
  background-color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer_logo {
  height: 6.1458333333rem;
}
footer .footer_logo img {
  height: 100%;
}
footer .footer_logo_rights {
  margin-top: 1.5625rem;
  font-size: 0.8333333333rem;
  color: #f0f0f0;
}
footer .footer_logo span {
  color: #f0f0f0;
  padding-left: 1.0416666667rem;
  text-transform: uppercase;
  font-size: 3.5416666667rem;
}
footer .footer_contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
footer .footer_contacts_phone {
  text-decoration: none;
  font-size: 1.7708333333rem;
  color: #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
  font-weight: 400;
  padding-bottom: 0.5208333333rem;
}
footer .footer_contacts_social {
  display: flex;
  padding-top: 0.78125rem;
}
footer .footer_contacts_social li {
  margin-right: 1.09375rem;
  width: 2.65625rem;
  height: 2.65625rem;
}
footer .footer_contacts_social li img {
  width: 100%;
  height: 100%;
}

.send_modal {
  position: fixed;
  display: none;
  z-index: 500;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  height: auto;
  width: auto;
  padding: 2.6041666667rem;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  width: 38rem;
}
.send_modal h5 {
  font-size: 2.6041666667rem;
  text-align: center;
}
.send_modal .close {
  position: absolute;
  right: 1.6666666667rem;
  top: 1.6666666667rem;
  width: 1.6666666667rem;
  height: 1.6666666667rem;
  opacity: 0.3;
}
.send_modal .close:hover {
  opacity: 1;
}
.send_modal .close:before,
.send_modal .close:after {
  position: absolute;
  left: 0.78125rem;
  content: " ";
  height: 1.71875rem;
  width: 2px;
  background-color: #333;
}
.send_modal .close:before {
  transform: rotate(45deg);
}
.send_modal .close:after {
  transform: rotate(-45deg);
}
.send_modal form {
  display: flex;
  flex-direction: column;
  padding-top: 1.5625rem;
}
.send_modal form input {
  width: 100%;
  height: 3.6458333333rem;
  margin-bottom: 1.5625rem;
  font-size: 1.0416666667rem;
  padding: 5px;
}
.send_modal form textarea {
  padding: 0.5208333333rem;
}
.send_modal form p {
  font-size: 1.0416666667rem;
  margin-top: 0.5208333333rem;
  text-align: center;
}
.send_modal form button {
  margin-top: 1.5625rem;
  color: #fff;
  font-size: 2.1875rem;
  padding: 0.5208333333rem;
  border: none;
  font-weight: 300;
  cursor: pointer;
  border-radius: 10px;
  background-color: #111;
}
.send_modal.active {
  display: block;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .about .title {
    font-size: 3.3854166667rem;
  }
}
@media (max-width: 767px) {
  .aside {
    position: fixed;
    right: 5px;
    top: 40%;
    z-index: 10;
    margin-right: 0;
  }
  .aside li {
    height: 25px;
    width: 25px;
    margin-bottom: 18px;
  }

  .slick-next {
    display: none !important;
  }

  .mobile_aside {
    display: block;
    position: absolute;
    right: 5px;
    top: 50%;
    z-index: 200;
    margin-right: 0;
  }
  .mobile_aside li {
    height: 25px;
    width: 25px;
    margin-bottom: 18px;
  }
  .mobile_aside li img {
    width: 100%;
    height: 100%;
  }

  .slick-dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    position: absolute;
    bottom: -25px;
    width: 100%;
  }
  .slick-dots li {
    margin-right: 15px;
    width: 10px;
    height: 10px;
  }
  .slick-dots li button {
    background: none;
    border: none;
  }

  .header_contacts {
    text-align: right;
    padding-top: 10px;
    padding-right: 10px;
  }
  .header_contacts a {
    text-decoration: none;
    color: #111;
    font-size: 12px;
    font-weight: 500;
  }

  .preview .container {
    width: 100%;
    max-width: 100%;
  }
  .preview .preview_box {
    width: 100%;
    margin-top: 0;
  }
  .preview .preview_box .flex_row {
    width: 100%;
  }
  .preview .preview_box .flex_row .main {
    margin: 0 auto;
    width: 100%;
  }
  .preview .preview_box .flex_row .main .background_row {
    position: relative;
    width: 100%;
    height: auto;
    padding-left: 0;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: unset;
  }
  .preview .preview_box .flex_row .main .background_row .scrolling {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #f0f0f0;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
  }
  .preview .preview_box .flex_row .main .background_row .background_left {
    width: 100%;
    margin-top: 20px;
  }
  .preview .preview_box .flex_row .main .background_row .background_left .background_logo {
    width: 40%;
    margin: 0 auto;
    margin-top: 40px;
  }
  .preview .preview_box .flex_row .main .background_row .background_left .background_logo img {
    width: 100%;
    height: 100%;
  }
  .preview .preview_box .flex_row .main .background_row .background_left .background_left_descr {
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
  }
  .preview .preview_box .flex_row .main .background_row .background_left .background_left_descr h1 {
    text-transform: uppercase;
    font-size: 34px;
    color: #f0f0f0;
    text-align: center;
    font-weight: 400;
  }
  .preview .preview_box .flex_row .main .background_row .background_left .background_left_descr p {
    margin-top: 10px;
    font-weight: 300;
    font-size: 20px;
    color: #f0f0f0;
    text-align: center;
    text-transform: uppercase;
  }
  .preview .preview_box .flex_row .main .background_row .background_right {
    width: 80%;
    height: 100%;
    padding-bottom: 0;
    padding-top: 0;
    margin: 0 auto;
    margin-top: 20px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 20px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .design {
    font-size: 15px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .design span {
    width: 7px;
    height: 7px;
    margin-right: 2px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .pr {
    font-size: 15px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .pr span {
    width: 7px;
    height: 7px;
    margin-right: 2px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .movie {
    font-size: 15px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .movie span {
    width: 7px;
    height: 7px;
    margin-right: 2px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .smm {
    font-size: 15px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .smm span {
    width: 7px;
    height: 7px;
    margin-right: 2px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .web {
    font-size: 15px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .web span {
    width: 7px;
    height: 7px;
    margin-right: 2px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .mind {
    font-size: 15px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .mind span {
    width: 7px;
    height: 7px;
    margin-right: 2px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .about {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-size: unset;
    line-height: 30px;
    padding-bottom: 30px;
  }
  .about .title {
    margin: 0 auto;
    margin-top: 20px !important;
    font-size: 24px;
    line-height: 26px;
    width: 95%;
  }
  .about h3 {
    margin: 0 auto;
    font-size: 24px;
    line-height: 25px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 0px !important;
  }
  .about_open_modal {
    background-color: #fff;
    color: #000;
    font-size: 15px;
    height: auto;
    padding: 10px 0;
    width: 50%;
    margin: 0 auto;
    margin-top: 20px !important;
    border-radius: 10px;
  }
  .about_arrow {
    height: 37px;
    width: 37px;
    margin-top: 20px;
  }
  .about_arrow img {
    width: 100%;
    height: 100%;
  }
  .about_descr {
    margin-top: 60px;
    width: 100%;
  }
  .about_descr h2 {
    width: 90%;
    font-size: 24px;
    margin: 0 auto;
  }
  .about_descr p {
    font-size: 16px;
    width: 90%;
    margin-top: 30px;
    font-weight: 300;
    line-height: 20px;
  }
  .about_descr span {
    width: 90%;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
  }
  .about .mobile_abouttitle {
    display: block;
    margin-top: 60px !important;
  }
  .about_image {
    width: 100%;
    margin-top: 50px !important;
  }
  .about_slider_wrapper {
    height: 100%;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    margin-top: 0;
    padding-bottom: 80px;
    background: url(./../images/images/PRO.png) no-repeat 7%;
    background-size: 30%;
    background-position-y: 90%;
  }
  .about_slider {
    width: 100%;
    order: 2;
    margin-top: 20px;
  }
  .about_slider_item {
    display: flex;
    justify-content: unset;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
  .about_slider_item_descr {
    width: 100%;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 8px;
    margin: 0 auto;
    line-height: 15px;
    font-size: 16px;
    line-height: 24px;
  }
  .about_slider_item_image {
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
    order: 1;
  }
  .about .click_to_view {
    font-size: 14px;
    margin-top: 15px;
    opacity: 1;
  }
  .about_cards {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .about_cards_item {
    width: 175px;
    height: 175px;
    margin: 5px !important;
    padding-top: 15px;
    line-height: 20px;
  }
  .about_cards_item_image {
    width: 70px;
    height: 70px;
  }
  .about_cards_item h4 {
    font-size: 17px;
    width: 80%;
    margin: 0 auto;
    margin-top: 10px;
  }
  .about_cards_item p {
    font-size: 12px;
    font-weight: 400;
  }
  .about_cards_item_inner {
    padding-top: 30px;
  }
  .about_cards_item_inner h5 {
    font-size: 20px;
  }
  .about_cards_item_inner.active {
    opacity: 1;
    transition: 0.3s;
  }
  .about_cards_item_inner.active .about_cards_item_inner_text {
    display: block;
    visibility: visible;
    color: #f0f0f0;
    font-size: 10px;
    line-height: 13px;
    font-weight: 300;
    text-align: left;
    margin-top: 10px;
    padding: 0 10px 0 10px;
  }
  .about_works {
    width: 100%;
    margin: 0 auto;
    margin-top: 40px;
  }
  .about_works .title {
    margin-top: 50px !important;
  }
  .about_works_descr {
    width: 90%;
    margin: 0 auto;
    margin-top: 30px;
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    line-height: 20px;
  }
  .about_works_quote {
    width: 90%;
    padding: 20px 30px;
    line-height: 20px;
    margin-top: 80px;
    margin-bottom: 20px;
  }
  .about_works_quote :nth-child(1) {
    margin-bottom: 10px;
  }
  .about_works_quote :nth-child(3) {
    margin-top: 10px;
  }
  .about_works_quote p {
    font-size: 15px;
    line-height: 20px;
  }
  .about_price {
    text-align: center;
    margin-top: 70px;
  }
  .about_price_arrow {
    transform: unset;
    cursor: pointer;
    transition: 1s;
  }
  .about_price_arrow.active {
    transform: rotate(180deg);
    transition: 1s;
  }
  .about_price h6 {
    width: 90%;
    margin: 0 auto;
    margin-top: 40px;
    font-size: 16px;
    line-height: 20px;
  }
  .about_price p {
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 12px;
    line-height: 18px;
  }
  .about_price_list {
    width: 90%;
    margin: 0 auto;
    position: relative;
    opacity: 0;
    height: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .about_price_list_disclamer {
    position: unset;
    font-size: 12px !important;
    line-height: 18px !important;
    padding-bottom: 30px;
    margin-top: 0 !important;
  }
  .about_price_list :last-child {
    border: none;
  }
  .about_price_list_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #777675;
    padding: 0;
    line-height: 16px;
    align-items: center;
  }
  .about_price_list_item_wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
  }
  .about_price_list_item_wrapper_title {
    font-size: 12px;
    max-width: 90%;
  }
  .about_price_list_item_wrapper_drop {
    width: 15px;
  }
  .about_price_list_item_descr {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    opacity: 0;
    height: 0;
  }
  .about_price_list_item_descr_inner {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    padding: 0;
    padding: 0 10px;
    margin-bottom: 10px;
  }
  .about_price_list_item_descr_inner:last-child {
    padding-bottom: 20px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .about_price_list_item_descr_inner span {
    font-size: 11px;
    text-align: left;
  }
  .about_price_list_item_descr_inner span:first-child {
    width: 72%;
  }
  .about_price_list_item_descr_inner.active {
    display: block;
    height: auto;
    transition: 1s;
    opacity: 1;
  }
  .about_price_list_item_descr.active {
    display: block;
    height: auto;
    transition: 1s;
    opacity: 1;
  }
  .about_price_list.active {
    display: block;
    height: auto;
    transition: 3s;
    opacity: 1;
    padding-top: 10px;
  }
  .about_price_list.active .about_price_list_item {
    display: block;
  }
  .about_price_list.active i {
    display: block;
  }

  footer {
    position: relative;
    padding: 0;
    height: auto;
    padding: 20px 0;
    background-color: #111;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    align-items: unset;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  footer .footer_logo {
    height: 40px;
    width: 100%;
    text-align: center;
  }
  footer .footer_logo span {
    display: block;
    margin-top: 5px;
    padding-left: 0;
    font-size: 20px;
  }
  footer .footer_logo_rights {
    width: 100%;
    padding-top: 10px;
    margin-top: 30px;
    font-size: 10px;
    color: #f0f0f0;
    margin: 0 auto;
    text-align: center;
  }
  footer .footer_contacts {
    width: 100%;
    margin: 0 auto;
    align-items: center;
    margin-top: 20px;
  }
  footer .footer_contacts_phone {
    font-size: 14px;
    padding-bottom: 5px;
  }
  footer .footer_contacts_social {
    display: flex;
    padding-top: 10px;
    justify-content: center;
  }
  footer .footer_contacts_social li {
    margin-right: 12px;
    width: 25px;
    height: 25px;
  }

  .send_modal {
    position: fixed;
    display: none;
    z-index: 500;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    height: auto;
    width: 360px;
    padding: 25px 50px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  .send_modal h5 {
    font-size: 20px;
    text-align: center;
  }
  .send_modal .close {
    position: absolute;
    right: 20px;
    top: 10px;
    width: 22px;
    height: 22px;
    opacity: 0.3;
    outline: 0;
  }
  .send_modal .close:hover {
    opacity: 1;
  }
  .send_modal .close:before,
.send_modal .close:after {
    position: absolute;
    left: 20px;
    content: " ";
    height: 20px;
    width: 2px;
    background-color: #333;
  }
  .send_modal .close:before {
    transform: rotate(45deg);
  }
  .send_modal .close:after {
    transform: rotate(-45deg);
  }
  .send_modal form {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
  }
  .send_modal form input {
    width: 100%;
    height: 30px;
    margin-bottom: 10px;
    padding: 5px;
    font-size: 12px;
  }
  .send_modal form textarea {
    padding: 5px;
    font-size: 12px;
  }
  .send_modal form p {
    font-size: 10px;
    margin-top: 5px;
    text-align: center;
  }
  .send_modal form textarea {
    height: 100px;
  }
  .send_modal form button {
    margin-top: 10px;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    background-color: #111;
  }
  .send_modal.active {
    display: block;
    transition: 0.3s;
  }
}
@media (max-width: 575px) {
  body .title {
    font-size: 18px;
  }

  .mobile_aside {
    display: block;
    right: 10px;
    top: 40% !important;
  }

  .container {
    width: 100%;
    max-width: 100%;
  }

  .header_contacts {
    position: absolute;
    top: 10px !important;
    right: 0;
    z-index: 1000 !important;
  }
  .header_contacts a {
    color: white !important;
    font-size: 14px;
  }

  .preview .preview_box {
    width: 100%;
    margin-top: 0;
  }
  .preview .preview_box .flex_row {
    width: 100%;
  }
  .preview .preview_box .flex_row .main {
    margin: 0 auto;
    width: 100%;
  }
  .preview .preview_box .flex_row .main .background_row {
    position: relative;
    width: 100%;
    height: auto;
    padding-left: 0;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .preview .preview_box .flex_row .main .background_row .scrolling {
    display: none;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #f0f0f0;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
  }
  .preview .preview_box .flex_row .main .background_row .background_left {
    width: 100%;
    margin-top: 20px;
  }
  .preview .preview_box .flex_row .main .background_row .background_left .background_logo {
    width: 40%;
    margin: 0 auto;
    margin-top: 30px;
  }
  .preview .preview_box .flex_row .main .background_row .background_left .background_logo img {
    width: 100%;
    height: 100%;
  }
  .preview .preview_box .flex_row .main .background_row .background_left .background_left_descr {
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
  }
  .preview .preview_box .flex_row .main .background_row .background_left .background_left_descr h1 {
    text-transform: uppercase;
    font-size: 30px !important;
    color: #f0f0f0;
    text-align: center;
    font-weight: 400;
  }
  .preview .preview_box .flex_row .main .background_row .background_left .background_left_descr p {
    margin-top: 10px;
    font-weight: 300;
    font-size: 13px !important;
    color: #f0f0f0;
    text-align: center;
    text-transform: uppercase;
  }
  .preview .preview_box .flex_row .main .background_row .background_right {
    width: 80%;
    height: 100%;
    padding-bottom: 0;
    padding-top: 0;
    margin: 0 auto;
    margin-top: 20px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .gradient {
    top: 0%;
    left: -5%;
    width: 115%;
    height: 115%;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .gradient img {
    width: 100%;
    height: 100%;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 20px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .design {
    right: 10%;
    bottom: 35%;
    font-size: 10px !important;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .design span {
    width: 5px !important;
    height: 5px !important;
    margin-right: 2px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .pr {
    right: 8%;
    bottom: 55%;
    font-size: 10px !important;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .pr span {
    width: 5px !important;
    height: 5px !important;
    margin-right: 2px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .movie {
    right: -2%;
    bottom: 91%;
    font-size: 10px !important;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .movie span {
    width: 5px !important;
    height: 5px !important;
    margin-right: 2px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .smm {
    left: 19%;
    font-size: 10px !important;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .smm span {
    width: 5px !important;
    height: 5px !important;
    margin-right: 2px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .web {
    font-size: 10px !important;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .web span {
    width: 5px !important;
    height: 5px !important;
    margin-right: 2px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .mind {
    left: 0%;
    font-size: 10px !important;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp .mind span {
    width: 5px !important;
    height: 5px !important;
    margin-right: 2px;
  }
  .preview .preview_box .flex_row .main .background_row .background_right .background_right_lamp img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  footer {
    height: 150px;
  }

  .arrow-4 {
    position: relative;
    cursor: pointer;
    margin: 20px;
    width: 66px;
    height: 30px;
    margin: 0 auto;
    margin-top: 10px;
  }

  .arrow-4-left {
    position: absolute;
    background-color: transparent;
    top: 10px;
    left: -4px;
    width: 40px;
    height: 10px;
    display: block;
    transform: rotate(35deg);
    float: right;
    border-radius: 2px;
  }

  .arrow-4-left:after {
    content: "";
    background-color: #000;
    width: 20px;
    height: 2px;
    display: block;
    float: right;
    border-radius: 6px 10px 10px 6px;
    transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
    z-index: -1;
  }

  .arrow-4-right {
    position: absolute;
    background-color: transparent;
    top: 22px;
    left: 17px;
    width: 40px;
    height: 10px;
    display: block;
    transform: rotate(-35deg);
    float: right;
    border-radius: 2px;
  }

  .arrow-4-right:after {
    content: "";
    background-color: #000;
    width: 20px;
    height: 2px;
    display: block;
    float: right;
    border-radius: 10px 6px 6px 10px;
    transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
    z-index: -1;
  }

  .open .arrow-4-left:after {
    transform-origin: center center;
    transform: rotate(-70deg);
  }

  .open .arrow-4-right:after {
    transform-origin: center center;
    transform: rotate(70deg);
  }

  .about_image {
    margin: auto;
  }

  .about_cards_item {
    width: 158px !important;
    padding-right: 5px;
    padding-left: 5px;
  }

  .about_open_modal {
    background-color: #fff;
    color: #000;
    font-size: 16px !important;
    height: auto;
    padding: 10px 0;
    width: 220px !important;
    margin: 0 auto;
    cursor: pointer;
    margin-top: 40px !important;
    outline: 0;
  }
  .about_slider_wrapper {
    background-size: 57%;
    background-position-y: 86%;
  }
}

/*# sourceMappingURL=style.css.map */
