@charset "UTF-8";

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Анимация вращение вокруг вертикальной оси*/

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

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

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

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

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

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

@font-face {
  font-family: "ProximaNova";
  /* название одно */
  src: url(/fonts/ProximaNova-Regular.woff?2d2ae2556b24a45ff8d5ed86b07b5783) format("woff");
  /* разные файлы */
  font-display: fallback;
  font-weight: normal;
  /* разная плотность */
  font-style: normal;
}

@font-face {
  font-family: "ProximaNova";
  /* название одно */
  src: url(/fonts/ProximaNova-Bold.woff?e2cf3dc2f079bf3d5185a02552f153c4) format("woff");
  /* разные файлы */
  font-display: fallback;
  font-weight: bold;
  /* разная плотность */
  font-style: normal;
}

@font-face {
  font-family: "ProximaNova";
  /* название одно */
  src: url(/fonts/ProximaNova-Black.woff?b978d1b46a86df7a012cf8442936a1cb) format("woff");
  /* разные файлы */
  font-display: fallback;
  font-weight: 900;
  /* разная плотность */
  font-style: normal;
}

html {
  font-size: 16px;
  color: #000;
  font-family: "ProximaNova";
}

body {
  font-family: "ProximaNova";
  font-weight: normal;
  font-size: 16px;
}

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,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

body {
  background-color: #f1f1f1;
}

a:focus {
  outline: thin dotted;
}

a {
  text-decoration: none;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

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

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

.text-justify {
  text-align: justify !important;
}

input,
button {
  outline: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@-webkit-keyframes zoomIn {
  from {
    width: 0;
    height: 0;
  }

  to {
    width: 100%;
    height: 100%;
  }
}

@keyframes zoomIn {
  from {
    width: 0;
    height: 0;
  }

  to {
    width: 100%;
    height: 100%;
  }
}

@-webkit-keyframes showUp {
  from {
    top: -100%;
  }

  to {
    top: 0;
  }
}

@keyframes showUp {
  from {
    top: -100%;
  }

  to {
    top: 0;
  }
}

/*
Created by enviti
Based on bootstrap 4 grid
*/

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;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1480px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1605px;
  }
}

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

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

.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%;
  padding-right: 15px;
  padding-left: 15px;
}

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

.col-auto {
  -webkit-box-flex: 0;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

  .col-sm-auto {
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .col-md-auto {
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: -webkit-box !important;
  display: flex !important;
}

.mr-auto {
  margin-right: auto !important;
}

.ml-2 {
  margin-left: 2rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-auto {
  margin-left: auto !important;
}

.btn {
  color: #fff;
  font-size: 1rem;
  padding: 0.9rem 1rem;
  line-height: 1;
  min-width: 225px;
  background: #2067ef;
  border: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.btn.btn-accept {
  background: #1afb2f;
}

.btn.btn-accept:hover {
  background: #7ff188;
}

.btn:hover {
  cursor: pointer;
  background: #719bee;
}

.text-primary {
  color: #5a7bba;
}

.default-section {
  margin: 10.25rem 0;
}

.default-section-title {
  font-size: 2rem;
  text-transform: uppercase;
  text-align: left;
  line-height: 1;
  margin-bottom: 2rem;
}

.default-section-link {
  font-size: 1.56rem;
  text-decoration: underline;
}

textarea {
  resize: none !important;
}

.service-section .slider {
  max-height: 503px;
}

.service-section .container {
  -webkit-box-align: center;
          align-items: center;
}

.service-section .container .slider .slides .image {
  padding-bottom: 0 !important;
}

.service-section .container .slider .slides .image > img {
  position: relative !important;
  top: auto !important;
  left: auto !important;
}

.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.label-file__input {
  text-align: center;
  margin: 17px 0 25px;
}

.label-file__input div {
  color: #b63737;
  font-size: 1.063rem;
  font-weight: 700;
  font-variant: small-caps;
  cursor: pointer;
  position: relative;
  padding-top: 2px;
}

.label-file__input div::before {
  content: "";
  width: 23px;
  height: 27px;
  background-image: url("/img/download-button-red.svg");
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.popup h2 {
  font-weight: 400 !important;
}

article {
  margin-bottom: 6rem;
}

article p,
article strong {
  margin-bottom: 15px;
}

@media screen and (max-width: 450px) {
  article p,
  article strong {
    font-size: 1rem;
  }
}

article h1,
article h2,
article h3,
article h4,
article h5 {
  margin-bottom: 25px;
}

article ul,
article ol {
  list-style-position: inside;
  margin-bottom: 25px;
}

article ul li,
article ol li {
  margin-bottom: 10px;
}

article ul li:last-of-type,
article ol li:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 450px) {
  article ul li,
  article ol li {
    font-size: 1.1rem;
  }
}

article p {
  text-indent: 11px;
}

.service-section .container .text .name {
  text-align: left !important;
}

.service-section .container {
  box-shadow: 0 5px 21px -8px #33323366;
}

.service-one__video {
  margin-right: 10px;
  width: calc(33.33333% - 10px);
}

.service-one__video:last-of-type {
  margin-right: 0;
  width: 33.33333%;
}

@media screen and (max-width: 991px) {
  .service-one__video {
    width: 100%;
    margin-right: 0;
  }

  .service-one__video:last-of-type {
    margin-right: 0;
    width: 100%;
  }

  .service-info .container .image {
    width: 100% !important;
  }
}

.service-info .container .content .title {
  text-transform: uppercase !important;
  text-align: left !important;
}

.service-info .container {
  -webkit-box-align: start !important;
          align-items: flex-start !important;
}

.wrap-elem__nav {
  border-bottom: 2px solid transparent;
}

.wrap-elem__nav:hover {
  border-bottom: none;
}

.topmenu > li .flex-wrap__mobile > a {
  border-bottom: none;
}

.topmenu > li .flex-wrap__mobile > a:hover {
  border-bottom-width: 2px !important;
  border-style: solid !important;
}

.characteristic,
.short-info {
  margin-top: 3rem !important;
}

.price-table_table {
  margin-bottom: 3rem;
}

.led-prods.outdoor-screens.default-section:last-of-type {
  margin-bottom: 2rem !important;
}

.banner-create__new .slide {
  height: 375px !important;
}

.banner-create__new .slide__title {
  font-size: 3rem !important;
  max-width: 100% !important;
}

.additional-equipment_equipment .equip-image {
  text-align: center !important;
}

.additional-equipment_equipment .equip {
  margin-bottom: 2rem !important;
  -webkit-box-pack: justify !important;
          justify-content: space-between !important;
}

.header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
}

.header .top-header {
  background: #10100d;
  height: 120px;
  border-bottom: 2px solid #fff;
}

.header .top-header > .container-fluid {
  display: -webkit-box;
  display: flex;
  height: 100%;
}

.header .top-header__left {
  display: -webkit-box;
  display: flex;
}

.header .top-header__right {
  display: -webkit-box;
  display: flex;
  margin-left: auto;
}

.header .bottom-header {
  position: absolute;
  z-index: 100;
  width: 100%;
  background-color: #2b2b2bb0;
}

.header .bottom-header.colored {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))), url("/img/architecture-avenue-buildings-2901581.jpg");
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/img/architecture-avenue-buildings-2901581.jpg");
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: relative;
}

.header__shop-icons {
  position: absolute;
  right: 2rem;
  top: 1rem;
  list-style: none;
  display: -webkit-box;
  display: flex;
}

.header__shop-icons li {
  width: 30px;
  height: 30px;
  position: relative;
}

.header__shop-icons li a {
  display: block;
}

.header__shop-icons li .count {
  position: absolute;
  right: -10px;
  bottom: -5px;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
}

.header__shop-icons li + li {
  margin-left: 1.5rem;
}

.header__logo {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  max-width: 120px;
  margin-right: 3.8rem;
}

.header__social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.header__social a {
  display: block;
  width: 30px;
  height: 30px;
}

.header__social a + a {
  margin-left: 2rem;
}

.header__call {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-left: 3.8rem;
  margin-right: 3.8rem;
}

.header__call button {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.header__call button img {
  width: 40px;
  height: 40px;
  padding: 10px;
}

.header__call button span {
 font-size: 17px;
}

.header__lang {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.header__lang select {
  margin: auto;
  font-family: "ProximaNova";
  background: transparent;
  border: none;
  color: #5a7bba;
  font-weight: bold;
  font-size: 1.25rem;
}

.contacts-row {
  display: -webkit-box;
  display: flex;
}

.contacts-row__item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.contacts-row__item .icon {
  width: 30px;
  height: 30px;
  margin-right: 1.3rem;
}

.contacts-row__item a,
.contacts-row__item span {
  line-height: 1;
  display: block;
  color: #fff;
}

.contacts-row__item + .contacts-row__item {
  margin-left: 3.8rem;
}

@media (min-width: 992px) {
  nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  nav ul:after {
    content: "";
    display: table;
    clear: both;
  }

  nav a {
    text-decoration: none;
    display: block;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
  }

  .topmenu > li {
    float: left;
    position: relative;
  }

  .topmenu > li:first-child {
    border-left: 0;
  }

  .topmenu > li .flex-wrap__mobile > a {
    padding: 10px 20px 20px 20px;
    font-size: 1.25rem;
    color: #FEFDFD;
    letter-spacing: 2px;
    border-color: #b63737;
    font-family: "ProximaNova";
  }

  .topmenu > li + li {
    margin-left: 1rem;
  }

  .topmenu > li:hover > a {
    padding-bottom: 20px;
    border-bottom: 3px solid #b63737;
  }

  .submenu a:hover {
    border-bottom: 2px solid #5a7bba;
  }

  .topmenu .fa {
    margin-left: 5px;
    color: inherit;
  }

  .submenu {
    padding: 1.5rem 1rem;
    position: absolute;
    z-index: 5;
    min-width: 320px;
    background: rgba(45, 45, 45, 0.9);
    visibility: hidden;
    opacity: 0;
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
  }

  .submenu .fa {
    margin-left: 5px;
    color: inherit;
  }

  .submenu li {
    position: relative;
  }

  .submenu li:first-child a {
    padding-top: 0;
  }

  .submenu li:last-child a {
    padding-bottom: 0;
    border-bottom: none;
  }

  .submenu li a {
    font-family: "ProximaNova";
    color: #fff;
    padding: 1.25rem;
    font-size: 1rem;
    border-bottom: 2px solid #CBCBCC;
  }

  .submenu .submenu {
    position: absolute;
    box-sizing: border-box;
    left: 105%;
    top: -1px;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
  }

  nav li:hover > .submenu {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    visibility: visible;
    opacity: 1;
  }
}

.header__social--mobile {
  display: none;
}

@media screen and (max-width: 480px) {
  .contacts-row__item--phone .icon {
    display: none;
  }

  .contacts-row__item--phone a {
    font-weight: 600;
    font-size: 18px;
  }

  .contacts-row__item--time,
  .contacts-row__item--mail,
  .header__call {
    display: none;
  }

  .header__social {
    display: none;
  }

  .header__social--mobile {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
            align-items: center;
    vertical-align: middle;
    margin-right: 10px;
  }

  .header .top-header__right {
    display: block;
  }

  .header__social a {
    vertical-align: middle;
  }

  .header__social a img {
    vertical-align: middle;
  }

  .header .top-header {
    height: 100px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
  }

  .contacts-row {
    display: block;
    margin-bottom: 15px;
  }

  .header .top-header > .container-fluid {
    -webkit-box-align: center;
            align-items: center;
  }

  .header__lang {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
    vertical-align: middle;
  }
}

.footer {
  background: #10100d;
}

.footer ul {
  list-style: none;
}

.footer ul a {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.3;
}

.footer-title {
  font-weight: bold;
  color: #fff;
  font-size: 1.25rem;
  display: block;
  margin-bottom: 2rem;
}

.footer__container {
  display: -webkit-box;
  display: flex;
}

.footer__nav {
  padding: 70px 140px 70px 0;
  -webkit-box-flex: 2;
          flex: 2;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.footer__info {
  padding: 70px 0 70px 0;
  -webkit-box-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: flex;
}

.footer__menu + .footer__menu {
  margin-right: 4rem;
}

.footer .contacts-row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  margin-top: 1rem;
}

.footer .contacts-row__item + .contacts-row__item {
  margin-left: 0;
  margin-top: 0.5rem;
}

.footer .contacts {
  margin-left: auto;
}

.footer .certificates__grid {
  display: -webkit-box;
  display: flex;
}

.footer .certificates__grid a {
  display: block;
  width: 75px;
}

.footer .certificates__grid a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer .certificates__grid a + a {
  margin-left: 5px;
}

.banner {
  padding-top: 120px;
}

@media screen and (max-width: 480px) {
  .banner {
    padding-top: 150px;
  }
}

.banner .slide {
  background-position: center;
  background-size: cover;
  height: 450px;
  position: relative;
  width: 100%;
  margin-top: 4rem;
}

.banner .slide__content {
  z-index: 1;
}

@media screen and (max-width: 425px) {
  .banner .slide {
    height: 250px !important;
  }

  .banner .slide .slide__content {
    width: 100%;
  }

  .banner .slide .slide__text {
    -webkit-box-align: center;
            align-items: center;
  }

  .banner .slide .slide__text .btn {
    padding: 1rem 1rem;
    font-size: 1.2rem;
    background-color: #1964f3db;
  }

  .banner .slide .slide__text .btn.btn-accept {
    background-color: #1cf530d6;
  }
}

.banner .slide.static-slide {
  height: 650px;
}

@media screen and (max-width: 425px) {
  .banner .slide.static-slide {
    height: 250px !important;
  }
}

.banner .slide > .container {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.banner .slide__title {
  font-size: 2.9rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  max-width: 35%;
  margin-top: 5rem;
}

.banner .slide__text {
  text-transform: uppercase;
  font-size: 1.05rem;
  text-indent: 2rem;
  text-align: justify;
  color: #fff;
  max-width: 70%;
  margin-top: 0rem;
}

.banner .slide__text button {
  margin-top: 0.2;
  margin-right: 1.5rem;
  border-radius: 5px;
}

.banner.imaged .slide {
  height: 430px;
}

.banner.imaged .slide .container {
  -webkit-box-pack: center;
          justify-content: center;
}

.production__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(auto-fill, 540px);
  grid-gap: 1.05rem;
  margin-top: 2rem;
}

.production-item {
  display: -webkit-box;
  display: flex;
}

.production-item__picture {
  -webkit-box-flex: 2;
          flex: 2;
}

.production-item__picture a {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.production-item__picture img {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.production-item__background {
  -webkit-box-flex: 1.2;
          flex: 1.2;
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 4.4rem 3rem;
  color: #fff;
}

.production-item__background > img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  -o-object-position: left bottom;
     object-position: left bottom;
}

.production-item__content {
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
}

.production-item__content .tasks {
  list-style: none;
}

.production-item__content .tasks img {
  width: 25px;
  height: 25px;
}

.production-item__content .tasks li {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.production-item__content .tasks li img {
  margin-right: 7px;
}

.production-item__content .tasks li + li {
  margin-top: 1rem;
}

.production-item__content .title {
  font-weight: bold;
  font-size: 1.56rem;
  display: block;
}

.production-item__content .mini-desc {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.production-item__content .btn {
  margin-top: 1rem;
  text-align: center;
}

.production-item:hover .production-item__picture img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.areas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 100px;
}

.area {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

.area__img {
  width: 80px;
  height: 80px;
}

.area__title {
  color: #4787ff;
  font-size: 1.56rem;
  font-weight: bold;
  display: block;
  margin: 1.25rem 0;
}

.area__text {
  font-size: 1.2rem;
  text-align: center;
}

.areas {
  padding: 4.7rem 0;
  background-size: cover;
  background-position: center;
}

.areas__title {
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 3rem;
}

.areas__container {
  padding: 70px 170px 100px;
  background: none;
  text-decoration: inherit;
  border-style: outset;
  border-color: buttonface;
  border-width: 10px;
  -webkit-border-image: linear-gradient(135deg, #2162dc 0%, #22b24c 50%, #bb0000 100%);
       -o-border-image: linear-gradient(135deg, #2162dc 0%, #22b24c 50%, #bb0000 100%);
          border-image: linear-gradient(135deg, #2162dc 0%, #22b24c 50%, #bb0000 100%);
  border-image-slice: 1;
}

.areas__container.rainbow {
  -webkit-border-image: linear-gradient(-39deg, #b00 0%, #22b24c 50%, #2162dc 100%);
       -o-border-image: linear-gradient(-39deg, #b00 0%, #22b24c 50%, #2162dc 100%);
          border-image: linear-gradient(-39deg, #b00 0%, #22b24c 50%, #2162dc 100%);
  border-image-slice: 1;
}

.area__text {
  color: #fff;
}

.area__title {
  text-align: center;
}

.questions-form .container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  color: #5a7bba;
}

.questions-form .container h2 {
  font-size: 2.625rem;
  font-weight: 900;
  text-align: center;
}

.questions-form .container .appeal {
  font-size: 1.35rem;
  text-align: center;
}

.questions-form .container .form {
  margin-top: 30px;
  display: -webkit-box;
  display: flex;
}

.questions-form .container .form form {
  min-width: 340px;
  margin-right: 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  margin-bottom: 15px;
}

.questions-form .container .form form input,
.questions-form .container .form form textarea {
  box-sizing: border-box;
  border: 2px solid #b8b8b8;
  padding: 15px 25px;
  font-variant: small-caps;
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.questions-form .container .form form .submit {
  margin-top: 10px;
  font-size: 1.125rem;
  font-variant: small-caps;
  color: #fff;
  background-color: #5a7bba;
  padding: 10px;
  box-sizing: border-box;
  border: none;
}

.questions-form .container .form .social-refs {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.questions-form .container .form .social-refs a {
  margin-bottom: 20px;
}

.questions-form .container .form .social-refs a:last-child {
  margin-bottom: 0;
}

.questions-form .container .form .social-refs a img {
  width: 44px;
  height: 44px;
}

.news-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 145px;
  margin-top: 3rem;
}

.news-preview-item__img {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 100%;
}

.news-preview-item__img img {
  width: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}

.news-preview-item__img .date {
  position: absolute;
  top: 22px;
  right: -27px;
  padding: 10px 50px;
  color: #fff;
  background-color: #557cff;
  font-size: 1.25rem;
}

.news-preview-item__title {
  font-weight: bold;
  font-size: 2rem;
  color: #557cff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin: 2rem 0;
  line-height: 1;
  display: block;
}

.news-preview-item__title:hover {
  color: #3b58b0;
}

.news-preview-item__short {
  font-size: 1.25rem;
}

.news-preview-item:nth-child(2) .date {
  background-color: #bb0000;
}

.news-preview-item:last-child .date {
  background-color: #00d414;
}

.seo-text {
  text-indent: 1.2rem;
}

.seo-text__visible {
  max-height: 180px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.seo-text .actions {
  top: 20px;
  position: relative;
}

.seo-text .actions .show-more {
  margin: auto;
  cursor: pointer;
  background: transparent;
  border: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.seo-text .actions .show-more img {
  width: 25px;
  height: 25px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.seo-text .actions .show-more.rotated img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.seo-text .actions .show-more:focus {
  outline: none;
}

.seo-text__hidden {
  height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s linear all;
  transition: 0.5s linear all;
}

.seo-text__hidden.show {
  height: auto;
  opacity: 1;
  visibility: visible;
}

.seo-text__call {
  position: absolute;
  right: 0;
  top: -20px;
}

.seo-text__call button {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  background: 0 0;
  border: none;
  color: #5a7bba;
  font-size: 1rem;
  cursor: pointer;
}

.seo-text__call button img,
.seo-text__call button svg {
  width: 40px;
  height: 40px;
  padding: 10px;
  margin-left: 1.2rem;
  border: 2px solid #5a7bba;
  border-radius: 50%;
}

.seo-text__call button img path,
.seo-text__call button svg path {
  fill: #5a7bba !important;
}

.mobile-menu-btn {
  background: none;
  max-width: 30px;
  padding: 0;
  border: none;
  display: none;
  position: absolute;
  right: 2rem;
  top: 1rem;
}

.mobile-menu-btn img {
  width: 30px;
  height: 30px;
}

.close-mob-menu {
  background: none;
  max-width: 30px;
  padding: 0;
  border: none;
  display: none;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.close-mob-menu img {
  width: 30px;
  height: 30px;
}

@media (max-width: 1535px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 13px;
  }

  .default-section .led-panel-info{
    margin: 5.25rem 2rem;
  }
  
  .led-panel-info{
    margin: 0rem 2rem;
    margin-top: 15.25rem;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 12px;
  }
}

@media (max-width: 1535px) {
  .header__logo {
    margin-right: 0.5rem;
  }

  .header__social a {
    width: 25px;
    height: 25px;
  }

  .header__social a + a {
    margin-left: 1rem;
  }

  .header__call {
    margin-left: 1.8rem;
    margin-right: 1.8rem;
  }

  .topmenu > li > a {
    padding: 15px;
  }

  .contacts-row__item + .contacts-row__item {
    margin-left: 1rem;
  }

  .contacts-row__item .icon {
    width: 25px;
    height: 25px;
    margin-right: 0.3rem;
  }
}

@media (max-width: 1199px) {
  .contacts-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
  }

  .contacts-row__item + .contacts-row__item {
    margin-left: 0;
    margin-top: 4px;
  }

  .topmenu > li + li {
    margin-left: 0.2rem;
  }
}

.mobile-select__submenu,
.mobile-header__border {
  display: none;
}

@media (max-width: 991px) {
  .mobile-header__border {
    display: block;
    height: 55px;
    border-bottom: 2px solid #fff;
    background-color: transparent;
  }

  .bottom-header.colored .mobile-header__border {
    display: block;
    height: 55px;
    width: 100%;
    background-color: #000;
  }

  .wrap-elem__nav.subnav .mobile-select__submenu:after {
    content: "+";
    display: inline-block;
    font-size: 20px;
    color: #ffffff;
    margin-left: 2rem;
  }

  .flex-wrap__mobile {
    display: -webkit-box;
    display: flex;
  }

  .header__shop-icons {
    right: auto;
    left: 2rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  .bottom-header__container {
    position: fixed;
    opacity: 0;
    top: 0;
    bottom: 0;
    left: 0;
    width: 80%;
    background: rgba(0, 0, 0, 0.8);
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    max-width: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    padding: 50px 20px;
  }

  .bottom-header__container.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    z-index: 900;
    overflow-y: auto;
  }

  .bottom-header__container .close-mob-menu {
    display: block;
  }

  .bottom-header__container .topmenu .submenu {
    padding-left: 20px;
  }

  .bottom-header__container .topmenu li {
    margin-bottom: 12px;
  }

  .bottom-header__container .topmenu .nav-first__item {
    font-size: 20px;
    color: #fff;
  }

  .bottom-header__container .topmenu a {
    color: #fff;
    text-transform: uppercase;
  }

  .bottom-header__container .topmenu .nav-first__item,
  .bottom-header__container .topmenu .wrap-elem__nav {
    margin-bottom: 25px;
    display: block;
    overflow: hidden;
  }

  .bottom-header__container .submenu {
    -webkit-transform: translateX(-120%);
            transform: translateX(-120%);
    position: absolute;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }

  .bottom-header__container .wrap-elem__nav .mobile-select__submenu {
    display: none;
  }

  .bottom-header__container .wrap-elem__nav.subnav .mobile-select__submenu {
    display: inline-block;
  }

  .bottom-header__container .wrap-elem__nav:first-of-type .mobile-select__submenu {
    display: inline-block;
  }

  .bottom-header__container .wrap-elem__nav.open {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }

  .bottom-header__container .wrap-elem__nav.open .mobile-select__submenu:after {
    content: "-";
  }

  .bottom-header__container .wrap-elem__nav.open .submenu {
    opacity: 1;
    position: relative;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    pointer-events: all;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }

  .close-mob-menu {
    right: 2rem;
    top: 2.4rem;
  }

  .header__call {
    margin-left: 0.8rem;
  }

  .header__call span {
    display: none;
  }
}

@media (max-width: 767px) {
  .header .top-header__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: center;
            align-items: center;
  }

  .header__logo {
    max-width: 105px;
  }
}

@media (max-width: 576px) {
  .contacts-row__item .icon {
    width: 20px;
    height: 20px;
  }

  .header__call button img {
    padding: 2px;
    width: 25px;
    height: 25px;
  }

  .header__call {
    margin-left: 0.8rem;
    margin-right: 0.8rem;
  }

  .header__social a {
    width: 20px;
  }

  .contacts-row__item {
    font-size: 1.1rem;
  }
}

@media (max-width: 479px) {
  .header__call {
    display: none;
  }

  .header__lang {
    position: absolute;
    top: 4px;
    right: 10px;
  }
}

@media (max-width: 1535px) {
  .banner .slide__title {
    font-size: 3.1rem;
    max-width: 50%;
  }

  .banner .slide {
    height: 640px;
    margin-top: 0;
  }

  .banner .slide.static-slide {
    height: 520px;
  }

  .banner.imaged .slide {
    height: 470px;
  }
}

@media (max-width: 1199px) {
  .banner .slide__title {
    font-size: 2.7rem;
    max-width: 70%;
  }

  .banner .slide {
    height: 500px;
  }

  .banner .slide.static-slide {
    height: 320px;
  }
}

@media (max-width: 991px) {
  .banner .slide__text {
    max-width: 100%;
  }

  .banner .slide__title {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .banner .slide__text {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }

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

@media (max-width: 425px) {
    .banner .slide__title {
        margin-top: -5rem;
    }
}
@media (max-width: 400px) {
  .banner .slide {
    height: 650px;
  }

  .banner .slide.static-slide {
    height: 480px;
  }

  .banner.imaged .slide {
    height: 320px;
  }
}

@media (max-width: 1919px) {
  .production-item__background {
    -webkit-box-flex: 1.5;
            flex: 1.5;
  }
}

@media (max-width: 1535px) {
  .production__grid {
    grid-template-rows: 500px 500px 500px;
    overflow: hidden;
  }

  .production-item__content .tasks li + li {
    margin-top: 0.2rem;
  }
}

@media (max-width: 991px) {
  .production__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.production-item:nth-child(odd) .production-item__background {
  background: url("/img/back-mini-orig.jpg") center no-repeat;
}

.production-item:nth-child(even) .production-item__background {
  background: url("/img/bright-miniii.jpg") center no-repeat;
}

.production-item__background {
  padding: 4.4rem 2rem;
  background-size: cover !important;
  width: 100%;
  height: 100%;
  position: relative;
}

.production-item__background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.production-item__content {
  z-index: 2;
  position: relative;
}

@media (max-width: 767px) {
  .production__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-gap: 0;
  }

  .areas__title {
    text-align: center;
  }

  .production-item__background {
    padding: 15%;
  }

  .production-item__content .title {
    font-size: 2.8rem;
  }

  .btn {
    padding: 1.9rem 1rem;
    font-size: 1.8rem;
  }
}

@media (max-width: 479px) {
  .production .default-section-link {
    margin-top: 3rem;
    font-size: 2rem;
    -webkit-box-ordinal-group: 2;
            order: 1;
    text-align: center;
  }

  .production .container {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .production .default-section-title {
    margin-bottom: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
  }

  .production-item__picture {
    display: none;
  }
}

@media (max-width: 1535px) {
  .areas__container {
    padding: 70px 70px 100px;
  }

  .areas__grid {
    grid-gap: 60px;
  }

  .news-preview__grid {
    grid-column-gap: 95px;
  }

  .seo-text {
    text-align: justify;
  }
}

@media (max-width: 1199px) {
  .areas__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .areas__container {
    padding: 60px;
  }

  .news-preview__grid {
    grid-column-gap: 60px;
  }

  .news-preview-item__title,
  .news-preview-item__short {
    text-align: center;
  }

  .news-preview-item__img .date {
    padding: 4px 30px;
  }

  .seo-text {
    line-height: 1.6;
  }
}

@media (max-width: 991px) {
  .areas__grid {
    grid-gap: 20px;
  }

  .areas__container {
    padding: 20px;
  }

  .news-preview-item__img .date {
    right: 0;
  }

  .news-preview__grid {
    grid-column-gap: 10px;
  }

  .news-preview-item__title {
    margin: 1rem 0;
    font-size: 1.6rem;
  }

  .news-preview-item__short {
    font-size: 1rem;
  }

}

@media (max-width: 767px) {
  .areas__grid {
    grid-template-columns: 1fr 1fr;
  }

  .areas__grid .area__text {
    display: none;
  }

  .areas__container {
    border: none;
  }
}

@media (max-width: 576px) {
  .news-preview-item__title {
    font-size: 1.4rem;
  }

  .news-preview-item__short {
    font-size: 0.8rem;
  }
}

@media (max-width: 479px) {
  .news-preview__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 1rem;
  }

  .news-preview-item__title {
    font-size: 1.6rem;
  }

  .news-preview-item__short {
    font-size: 1rem;
  }

  .seo-text__call {
    position: initial;
  }

  .seo-text__call button {
    margin: auto;
  }
}

@media (max-width: 767px) {
  .questions-form .container .form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }

  .questions-form .container .form form {
    margin-right: 0;
  }

  .questions-form .container .form .social-refs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    justify-content: space-around;
  }

  .questions-form .container .form .social-refs a {
    margin-bottom: 0;
  }
}

@media (max-width: 479px) {
  .questions-form .container .form {
    width: 100%;
  }

  .questions-form .container .form form {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 1535px) {
  .footer__nav {
    padding: 50px;
  }

  .footer__info {
    padding: 50px 0;
  }

  .footer .certificates__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
  }

  .footer .certificates__grid a {
    width: 100%;
    height: 100%;
  }

  .footer .certificates__grid a + a {
    margin: 0;
  }
}

@media (max-width: 1199px) {
  .footer__menu + .footer__menu {
    margin-right: 1rem;
  }
}

@media (max-width: 991px) {
  .footer .certificates {
    display: none;
  }

  .footer__nav {
    padding: 50px 20px;
  }
}

@media (max-width: 767px) {
  .footer__nav {
    padding: 50px 0px;
  }

  .footer .contacts {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .footer__nav {
    display: none;
  }

  .footer__info {
    -webkit-box-pack: center;
            justify-content: center;
  }

  .footer__info .contacts,
  .footer__info .contacts__grid,
  .footer__info .contacts-row {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 1120px) {
  .production-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
  }

  .production-info .image {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
  }

  .production-info .production-info_text {
    width: 100%;
  }
}

@media screen and (max-width: 1120px) {
  .price-table_table {
    overflow-x: auto;
  }
}

.additional-equipment_equipment .equip {
  -webkit-box-flex: 1 !important;
          flex: 1 0 16% !important;
  width: 100% !important;
  min-width: 180px !important;
  max-width: calc(50% - 4%);
}

@media screen and (max-width: 451px) {
  .additional-equipment_equipment .equip {
    max-width: 100% !important;
  }
}

.additional-equipment_equipment .equip:nth-child(5n) {
  margin-right: 4% !important;
}

@media screen and (max-width: 430px) {
  .characteristic {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: center;
            align-items: center;
  }

  .characteristic p {
    margin: 0 0 20px 0 !important;
  }

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

.breadcrumbs {
  margin-top: 70px;
}

.breadcrumbs ul {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.breadcrumbs ul li {
  padding-right: 5px;
  font-variant: small-caps;
  font-size: 0.81rem;
  color: #858585;
}

.breadcrumbs ul li a {
  color: inherit;
}

.breadcrumbs ul li:after {
  content: "-";
  padding-left: 5px;
}

.breadcrumbs ul li:last-child {
  padding-right: 0;
  color: #000;
}

.breadcrumbs ul li:last-child:after {
  content: none;
}

.led-prods__catalog {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.led-prods__catalog.slider-catalog {
  display: block;
  flex-wrap: nowrap;
}

.led-prods__catalog.slider-catalog .prod {
  width: 95%;
  margin: 0 2.5% 0 !important;
}

.led-prods .prod {
  width: 31%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

@media (min-width: 768px) {
  .led-prods .prod:nth-child(3n-1) {
    margin: 0 1% 20px;
  }

  .led-prods .prod:nth-child(3n-2) {
    margin: 0 2% 20px 0;
  }

  .led-prods .prod:nth-child(3n) {
    margin: 0 0 20px 2%;
  }
}

@media (max-width: 767px) {
  .led-prods .prod {
    width: 49%;
  }

  .led-prods .prod:nth-child(odd) {
    margin: 0 1% 20px 0;
  }

  .led-prods .prod:nth-child(even) {
    margin: 0 0 20px 1%;
  }
}

@media (max-width: 480px) {
  .led-prods .prod {
    width: 100%;
  }
}

.led-prods .prod .image {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 100%;
}

.led-prods .prod .image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.led-prods .prod .inform {
  background: url("/img/657472-PP4KSV-945.jpg") center center/100% 100% no-repeat;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  padding: 50px 50px 100px 50px;
  height: 100%;
  position: relative;
}

@media (max-width: 1200px) {
  .led-prods .prod .inform {
    padding: 30px 30px 80px 30px;
  }
}

@media (max-width: 991px) {
  .led-prods .prod .inform {
    padding: 25px 15px 65px 15px;
  }
}

@media (max-width: 480px) {
  .led-prods .prod .inform {
    padding: 40px 40px 80px 40px;
  }
}

.led-prods .prod .inform .name {
  font-variant: small-caps;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 30px;
}

.led-prods .prod .inform .info {
  box-sizing: border-box;
}

.led-prods .prod .inform .info .info-row {
  box-sizing: border-box;
  padding-left: 45px;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  color: #fff;
  font-size: 0.81rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.led-prods .prod .inform .info .info-row:before {
  content: "";
  background: center center/100% 100% no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.led-prods .prod .inform .info .info-row span {
  margin-left: 5px;
  font-weight: 400;
}

.led-prods .prod .inform .info .info-row span:before {
  content: "-";
  padding-right: 5px;
}

.led-prods .prod .inform .info .info-row.pixel-step:before {
  height: 28px;
  width: 22px;
  background-image: url("/img/tv-white.svg");
}

.led-prods .prod .inform .info .info-row.resolution:before {
  height: 28px;
  width: 28px;
  background-image: url("/img/virtual-white.svg");
}

.led-prods .prod .inform .info .info-row.brightness:before {
  height: 25px;
  width: 25px;
  background-image: url("/img/sun-white.svg");
}

.led-prods .prod .inform .info .info-row.view-range:before {
  height: 28px;
  width: 24px;
  background-image: url("/img/eye-white.svg");
}

.led-prods .prod .inform .user-buttons {
  margin-top: 10px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  position: absolute;
  bottom: 50px;
  width: calc(100% - 100px);
}

@media (max-width: 1200px) {
  .led-prods .prod .inform .user-buttons {
    bottom: 25px;
    width: calc(100% - 60px);
  }
}

@media (max-width: 991px) {
  .led-prods .prod .inform .user-buttons {
    width: calc(100% - 30px);
    bottom: 15px;
  }
}

@media (max-width: 480px) {
  .led-prods .prod .inform .user-buttons {
    bottom: 25px;
    width: calc(100% - 80px);
  }
}

.led-prods .prod .inform .user-buttons .ref {
  padding: 10px 15px;
  width: 50%;
  color: #fff;
  font-variant: small-caps;
  font-size: 0.725rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.led-prods .prod .inform .user-buttons .ref.price {
  font-size: 1.1rem;
}

.led-prods .prod .inform .user-buttons .ref img {
  margin-left: 10px;
  width: 20px;
  height: 20px;
}

.led-prods .prod .inform .user-buttons .shop-icons {
  display: -webkit-box;
  display: flex;
  list-style: none;
  -webkit-box-pack: end;
          justify-content: flex-end;
  width: 50%;
}

.led-prods .prod .inform .user-buttons .shop-icons li {
  margin-right: 30px;
}

.led-prods .prod .inform .user-buttons .shop-icons li.added a img:first-child {
  display: none;
}

.led-prods .prod .inform .user-buttons .shop-icons li.added a img:last-child {
  display: inline-block;
}

.led-prods .prod .inform .user-buttons .shop-icons li a img:last-child {
  display: none;
}

.led-prods .prod .inform .user-buttons .shop-icons li:last-child {
  margin-right: 0;
}

.led-prods .prod .inform .user-buttons .shop-icons img {
  width: 25px;
  height: 25px;
}

.service-section.default-section {
  margin: 3rem 0;
}

.service-section_red .name {
  color: #b73738;
}

.service-section_red .btn {
  background-color: #b73738;
}

.service-section_red .btn:hover {
  background-color: #e24546;
}

.service-section_blue .name {
  color: #5a7bba;
}

.service-section_blue .btn {
  background-color: #5a7bba;
}

.service-section_green .name {
  color: #66c66f;
}

.service-section_green .btn {
  background-color: #66c66f;
}

.service-section_green .btn:hover {
  background-color: #7dea88;
}

.service-section:nth-child(2n-1) .container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
  background-color: #fff;
}

@media (max-width: 767px) {
  .service-section:nth-child(2n-1) .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
  }
}

.service-section:nth-child(2n-1) .container .text {
  margin-right: 0;
  margin-left: 5%;
}

@media (max-width: 767px) {
  .service-section:nth-child(2n-1) .container .text {
    margin: 0;
  }
}

.service-section .container {
  display: -webkit-box;
  display: flex;
  padding: 70px 40px;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .service-section .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
  }
}

@media (max-width: 480px) {
  .service-section .container {
    padding: 40px 20px;
  }
}

.service-section .container .slider {
  width: 55%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .service-section .container .slider {
    width: 100%;
    margin-bottom: 20px;
  }
}

.service-section .container .slider .slider-btn {
  cursor: pointer;
  width: 2.2rem;
  height: 2.2rem;
  background: url("/img/play-button-grey.svg") center center/100% 100% no-repeat;
}

.service-section .container .slider .slider-btn.prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.service-section .container .slider .slides {
  width: 80%;
}

.service-section .container .slider .slides .image {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 75%;
}

.service-section .container .slider .slides .image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-section .container .text {
  width: 40%;
  margin-right: 5%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: start;
          align-items: flex-start;
}

@media (max-width: 767px) {
  .service-section .container .text {
    width: 100%;
    margin: 0;
    -webkit-box-align: center;
            align-items: center;
  }
}

.service-section .container .text .name {
  font-size: 3.19rem;
  font-weight: 900;
  font-variant: small-caps;
  margin-bottom: 55px;
  text-align: center;
}

@media (max-width: 1090px) {
  .service-section .container .text .name {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
}

.service-section .container .text .description {
  color: #000;
  font-size: 1rem;
  line-height: 1.587rem;
  font-variant: small-caps;
  text-indent: 2rem;
  text-align: justify;
  margin-bottom: 50px;
}

.service-section .container .text .btn {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

.popup-wrapper.wrapper {
  z-index: 900;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.54);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
}

.popup-wrapper.wrapper.open {
  display: -webkit-box;
  display: flex;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 1;
  pointer-events: all;
}

.popup {
  z-index: 999;
  position: fixed;
  left: 0;
  right: 0;
  top: 10vh;
  margin: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.popup h2 {
  color: #fff;
  font-size: 2rem;
  line-height: 2rem;
  text-transform: uppercase;
  text-align: center;
}

.popup form {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.popup form input:not([type=submit]),
.popup form textarea {
  background-color: #fff;
  border: 2px solid #b8b8b8;
  padding: 8px 20px;
  font-family: "ProximaNova";
  color: #000;
  font-size: 1.125rem;
  font-variant: small-caps;
  font-weight: 400;
  margin-bottom: 8px;
}

.popup.open {
  display: -webkit-box;
  display: flex;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 1;
  pointer-events: all;
}

.btnCloseModal {
  position: absolute;
  right: 20px;
  top: 20px;
  background-image: url("/img/close.svg");
  width: 20px;
  height: 20px;
  background-size: cover;
  background-repeat: no-repeat;
}

.popup {
  display: none;
  background-color: rgba(0, 0, 0, 0.54);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 70px 60px 50px;
  width: 560px;
  height: auto;
  box-sizing: border-box;
}

@media (max-width: 580px) {
  .popup {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .popup {
    padding: 40px 20px;
  }
}

.popup h2 {
  margin-bottom: 40px;
}

.popup .send-btn {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  background-color: transparent;
  border: none;
  outline: none;
  color: #b63737;
  font-size: 1.063rem;
  font-weight: 700;
  font-variant: small-caps;
  margin: 17px 0 25px;
  cursor: pointer;
}

.popup .send-btn img {
  width: 23px;
  height: 27px;
  margin-right: 10px;
}

.led-prod-cats .container {
  display: -webkit-box;
  display: flex;
}

@media (max-width: 480px) {
  .led-prod-cats .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

.led-prod-cats .cat {
  width: 31%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

@media (min-width: 481px) {
  .led-prod-cats .cat:nth-child(3n-1) {
    margin: 0 1% 20px;
  }
}

.led-prod-cats .cat:nth-child(3n-1) .title:before {
  background-color: #66c66f;
}

.led-prod-cats .cat:nth-child(3n-1) .ref {
  background-color: #ba2525;
}

@media (min-width: 481px) {
  .led-prod-cats .cat:nth-child(3n-2) {
    margin: 0 2% 20px 0;
  }
}

.led-prod-cats .cat:nth-child(3n-2) .title:before {
  background-color: #ba2525;
}

.led-prod-cats .cat:nth-child(3n-2) .ref {
  background-color: #3ee44e;
}

@media (min-width: 481px) {
  .led-prod-cats .cat:nth-child(3n) {
    margin: 0 0 20px 2%;
  }
}

.led-prod-cats .cat:nth-child(3n) .title:before {
  background-color: #5a7bba;
}

.led-prod-cats .cat:nth-child(3n) .ref {
  background-color: #5a7bba;
}

@media (max-width: 480px) {
  .led-prod-cats .cat {
    width: 75%;
    margin: 0 auto 20px;
  }
}

.led-prod-cats .cat .title {
  color: #fffefe;
  font-size: 1.19rem;
  font-variant: small-caps;
  padding: 15px 10px 15px 50px;
  position: relative;
  background-color: rgba(0, 0, 0, 0.51);
  margin-bottom: 25px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .led-prod-cats .cat .title {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .led-prod-cats .cat .title {
    font-size: 1.75rem;
  }
}

.led-prod-cats .cat .title a {
  color: inherit;
}

.led-prod-cats .cat .title:before {
  content: "";
  height: 100%;
  width: 1rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.led-prod-cats .cat .image {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 110%;
  cursor: pointer;
}

.led-prod-cats .cat .image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.led-prod-cats .cat .image .ref {
  position: absolute;
  bottom: 2rem;
  right: 0;
  left: 0;
  margin: auto;
  padding: 10px 15px;
  width: 33%;
  color: #fff;
  font-variant: small-caps;
  font-size: 0.725rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

@media (max-width: 991px) {
  .led-prod-cats .cat .image .ref {
    width: 75%;
  }
}

.led-prod-cats .cat .image .ref img {
  margin-left: 10px;
  width: 20px;
  height: 20px;
}

.outdoor-screens .ref {
  background-color: #ba2525;
}

.interior-screens .ref {
  background-color: #66c66f;
}

.special-offers .prod .inform {
  background: url("/img/657655-PP4L7L-630.jpg") center center/100% 100% no-repeat;
}

.special-offers .ref {
  background-color: #5a7bba;
}

.panel-types.default-section {
  margin-bottom: 0;
}

.panel-types__flex {
  margin-top: 4.5rem;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.panel-types__flex .panel-type {
  width: 49%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  position: relative;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .panel-types__flex .panel-type {
    width: 100%;
    background-color: #fff;
    padding-top: 20px;
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .panel-types__flex .panel-type:nth-child(odd) {
    margin-right: 1%;
  }

  .panel-types__flex .panel-type:nth-child(even) {
    margin-left: 1%;
  }
}

.panel-types__flex .panel-type .image {
  position: relative;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  overflow: hidden;
  width: 44%;
  padding-bottom: 44%;
}

@media (max-width: 480px) {
  .panel-types__flex .panel-type .image {
    width: 75%;
    padding-bottom: 75%;
  }
}

.panel-types__flex .panel-type .image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.panel-types__flex .panel-type .panel-info {
  background-color: #fff;
  padding: 165px 75px 70px 60px;
  -webkit-transform: translate(0, -165px);
          transform: translate(0, -165px);
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .panel-types__flex .panel-type .panel-info {
    padding-top: 10px;
    -webkit-transform: none;
            transform: none;
  }
}

@media (max-width: 480px) {
  .panel-types__flex .panel-type .panel-info {
    padding: 10px 20px 20px;
  }
}

.panel-types__flex .panel-type .panel-info .name {
  text-align: center;
  font-size: 1.81rem;
  font-weight: 700;
  font-variant: small-caps;
  color: #557cff;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .panel-types__flex .panel-type .panel-info .name {
    margin-top: 20px;
  }
}

.panel-types__flex .panel-type .panel-info .description {
  margin-top: 40px;
  text-align: justify;
  line-height: 1.575rem;
  font-size: 1rem;
  font-variant: small-caps;
  text-indent: 2rem;
}

@media (max-width: 991px) {
  .panel-types__flex .panel-type .panel-info .description {
    margin-top: 20px;
  }
}

.led-panel-info .container {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
}

@media (max-width: 991px) {
  .led-panel-info .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

.led-panel-info .container .image {
  position: relative;
  overflow: hidden;
  width: 52%;
  padding-bottom: 60%;
  margin-right: 3%;
}

@media (max-width: 991px) {
  .led-panel-info .container .image {
    width: 100%;
    padding-bottom: 100%;
  }
}

.led-panel-info .container .image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.led-panel-info .container .info {
  width: 45%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: end;
          align-items: flex-end;
}

@media (max-width: 991px) {
  .led-panel-info .container .info {
    width: 100%;
  }
}

.led-panel-info .container .info .name {
  margin: 20px 0;
  font-size: 2.381rem;
  font-weight: 400;
  font-variant: small-caps;
}

.led-panel-info .container .info .led-type {
  font-variant: small-caps;
  line-height: 1.575rem;
  font-size: 1.2rem;
  color: #5a7bba;
}

.led-panel-info .container .info .props {
  margin: 50px 0 30px;
  width: 100%;
}

.led-panel-info .container .info .props tbody {
  width: 100%;
}

.led-panel-info .container .info .props td {
  width: 50%;
  font-size: 1.2rem;
  font-variant: small-caps;
  line-height: 1.984rem;
  text-align: right;
}

.led-panel-info .container .info .props td:nth-child(odd) {
  font-weight: 700;
  text-align: left;
}

.led-panel-info .container .info .user-buttons {
  align-self: flex-start;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 40px;
}

.led-panel-info .container .info .user-buttons > * {
  margin-right: 20px;
}

.led-panel-info .container .info .user-buttons > *:last-child {
  margin-right: 0;
}

.led-panel-info .container .info .user-buttons .miscount {
  cursor: pointer;
  padding: 10px 50px;
  color: #fff;
  font-size: 0.905rem;
  font-variant: small-caps;
  background-color: #5a7bba;
  border: none;
}

.led-panel-info .container .info .user-buttons img {
  width: 24px;
  height: 24px;
}

.led-panel-info .container .info .delivery-info {
  background-color: #e8e8e8;
  width: 100%;
  display: -webkit-box;
  display: flex;
  padding: 30px;
  box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.led-panel-info .container .info .delivery-info > p {
  font-variant: small-caps;
  line-height: 1.587rem;
  font-size: 1rem;
  font-weight: 700;
  color: #5a7bba;
}

.led-panel-info .container .info .delivery-info ul {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.led-panel-info .container .info .delivery-info ul li {
  font-size: 1rem;
  font-variant: small-caps;
  line-height: 1.984rem;
  padding-right: 15px;
}

.led-panel-info .container .info .delivery-info ul li:before {
  content: "-";
  padding-right: 5px;
}

.led-panel-info .container .info .delivery-info ul li:after {
  content: ";";
}

.led-panel-info .container .info .delivery-info ul li:last-child {
  padding-right: 0;
}

.led-panel-info .container .info .delivery-info ul li:last-child:after {
  content: none;
}

.prod-tabs-wrapper {
  background-color: #10100d;
  padding: 50px 0;
  box-sizing: border-box;
}

.prod-tabs .tab-refs {
  margin-bottom: 75px;
}

.prod-tabs .tab-refs ul {
  display: -webkit-box;
  display: flex;
  list-style: none;
}

@media (max-width: 480px) {
  .prod-tabs .tab-refs ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

.prod-tabs .tab-refs ul li {
  cursor: pointer;
  color: #fff;
  left: 0;
  font-size: 1.19rem;
  font-variant: small-caps;
  padding: 15px 60px;
  background-color: rgba(72, 72, 72, 0.7);
  position: relative;
  margin-right: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 767px) {
  .prod-tabs .tab-refs ul li {
    margin-right: 10px;
    padding: 10px 30px;
  }
}

@media (max-width: 480px) {
  .prod-tabs .tab-refs ul li {
    margin-bottom: 20px;
    margin-right: 0;
  }
}

.prod-tabs .tab-refs ul li a {
  outline: none;
  color: inherit;
}

.prod-tabs .tab-refs ul li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: auto;
  width: 20px;
  height: 100%;
}

.prod-tabs .tab-refs ul li:last-child {
  margin-right: 0;
}

@media (max-width: 480px) {
  .prod-tabs .tab-refs ul li:last-child {
    margin-bottom: 0;
  }
}

.prod-tabs .tab-refs ul li:nth-child(3n-2):after {
  background-color: #ba2525;
}

.prod-tabs .tab-refs ul li:nth-child(3n-1):after {
  background-color: #66c66f;
}

.prod-tabs .tab-refs ul li:nth-child(3n):after {
  background-color: #5a7bba;
}

.prod-tabs .tab-refs ul li.active {
  left: 30px;
  margin-right: 80px;
}

@media (max-width: 767px) {
  .prod-tabs .tab-refs ul li.active {
    margin-right: 40px;
  }
}

@media (max-width: 480px) {
  .prod-tabs .tab-refs ul li.active {
    margin-right: 30px;
  }
}

.prod-tabs .tab-refs ul li.active:last-child {
  margin-right: 30px;
}

.prod-tabs .tab-refs ul li.active:after {
  left: -30px;
}

.prod-tabs .tab-refs ul li.active:nth-child(3n-2) {
  background-color: #ba2525;
}

.prod-tabs .tab-refs ul li.active:nth-child(3n-1) {
  background-color: #66c66f;
}

.prod-tabs .tab-refs ul li.active:nth-child(3n) {
  background-color: #5a7bba;
}

.prod-tabs .tabs .tab {
  color: #fff;
  display: none;
}

.prod-tabs .tabs .tab.active {
  display: block;
}

.prod-tabs .tabs .tab.description {
  font-variant: small-caps;
  font-size: 1rem;
  line-height: 1.587rem;
  text-indent: 2rem;
  text-align: justify;
}

.prod-tabs .tabs .tab.characteristic table {
  width: 100%;
}

.prod-tabs .tabs .tab.characteristic table tbody {
  width: 100%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.prod-tabs .tabs .tab.characteristic table tr {
  width: 44%;
  display: -webkit-box;
  display: flex;
  position: relative;
  padding: 8px 0;
}

@media (max-width: 568px) {
  .prod-tabs .tabs .tab.characteristic table tr {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    margin: 0;
    border-bottom: 2px solid #5a7bba;
  }

  .prod-tabs .tabs .tab.characteristic table tr:after {
    content: "";
  }
}

.prod-tabs .tabs .tab.characteristic table tr:nth-child(odd) {
  margin-right: 6%;
}

@media (max-width: 568px) {
  .prod-tabs .tabs .tab.characteristic table tr:nth-child(odd) {
    margin-right: 0;
  }
}

.prod-tabs .tabs .tab.characteristic table tr:nth-child(odd):after {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  right: -13.5%;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #5a7bba;
}

.prod-tabs .tabs .tab.characteristic table tr:nth-child(even) {
  margin-left: 6%;
}

@media (max-width: 568px) {
  .prod-tabs .tabs .tab.characteristic table tr:nth-child(even) {
    margin-left: 0;
  }
}

.prod-tabs .tabs .tab.characteristic table tr td {
  width: 50%;
}

@media (max-width: 568px) {
  .prod-tabs .tabs .tab.characteristic table tr td {
    width: 100%;
    margin-bottom: 5px;
    text-align: center;
  }
}

.prod-tabs .tabs .tab.characteristic table tr td:nth-child(odd) {
  font-weight: 700;
}

.prod-tabs .tabs .tab.characteristic table tr td:nth-child(even) {
  text-align: right;
}

@media (max-width: 568px) {
  .prod-tabs .tabs .tab.characteristic table tr td:nth-child(even) {
    text-align: center;
  }
}

.prod-tabs .tabs .tab.photo {
  width: 100%;
}

.prod-tabs .tabs .tab.photo .photo-slider {
  width: 100%;
}

.prod-tabs .tabs .tab.photo .image {
  position: relative;
  overflow: hidden;
  width: 95%;
  padding-bottom: 95%;
  margin: 0 2.5% 0;
}

.prod-tabs .tabs .tab.photo .image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.another-pages .container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: end;
          align-items: flex-end;
}

.another-pages .container .buttons {
  display: -webkit-box;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .another-pages .container .buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

.another-pages .container .buttons .btn {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}

@media (max-width: 480px) {
  .another-pages .container .buttons .btn {
    margin-bottom: 10px;
  }

  .another-pages .container .buttons .btn:last-child {
    margin-bottom: 0;
  }
}

.call-button-section.default-section {
  position: fixed;
  margin: 0;
  bottom: 20px;
  right: 20px;
}

@media (max-width: 480px) {
  .call-button-section.default-section {
    bottom: 10px;
    right: 10px;
  }
}

.call-button-section.default-section .container {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
  padding: 0;
}

.call-button {
  display: block;
  width: 20vw;
  height: 20vw;
  max-width: 82px;
  max-height: 82px;
  background-image: linear-gradient(-74deg, #5a7bba 0%, #00d414 46%, #e10019 100%);
  padding: 5px;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .call-button {
    max-width: 72px;
    max-height: 72px;
  }
}

.call-button .content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  border-radius: 50%;
  background: url("/img/viber_phone-blue.svg") center center/60% 60% no-repeat #f1f1f1;
}

.favorite-items_catalog {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.favorite-items_catalog .item {
  width: 16%;
  margin-right: 5%;
  margin-bottom: 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

@media (min-width: 1200px) {
  .favorite-items_catalog .item:nth-child(5n) {
    margin-right: 0;
  }
}

@media (max-width: 1199px) and (min-width: 769px) {
  .favorite-items_catalog .item {
    width: 26%;
    margin-right: 10%;
  }

  .favorite-items_catalog .item:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  .favorite-items_catalog .item {
    width: 47.5%;
    margin-right: 5%;
  }

  .favorite-items_catalog .item:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .favorite-items_catalog .item {
    width: 100%;
    margin: 0 0 20px;
  }
}

.favorite-items_catalog .item .image {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 100%;
}

.favorite-items_catalog .item .image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.favorite-items_catalog .item .image .close {
  display: block;
  cursor: pointer;
  position: absolute;
  width: 10px;
  height: 10px;
  background: url("/img/close.svg") center center/100% 100% no-repeat;
  top: 15px;
  right: 15px;
  border: none;
}

.favorite-items_catalog .item .info {
  background: url("/img/657655-PP4L7L-630.jpg") center center/100% 100% no-repeat;
  padding: 30px;
  box-sizing: border-box;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.favorite-items_catalog .item .info .name {
  font-variant: small-caps;
  font-weight: 700;
  font-size: 1.19rem;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .favorite-items_catalog .item .info .name {
    font-size: 1.8rem;
  }
}

.favorite-items_catalog .item .info .price {
  text-align: center;
  margin-bottom: 30px;
}

.favorite-items_catalog .item .info .price.btn {
  min-width: auto;
  width: 100%;
}

.favorite-items_catalog .item .info .buttons {
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
}

.favorite-items_catalog .item .info .buttons img {
  width: 24px;
  height: 24px;
}

.user-buttons {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
}

.user-buttons .clear {
  text-align: center;
}

.all-projects_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 1%;
  grid-auto-rows: 1fr;
  grid-row-gap: 15px;
}

.all-projects_grid .proj-img {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  position: relative;
  overflow: hidden;
}

.all-projects_grid .proj-img:hover .title {
  opacity: 1;
  height: 100%;
}

.all-projects_grid .proj-img img {
  -webkit-box-flex: 1;
          flex-grow: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.all-projects_grid .proj-img .title {
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  text-align: center;
  display: -webkit-box;
  display: flex;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 2.381rem;
  font-weight: 900;
  text-transform: uppercase;
  font-variant: small-caps;
}

@media (max-width: 768px) {
  .all-projects_grid .proj-img .title {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .all-projects_grid .proj-img .title {
    font-size: 1rem;
  }
}

.all-projects_grid .long-img {
  grid-column: span 2;
}

.all-projects_grid .short-img {
  grid-column: span 1;
}

@media (max-width: 991px) {
  .all-projects_grid .short-img .title {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .all-projects_grid .short-img .title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .all-projects_grid .short-img .title {
    font-size: 0.7rem;
  }
}

.production-info {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
}

.production-info .image {
  margin-left: 5%;
  position: relative;
  overflow: hidden;
  width: 45%;
}

@media (max-width: 991px) {
  .production-info .image {
    width: 63%;
    display: none;
  }

  .production-info .image.mobile {
    display: block;
  }
}

@media (max-width: 767px) {
  .production-info .image {
    width: 100%;
  }
}

.production-info .image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.production-info_text {
  width: 50%;
}

.production-info_text .title {
  font-variant: small-caps;
  font-size: 3.571rem;
  color: #66c66f;
  font-weight: 900;
  margin-bottom: 45px;
}

.production-info_text .desc {
  color: #000;
  font-size: 1rem;
  line-height: 1.587rem;
  font-variant: small-caps;
  margin-bottom: 60px;
}

.production-info_text .short-info {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-bottom: 75px;
}

.production-info_text .short-info .infos {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
}

.production-info_text .short-info .infos img {
  width: 35px;
  height: 35px;
  margin-bottom: 15px;
}

.production-info_text .short-info .infos p,
.production-info_text .short-info .infos span {
  color: #66c66f;
  font-weight: 700;
  font-size: 0.95rem;
}

.production-info_text .short-info .infos span {
  font-weight: 400;
}

.production-info_text .characteristic {
  display: -webkit-box;
  display: flex;
}

.production-info_text .characteristic p {
  margin-right: 75px;
}

.production-info_text .characteristic ul {
  list-style: none;
}

.production-info_text .characteristic ul li {
  color: #000;
  font-size: 0.81rem;
  line-height: 1.6rem;
}

.img-mobile__prod .image {
  position: relative;
  overflow: hidden;
  width: 45%;
}

.img-mobile__prod .image.mobile {
  display: none;
}

@media (max-width: 991px) {
  .img-mobile__prod .image {
    width: 100%;
    display: none;
  }

  .img-mobile__prod .image.mobile {
    display: block;
    margin-bottom: 20px;
  }
}

.img-mobile__prod .image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.price-table_table table {
  width: 100%;
  background-color: #fff;
  padding: 20px 25px;
  border-spacing: unset;
}

.price-table_table table thead {
  background-color: #dcdcdc;
}

.price-table_table table thead th {
  text-align: center;
  padding: 15px 20px;
}

.price-table_table table tbody {
  width: 100%;
}

.price-table_table table tbody td {
  text-align: center;
  padding: 15px 20px;
}

.additional-equipment_equipment {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.additional-equipment_equipment .equip {
  display: -webkit-box;
  display: flex;
  padding: 30px 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  background-color: #fff;
  width: 16%;
  margin-right: 4%;
}

.additional-equipment_equipment .equip:nth-child(5n) {
  margin-right: 0;
}

.additional-equipment_equipment .equip.blue .btn {
  background-color: #5a7bba;
}

.additional-equipment_equipment .equip.red .btn {
  background-color: #b63737;
}

.additional-equipment_equipment .equip.green .btn {
  background-color: #66c66f;
}

.additional-equipment_equipment .equip-image {
  margin-bottom: 40px;
}

.additional-equipment_equipment .equip-image p {
  font-variant: small-caps;
  font-size: 1.381rem;
  font-weight: 700;
  color: #000;
}

.additional-equipment_equipment .equip-image img {
  width: 50px;
  height: 50px;
  margin-bottom: 21px;
}

.additional-equipment_equipment .equip .btn {
  min-width: auto;
  width: 100%;
}

.vacation-sphere {
  background-color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  padding: 50px 60px;
  margin-bottom: 65px;
}

@media (max-width: 440px) {
  .vacation-sphere {
    padding: 30px 20px;
  }
}

.vacation-sphere .name {
  font-size: 2.125rem;
  line-height: 2.125rem;
  font-variant: small-caps;
  margin-bottom: 2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vacation-sphere .description {
  color: #000;
  font-size: 1.3rem;
  line-height: 2rem;
  text-align: justify;
  text-indent: 2rem;
}

.vacation-sphere .user-buttons {
  margin-top: 3rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 100%;
}

@media (max-width: 768px) {
  .vacation-sphere .user-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

.vacation-sphere .user-buttons .vacations-count {
  display: -webkit-box;
  display: flex;
}

@media (max-width: 768px) {
  .vacation-sphere .user-buttons .vacations-count {
    margin-bottom: 10px;
    width: 75%;
  }
}

@media (max-width: 530px) {
  .vacation-sphere .user-buttons .vacations-count {
    width: 100%;
  }
}

.vacation-sphere .user-buttons .vacations-count:hover .count {
  color: #719bee;
  border-color: #719bee;
}

.vacation-sphere .user-buttons .vacations-count:hover .show-vacations {
  background-color: #719bee;
}

.vacation-sphere .user-buttons .vacations-count .count {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  padding: 20px;
  margin-right: 10px;
  cursor: pointer;
  font-variant: small-caps;
  font-size: 1.2rem;
  font-weight: 900;
  color: #5a7bba;
  border: 2px solid #5a7bba;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .vacation-sphere .user-buttons .vacations-count .show-vacations {
    -webkit-box-flex: 1;
            flex-grow: 1;
  }
}

@media (max-width: 530px) {
  .vacation-sphere .user-buttons .vacations-count .show-vacations {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .vacation-sphere .user-buttons .respond-btn {
    width: 75%;
    box-sizing: border-boxs;
  }
}

@media (max-width: 530px) {
  .vacation-sphere .user-buttons .respond-btn {
    width: 100%;
  }
}

.vacation-sphere.red .name {
  color: #b63737;
}

.vacation-sphere.red .respond-btn {
  background-color: #b63737;
}

.vacation-sphere.green .name {
  color: #66c66f;
}

.vacation-sphere.green .respond-btn {
  background-color: #66c66f;
}

.vacation-sphere.blue .name {
  color: #5a7bba;
}

.vacation-sphere.blue .respond-btn {
  background-color: #5a7bba;
}

.compare-carousel {
  display: -webkit-box;
  display: flex;
  position: relative;
}

.compare-carousel .close {
  display: block;
  cursor: pointer;
  position: absolute;
  width: 10px;
  height: 10px;
  background: url("/img/close.svg") center center/100% 100% no-repeat;
  top: 15px;
  right: 15px;
  border: none;
}

.compare-carousel .user-info {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 19%;
  margin-right: 1%;
  padding-bottom: 25px;
  box-sizing: border-box;
}

@media (max-width: 1535px) {
  .compare-carousel .user-info {
    width: 19%;
  }
}

@media (max-width: 991px) {
  .compare-carousel .user-info {
    width: 29%;
  }
}

@media (max-width: 520px) {
  .compare-carousel .user-info {
    width: 49%;
  }
}

@media (max-width: 480px) {
  .compare-carousel .user-info {
    width: 40%;
  }
}

.compare-carousel .user-info .buttons {
  -webkit-box-flex: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: start;
          justify-content: flex-start;
  box-sizing: border-box;
  padding: 25px 35px 20px;
}

@media (max-width: 1535px) {
  .compare-carousel .user-info .buttons {
    padding: 25px 10px 20px;
  }
}

@media (max-width: 480px) {
  .compare-carousel .user-info .buttons {
    padding: 25px 0 20px;
  }
}

.compare-carousel .user-info .buttons button {
  cursor: pointer;
  color: #fff;
  left: 0;
  font-size: 1.2rem;
  font-variant: small-caps;
  padding: 15px 0;
  background-color: #484848;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-bottom: 10px;
  outline: none;
}

@media (max-width: 1200px) {
  .compare-carousel .user-info .buttons button {
    font-size: 1rem;
  }
}

.compare-carousel .user-info .buttons button:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: auto;
  width: 20px;
  height: 100%;
}

@media (max-width: 480px) {
  .compare-carousel .user-info .buttons button:after {
    content: none;
  }
}

.compare-carousel .user-info .buttons button.active {
  margin-left: 30px;
}

@media (max-width: 480px) {
  .compare-carousel .user-info .buttons button.active {
    margin-left: 0;
  }
}

.compare-carousel .user-info .buttons button.active:after {
  left: -30px;
}

@media (max-width: 480px) {
  .compare-carousel .user-info .buttons button.active:after {
    left: -20px;
  }
}

.compare-carousel .user-info .buttons button.red:after {
  background-color: #ba2525;
}

.compare-carousel .user-info .buttons button.red.active {
  background-color: #ba2525;
}

.compare-carousel .user-info .buttons button.blue:after {
  background-color: #5a7bba;
}

.compare-carousel .user-info .buttons button.blue.active {
  background-color: #5a7bba;
}

.compare-carousel .user-info .buttons button.green:after {
  background-color: #66c66f;
}

.compare-carousel .user-info .buttons button.green.active {
  background-color: #66c66f;
}

.compare-carousel .user-info .props ul {
  list-style: none;
}

.compare-carousel .user-info .props ul li {
  text-align: right;
  padding: 10px 0;
  color: #000;
  font-family: ProximaNova;
  font-weight: 700;
  font-variant: small-caps;
  font-size: 0.8rem;
  line-height: 1.3rem;
  overflow-x: hidden;
}

@media screen and (max-width: 1535px) {
  .compare-carousel .user-info .props ul li {
    padding: 8.5px 0;
  }
}

@media screen and (max-width: 388px) {
  .compare-carousel .user-info .props ul li {
    padding: 2.1vw 0;
  }
}

.compare-carousel .carousel {
  width: 80%;
}

@media (max-width: 1535px) {
  .compare-carousel .carousel {
    width: 75%;
  }
}

@media (max-width: 991px) {
  .compare-carousel .carousel {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .compare-carousel .carousel .item {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .compare-carousel .carousel {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .compare-carousel .carousel {
    width: 70%;
  }
}

.compare-carousel .carousel .item {
  width: 90%;
  background-color: #10100d;
  box-sizing: border-box;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  padding-bottom: 25px;
  position: relative;
}

@media (max-width: 480px) {
  .compare-carousel .carousel .item {
    width: 100%;
  }
}

.compare-carousel .carousel .item:last-child {
  margin-right: 0;
}

.compare-carousel .carousel .item .prod {
  -webkit-box-flex: 1;
          flex-grow: 1;
  margin-bottom: 90px;
  padding: 25px 35px 0;
}

.compare-carousel .carousel .item .prod .prod-type {
  margin-bottom: 20px;
  color: #5a7bba;
  font-family: ProximaNova;
  font-size: 1.3rem;
  font-variant: small-caps;
  text-align: center;
}

.compare-carousel .carousel .item .prod .prod-name {
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}

.compare-carousel .carousel .item .prod .image {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 100%;
}

.compare-carousel .carousel .item .prod .image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.compare-carousel .carousel .item .prod .prod-info {
  background-color: #5a7bba;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  padding: 10px 20px;
  box-sizing: border-box;
}

@media (max-width: 1180px) {
  .compare-carousel .carousel .item .prod .prod-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

.compare-carousel .carousel .item .prod .prod-info .price {
  color: #fff;
  font-family: ProximaNova;
  font-size: 1.438rem;
  font-weight: 400;
  font-variant: small-caps;
}

@media (max-width: 1180px) {
  .compare-carousel .carousel .item .prod .prod-info .price {
    margin-bottom: 10px;
  }
}

.compare-carousel .carousel .item .prod .prod-info .buttons {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  width: 40%;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1180px) {
  .compare-carousel .carousel .item .prod .prod-info .buttons {
    width: 80%;
  }
}

.compare-carousel .carousel .item .prod .prod-info .buttons button {
  cursor: pointer;
  border: none;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
}

.compare-carousel .carousel .item .prod .prod-info .buttons .ref {
  background: url("/img/search-white.svg") center center/100% 100% no-repeat;
}

.compare-carousel .carousel .item .prod .prod-info .buttons .favorite {
  background: url("/img/mark-as-favorite-star.svg") center center/100% 100% no-repeat;
}

.compare-carousel .carousel .item .props ul {
  list-style: none;
}

.compare-carousel .carousel .item .props ul li {
  text-align: center;
  padding: 10px 0;
  color: #fff;
  font-family: ProximaNova;
  font-weight: 400;
  font-variant: small-caps;
  font-size: 1.3rem;
  line-height: 1.3rem;
  overflow-x: hidden;
  white-space: pre;
}

.contact .contacts {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1200px) {
  .contact .contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
  }
}

.contact .contacts .contact-info {
  width: 35%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

@media (max-width: 1535px) {
  .contact .contacts .contact-info {
    width: 50%;
  }
}

@media (max-width: 1200px) {
  .contact .contacts .contact-info {
    width: 100%;
  }
}

.contact .contacts .contact-info .info {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.contact .contacts .contact-info .info .panel {
  display: -webkit-box;
  display: flex;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .contact .contacts .contact-info .info .panel {
    flex-wrap: wrap;
  }
}

.contact .contacts .contact-info .info .panel > div {
  width: 50%;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .contact .contacts .contact-info .info .panel > div {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: center;
            align-items: center;
  }
}

@media (max-width: 480px) {
  .contact .contacts .contact-info .info .panel > div {
    width: 100%;
  }
}

.contact .contacts .contact-info .info h2 {
  color: #5a7bba;
  font-family: ProximaNova;
  font-size: 1.563rem;
  font-weight: 700;
  font-variant: small-caps;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .contact .contacts .contact-info .info h2 {
    text-align: center;
  }
}

.contact .contacts .contact-info .info p,
.contact .contacts .contact-info .info span {
  color: #000;
  font-family: ProximaNova;
  font-size: 1.063rem;
  font-weight: 400;
  font-variant: small-caps;
  line-height: 2rem;
}

@media (max-width: 1200px) {
  .contact .contacts .contact-info .info p,
  .contact .contacts .contact-info .info span {
    text-align: center;
  }
}

.contact .contacts .contact-info .info .phones {
  width: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  box-sizing: border-box;
  padding-right: 60px;
}

@media (max-width: 1200px) {
  .contact .contacts .contact-info .info .phones {
    padding-right: 0;
  }
}

.contact .contacts .contact-info .info .right-side {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.contact .contacts .contact-info .info .office {
  padding-right: 10%;
}

.contact .contacts .map {
  width: 50%;
}

@media (max-width: 1200px) {
  .contact .contacts .map {
    width: 100%;
    margin-bottom: 20px;
  }
}

.contact .contacts .map iframe {
  width: 100%;
  height: 100%;
}

.article.default-section {
  margin-top: 4rem;
}

.article.default-section .container {
  position: relative;
  background-color: #fff;
  box-shadow: 5px 12px 32px rgba(0, 1, 5, 0.1);
  padding: 100px 75px 65px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .article.default-section .container {
    padding: 50px 35px 30px;
  }
}

@media (max-width: 480px) {
  .article.default-section .container {
    padding: 30px 10px 10px;
  }
}

.article.default-section .container p {
  color: #000;
  font-family: ProximaNova;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2rem;
  font-variant: small-caps;
  text-indent: 2rem;
  text-align: justify;
}

.article.default-section .container .article-date {
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 60px;
  color: #fff;
  font-family: ProximaNova;
  font-size: 1.3rem;
  font-weight: 400;
  font-variant: small-caps;
  background-color: #5a7bba;
}

.article.default-section .container .part {
  display: -webkit-box;
  display: flex;
}

@media (max-width: 1200px) {
  .article.default-section .container .first-part,
  .article.default-section .container .last-part {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

.article.default-section .container .first-part .image,
.article.default-section .container .last-part .image {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
          flex: 1;
  padding-bottom: 32%;
  margin: 0 75px;
}

@media (max-width: 1200px) {
  .article.default-section .container .first-part .image,
  .article.default-section .container .last-part .image {
    width: 100%;
    padding-bottom: 64%;
    margin: 10px 0;
  }
}

.article.default-section .container .first-part .image.left,
.article.default-section .container .last-part .image.left {
  margin-left: 0;
}

.article.default-section .container .first-part .image.right,
.article.default-section .container .last-part .image.right {
  margin-right: 0;
}

.article.default-section .container .first-part .image > img,
.article.default-section .container .last-part .image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.article.default-section .container .first-part .article-preview,
.article.default-section .container .first-part .completion,
.article.default-section .container .last-part .article-preview,
.article.default-section .container .last-part .completion {
  -webkit-box-flex: 1;
          flex: 1;
  box-sizing: border-box;
}

.article.default-section .container .title {
  color: #5a7bba;
  font-family: ProximaNova;
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 900;
  font-variant: small-caps;
  margin-bottom: 4rem;
  text-align: left;
  max-width: 40%;
  width: auto;
  display: inline-block;
}

.article.default-section .container .main-part {
  margin: 75px 0;
}

@media (max-width: 1200px) {
  .article.default-section .container .main-part {
    margin: 25px 0;
  }
}

.article.default-section .container .user-buttons {
  margin-top: 75px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .article.default-section .container .user-buttons {
    margin-top: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

.article.default-section .container .user-buttons .social {
  margin-left: 40px;
  list-style: none;
  display: -webkit-box;
  display: flex;
}

@media (max-width: 768px) {
  .article.default-section .container .user-buttons .social {
    margin-left: 0;
    margin-top: 20px;
  }
}

.article.default-section .container .user-buttons .social li {
  margin-right: 20px;
  font-size: 0;
  width: 30px;
  height: 30px;
}

.article.default-section .container .user-buttons .social li:last-child {
  margin-right: 0;
}

.article.default-section .container .user-buttons .social li a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.article.default-section .article-img__wrapper {
  max-width: 460px;
  max-height: 420px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: inline-block;
  float: left;
  margin: 0 50px 37px 0;
}

.article.default-section .article-img__wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.production .content > * {
  color: #000;
  font-family: ProximaNova;
  font-size: 1.3rem;
  font-variant: small-caps;
  line-height: 2.6rem;
  text-align: justify;
}

.factory-slider .content {
  display: -webkit-box;
  display: flex;
  position: relative;
}

.factory-slider .content .slider {
  -webkit-box-flex: 1;
          flex: 1;
}

.factory-slider .content .slider.slider-certificate .item {
  min-height: 30px;
}

.factory-slider .content .slider.imaged-slider .image {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
          flex: 1;
  padding-bottom: 100%;
}

.factory-slider .content .slider.imaged-slider .image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.factory-slider .content .slider.video-slider .item {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  min-height: auto;
  min-width: auto;
}

.factory-slider .content .slider.video-slider .item video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.factory-slider .content .slider.video-slider .wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.factory-slider .content .slider.video-slider .wrapper .play {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url("/img/play-button.svg") center center/100% 100% no-repeat;
  border: none;
  outline: none;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  cursor: pointer;
}

.factory-slider .content .slider .item {
  min-width: 213px;
  min-height: 100px;
  -webkit-box-flex: 1;
          flex: 1;
  margin: 0 20px;
  background-color: #dcdcdc;
}

.factory-slider .content .slider-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: url("/img/play-button-grey.svg") center center/100% 100% no-repeat;
  border: none;
  outline: none;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

@media (max-width: 576px) {
  .factory-slider .content .slider-btn {
    display: none;
  }
}

.factory-slider .content .slider-btn:active {
  top: 10px;
}

.factory-slider .content .slider-btn.left {
  left: -33px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.factory-slider .content .slider-btn.right {
  right: -33px;
}

.last-new .content {
  background-color: #fff;
  position: relative;
  padding: 40px 50px 70px 70px;
  box-sizing: border-box;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  box-shadow: 5px 12px 32px rgba(0, 1, 5, 0.1);
  font-family: ProximaNova;
  margin-bottom: 80px;
}

@media (max-width: 1200px) {
  .last-new .content {
    padding: 30px 40px 50px 50px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .last-new .content {
    padding: 30px 10px;
  }
}

.last-new .content .news-date {
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 60px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
  font-variant: small-caps;
  background-color: #5a7bba;
}

.last-new .content .last-new-alert {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
  color: #5a7bba;
  font-size: 1.3rem;
  font-variant: small-caps;
  margin-bottom: 45px;
}

@media (max-width: 480px) {
  .last-new .content .last-new-alert {
    -webkit-box-pack: center;
            justify-content: center;
    margin: 10px 0;
  }
}

.last-new .content .last-new-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  .last-new .content .last-new-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

.last-new .content .last-new-wrap .image {
  position: relative;
  overflow: hidden;
  width: 45%;
  margin-right: 5%;
  padding-bottom: 40%;
}

@media (max-width: 991px) {
  .last-new .content .last-new-wrap .image {
    width: 70%;
    padding-bottom: 70%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .last-new .content .last-new-wrap .image {
    width: 100%;
    padding-bottom: 100%;
  }
}

.last-new .content .last-new-wrap .image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.last-new .content .last-new-text {
  width: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

@media (max-width: 991px) {
  .last-new .content .last-new-text {
    width: 100%;
  }
}

.last-new .content .last-new-text .title {
  text-align: center;
  color: #5a7bba;
  font-size: 3.625rem;
  line-height: 3.625rem;
  font-weight: 900;
  font-variant: small-caps;
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .last-new .content .last-new-text .title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
}

.last-new .content .last-new-text .text {
  margin-bottom: 50px;
  -webkit-box-flex: 1;
          flex: 1;
}

.last-new .content .last-new-text .text > * {
  color: #000;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2rem;
  font-variant: small-caps;
  text-indent: 2rem;
  text-align: justify;
}

.last-new .content .last-new-text .ref {
  align-self: flex-start;
}

.news-slider .container {
  display: -webkit-box;
  display: flex;
  position: relative;
}

.news-slider .container .slider-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: url("/img/play-button-grey.svg") center center/100% 100% no-repeat;
  border: none;
  outline: none;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

/*@media (max-width: 576px) {*/
/*  .news-slider .container .slider-btn {*/
/*    display: none;*/
/*  }*/
/*}*/

.news-slider .container .slider-btn:active {
  top: 10px;
}

.news-slider .container .slider-btn.left {
  left: -33px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.news-slider .container .slider-btn.right {
  right: -33px;
}
@media screen and (max-width: 580px){
    .news-slider .container .slider-btn.right {
        right: 10px;
        z-index: 1;
    }
    .news-slider .container .slider-btn.left {
        left: 10px;
        z-index: 1;
    }
}

.news-slider .container .slider {
  -webkit-box-flex: 1;
          flex-grow: 1;
}

.news-slider .container .slider > div > div:nth-child(3n-2) .news-date {
  background-color: #557cff;
}

.news-slider .container .slider > div > div:nth-child(3n-2) .title {
  color: #557cff;
}

.news-slider .container .slider > div > div:nth-child(3n-1) .news-date {
  background-color: #b00;
}

.news-slider .container .slider > div > div:nth-child(3n-1) .title {
  color: #b00;
}

.news-slider .container .slider > div > div:nth-child(3n) .news-date {
  background-color: #00d414;
}

.news-slider .container .slider > div > div:nth-child(3n) .title {
  color: #00d414;
}

.news-slider .container .slider .news {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  position: relative;
  margin: 0 70px;
}

@media (max-width: 991px) {
  .news-slider .container .slider .news {
    margin: 0 30px;
  }
}

@media (max-width: 480px) {
  .news-slider .container .slider .news {
    margin: 0 10px;
  }
}

.news-slider .container .slider .news .news-date {
  position: absolute;
  top: 25px;
  right: -25px;
  color: #fff;
  font-size: 1.3rem;
  font-variant: small-caps;
  padding: 7px 60px;
  z-index: 3;
}

@media (max-width: 480px) {
  .news-slider .container .slider .news .news-date {
    right: 0;
  }
}

.news-slider .container .slider .image {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 100%;
  margin-bottom: 20px;
}

.news-slider .container .slider .image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.news-slider .container .slider .title {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 700;
  font-variant: small-caps;
  margin-bottom: 20px;
}

.news-slider .container .slider .short-text > * {
  line-height: 1.5rem;
  color: #000;
  font-size: 1.3rem;
  font-weight: 400;
  font-variant: small-caps;
}

.show-more-news.default-section {
  margin-bottom: 0;
  margin-top: 20px;
}

.show-more-news.default-section .container {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  text-align: center;
}

.service-info .container {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  background: #fff;
  padding: 95px 100px 100px 110px;
  box-shadow: 5px 12px 32px rgba(0, 1, 5, 0.1);
}

@media (max-width: 991px) {
  .service-info .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
    padding: 55px 60px 60px 70px;
  }
}

@media (max-width: 480px) {
  .service-info .container {
    padding: 15px 10px 10px 20px;
  }
}

.service-info .container .image {
  position: relative;
  overflow: hidden;
  width: 38%;
  margin-left: 7%;
  padding-bottom: 38%;
}

@media (max-width: 991px) {
  .service-info .container .image {
    width: 70%;
    padding-bottom: 70%;
    margin-left: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .service-info .container .image {
    width: 100%;
    padding-bottom: 100%;
  }
}

.service-info .container .image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-info .container .content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  width: 55%;
}

@media (max-width: 991px) {
  .service-info .container .content {
    width: 100%;
  }
}

.service-info .container .content .title {
  font-family: ProximaNova;
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 900;
  font-variant: small-caps;
  margin-bottom: 45px;
  text-align: center;
}

@media (max-width: 991px) {
  .service-info .container .content .title {
    font-size: 2.5rem;
  }
}

.service-info .container .content .text > * {
  color: #000;
  font-family: ProximaNova;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2rem;
  margin-bottom: 45px;
  text-align: justify;
}

.service-info .container .content .download-brief {
  align-self: flex-start;
}

.service-info.short-type .image {
  margin-left: 0;
  margin-right: 7%;
}

@media (max-width: 991px) {
  .service-info.short-type .image {
    margin-right: 0;
  }
}

.service-info.blue .content .title {
  color: #5a7bba;
}

.service-info.blue .content .download-brief {
  background-color: #5a7bba;
}

.service-info.red .content .title {
  color: #b63737;
}

.service-info.red .content .download-brief {
  background-color: #b63737;
}

.service-info.green .content .title {
  color: #66c66f;
}

.service-info.green .content .download-brief {
  background-color: #66c66f;
}

.bonus-video .text > * {
  color: #000;
  font-family: ProximaNova;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2rem;
  text-align: justify;
}

.templates .templates-gallery {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.templates .templates-gallery .template {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 20px;
  min-height: 295px;
  background-color: #949494;
}

@media (min-width: 769px) {
  .templates .templates-gallery .template:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .templates .templates-gallery .template {
    width: 48%;
    margin-right: 4%;
  }

  .templates .templates-gallery .template:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 440px) {
  .templates .templates-gallery .template {
    width: 100%;
    margin-right: 0;
  }
}

.service-gallery .service-gallery-wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.service-gallery .service-gallery-wrapper .image {
  width: 23.5%;
  padding-bottom: 23.5%;
  margin-right: 2%;
  margin-bottom: 20px;
  position: relative;
}

.service-gallery .service-gallery-wrapper .image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 769px) {
  .service-gallery .service-gallery-wrapper .image:nth-child(4n) {
    margin-right: 0;
  }
}

@media (max-width: 768px) and (min-width: 321px) {
  .service-gallery .service-gallery-wrapper .image {
    width: 48%;
    padding-bottom: 48%;
    margin-right: 4%;
  }

  .service-gallery .service-gallery-wrapper .image:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 320px) {
  .service-gallery .service-gallery-wrapper .image {
    width: 80%;
    padding-bottom: 80%;
    margin: 0 auto 10px;
  }
}

.project .content {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 65px;
  margin-top: 100px;
}

@media (max-width: 768px) {
  .project .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

.project .content .slider-image {
  display: -webkit-box;
  display: flex;
  position: relative;
  width: 50%;
  margin-right: 5%;
}

@media (max-width: 768px) {
  .project .content .slider-image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.project .content .slider-image .slider-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: url("/img/play-button-grey.svg") center center/100% 100% no-repeat;
  border: none;
  outline: none;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

@media (max-width: 576px) {
  .project .content .slider-image .slider-btn {
    display: none;
  }
}

.project .content .slider-image .slider-btn:active {
  top: 10px;
}

.project .content .slider-image .slider-btn.left {
  left: -33px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (max-width: 768px) {
  .project .content .slider-image .slider-btn.left {
    left: -66px;
  }
}

.project .content .slider-image .slider-btn.right {
  right: -33px;
}

@media (max-width: 768px) {
  .project .content .slider-image .slider-btn.right {
    right: -66px;
  }
}

.project .content .info {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

@media (max-width: 768px) {
  .project .content .info {
    width: 100%;
  }
}

.project .content .info .props {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.project .content .info .props .prop {
  display: -webkit-box;
  display: flex;
  margin-bottom: 25px;
  font-family: ProximaNova;
  font-size: 1.5rem;
  color: #000;
  font-variant: small-caps;
}

@media (max-width: 1200px) {
  .project .content .info .props .prop {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 991px) {
  .project .content .info .props .prop {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

@media (max-width: 768px) {
  .project .content .info .props .prop {
    font-size: 1.5rem;
  }
}

.project .content .info .props .prop strong {
  font-weight: 700;
}

@media (max-width: 991px) {
  .project .content .info .props .prop strong {
    margin-bottom: 10px;
  }
}

.project .content .info .address {
  color: #000;
  font-family: ProximaNova;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
  font-variant: small-caps;
}

@media (max-width: 1200px) {
  .project .content .info .address {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .project .content .info .address {
    font-size: 1.5rem;
  }
}

.project .project-text {
  margin-bottom: 60px;
}

.project .project-text > * {
  color: #000;
  font-family: ProximaNova;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2rem;
  font-variant: small-caps;
  text-align: justify;
}

.project-video .container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.project-video .video {
  width: 100%;
  height: 100%;
  position: relative;
}

.project-video .video video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-video .video .wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.project-video .video .wrapper .play {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url("/img/play-button.svg") center center/100% 100% no-repeat;
  border: none;
  outline: none;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  cursor: pointer;
}

.back-to-projects {
  margin-top: 55px;
  align-self: center;
}

.banner-wrapper {
    padding-top: 120px;
    position: relative;
}

.banner-wrapper .banner {
   padding-top: 0;
}


@media screen and (max-width: 480px) {
    .banner-wrapper {
        padding-top: 150px;
    }
    .banner {
        padding-top: 0;
    }
}



.prev-main__banner {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 55px;
    height: 55px;
    background-color: rgba(236, 233, 233, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
    transition: .3s ease all;
    transform: rotate(180deg);
}

.next-main__banner {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
    background-color: rgba(236, 233, 233, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
    transition: .3s ease all;
}

@media screen and (max-width: 480px) {
    .next-main__banner,
    .prev-main__banner {
        bottom: 30px;
        width: 35px;
        height: 35px;
    }
    .next-main__banner {
        right: 14%;
    }
    .prev-main__banner {
        left: 14%;
    }
}

.next-main__banner:hover,
.prev-main__banner:hover {
    transition: .3s ease all;
    background-color: #fff;

}

._hj_feedback_container {
    display: none;
}

#callback-header {
    padding: 0px 10px;
    background-color: #f00;
    color: #fff;
    -webkit-border-radius: 5px;
}



.social-icons {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 0;
}
.social-icons>li {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.social-icons a {
  position: relative;
  background-color: #eee;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: background-color .3s ease-in-out;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .25rem;
}
.social-icons a:hover {
  background-color: #e0e0e0;
}
.social-icons a::before {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  left: .65rem;
  top: .65rem;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

@media screen and (max-width: 480px) {
.default-section {
    margin: 4rem 0;
}
article p {
    font-size: 14px;
}

}
